
  :root {
    --paper: #F4EDDF;
    --paper-soft: #EFE5D1;
    --ink: #1F1812;
    --ink-soft: #463A2D;
    --honey: #C8924A;
    --amber: #9C5E22;
    --wood: #6B4F2C;
    --halo: #EFD9A8;
    --rule: rgba(31, 24, 18, 0.12);
    --shadow: 0 30px 80px -20px rgba(31, 24, 18, 0.18);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* The warm sunbeam that drifts across the whole site */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 85% 15%, rgba(239, 217, 168, 0.55), transparent 65%),
      radial-gradient(ellipse 50% 50% at 15% 90%, rgba(200, 146, 74, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- NAV ---------- */
  nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
  }

  .logo {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 50;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
  }

  .logo .sun {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--honey);
    margin-left: 4px;
    transform: translateY(-2px);
  }

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

  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--amber); color: var(--paper); }

  /* ---------- HERO ---------- */
  .hero {
    padding: 120px 0 140px;
    position: relative;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--amber);
  }

  h1.hero-headline {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 30;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    color: var(--ink);
    max-width: 11ch;
    margin-bottom: 36px;
  }

  h1.hero-headline em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 100;
    color: var(--amber);
  }

  .hero-sub {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 48ch;
    margin-bottom: 48px;
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--amber);
    transform: translateY(-1px);
  }

  .btn-primary .arrow { transition: transform 0.3s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-secondary {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover { color: var(--amber); border-color: var(--amber); }

  /* Hero visual, the dog in the sunbeam */
  .hero-scene {
    position: absolute;
    right: -40px;
    top: 80px;
    width: 540px;
    height: 540px;
    z-index: -1;
  }

  /* ---------- RIBBON ---------- */
  .ribbon {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 24px 0;
    overflow: hidden;
  }

  .ribbon-track {
    display: flex;
    gap: 64px;
    align-items: center;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    white-space: nowrap;
  }

  .ribbon-track .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--honey);
    flex-shrink: 0;
  }

  /* ---------- SECTION SHARED ---------- */
  section {
    padding: 140px 0;
    position: relative;
  }

  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 24px;
  }

  h2 {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 96, "wght" 380, "SOFT" 30;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 28px;
    max-width: 16ch;
  }

  h2 em {
    font-style: italic;
    color: var(--amber);
    font-variation-settings: "opsz" 96, "wght" 320, "SOFT" 100;
  }

  .section-intro {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 58ch;
  }

  /* ---------- RITUAL ---------- */
  .ritual {
    padding: 140px 0;
  }

  .ritual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .ritual-visual {
    aspect-ratio: 1;
    background:
      radial-gradient(circle at 30% 25%, var(--halo), transparent 55%),
      linear-gradient(160deg, var(--paper-soft) 0%, #E8DCC2 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  /* the sachet */
  .sachet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg);
    width: 56%;
    aspect-ratio: 0.62;
    background: linear-gradient(155deg, #F8F1E1 0%, #EADFC5 100%);
    border-radius: 4px;
    box-shadow:
      0 30px 60px -20px rgba(31,24,18,0.35),
      0 1px 0 rgba(255,255,255,0.5) inset;
    display: flex;
    flex-direction: column;
    padding: 8% 10%;
    justify-content: space-between;
  }

  .sachet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8%;
    background:
      repeating-linear-gradient(90deg, var(--wood) 0 4px, transparent 4px 8px);
    opacity: 0.4;
  }

  .sachet::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6%;
    background: repeating-linear-gradient(90deg, var(--wood) 0 4px, transparent 4px 8px);
    opacity: 0.35;
  }

  .sachet-top {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 96, "wght" 500;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  .sachet-top .sun-mark {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--honey);
    margin-left: 3px;
    transform: translateY(-3px);
  }

  .sachet-middle {
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--wood);
    font-weight: 500;
  }

  .sachet-bottom {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "wght" 400";
    font-size: clamp(11px, 1.4vw, 14px);
    color: var(--ink-soft);
  }

  .ritual-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 48px;
  }

  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
  }

  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "wght" 300;
    font-size: 38px;
    color: var(--amber);
    line-height: 1;
  }

  .step h3 {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }

  .step p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
  }

  /* ---------- SCIENCE ---------- */
  .science {
    background: var(--ink);
    color: var(--paper);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
  }

  .science::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 10%, rgba(200, 146, 74, 0.22), transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 100%, rgba(156, 94, 34, 0.15), transparent 60%);
    pointer-events: none;
  }

  .science .container { position: relative; }

  .science h2 { color: var(--paper); }
  .science h2 em { color: var(--honey); }
  .science .section-eyebrow { color: var(--honey); }
  .science .section-intro { color: rgba(244, 237, 223, 0.7); }

  .science-header {
    max-width: 720px;
    margin-bottom: 100px;
  }

  .ingredients {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(244, 237, 223, 0.15);
  }

  .ingredient {
    padding: 48px 40px;
    border-bottom: 1px solid rgba(244, 237, 223, 0.15);
    border-right: 1px solid rgba(244, 237, 223, 0.15);
    transition: background 0.3s;
  }

  .ingredient:nth-child(2n) { border-right: none; }

  .ingredient:hover {
    background: rgba(200, 146, 74, 0.06);
  }

  .ingredient-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
  }

  .ingredient-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 28px;
    letter-spacing: -0.015em;
    color: var(--paper);
  }

  .ingredient-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--honey);
    font-weight: 500;
  }

  .ingredient-purpose {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: 17px;
    color: var(--halo);
    margin-bottom: 14px;
  }

  .ingredient p {
    color: rgba(244, 237, 223, 0.65);
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* ---------- FOUNDER ---------- */
  .founder {
    padding: 160px 0;
  }

  .founder-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: center;
  }

  .founder-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .dog-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background:
      radial-gradient(ellipse 60% 40% at 30% 25%, var(--halo) 0%, transparent 60%),
      linear-gradient(165deg, #D9C39A 0%, #A87E48 60%, #6B4F2C 100%);
  }

  .dog-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
  }

  .dog-photo figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(to top, rgba(31, 24, 18, 0.8), transparent);
    color: var(--paper);
  }

  .dog-photo .dog-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 21px;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .dog-photo .dog-breed {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 5px;
  }

  .photos-label {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
    text-align: center;
  }

  .founder-quote {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 96, "wght" 360, "SOFT" 30;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin-bottom: 36px;
  }

  .founder-quote::before {
    content: '"';
    color: var(--amber);
    font-size: 1.4em;
    line-height: 0;
    position: relative;
    top: 0.25em;
    margin-right: 0.04em;
  }

  .founder-body p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .founder-attribution {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .founder-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 60, "wght" 500;
    font-size: 19px;
    color: var(--ink);
  }

  .founder-role {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  /* ---------- TESTIMONIALS ---------- */
  .voices {
    background: var(--paper-soft);
    padding: 160px 0;
  }

  .voices-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .voices-header h2 {
    margin: 0 auto 28px;
  }

  .voices-header .section-intro {
    margin: 0 auto;
  }

  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .voice {
    background: var(--paper);
    padding: 44px 36px;
    border-radius: 6px;
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .voice:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }

  .voice-stars {
    color: var(--honey);
    font-size: 14px;
    letter-spacing: 4px;
  }

  .voice-quote {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 60, "wght" 420;
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: -0.012em;
    color: var(--ink);
    flex-grow: 1;
  }

  .voice-byline {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
  }

  .voice-name {
    font-weight: 500;
    color: var(--ink);
    font-size: 14px;
  }

  .voice-meta {
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 36, "wght" 400;
  }

  /* ---------- PRICING ---------- */
  .ritual-pricing {
    padding: 160px 0;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .pricing-header h2 {
    margin: 0 auto 28px;
  }

  .pricing-header .section-intro {
    margin: 0 auto;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .plan {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 48px 36px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
  }

  .plan:hover {
    transform: translateY(-4px);
    border-color: var(--honey);
  }

  .plan.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: scale(1.04);
  }

  .plan.featured:hover {
    transform: scale(1.04) translateY(-4px);
  }

  .plan-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--honey);
    color: var(--ink);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .plan-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 26px;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
  }

  .plan-frame {
    font-size: 13px;
    color: var(--ink-soft);
    font-family: 'Fraunces', serif;
    font-style: italic;
    margin-bottom: 36px;
  }

  .plan.featured .plan-frame { color: var(--halo); }

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

  .plan-price .amount {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "wght" 380;
    font-size: 64px;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .plan-price .unit {
    font-size: 14px;
    color: var(--ink-soft);
  }

  .plan.featured .plan-price .unit { color: var(--halo); }

  .plan-per-day {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 36px;
  }

  .plan.featured .plan-per-day { color: var(--halo); }

  .plan ul {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
  }

  .plan li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 14.5px;
    color: var(--ink-soft);
    display: flex;
    gap: 12px;
    align-items: start;
  }

  .plan.featured li {
    border-color: rgba(244, 237, 223, 0.15);
    color: rgba(244, 237, 223, 0.75);
  }

  .plan li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--honey);
    margin-top: 9px;
    flex-shrink: 0;
  }

  .plan-cta {
    background: var(--ink);
    color: var(--paper);
    border: none;
    padding: 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
  }

  .plan.featured .plan-cta {
    background: var(--honey);
    color: var(--ink);
  }

  .plan-cta:hover { background: var(--amber); color: var(--paper); }
  .plan.featured .plan-cta:hover { background: var(--paper); color: var(--ink); }

  /* ---------- FINAL CTA ---------- */
  .final {
    padding: 200px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--halo) 0%, transparent 65%);
    z-index: 0;
  }

  .final .container { position: relative; z-index: 1; }

  .final h2 {
    margin: 0 auto 36px;
    font-size: clamp(48px, 8vw, 110px);
    max-width: 14ch;
  }

  .final p {
    font-size: 19px;
    color: var(--ink-soft);
    margin-bottom: 56px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }

  .footer-brand .logo {
    color: var(--paper);
    font-size: 36px;
    margin-bottom: 20px;
  }

  .footer-brand p {
    color: rgba(244, 237, 223, 0.6);
    font-size: 14px;
    max-width: 32ch;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: 17px;
    line-height: 1.4;
  }

  .footer-ig {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(244, 237, 223, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-ig:hover { color: var(--honey); }

  .footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 20px;
    font-weight: 500;
  }

  .footer-col a {
    display: block;
    color: rgba(244, 237, 223, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--honey); }

  .footer-bottom {
    border-top: 1px solid rgba(244, 237, 223, 0.15);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(244, 237, 223, 0.5);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .container { padding: 0 24px; }
    .hero { padding: 60px 0 80px; }
    .hero-scene { display: none; }
    section { padding: 90px 0; }
    .ritual, .science, .founder, .voices, .ritual-pricing, .final { padding: 90px 0; }
    .ritual-grid, .founder-grid { grid-template-columns: 1fr; gap: 60px; }
    .voices-grid, .plans { grid-template-columns: 1fr; }
    .ingredients { grid-template-columns: 1fr; }
    .ingredient { border-right: none !important; }
    .plan.featured { transform: none; }
    .plan.featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .science > .container > div[style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 36px !important;
    }
  }

  /* ============ DTC UPGRADES ============ */

  /* hero redesign */
  .hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 60px; align-items: center; }
  .hero-copy { max-width: 600px; }
  .hero-figure { position: relative; }
  .hero-sun {
    position: absolute; top: -10%; right: -8%; width: 72%; aspect-ratio: 1;
    border-radius: 50%; z-index: 0;
    background: radial-gradient(circle at 50% 50%, var(--halo) 0%, rgba(239,217,168,0.55) 38%, rgba(200,146,74,0) 72%);
    filter: blur(6px);
  }
  .hero-photo {
    position: relative; z-index: 1; display: block; width: 100%; max-width: 495px; height: auto;
    margin: 0 auto; border-radius: 16px;
    box-shadow: 0 40px 80px -28px rgba(31,24,18,0.40);
  }
  @media (max-width: 760px) { .hero-photo { max-width: 360px; } }
  .hero-pack {
    position: absolute; z-index: 2; left: -24px; bottom: 40px;
    background: linear-gradient(155deg, #F8F1E1, #EADFC5);
    border-radius: 12px; padding: 16px 22px;
    box-shadow: 0 26px 50px -18px rgba(31,24,18,0.45);
  }
  .hero-pack-name { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72, "wght" 500; font-size: 26px; color: var(--ink); line-height: 1; }
  .hero-pack .hp-sun { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--honey); margin-left: 3px; transform: translateY(-3px); }
  .hero-pack-sub { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); margin-top: 6px; }

  .announce {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    padding: 9px 16px;
  }
  .announce .sep { opacity: 0.4; margin: 0 12px; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(244, 237, 223, 0.82);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .site-header nav { border-bottom: none; padding: 20px 0; }
  .site-header.scrolled {
    border-bottom-color: var(--rule);
    box-shadow: 0 10px 30px -20px rgba(31, 24, 18, 0.3);
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 24px;
    margin-top: 44px;
  }
  .hero-trust .stars { color: var(--honey); letter-spacing: 3px; font-size: 14px; }
  .trust-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; color: var(--ink-soft);
  }
  .trust-item .tdot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); flex: none; }

  .compare { padding: 140px 0; }
  .cmp-head { text-align: center; margin-bottom: 60px; }
  .cmp-head h2 { margin: 0 auto 24px; }
  .cmp-head .section-intro { margin: 0 auto; }
  .cmp-wrap { max-width: 900px; margin: 0 auto; }
  .cmp-grid { border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; background: var(--paper); }
  .cmp-r { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; }
  .cmp-r + .cmp-r { border-top: 1px solid var(--rule); }
  .cmp-r > div { padding: 19px 22px; display: flex; align-items: center; }
  .cmp-r .c2 { justify-content: center; background: rgba(200,146,74,0.07); }
  .cmp-r .c3 { justify-content: center; color: var(--ink-soft); text-align: center; font-size: 13.5px; }
  .cmp-feat { font-size: 15px; color: var(--ink); }
  .cmp-head-row > div { color: var(--paper); }
  .cmp-head-row .c1 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,237,223,0.55); background: var(--ink); }
  .cmp-head-row .c2 {
    background: var(--amber);
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 21px; color: var(--paper); letter-spacing: -0.01em;
  }
  .cmp-head-row .c3 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,237,223,0.55); background: var(--ink); }
  .yes { color: var(--amber); font-size: 20px; line-height: 1; }
  .no { color: #BBA98D; font-size: 17px; line-height: 1; }

  .guarantee { background: linear-gradient(180deg, var(--paper) 0%, #F0E2C6 100%); }
  .guarantee .container {
    padding: 120px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
  }
  .g-seal {
    width: 172px; height: 172px; border-radius: 50%;
    border: 2px solid var(--amber);
    background: rgba(255,255,255,0.45);
    display: grid; place-items: center; text-align: center;
    color: var(--amber); flex: none;
  }
  .g-seal .big { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144, "wght" 420; font-size: 58px; line-height: 0.9; }
  .g-seal .small { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; }
  .guarantee h2 { margin-bottom: 20px; }
  .guarantee p { font-size: 18px; color: var(--ink-soft); line-height: 1.6; max-width: 54ch; }

  .faq { padding: 140px 0; }
  .faq-head { text-align: center; margin-bottom: 56px; }
  .faq-head h2 { margin: 0 auto; }
  .faq-wrap { max-width: 800px; margin: 0 auto; }
  .faq-item { border-top: 1px solid var(--rule); }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    text-align: left; padding: 28px 0; display: flex;
    justify-content: space-between; align-items: center; gap: 24px;
    font-family: 'Fraunces', serif; font-variation-settings: "opsz" 48, "wght" 460;
    font-size: 21px; color: var(--ink); letter-spacing: -0.01em;
  }
  .faq-icon { flex: none; width: 24px; height: 24px; position: relative; }
  .faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--amber); border-radius: 2px; }
  .faq-icon::before { top: 11px; left: 3px; width: 18px; height: 2px; }
  .faq-icon::after { top: 3px; left: 11px; width: 2px; height: 18px; transition: opacity 0.3s, transform 0.3s; }
  .faq-item.open .faq-icon::after { opacity: 0; transform: rotate(90deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-a p { padding: 0 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 64ch; }

  .footer-signup {
    border-bottom: 1px solid rgba(244,237,223,0.15);
    padding-bottom: 50px; margin-bottom: 50px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  }
  .footer-signup h3 {
    font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72, "wght" 460;
    font-size: 30px; color: var(--paper); letter-spacing: -0.02em; line-height: 1.1; max-width: 18ch;
  }
  .footer-signup .fs-sub { color: rgba(244,237,223,0.6); font-size: 14px; margin-top: 10px; }
  .signup-form { display: flex; gap: 10px; }
  .signup-form input[type=email] {
    flex: 1; background: rgba(244,237,223,0.06);
    border: 1px solid rgba(244,237,223,0.25); border-radius: 999px;
    padding: 15px 22px; color: var(--paper); font-size: 15px; font-family: inherit;
  }
  .signup-form input::placeholder { color: rgba(244,237,223,0.45); }
  .signup-form button {
    background: var(--honey); color: var(--ink); border: none; border-radius: 999px;
    padding: 15px 26px; font-weight: 600; font-size: 14px; cursor: pointer;
    white-space: nowrap; transition: background 0.2s;
  }
  .signup-form button:hover { background: var(--paper); }
  .signup-done { color: var(--halo); font-size: 15px; display: none; }

  .js [data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
  }
  .js [data-reveal].in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  /* hero product render */
  .hero-product { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; padding: 8px 0; }
  .hero-product svg { width: 82%; max-width: 320px; height: auto; display: block; }

  /* nav quiz button */
  .nav-quiz {
    color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 500;
    letter-spacing: 0.02em; border: 1px solid var(--ink); border-radius: 999px;
    padding: 9px 18px; transition: background 0.2s, color 0.2s; cursor: pointer;
  }
  .nav-quiz:hover { background: var(--ink); color: var(--paper); }

  /* quiz modal */
  .quiz-overlay {
    position: fixed; inset: 0; z-index: 200; display: none;
    align-items: center; justify-content: center; padding: 24px;
    background: rgba(31, 24, 18, 0.55);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  }
  .quiz-overlay.open { display: flex; }
  .quiz-card {
    background: var(--paper); border-radius: 22px; width: 100%; max-width: 560px;
    padding: 46px 44px; position: relative; box-shadow: 0 50px 100px -30px rgba(31,24,18,0.5);
    max-height: 92vh; overflow: auto;
  }
  .quiz-close {
    position: absolute; top: 16px; right: 22px; background: none; border: none;
    cursor: pointer; font-size: 28px; line-height: 1; color: var(--ink-soft);
  }
  .quiz-close:hover { color: var(--ink); }
  .quiz-progress { display: flex; gap: 7px; margin-bottom: 26px; }
  .quiz-dot { width: 30px; height: 4px; border-radius: 2px; background: var(--rule); transition: background 0.3s; }
  .quiz-dot.active { background: var(--honey); }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: quizFade 0.4s ease; }
  @keyframes quizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .quiz-q {
    font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72, "wght" 440;
    font-size: 28px; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink);
    margin: 14px 0 26px;
  }
  .quiz-input {
    width: 100%; padding: 16px 18px; border: 1px solid var(--rule); border-radius: 12px;
    font-size: 17px; font-family: inherit; background: #fff; color: var(--ink); box-sizing: border-box;
  }
  .quiz-input:focus { outline: none; border-color: var(--honey); }
  .quiz-options { display: flex; flex-direction: column; gap: 11px; }
  .quiz-opt {
    text-align: left; background: var(--paper-soft); border: 1px solid var(--rule);
    border-radius: 12px; padding: 18px 20px; cursor: pointer; font-family: inherit;
    font-size: 16px; color: var(--ink); transition: border-color 0.2s, background 0.2s, transform 0.1s;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .quiz-opt:hover { border-color: var(--honey); background: #fff; }
  .quiz-opt:active { transform: scale(0.99); }
  .quiz-opt .opt-sub { font-size: 13px; color: var(--ink-soft); }
  .quiz-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
  .quiz-back { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 14px; font-family: inherit; }
  .quiz-back:hover { color: var(--ink); }
  .quiz-next {
    background: var(--ink); color: var(--paper); border: none; border-radius: 999px;
    padding: 14px 30px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: inherit;
    text-decoration: none; display: inline-block; transition: background 0.2s;
  }
  .quiz-next:hover { background: var(--amber); }
  .quiz-result { text-align: center; padding: 8px 0; }
  .quiz-result .res-size {
    font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144, "wght" 380;
    font-size: 92px; line-height: 0.9; color: var(--amber); margin: 8px 0 6px;
  }
  .quiz-result .res-name {
    font-family: 'Fraunces', serif; font-variation-settings: "opsz" 72, "wght" 500;
    font-size: 28px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
  }
  .quiz-result .res-sub { color: var(--ink-soft); font-size: 16px; line-height: 1.55; max-width: 40ch; margin: 0 auto 26px; }
  .quiz-result .res-note { color: var(--ink-soft); font-size: 13px; margin-top: 18px; line-height: 1.5; }
  .pricing-quiz-link { text-align: center; margin-top: 18px; }
  .pricing-quiz-link a { color: var(--amber); font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; cursor: pointer; }

  .hero-microcopy { margin-top: 18px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.02em; }

  /* the standard (authority) */
  .standard { background: var(--paper-soft); }
  .standard .container { padding: 116px 0; }
  .standard-head { text-align: center; margin-bottom: 54px; }
  .standard-head h2 { margin: 0 auto 22px; }
  .standard-head .section-intro { margin: 0 auto; }
  .standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
  .std-item { text-align: center; padding: 0 8px; }
  .std-item .std-title { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 60, "wght" 500; font-size: 19px; color: var(--ink); margin-bottom: 9px; letter-spacing: -0.01em; }
  .std-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
  .std-advisor { text-align: center; margin-top: 46px; font-size: 15px; color: var(--ink-soft); font-style: italic; font-family: 'Fraunces', serif; }

  /* founding members */
  .founding { padding: 140px 0; }
  .founding-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  .founding-inner h2 { margin: 0 auto 24px; }
  .founding-inner p { font-size: 18px; color: var(--ink-soft); line-height: 1.62; max-width: 60ch; margin: 0 auto 18px; }
  .founding-perks { display: flex; gap: 14px 30px; justify-content: center; flex-wrap: wrap; margin: 36px 0 40px; }
  .founding-perk { font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 9px; }
  .founding-perk .tdot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); }
  .founding-note { font-size: 13px; color: var(--ink-soft); margin-top: 30px; }

  @media (max-width: 960px) {
    .compare, .faq { padding: 90px 0; }
    .guarantee .container { grid-template-columns: 1fr; gap: 36px; text-align: center; padding: 80px 0; justify-items: center; }
    .guarantee p { margin: 0 auto; }
    .cmp-r { grid-template-columns: 1.4fr 0.8fr 1fr; }
    .cmp-r > div { padding: 14px 12px; }
    .cmp-feat { font-size: 13px; }
    .cmp-head-row .c2 { font-size: 16px; }
    .cmp-r .c3 { font-size: 11.5px; }
    .footer-signup { grid-template-columns: 1fr; gap: 20px; }
    .signup-form { flex-direction: column; }
    .signup-form button { width: 100%; }
    .faq-q { font-size: 18px; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-figure { max-width: 380px; margin: 0 auto; width: 100%; }
    .hero-sun { width: 82%; }
    .hero-pack { left: 0; bottom: 24px; }
    .hero-copy { max-width: none; }
    .nav-quiz { display: none; }
    .quiz-card { padding: 38px 26px; }
    .quiz-q { font-size: 24px; }
    .quiz-result .res-size { font-size: 76px; }
    .standard-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .standard .container { padding: 80px 0; }
    .founding { padding: 90px 0; }
    .founding-perks { gap: 12px 20px; }
  }
  /* evidence & sources */
  .evidence { background: var(--paper-soft); padding: 130px 0; border-top: 1px solid var(--rule); }
  .evidence-head { max-width: 760px; margin: 0 auto 70px; text-align: center; }
  .evidence-head .section-intro { margin: 18px auto 0; }
  .ev-list { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--rule); }
  .ev-item { display: grid; grid-template-columns: 215px 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--rule); align-items: start; }
  .ev-name { font-family: 'Fraunces', serif; font-size: 23px; font-variation-settings: "opsz" 40, "wght" 500; color: var(--ink); letter-spacing: -0.012em; line-height: 1.2; }
  .ev-name .ev-sub { display: block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--honey); margin-top: 9px; font-weight: 500; }
  .ev-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.62; margin: 0 0 14px; }
  .ev-cite { font-size: 13.5px; line-height: 1.5; color: var(--wood); }
  .ev-cite a { color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(156, 94, 34, 0.32); }
  .ev-cite a:hover { color: var(--ink); border-color: var(--ink); }
  .evidence-note { max-width: 960px; margin: 44px auto 0; font-size: 13px; color: var(--wood); line-height: 1.6; }
  @media (max-width: 720px) {
    .evidence { padding: 90px 0; }
    .ev-item { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  }



/* ============================================================
   DTC LAYOUT UPGRADE LAYER  (appended, wins via cascade)
   ============================================================ */

/* active tab highlight on inner pages */
.nav-links a.active { color: var(--honey); }

/* sticky-header anchor offset so in-page jumps don't hide under the nav */
#ritual, #science, #pricing, #faq, #story, #evidence, #compare, #standard { scroll-margin-top: 92px; }

/* consistent button motion + crisp focus */
.btn-primary, .plan-cta, .nav-cta, .signup-form button, .btn-secondary {
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn-primary:hover, .plan-cta:hover, .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(156, 94, 34, .55);
}
.btn-primary:active, .plan-cta:active, .nav-cta:active { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px;
}

/* card elevation on hover */
.ingredient, .plan, .std-item, .ev-item { transition: transform .2s ease, box-shadow .2s ease; }
.ingredient:hover { transform: translateY(-3px); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ---------- Trust / credibility strip ---------- */
.trust-bar { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1120px; margin: 0 auto; }
.trust-pill { display: flex; align-items: center; gap: 15px; padding: 28px 22px; }
.trust-pill + .trust-pill { border-left: 1px solid var(--rule); }
.trust-ico { width: 30px; height: 30px; flex: none; color: var(--amber); stroke-width: 1.6; }
.trust-pill h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); margin: 0 0 3px; letter-spacing: .005em; }
.trust-pill p { font-size: 12.5px; color: var(--wood); margin: 0; line-height: 1.45; }
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-pill { border-top: 1px solid var(--rule); padding: 20px 16px; }
  .trust-pill:nth-child(odd) { border-left: none; }
  .trust-pill:nth-child(1), .trust-pill:nth-child(2) { border-top: none; }
}

/* ---------- Sticky mobile buy bar ---------- */
.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(244, 237, 223, .93);
  -webkit-backdrop-filter: saturate(150%) blur(10px); backdrop-filter: saturate(150%) blur(10px);
  border-top: 1px solid var(--rule); box-shadow: 0 -12px 34px -20px rgba(31, 24, 18, .45);
  transform: translateY(115%); transition: transform .32s ease; }
.buybar.show { transform: translateY(0); }
.buybar-copy strong { display: block; font-family: 'Fraunces', serif; font-size: 15px; color: var(--ink); line-height: 1.1; }
.buybar-copy span { font-size: 12px; color: var(--wood); }
.buybar a { flex: none; background: var(--amber); color: var(--paper); text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 760px) { .buybar { display: flex; } }

/* ===== round 2: benefits band, step icons, mid CTA ===== */
.benefits { padding: 116px 0; }
.benefits-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.benefits-head .section-intro { margin: 16px auto 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; max-width: 1140px; margin: 0 auto; }
.benefit { text-align: center; }
.benefit-ico { width: 32px; height: 32px; color: var(--amber); margin: 0 auto 16px; display: block; }
.benefit h3 { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 40, "wght" 480; font-size: 20px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.benefit p { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

.step-ico { width: 22px; height: 22px; color: var(--amber); display: block; margin-bottom: 10px; }

.midcta { background: var(--paper-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.midcta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 46px 0; flex-wrap: wrap; }
.midcta p { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 60, "wght" 420; font-size: 27px; line-height: 1.25; color: var(--ink); margin: 0; max-width: 32ch; letter-spacing: -0.015em; }
.midcta p em { color: var(--amber); font-style: italic; }

@media (max-width: 760px) {
  .benefits { padding: 72px 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .midcta .container { flex-direction: column; align-items: flex-start; gap: 20px; padding: 44px 0; }
  .midcta p { font-size: 23px; }
}


/* ===== support pages (vet, contact, shipping, subscription, refund) ===== */
.page-content { padding: 120px 0; }
.page-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.page-header h2 { margin: 0 auto 24px; max-width: 18ch; }
.page-header .section-intro { margin: 0 auto; }
.page-body { max-width: 720px; margin: 0 auto; }
.page-body h3 { font-family: 'Fraunces', serif; font-size: 22px; font-variation-settings: "opsz" 60, "wght" 500; color: var(--ink); margin: 36px 0 14px; letter-spacing: -0.01em; }
.page-body p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin: 0 0 18px; }
.page-body ul { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin: 0 0 22px; padding-left: 22px; }
.page-body li { margin-bottom: 8px; }
.page-body a { color: var(--amber); border-bottom: 1px solid rgba(156, 94, 34, 0.35); text-decoration: none; transition: color .2s ease, border-color .2s ease; }
.page-body a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.contact-form { margin: 28px 0 10px; display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.contact-form label { font-size: 13px; letter-spacing: 0.04em; color: var(--wood); font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--rule); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 15px; background: var(--paper); color: var(--ink); transition: border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--amber); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { background: var(--ink); color: var(--paper); padding: 14px 30px; border: none; border-radius: 999px; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; cursor: pointer; align-self: flex-start; transition: background .2s ease, transform .2s ease; }
.contact-form button:hover { background: var(--amber); transform: translateY(-1px); }
.contact-thanks { display: none; background: var(--paper-soft); border: 1px solid var(--rule); border-radius: 10px; padding: 18px 20px; font-family: 'Fraunces', serif; font-style: italic; color: var(--ink); margin-top: 18px; }

@media (max-width: 760px) {
  .page-content { padding: 70px 0; }
  .page-header { margin-bottom: 40px; }
  .page-body h3 { font-size: 20px; margin-top: 30px; }
  .page-body p, .page-body li { font-size: 16px; }
  .contact-form { max-width: none; }
  /* mobile orphan fix for the 5-pillar benefits grid */
  .benefits-grid > .benefit:nth-child(5) { grid-column: 1 / -1; max-width: 340px; margin-left: auto; margin-right: auto; }
}
