:root{
    --maroon:#721010;
    --maroon-deep:#3d0a08;
    --maroon-deeper:#2a0605;
    --orange:#d36818;
    --orange-deep:#b85a12;
    --cream:#f5f0ed;
    --cream-2:#ece2da;
    --ink:#2b0f0d;
    --ink-soft:#5a3a35;
    --on-dark:#f5ede4;
    --on-dark-soft:#d9c3ba;
    --radius-organic: 62% 38% 55% 45% / 48% 52% 48% 52%;
    --ease: cubic-bezier(.22,.61,.36,1);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden; max-width:100%;}
  body{
    overflow-x:hidden;
    max-width:100%;
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Sora', sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  h1,h2,h3{
    font-family:'Fraunces', serif;
    font-weight:500;
    line-height:1.12;
    margin:0;
    letter-spacing:-0.01em;
  }
  em{font-style:italic; font-weight:400;}
  p{margin:0;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  @media (max-width:480px){ .wrap{padding:0 20px;} }
  section{position:relative;}

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Sora', sans-serif;
    font-weight:600;
    font-size:13px;
    letter-spacing:0.14em;
    color:var(--orange-deep);
    text-transform:uppercase;
  }
  .eyebrow .dot-chain{width:26px; height:8px; flex:none;}
  .eyebrow.on-dark{color:#f0a765;}

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-family:'Sora', sans-serif;
    font-weight:600;
    font-size:16px;
    padding:17px 30px;
    border-radius:100px;
    text-decoration:none;
    border:1.5px solid transparent;
    cursor:pointer;
    max-width:100%;
    min-width:0;
    transition:transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    white-space:normal;
    text-align:center;
    line-height:1.3;
  }
  .btn:active{transform:scale(.97);}
  .btn-primary{
    background:linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    color:var(--cream);
    box-shadow:0 10px 30px -12px rgba(114,16,16,.55);
  }
  .btn-primary:hover{
    background:var(--orange);
    color:var(--maroon-deeper);
    box-shadow:0 14px 34px -12px rgba(211,104,24,.55);
    transform:translateY(-2px);
  }
  .btn-ghost{
    background:transparent;
    color:var(--maroon);
    border-color:rgba(114,16,16,.35);
  }
  .btn-ghost:hover{border-color:var(--maroon); background:rgba(114,16,16,.06);}
  .btn-on-dark{
    background:var(--orange);
    color:var(--maroon-deeper);
    box-shadow:0 10px 30px -12px rgba(0,0,0,.45);
  }
  .btn-on-dark:hover{background:var(--cream); color:var(--maroon-deep); transform:translateY(-2px);}
  .btn-outline-dark{
    background:transparent;
    color:var(--cream);
    border-color:rgba(245,237,228,.5);
  }
  .btn-outline-dark:hover{
    background:rgba(245,237,228,.1);
    border-color:var(--cream);
    transform:translateY(-2px);
  }
  .btn-big{
    padding:22px 40px;
    font-size:18px;
  }

  .cta-options{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
    margin-top:44px;
  }
  @media (max-width:560px){
    .cta-options{flex-direction:column; align-items:stretch;}
    .cta-options .btn{justify-content:center;}
  }
  @media (max-width:480px){
    .hero-actions .btn,
    .cta-options .btn{
      width:100%;
      white-space:normal;
      text-align:center;
      padding:18px 22px;
      font-size:15.5px;
    }
  }

  /* ---------- Header ---------- */
  .site-header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    padding:22px 0;
    transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  }
  .site-header .wrap{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; row-gap:8px;}
  .site-header .wrap > a{min-width:0; flex:0 1 auto;}
  .site-header.scrolled{
    background:rgba(245,240,237,.92);
    backdrop-filter:blur(10px);
    padding:14px 0;
    box-shadow:0 1px 0 rgba(114,16,16,.08);
  }
  .brand-logo{height:38px; width:auto; flex:0 1 auto; min-width:0;}
  .site-header nav{display:flex; align-items:center; gap:36px; min-width:0; flex:0 1 auto;}
  .site-header nav a.navlink{
    font-size:14.5px;
    font-weight:500;
    text-decoration:none;
    color:var(--ink);
    opacity:.8;
    transition:opacity .25s;
  }
  .site-header nav a.navlink:hover{opacity:1;}
  .nav-links{display:flex; gap:30px;}
  @media (max-width:860px){ .nav-links{display:none;} }
  @media (max-width:520px){
    .brand-logo{height:26px;}
    .site-header nav{gap:0;}
    .site-header .btn-primary{
      padding:11px 16px;
      font-size:12.5px;
      white-space:normal;
      text-align:center;
      line-height:1.25;
    }
  }

  /* ---------- Decorative spine dot chain (SVG inline via CSS mask reuse) ---------- */
  .dot-chain{display:flex; align-items:center; gap:4px;}
  .dot-chain i{
    display:block; border-radius:50%; background:currentColor;
  }
  .dot-chain i:nth-child(1){width:4px;height:4px;}
  .dot-chain i:nth-child(2){width:5px;height:5px;}
  .dot-chain i:nth-child(3){width:6px;height:6px;}
  .dot-chain i:nth-child(4){width:7px;height:7px;}

  /* ---------- Hero ---------- */
  .hero{
    padding:168px 0 96px;
    overflow:hidden;
    position:relative;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-10%; right:-10%;
    width:640px; height:640px;
    background:radial-gradient(circle, rgba(211,104,24,.10) 0%, rgba(211,104,24,0) 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
  }
  .hero-copy .eyebrow{margin-bottom:22px;}
  .hero-copy h1{
    font-size:clamp(2.3rem, 4.1vw, 3.6rem);
    color:var(--maroon-deeper);
    max-width:12.5ch;
  }
  .hero-copy .lede{
    margin-top:24px;
    font-size:18px;
    color:var(--ink-soft);
    max-width:46ch;
    line-height:1.65;
  }
  .hero-actions{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    margin-top:38px;
  }
  .hero-actions .microtext{
    font-size:13.5px;
    color:var(--ink-soft);
  }

  .hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .hero-photo-frame{
    position:relative;
    width:min(420px, 88vw);
    aspect-ratio:1/1.15;
  }
  .hero-photo-frame img.baby{
    width:100%; height:100%;
    object-fit:cover;
    border-radius:var(--radius-organic);
    box-shadow:0 40px 60px -28px rgba(43,15,13,.45);
  }
  .hero-ring{
    position:absolute;
    inset:-26px;
    width:calc(100% + 52px);
    height:calc(100% + 52px);
  }
  .hero-badge{
    position:absolute;
    left:-34px;
    bottom:34px;
    background:var(--cream);
    border-radius:20px;
    padding:16px 20px;
    box-shadow:0 20px 40px -16px rgba(43,15,13,.35);
    display:flex;
    align-items:center;
    gap:12px;
    max-width:230px;
  }
  .hero-badge .mark{width:30px; height:auto; flex:none;}
  .hero-badge span{font-size:13px; font-weight:600; color:var(--maroon-deeper); line-height:1.35;}
  @media (max-width:940px){
    .hero{padding-top:132px;}
    .hero-grid{grid-template-columns:1fr; gap:56px;}
    .hero-visual{order:-1; width:100%;}
    .hero-copy h1{max-width:none;}
    .hero-photo-frame{margin:0 auto;}
    .hero-photo-frame img.baby{border-radius:50%;}
    .hero-badge{left:50%; transform:translateX(-50%); bottom:-14px; max-width:280px; white-space:normal;}
  }

  /* ---------- Feature strip ---------- */
  .feature-strip{
    background:var(--cream-2);
    padding:44px 0;
  }
  .feature-strip .wrap{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
  }
  .feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
  }
  .feature-item svg{flex:none; margin-top:2px;}
  .feature-item p{font-size:15px; font-weight:500; color:var(--maroon-deeper);}
  @media (max-width:760px){
    .feature-strip .wrap{grid-template-columns:1fr; gap:20px;}
  }

  /* ---------- Section spacing ---------- */
  .section{padding:112px 0;}
  .section-tight{padding:88px 0;}
  @media (max-width:760px){ .section{padding:76px 0;} }

  .split{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:72px;
    align-items:center;
  }
  .split.reverse{grid-template-columns:1.05fr 0.95fr;}
  .split.reverse .split-media{order:2;}
  @media (max-width:900px){
    .split, .split.reverse{grid-template-columns:1fr; gap:44px;}
    .split.reverse .split-media{order:-1;}
  }

  .split-media{position:relative;}
  .split-media img{
    width:100%;
    border-radius:28px;
    box-shadow:0 30px 60px -30px rgba(43,15,13,.4);
  }
  .split-media .mark-watermark{
    position:absolute;
    width:120px;
    opacity:.5;
    z-index:2;
  }
  .illustration-photo{border-radius:28px;}

  .kicker-block h2{
    font-size:clamp(1.9rem, 3vw, 2.6rem);
    color:var(--maroon-deeper);
    margin-top:16px;
  }
  .kicker-block .body-copy{
    margin-top:20px;
    font-size:16.5px;
    color:var(--ink-soft);
    max-width:52ch;
  }

  .benefit-list{
    list-style:none;
    margin:30px 0 0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .benefit-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:16px;
    font-weight:500;
    color:var(--maroon-deeper);
  }
  .benefit-list svg{flex:none; margin-top:3px;}
  .benefit-list-desc li{font-weight:400; color:var(--ink-soft);}
  .benefit-list-desc li strong{color:var(--maroon-deeper); font-weight:600;}

  .list-label{
    margin-top:30px;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--orange-deep);
  }
  .about .list-label, .final-cta .list-label{color:#f0a765;}

  /* ---------- About ---------- */
  .about{
    background:var(--maroon-deeper);
    color:var(--on-dark);
  }
  .about .split{align-items:center;}
  .about-portrait{
    position:relative;
    max-width:360px;
    margin:0 auto;
  }
  .portrait-photo{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    object-position:top center;
    border-radius:28px;
    box-shadow:0 34px 64px -26px rgba(0,0,0,.55);
  }
  .portrait-badge{
    position:absolute;
    left:-26px;
    bottom:28px;
    background:var(--cream);
    border-radius:20px;
    padding:14px 18px;
    box-shadow:0 20px 40px -16px rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    gap:12px;
  }
  .portrait-badge .mark{width:26px; height:auto; flex:none;}
  .portrait-badge span{font-size:13.5px; font-weight:600; color:var(--maroon-deeper); line-height:1.35;}
  .portrait-badge span em{font-style:normal; font-weight:400; color:var(--ink-soft); font-size:12px;}
  @media (max-width:520px){
    .portrait-badge{left:0;}
  }
  .about .eyebrow{color:#f0a765;}
  .about h2{color:var(--cream); font-size:clamp(1.9rem, 3vw, 2.5rem); margin-top:16px;}
  .about .body-copy{color:var(--on-dark-soft); margin-top:20px; font-size:16.5px; max-width:50ch;}
  .about-tags{
    display:flex; flex-wrap:wrap; gap:10px; margin-top:28px;
  }
  .about-tags span{
    font-size:13px; font-weight:600; letter-spacing:.03em;
    padding:9px 16px; border-radius:100px;
    border:1px solid rgba(245,237,228,.28);
    color:var(--on-dark);
  }

  .credentials-list{
    list-style:none;
    margin:28px 0 0;
    padding:22px 0 0;
    border-top:1px solid rgba(245,237,228,.16);
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .credentials-list li{
    display:flex;
    align-items:flex-start;
    gap:13px;
    font-size:15px;
    line-height:1.5;
    color:var(--on-dark-soft);
  }
  .credentials-list li strong{color:var(--cream); font-weight:600;}
  .credentials-list svg{flex:none; margin-top:1px; color:#f0a765;}

  /* ---------- Process ---------- */
  .process{background:var(--cream);}
  .process-head{max-width:56ch; margin-bottom:60px;}
  .process-head h2{margin-top:16px; font-size:clamp(1.9rem, 3vw, 2.5rem); color:var(--maroon-deeper);}
  .process-steps{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:36px;
    position:relative;
  }
  .process-step{position:relative; padding-top:6px;}
  .process-step .num{
    font-family:'Fraunces', serif;
    font-size:15px;
    font-weight:500;
    color:var(--orange-deep);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
  }
  .process-step .num::after{
    content:"";
    height:1px;
    flex:1;
    background:rgba(114,16,16,.2);
  }
  .process-step h3{font-size:20px; color:var(--maroon-deeper); font-weight:500;}
  .process-step p{margin-top:10px; font-size:15px; color:var(--ink-soft);}
  @media (max-width:820px){
    .process-steps{grid-template-columns:1fr; gap:40px;}
  }

  /* ---------- Final CTA ---------- */
  .final-cta{
    background:
      radial-gradient(circle at 82% 18%, rgba(211,104,24,.28) 0%, rgba(211,104,24,0) 45%),
      linear-gradient(165deg, var(--maroon) 0%, var(--maroon-deep) 55%, var(--maroon-deeper) 100%);
    color:var(--on-dark);
    text-align:center;
    padding:130px 0;
    position:relative;
    overflow:hidden;
  }
  .final-cta .dot-chain{justify-content:center; margin-bottom:26px;}
  .final-cta .eyebrow{justify-content:center; width:100%;}
  .final-cta h2{
    font-size:clamp(2.1rem, 4.4vw, 3.4rem);
    max-width:18ch;
    margin:20px auto 0;
    color:var(--cream);
  }
  .final-cta .lede{
    max-width:52ch;
    margin:24px auto 0;
    font-size:17.5px;
    color:var(--on-dark-soft);
  }
  .final-cta .hero-actions{justify-content:center; margin-top:44px;}
  .final-cta .mark-bg{
    position:absolute;
    width:640px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    opacity:.05;
    pointer-events:none;
  }

  /* ---------- Footer ---------- */
  footer{
    background:var(--maroon-deeper);
    color:var(--on-dark-soft);
    padding:64px 0 28px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:48px;
    padding-bottom:44px;
    border-bottom:1px solid rgba(245,237,228,.12);
  }
  .footer-logo{height:34px; width:auto; margin-bottom:18px;}
  .footer-grid p{font-size:14.5px; line-height:1.7; max-width:34ch;}
  .footer-col h4{
    font-family:'Sora', sans-serif;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--on-dark);
    margin-bottom:18px;
    font-weight:600;
  }
  .footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;}
  .footer-col a{text-decoration:none; font-size:14.5px; color:var(--on-dark-soft); transition:color .2s;}
  .footer-col a:hover{color:var(--cream);}
  .footer-bottom{
    padding-top:26px;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    font-size:13px;
    color:rgba(217,195,186,.7);
  }
  @media (max-width:760px){
    .footer-grid{grid-template-columns:1fr; gap:34px;}
  }

  /* ---------- Reveal animation ---------- */
  [data-reveal]{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .8s var(--ease), transform .8s var(--ease);
  }
  [data-reveal].is-visible{opacity:1; transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    [data-reveal]{opacity:1; transform:none; transition:none;}
    .btn, .btn-primary:hover{transition:none; transform:none;}
  }

  :focus-visible{
    outline:2.5px solid var(--orange);
    outline-offset:3px;
  }
