/* =============================================
   PRICING.CSS — /pricing page
   Loresmith Studio
   ============================================= */

/* ── Base ── */
.pricing-body {
  background: var(--cream);
  color: var(--inkwood);
  min-height: 100vh;
}

/* ── Header ── */
.pr-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 80px);
  height: 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
}
.pr-logo-link img { display: block; }
.pr-nav { display: flex; align-items: center; gap: 32px; }
.pr-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--heartwood);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.pr-nav-link:hover { color: var(--inkwood); }
.pr-nav-cta {
  color: var(--inkwood);
  border: 1px solid var(--inkwood);
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 200ms, color 200ms;
}
.pr-nav-cta:hover {
  background: var(--inkwood);
  color: var(--cream);
}

/* ── Eyebrow / label ── */
.pr-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.pr-eyebrow--light { color: rgba(245,239,230,0.5); }

/* ── Section shared ── */
.pr-section {
  padding: clamp(72px, 10vw, 120px) clamp(24px, 8vw, 120px);
  max-width: 1200px;
  margin: 0 auto;
}
.pr-section-head {
  margin-bottom: 56px;
}
.pr-section-note {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* ── Hero ── */
.pr-hero {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 120px) clamp(60px, 8vw, 100px);
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.pr-hero-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--inkwood);
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 640px;
}
.pr-philosophy {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
}

/* ── Package grid ── */
.pr-packages { border-bottom: 1px solid var(--rule); }
.pr-package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.pr-package-card {
  background: var(--cream);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: background 250ms;
}
.pr-package-card:hover { background: rgba(193,127,58,0.03); }

/* Accent rule above package name */
.pr-accent-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 20px;
}
.pr-package-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--inkwood);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pr-package-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--heartwood);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.pr-package-tagline {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.pr-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.pr-package-list li {
  font-size: 14px;
  color: var(--inkwood);
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.pr-package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 1px;
  background: var(--amber);
}
.pr-package-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--heartwood);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms;
  margin-top: auto;
}
.pr-package-cta:hover { color: var(--inkwood); }

/* Managed card slight treatment */
.pr-package-card--managed { background: rgba(44,26,14,0.02); }
.pr-package-card--managed .pr-package-price { color: var(--amber); }

/* ── Add-ons ── */
.pr-addons { border-bottom: 1px solid var(--rule); }
.pr-addon-groups {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pr-addon-group {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.pr-addon-group:last-child { border-bottom: none; padding-bottom: 0; }
.pr-addon-group-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heartwood);
  margin-bottom: 28px;
}
.pr-addon-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pr-addon-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.pr-addon-row:last-child { border-bottom: none; }
.pr-addon-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.pr-addon-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--inkwood);
}
.pr-addon-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}
.pr-addon-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heartwood);
  white-space: nowrap;
  padding-top: 2px;
}

/* ── Travel ── */
.pr-travel { border-bottom: 1px solid var(--rule); }
.pr-travel-tiers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.pr-travel-divider {
  width: 1px;
  background: var(--rule);
  height: 100%;
  margin: 0 40px;
  min-height: 80px;
}
.pr-travel-tier { padding: 4px 0; }
.pr-travel-range {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.pr-travel-cost {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--inkwood);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pr-travel-note {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

/* ── CTA ── */
.pr-cta {
  background: var(--inkwood);
  color: var(--cream);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 8vw, 120px);
  text-align: center;
}
.pr-cta-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pr-cta-sub {
  font-size: 17px;
  color: rgba(245,239,230,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}
.pr-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--inkwood);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 200ms;
}
.pr-cta-btn:hover { background: #a96d2e; }

/* ── Footer ── */
.pr-footer {
  background: var(--inkwood);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border-top: 1px solid rgba(245,239,230,0.08);
}
.pr-footer-mark { height: 28px; width: auto; opacity: 0.6; }
.pr-footer-copy {
  font-size: 12px;
  color: rgba(245,239,230,0.4);
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .pr-package-grid { grid-template-columns: 1fr; }
  .pr-travel-tiers {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pr-travel-divider {
    width: 100%;
    height: 1px;
    min-height: auto;
    margin: 28px 0;
  }
}

@media (max-width: 640px) {
  .pr-header { padding: 0 20px; }
  .pr-nav { gap: 16px; }
  .pr-nav-link:first-child { display: none; }
  .pr-section { padding: 56px 20px; }
  .pr-hero { padding: 60px 20px 48px; }
  .pr-package-card { padding: 32px 24px; }
  .pr-addon-row { flex-direction: column; gap: 8px; }
  .pr-addon-price { align-self: flex-start; }
}
