
:root {
  --blush: #f5e9e2;
  --blush-dark: #eddbd0;
  --rose: #c9897a;
  --rose-deep: #b87060;
  --gold: #c4973a;
  --gold-light: #e2b96a;
  --charcoal: #2e2a28;
  --warm-grey: #6b6460;
  --sage: #7a9e8e;
  --sage-light: #e8f0ec;
  --cream: #fdf8f4;
  --white: #ffffff;
  --mauve: #b09090;
  --mauve-light: #e8dada;
  --navy: #132b63;
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-card: 0 14px 40px rgba(67, 47, 58, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 80px;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(253,248,244,0.96);
  border-bottom: 1px solid var(--blush-dark);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}
.brand-logo {
  width: 84px;
  height: auto;
  flex: 0 0 auto;
}
.brand-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--charcoal);
}
.brand-copy span {
  display: block;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 4px;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.menu a {
  text-decoration: none;
  color: var(--warm-grey);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}
.menu a:hover { color: var(--rose); }
.menu a.active { color: var(--rose); }
.menu a.active:not(.pill)::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--rose);
  margin-top: 5px;
  border-radius: 2px;
}
.menu .pill {
  background: var(--rose);
  color: var(--white);
  padding: 0.58rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
}
.menu .pill:hover, .menu .pill.active { background: var(--rose-deep); color: var(--white); }

main section { padding: 88px 5%; }
.wrap { max-width: 1180px; margin: 0 auto; }
.narrow { max-width: 860px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
  display: block;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.2rem); margin-bottom: 0.75rem; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--rose); }
.lead, .copy p, .copy li, .copy {
  color: var(--warm-grey);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.9;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 1.3rem 0 1.5rem;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.hero {
  background: var(--blush);
  padding: 84px 5% 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(196,151,58,0.16) 0%, transparent 72%);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy p { max-width: 520px; margin-bottom: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 28px;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-card::before, .placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.65), transparent 22%),
    radial-gradient(circle at 82% 68%, rgba(255,255,255,0.38), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.placeholder {
  position: relative;
  background: linear-gradient(145deg, #ead9dc, #d9d8e5 46%, #f1ece8);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.placeholder.tall { min-height: 460px; }
.placeholder.medium { min-height: 320px; }
.placeholder.square { aspect-ratio: 1 / 1; }
.placeholder-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  z-index: 1;
}
.mock-mag-stack { position: absolute; left: 36px; bottom: 26px; width: 280px; height: 320px; }
.mock-mag {
  position: absolute;
  background: linear-gradient(180deg, #faf7f5 0%, #efe7e7 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 34px rgba(63,41,54,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.mock-mag.back { width: 170px; height: 250px; left: 0; top: 24px; }
.mock-mag.front { width: 192px; height: 286px; left: 78px; top: 0; z-index: 3; }
.mock-mag-head { background: linear-gradient(180deg, #d6c0cb 0%, #c9acb9 100%); min-height: 88px; padding: 14px 14px 10px; }
.mock-mag-head small { display:block; font-size:0.66rem; color:#6f6070; letter-spacing:0.06em; text-transform: uppercase; margin-bottom: 8px; }
.mock-mag-head strong { display:block; font-family:'Cormorant Garamond',serif; color:#53374f; font-size:1.58rem; line-height:0.95; }
.mock-mag-photo { height: 130px; background: linear-gradient(140deg, #765967, #d5c5c9 55%, #f3efef); position: relative; }
.mock-mag-photo::after { content:'Cover image placeholder'; position:absolute; bottom:10px; left:12px; font-size:0.62rem; color:rgba(255,255,255,0.92); letter-spacing:0.08em; text-transform: uppercase; }
.mock-mag-body { padding: 12px 14px; }
.mock-mag-line { height: 7px; border-radius: 999px; background: #e6dde0; margin-bottom: 8px; }
.mock-mag-line.short { width: 62%; }
.mock-mag-line.med { width: 78%; }

.btn-primary, .btn-secondary, .btn-outline {
  display: inline-block;
  text-decoration: none;
  padding: 0.86rem 2.1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-secondary { background: var(--rose); color: var(--white); }
.btn-secondary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--rose); color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

.section-soft { background: var(--blush); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark li, .section-dark .copy { color: rgba(255,255,255,0.78); }
.section-dark::before {
  content: '';
  position: absolute;
  left: -140px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(201,137,122,0.06);
}
.section-dark::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(196,151,58,0.06);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--blush-dark);
  box-shadow: var(--shadow-card);
}
.card.soft { background: rgba(255,255,255,0.5); }
.card.dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); backdrop-filter: blur(6px); }
.feature-list, .checklist { list-style: none; display: grid; gap: 0.7rem; }
.feature-list li, .checklist li { position: relative; padding-left: 1.35rem; }
.feature-list li::before, .checklist li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-size: 1.1rem;
  line-height: 1.3;
}
.kicker { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--rose); }
.highlight-box {
  max-width: 760px;
  margin: 2.2rem auto 0;
  text-align: center;
  background: var(--blush);
  border-radius: 22px;
  padding: 34px;
  border-left: 4px solid var(--gold);
}
.highlight-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--charcoal); }
.highlight-box strong { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--blush-dark);
  border-radius: 16px;
  margin-bottom: 14px;
  background: #fcfbfa;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1.05rem 1.2rem;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question span:last-child { font-size: 1.2rem; color: var(--rose); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; }
.faq-answer p { padding-bottom: 1rem; }
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--blush-dark);
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--blush-dark);
  border-radius: 12px;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,137,122,0.12);
}
.inline-note { font-size: 0.85rem; color: var(--warm-grey); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { background: var(--white); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-card); border: 1px solid var(--blush-dark); text-align:center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--rose); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; }
.stat-desc { font-size: 0.86rem; }
.price-card { background: var(--white); border-radius: 24px; padding: 30px; border: 1px solid var(--blush-dark); box-shadow: var(--shadow-card); }
.price { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 1; color: var(--rose); margin: 0.6rem 0; }
.price small { font-size: 1.1rem; color: var(--warm-grey); }
.badge-row { display:flex; flex-wrap:wrap; gap:10px; margin-top: 1rem; }
.badge { background: var(--white); border:1px solid var(--mauve-light); color: var(--charcoal); font-size:0.78rem; font-weight:600; letter-spacing:0.05em; padding:0.45rem 1rem; border-radius:100px; }
.footer-cta-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.84);
  text-align: center;
  padding: 0.85rem 5%;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 50px 5% 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 320px;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--rose); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--rose); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  color: var(--white);
}
.social-link:hover { background: var(--rose); }

@media (max-width: 980px) {
  .hero, .grid-2, .grid-3, .stats-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .section-divider { margin-left: auto; margin-right: auto; }
  .menu { gap: 1rem; }
}
@media (max-width: 900px) {
  .site-nav { align-items: flex-start; min-height: auto; }
  .brand-logo { width: 72px; }
  .menu { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  main section { padding: 72px 5%; }
  .site-nav { padding: 12px 5%; }
  .brand-copy { font-size: 1rem; }
  .hero-card { min-height: 340px; }
  .mock-mag-stack { transform: scale(0.82); transform-origin: left bottom; left: 8px; bottom: 10px; }
}

/* SEO authority content blocks */
.seo-authority-block a {
  color: var(--rose-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-authority-block strong {
  color: var(--charcoal);
  font-weight: 600;
}
