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

    :root {
      --cream:      #F5F0E8;
      --cream-dark: #EDE6D8;
      --rose:       #C9897A;
      --rose-light: #F0DDD9;
      --rose-dark:  #A86E60;
      --sage:       #5A7A5E;
      --sage-light: #EBF0EB;
      --charcoal:   #2C2C2C;
      --grey:       #888078;
      --white:      #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', 'Calibri', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      font-size: 16px;
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 60px;
      background: rgba(245,240,232,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(136,128,120,0.15);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--sage);
      text-decoration: none;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--charcoal); }

    /* ── SHARED ── */
    .section-inner {
      max-width: 840px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 16px;
    }

    h1, h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      line-height: 1.15;
      color: var(--charcoal);
    }

    h1 { font-size: clamp(36px, 5vw, 60px); }
    h2 { font-size: clamp(28px, 3.5vw, 42px); }

    p { color: var(--grey); line-height: 1.85; }

    .btn {
      display: inline-block;
      padding: 16px 36px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.18s;
      cursor: pointer;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }

    .btn--dark {
      background: var(--sage);
      color: var(--white);
    }
    .btn--dark:hover { background: #4A6A4E; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

    .btn--outline {
      background: transparent;
      color: var(--charcoal);
      border: 1.5px solid rgba(44,44,44,0.35);
    }
    .btn--outline:hover { border-color: var(--charcoal); transform: translateY(-1px); }

    .btn--rose {
      background: #8B4A3C;
      color: var(--white);
    }
    .btn--rose:hover { background: #7A3F32; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }

    .btn--sage {
      background: var(--sage);
      color: var(--white);
    }
    .btn--sage:hover { background: #4A6A4E; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }

    divider {
      display: block;
      height: 1px;
      background: rgba(136,128,120,0.18);
      max-width: 840px;
      margin: 0 auto;
    }

    /* ── HERO ── */
    .hero {
      padding: 140px 32px 100px;
      text-align: center;
    }

    .hero .eyebrow { margin-bottom: 20px; }

    .hero h1 {
      max-width: 680px;
      margin: 0 auto 24px;
    }

    .hero-sub {
      font-size: 17px;
      max-width: 520px;
      margin: 0 auto 44px;
      color: var(--grey);
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── ABOUT ── */
    .about {
      padding: 84px 32px;
    }

    .about-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 64px;
      align-items: start;
    }

    .about-photo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .about-photo {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
    }

    .about-photo img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
    }

    .about-caption {
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--grey);
      font-style: italic;
      text-align: center;
    }

    .about-text .eyebrow { margin-bottom: 12px; }
    .about-text h2 { margin-bottom: 24px; }
    .about-text p { margin-bottom: 16px; font-size: 15px; }
    .about-text p:last-of-type { margin-bottom: 0; }

    /* ── FREE GUIDE ── */
    .free-guide {
      background: var(--white);
      padding: 96px 32px;
    }

    .free-guide-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .guide-cover {
      background: var(--cream);
      border-radius: 4px;
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(136,128,120,0.2);
      overflow: hidden;
      position: relative;
    }

    .guide-cover-mock {
      width: 100%;
      height: 100%;
      background: var(--cream);
      display: flex;
      flex-direction: column;
      padding: 24px 28px 20px;
      justify-content: flex-start;
      gap: 14px;
    }

    .mock-brand {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--sage);
      font-family: 'Lato', sans-serif;
      text-transform: uppercase;
    }

    .mock-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.1;
    }

    .mock-sub {
      font-size: 11px;
      color: var(--grey);
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
    }

    .mock-tagline {
      font-size: 9px;
      color: rgba(136,128,120,0.7);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .free-guide-text .eyebrow { margin-bottom: 10px; }
    .free-guide-text h2 { margin-bottom: 20px; }
    .free-guide-text p { font-size: 15px; margin-bottom: 32px; }

    /* ── COMPLETE GUIDE ── */
    .complete-guide {
      background: var(--cream);
      padding: 96px 32px;
    }

    .complete-guide-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .paid-cover-mock {
      width: 100%;
      height: 100%;
      background: var(--rose-light);
      display: flex;
      flex-direction: column;
      padding: 28px;
      justify-content: space-between;
    }

    .paid-mock-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.15;
    }

    .complete-guide-text .eyebrow { margin-bottom: 10px; color: var(--rose-dark); }
    .complete-guide-text h2 { margin-bottom: 20px; }
    .complete-guide-text p { font-size: 15px; margin-bottom: 28px; }

    .price-line {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 28px;
    }

    .price-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--charcoal);
    }

    .price-note {
      font-size: 13px;
      color: var(--grey);
    }

    /* ── SHOP TEASER ── */
    .shop {
      background: var(--charcoal);
      padding: 96px 32px;
    }

    .shop-inner {
      max-width: 840px;
      margin: 0 auto;
      text-align: center;
    }

    .shop .eyebrow { color: var(--rose); margin-bottom: 16px; }
    .shop h2 { color: var(--cream); margin-bottom: 16px; }
    .shop > .shop-inner > p { color: rgba(245,240,232,0.55); margin-bottom: 48px; font-size: 15px; }

    .shop-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 44px;
    }

    .shop-tag {
      display: inline-block;
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1.5px solid rgba(245,240,232,0.2);
      border-radius: 2px;
      color: rgba(245,240,232,0.6);
    }

    .btn--cream {
      background: var(--cream);
      color: var(--charcoal);
    }
    .btn--cream:hover { background: var(--white); transform: translateY(-1px); }

    /* ── EMAIL SIGNUP ── */
    .email-signup {
      background: var(--sage-light);
      padding: 72px 32px;
      text-align: center;
      border-top: 1px solid rgba(90,122,94,0.12);
      border-bottom: 1px solid rgba(90,122,94,0.12);
    }

    .email-signup .eyebrow { margin-bottom: 12px; }
    .email-signup h2 { margin-bottom: 12px; }
    .email-signup p { font-size: 15px; max-width: 440px; margin: 0 auto 32px; }

    .email-form {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 440px;
      margin: 0 auto;
    }

    .email-form input {
      flex: 1;
      min-width: 200px;
      padding: 13px 18px;
      font-size: 14px;
      font-family: 'Lato', sans-serif;
      border: 1.5px solid rgba(90,122,94,0.3);
      border-radius: 3px;
      background: var(--white);
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.2s;
    }

    .email-form input:focus { border-color: var(--sage); }
    .email-form input::placeholder { color: var(--grey); }

    .email-note {
      font-size: 12px;
      color: var(--grey);
      margin-top: 12px;
      opacity: 0.7;
    }

    .hidden-field { display: none; }

    .email-message {
      max-width: 440px;
      margin: 18px auto 0;
      padding: 12px 18px;
      border-radius: 3px;
      font-size: 14px;
      line-height: 1.5;
    }

    .email-message--success {
      background: var(--white);
      color: var(--sage);
      border: 1.5px solid var(--sage);
    }

    .email-message--error {
      background: var(--white);
      color: #a33a3a;
      border: 1.5px solid rgba(163,58,58,0.5);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--cream);
      padding: 56px 32px;
      text-align: center;
      border-top: 1px solid rgba(136,128,120,0.15);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--sage);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .footer-tagline {
      font-size: 13px;
      color: var(--grey);
      margin-bottom: 20px;
    }

    .footer-email {
      font-size: 13px;
      color: var(--charcoal);
      text-decoration: none;
      border-bottom: 1px solid rgba(44,44,44,0.2);
      padding-bottom: 1px;
      transition: border-color 0.2s;
      margin-bottom: 24px;
      display: inline-block;
    }

    .footer-email:hover { border-color: var(--charcoal); }

    .footer-socials {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 20px;
    }

    .footer-socials a {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-socials a:hover { color: var(--charcoal); }

    .footer-copy {
      font-size: 11px;
      color: rgba(136,128,120,0.5);
      margin-top: 28px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 760px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }

      .hero { padding: 110px 20px 72px; }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .about-photo { max-width: 270px; }

      .free-guide-inner,
      .complete-guide-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .complete-guide-inner { direction: ltr; }
      .complete-guide-inner .guide-cover { order: -1; }

      .section-inner, .about-inner, .free-guide-inner,
      .complete-guide-inner, .shop-inner { padding: 0 4px; }

      .email-form { flex-direction: column; }
      .email-form input { width: 100%; }
      .email-form .btn { width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; }
      html { scroll-behavior: auto; }
    }

    /* Language chooser */
    .lang-chooser {
      margin-top: 8px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #ddd8d0;
    }
    .lang-chooser-header {
      padding: 9px 16px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--grey);
      font-family: 'Lato', sans-serif;
      background: var(--cream-dark);
      border-bottom: 1px solid #ddd8d0;
    }
    .lang-chooser-body {
      display: flex;
      background: white;
    }
    .lang-col {
      flex: 1;
      padding: 16px 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .lang-col + .lang-col {
      border-left: 1px solid #ece8e2;
    }
    .lang-col-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--grey);
      font-family: 'Lato', sans-serif;
    }
    .lang-col .btn {
      width: 100%;
      text-align: center;
      font-size: 11.5px;
      padding: 10px 12px;
      box-sizing: border-box;
      letter-spacing: 0.04em;
    }
  
/* ── LIBRARY CARDS ── */
.library-intro { text-align:center; max-width:640px; margin:0 auto 48px; }
.library-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  max-width:1020px; margin:0 auto;
}
.guide-card {
  background:var(--white); border-radius:6px; padding:36px 28px;
  border:1px solid rgba(136,128,120,0.15);
  display:flex; flex-direction:column; text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
}
.guide-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(44,44,44,0.08); }
.guide-card--featured { border:1px solid var(--rose); position:relative; }
.guide-card .card-emoji { font-size:26px; margin-bottom:14px; }
.guide-card .card-q {
  font-size:12px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--sage); margin-bottom:10px;
}
.guide-card--featured .card-q { color:var(--rose-dark); }
.guide-card h3 {
  font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:600;
  color:var(--charcoal); margin-bottom:12px; line-height:1.25;
}
.guide-card p { font-size:14px; color:var(--grey); line-height:1.7; margin-bottom:10px; }
.guide-card .card-price {
  font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700;
  color:var(--charcoal); margin:8px 0 18px;
}
.guide-card .btn { margin-top:auto; width:100%; text-align:center; box-sizing:border-box; }
.card-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--rose); color:var(--white);
  font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:5px 14px; border-radius:999px;
}
@media (max-width:860px){ .library-grid { grid-template-columns:1fr; max-width:420px; } }

/* ── TRUST SECTION ── */
.trust-section { padding:70px 32px; background:var(--white); text-align:center; }
.trust-list {
  list-style:none; max-width:420px; margin:28px auto 24px; text-align:left;
}
.trust-list li {
  font-size:15px; color:var(--charcoal); padding:8px 0;
  border-bottom:1px solid rgba(136,128,120,0.1);
}
.trust-list li:last-child { border-bottom:none; }
.trust-list li::before { content:"✓"; color:var(--sage); font-weight:700; margin-right:12px; }
.trust-note { font-size:14px; color:var(--grey); max-width:460px; margin:0 auto; line-height:1.8; }

/* ── COMPARISON TABLE ── */
.compare-section { padding:70px 32px; }
.compare-table {
  width:100%; max-width:760px; margin:32px auto 0; border-collapse:collapse;
  background:var(--white); border-radius:6px; overflow:hidden;
  font-size:13.5px;
}
.compare-table th, .compare-table td {
  padding:13px 16px; text-align:center; border-bottom:1px solid rgba(136,128,120,0.12);
}
.compare-table th {
  background:var(--sage-light); font-size:12px; letter-spacing:0.05em;
  text-transform:uppercase; color:var(--charcoal);
}
.compare-table td:first-child, .compare-table th:first-child {
  text-align:left; font-weight:700; color:var(--charcoal);
}
.compare-table td { color:var(--grey); }
.compare-table .col-feature { color:var(--rose-dark); font-weight:700; }
@media (max-width:640px){
  .compare-table { font-size:12px; }
  .compare-table th, .compare-table td { padding:10px 8px; }
}

/* ── ESSENTIALS PAGE ── */
.page-hero { padding:140px 32px 60px; text-align:center; }
.essentials-cover-img {
  width:100%; max-width:340px; border-radius:6px;
  box-shadow:0 18px 44px rgba(44,44,44,0.14);
}
.detail-cols {
  display:grid; grid-template-columns:1fr 1fr; gap:48px;
  max-width:880px; margin:0 auto; align-items:start;
}
@media (max-width:800px){ .detail-cols { grid-template-columns:1fr; } }
.crosslink {
  font-size:14px; color:var(--grey); font-style:italic;
  text-align:center; padding:26px 32px; background:var(--cream-dark);
}
.crosslink a { color:var(--rose-dark); font-weight:700; text-decoration:none; border-bottom:1px solid var(--rose); }

/* Complete Guide column accent */
.compare-table .col-complete { color:var(--sage); font-weight:700; }


/* ── HERO BUTTON HIERARCHY ── */
.hero-buttons .btn--hero-primary {
  background:#8B4A3C; color:var(--white);
  font-size:14px; padding:15px 34px;
}
.hero-buttons .btn--hero-primary:hover { background:#7A3F32; transform:translateY(-2px); box-shadow:0 4px 14px rgba(0,0,0,0.18); }
.hero-buttons .btn--hero-secondary {
  background:var(--sage); color:var(--white);
  border:none;
  font-size:14px; padding:15px 34px;
}
.hero-buttons .btn--hero-secondary:hover { background:#4A6A4E; transform:translateY(-2px); box-shadow:0 4px 14px rgba(0,0,0,0.18); }
