/* ═══════════════════════════════════════════════
   MARIGOLD VOICE STUDIO — Shared Styles
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --brown: #2a1c12;
  --brown-mid: #3d2816;
  --brown-light: #c5a882;
  --cream-pale: #f5ede2;
  --cream: #fdf8f2;
  --warm-dark: #1e1510;
  --warm-mid: #7a6450;
  --gold: #b07d3a;
  --gold-light: #ecddc8;
  --marigold: #d4863a;
  --nav-height: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--warm-dark);
  background: var(--cream);
  min-height: 100vh;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  z-index: 100;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--warm-mid);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brown); }

.nav-links .nav-cta a {
  background: var(--brown);
  color: white;
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 1.2px;
  transition: background 0.2s;
}

.nav-links .nav-cta a:hover { background: var(--brown-mid); color: white; }

/* ── PAGE WRAPPER ── */
.page-content {
  padding-top: var(--nav-height);
}

/* ── HERO BANNER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #2a1c12 0%, #3d2816 60%, #4a3020 100%);
  padding: 100px 100px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.page-hero-inner { position: relative; z-index: 1; max-width: 720px; background: transparent; }

.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.page-hero h1 em { font-style: italic; font-weight: 400; }

.page-hero .hero-sub {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
}

/* ── SECTION CONTAINERS ── */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 56px;
}

.section + .section {
  border-top: 1px solid var(--cream-pale);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown-mid);
  font-weight: 500;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--brown-light);
  padding-bottom: 8px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-title em { font-style: italic; font-weight: 400; }

.section-intro {
  font-size: 14px;
  color: var(--warm-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
}

/* ── BLURB BAR ── */
.blurb {
  font-size: 13.5px;
  color: var(--warm-mid);
  line-height: 1.7;
  border-left: 2.5px solid var(--brown-light);
  padding-left: 18px;
  font-weight: 300;
}

/* ── TWO-COLUMN GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

/* ── SUB HEADINGS ── */
.sub-heading {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 12px;
}

/* ── DASH LIST ── */
ul.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul.dash-list li {
  font-size: 13px;
  color: var(--warm-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

ul.dash-list li::before {
  content: '—';
  color: var(--brown-light);
  flex-shrink: 0;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--gold-light);
  border-radius: 3px;
  padding: 24px 28px;
}

.highlight-box .hb-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--warm-dark);
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 13px;
  color: var(--warm-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ── PRICING BOXES ── */
.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.pricing-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.pricing-box {
  border: 1.5px solid var(--brown-light);
  border-radius: 3px;
  padding: 24px 22px 20px;
  position: relative;
}

.pricing-box.featured {
  border-color: var(--brown-mid);
  background: var(--cream-pale);
}

.pricing-box .badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--brown-mid);
  color: white;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-box .plan-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-mid);
  margin-bottom: 10px;
  font-weight: 500;
}

.pricing-box .price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--warm-dark);
  line-height: 1;
}

.pricing-box .price sup {
  font-size: 18px;
  vertical-align: super;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.pricing-box .per {
  font-size: 12px;
  color: var(--warm-mid);
  margin-top: 6px;
  font-weight: 300;
}

.pricing-box .savings {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 500;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--brown);
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.footer-brand em { font-style: italic; font-weight: 400; color: var(--brown-light); }

.footer-tagline {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-top: 6px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brown-light); }

.footer-contact p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
}

.footer-bottom {
  background: var(--brown-mid);
  padding: 14px 56px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ── BODY TEXT ── */
p.body-text {
  font-size: 13.5px;
  color: var(--warm-mid);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 12px;
}

p.body-text strong { color: var(--warm-dark); font-weight: 500; }

/* ── SHADED BAND ── */
.band {
  background: var(--cream-pale);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

/* ── CTA BUTTON ── */
.btn {
  display: inline-block;
  background: var(--brown);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn:hover { background: var(--brown-mid); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brown);
  color: var(--brown);
}

.btn-outline:hover { background: var(--brown); color: white; }

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .section { padding: 48px 24px; }
  .page-hero { padding: 56px 24px 48px; }
  .two-col, .three-col { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 40px 24px; flex-direction: column; }
  .footer-bottom { padding: 14px 24px; }
  .pricing-grid.cols-2, .pricing-grid.cols-3 { grid-template-columns: 1fr; }
}
