:root{
    --navy:#16232E;
    --navy-light:#22354390;
    --navy-2:#1F3040;
    --gold:#C9962C;
    --gold-light:#E3B655;
    --gold-pale:#FBF1DE;
    --sage:#7A8B7F;
    --sage-light:#A9B6AC;
    --sage-pale:#EDF0E9;
    --paper:#F3F1EC;
    --cream:#FAF9F6;
    --white:#FFFFFF;
    --ink:#24242A;
    --stone:#6B7280;
    --line:#E1DED3;
    --rust:#B4432B;
  }
  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Calibri','Segoe UI',Arial,sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{ font-family:'Cambria','Georgia',serif; font-weight:700; color:var(--navy); }
  img{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; }
  ul{ list-style:none; }
  .wrap{ max-width:1280px; margin:0 auto; padding:0 48px; }
  :focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
  @media (prefers-reduced-motion: reduce){ *{ animation:none !important; transition:none !important; } }

  /* ---------- Announcement bar ---------- */
  .announce{
    background:var(--navy); color:var(--cream); text-align:center;
    font-size:13px; padding:10px 20px; letter-spacing:0.3px;
  }
  .announce strong{ color:var(--gold-light); }

  /* ---------- Header ---------- */
  header.site-header{
    position:sticky; top:0; z-index:200;
    background:rgba(255,255,255,0.92); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{
    display:flex; align-items:center; justify-content:space-between;
    height:88px;
  }
  .nav-left, .nav-right{ display:flex; align-items:center; gap:34px; }
  .logo-link{ display:flex; align-items:center; gap:12px; }
  .logo-link img{ height:46px; }
  .logo-wordmark{ display:flex; flex-direction:column; line-height:1; }
  .logo-wordmark .name{ font-family:'Cambria',serif; font-weight:700; font-size:21px; color:var(--navy); letter-spacing:0.2px; }
  .logo-wordmark .name em{ font-style:normal; color:var(--gold); }
  .logo-wordmark .tag{ font-size:9.5px; letter-spacing:1.6px; color:var(--stone); margin-top:2px; }
  nav.main-nav{ display:flex; gap:30px; }
  nav.main-nav a{
    font-size:15px; color:var(--ink); position:relative; padding:6px 0;
    transition:color .2s ease;
  }
  nav.main-nav a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold);
    transition:width .25s ease;
  }
  nav.main-nav a:hover{ color:var(--navy); }
  nav.main-nav a:hover::after{ width:100%; }
  .icon-btn{
    width:40px; height:40px; display:flex; align-items:center; justify-content:center;
    border-radius:50%; position:relative; transition:background .2s ease;
  }
  .icon-btn:hover{ background:var(--paper); }
  .icon-btn svg{ width:20px; height:20px; stroke:var(--navy); fill:none; stroke-width:1.6; }
  .cart-count{
    position:absolute; top:-2px; right:-2px; background:var(--gold); color:var(--navy);
    font-size:10.5px; font-weight:700; width:18px; height:18px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .cart-count.hidden{ display:none; }
  .nav-burger{ display:none; }

  .mobile-nav-overlay{
    position:fixed; inset:0; background:rgba(15,25,34,.5); z-index:298;
    opacity:0; visibility:hidden; transition:opacity .25s ease;
  }
  .mobile-nav-overlay.open{ opacity:1; visibility:visible; }
  .mobile-nav{
    position:fixed; top:0; right:0; bottom:0; width:min(320px, 84vw); background:var(--white);
    z-index:299; display:flex; flex-direction:column; padding:24px 28px; gap:6px;
    transform:translateX(100%); transition:transform .3s cubic-bezier(.2,.8,.2,1);
    box-shadow:-8px 0 32px rgba(0,0,0,.12);
  }
  .mobile-nav.open{ transform:translateX(0); }
  .mobile-nav-close{ align-self:flex-end; margin-bottom:18px; }
  .mobile-nav a{
    font-family:'Fraunces',serif; font-size:20px; color:var(--navy); padding:14px 0;
    border-bottom:1px solid var(--line);
  }

  @media (max-width: 900px){
    nav.main-nav{ display:none; }
    .nav-burger{ display:flex; }
    .nav-left, .nav-right{ gap:14px; }
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative; display:grid; grid-template-columns:1fr 1.15fr;
    min-height:640px; background:var(--navy); overflow:hidden;
  }
  .hero-copy{
    position:relative; z-index:3; padding:80px 64px 80px 48px;
    display:flex; flex-direction:column; justify-content:center;
  }
  .hero-copy .mark{ width:52px; height:auto; margin-bottom:28px; }
  .hero-copy h1{
    color:var(--white); font-size:52px; line-height:1.06; letter-spacing:-0.01em;
    max-width:480px;
  }
  .hero-copy p.sub{
    color:#C7CDD4; font-size:17px; line-height:1.55; max-width:420px; margin-top:22px;
  }
  .hero-actions{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 30px; font-size:14.5px; font-weight:600; border-radius:3px;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn-gold{ background:var(--gold); color:var(--navy); }
  .btn-gold:hover{ background:var(--gold-light); transform:translateY(-1px); }
  .btn-outline-light{ border:1.5px solid rgba(255,255,255,0.5); color:var(--white); }
  .btn-outline-light:hover{ border-color:var(--white); background:rgba(255,255,255,0.08); }
  .btn-navy{ background:var(--navy); color:var(--white); }
  .btn-navy:hover{ background:#22344a; }
  .btn-outline-navy{ border:1.5px solid var(--navy); color:var(--navy); }
  .btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
  .btn-block{ width:100%; }
  .btn-sm{ padding:11px 20px; font-size:13px; }
  .btn[disabled]{ opacity:0.45; cursor:not-allowed; pointer-events:none; }

  .hero-trust{ display:flex; gap:28px; margin-top:46px; flex-wrap:wrap; }
  .hero-trust div{ font-size:12.5px; color:#9AA4B0; display:flex; align-items:center; gap:8px; }
  .hero-trust svg{ width:16px; height:16px; stroke:var(--gold-light); fill:none; stroke-width:1.8; flex-shrink:0; }

  .hero-photo{ position:relative; }
  .hero-photo img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
  .hero-photo .grade{
    position:absolute; inset:0;
    background:linear-gradient(105deg, var(--navy) 0%, rgba(22,35,46,0.75) 16%, rgba(22,35,46,0.08) 42%, rgba(22,35,46,0) 60%);
  }
  .ridge{
    position:absolute; left:0; right:0; bottom:-1px; height:64px;
    fill:var(--white);
  }

  /* ---------- Trust strip ---------- */
  .trust-strip{ background:var(--white); border-bottom:1px solid var(--line); }
  .trust-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
    padding:34px 48px;
  }
  .trust-item{ display:flex; align-items:center; gap:14px; }
  .trust-item svg{ width:30px; height:30px; stroke:var(--gold); fill:none; stroke-width:1.4; flex-shrink:0; }
  .trust-item div{ display:flex; flex-direction:column; }
  .trust-item strong{ font-size:14px; color:var(--navy); font-weight:700; }
  .trust-item span{ font-size:12.5px; color:var(--stone); margin-top:1px; }

  /* ---------- Collections ---------- */
  .collections{ padding:88px 0; background:var(--cream); }
  .collections-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
  .collection-card{
    position:relative; display:block; height:460px; border-radius:4px; overflow:hidden;
    isolation:isolate;
  }
  .collection-card img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
    transition:transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .collection-card:hover img{ transform:scale(1.05); }
  .collection-overlay{
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(22,35,46,0.92) 0%, rgba(22,35,46,0.45) 45%, rgba(22,35,46,0.05) 75%);
  }
  .collection-overlay.sage-overlay{
    background:linear-gradient(0deg, rgba(30,38,33,0.92) 0%, rgba(30,38,33,0.45) 45%, rgba(30,38,33,0.05) 75%);
  }
  .collection-copy{ position:absolute; left:0; right:0; bottom:0; padding:36px; z-index:2; }
  .collection-copy .eyebrow{ color:var(--gold-light); font-size:13px; font-weight:600; letter-spacing:0.4px; }
  .sage .collection-copy .eyebrow{ color:var(--sage-light); }
  .collection-copy h3{ color:var(--white); font-size:32px; margin-top:8px; }
  .collection-copy p{ color:#D7DBDF; font-size:14.5px; max-width:360px; margin-top:10px; line-height:1.5; }
  .collection-link{
    display:inline-flex; align-items:center; gap:8px; color:var(--white); font-size:14px; font-weight:600;
    margin-top:18px; border-bottom:1px solid rgba(255,255,255,0.4); padding-bottom:4px;
  }
  .collection-link svg{ stroke:var(--white); fill:none; stroke-width:2; transition:transform .2s ease; }
  .collection-card:hover .collection-link svg{ transform:translateX(4px); }

  /* ---------- Shop ---------- */
  .shop{ padding:96px 0 60px; }
  .shop-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:32px;
    margin-bottom:48px; flex-wrap:wrap;
  }
  .section-eyebrow{ color:var(--gold); font-size:13px; font-weight:700; letter-spacing:0.5px; }
  .shop-head h2{
    font-size:32px; line-height:1.2; max-width:600px; margin-top:10px; font-weight:700;
  }
  .shop-filters{ display:flex; gap:8px; }
  .filter-btn{
    padding:9px 18px; border:1px solid var(--line); border-radius:20px; font-size:13.5px;
    color:var(--stone); transition:all .2s ease;
  }
  .filter-btn:hover{ border-color:var(--navy); color:var(--navy); }
  .filter-btn.active{ background:var(--navy); border-color:var(--navy); color:var(--white); }

  .product-grid{
    display:grid; grid-template-columns:repeat(6, 1fr); gap:24px;
  }
  .product-card{
    position:relative; display:flex; flex-direction:column;
    border:1px solid var(--line); border-radius:4px; overflow:hidden; background:var(--white);
    transition:box-shadow .25s ease, transform .25s ease;
    grid-column:span 2;
  }
  .product-card.hero-card{ grid-column:span 3; grid-row:span 2; }
  .product-card:hover{ box-shadow:0 18px 40px -18px rgba(22,35,46,0.28); transform:translateY(-3px); }
  .product-media{ position:relative; aspect-ratio:1/1; background:var(--paper); overflow:hidden; }
  .hero-card .product-media{ aspect-ratio:auto; height:100%; min-height:340px; }
  .product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
  .product-card:hover .product-media img{ transform:scale(1.04); }
  .icon-media{ display:flex; align-items:center; justify-content:center; }
  .icon-media.travel{ background:linear-gradient(155deg, var(--sage-pale) 0%, #E4E9DF 100%); }
  .icon-media.senior{ background:linear-gradient(155deg, var(--gold-pale) 0%, #F5E7C8 100%); }
  .product-icon{ width:46%; color:var(--navy); opacity:.88; transition:transform .5s ease; }
  .hero-card .product-icon{ width:34%; }
  .product-card:hover .product-icon{ transform:scale(1.06) translateY(-2px); }
  .product-badge{
    position:absolute; top:14px; left:14px; background:var(--navy); color:var(--gold-light);
    font-size:10.5px; font-weight:700; letter-spacing:0.6px; padding:5px 11px; border-radius:20px;
    z-index:2;
  }
  .product-badge.sage-badge{ background:var(--sage); color:var(--white); }
  .quick-add{
    position:absolute; right:14px; bottom:14px; width:40px; height:40px; border-radius:50%;
    background:var(--white); display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 16px rgba(0,0,0,0.18); opacity:0; transform:translateY(8px);
    transition:opacity .2s ease, transform .2s ease; z-index:2;
  }
  .product-card:hover .quick-add{ opacity:1; transform:translateY(0); }
  .quick-add svg{ width:18px; height:18px; stroke:var(--navy); fill:none; stroke-width:1.8; }
  .product-info{ padding:18px 20px 22px; display:flex; flex-direction:column; flex:1; }
  .hero-card .product-info{ padding:26px 28px 30px; }
  .product-collection{ font-size:11px; color:var(--stone); letter-spacing:0.4px; text-transform:uppercase; }
  .product-name{ font-family:'Cambria',serif; font-weight:700; font-size:17px; color:var(--navy); margin-top:6px; line-height:1.3; }
  .hero-card .product-name{ font-size:24px; }
  .product-desc{ font-size:13px; color:var(--stone); margin-top:6px; line-height:1.45; display:none; }
  .hero-card .product-desc{ display:block; }
  .product-bottom{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:14px; }
  .product-price{ font-size:16px; font-weight:700; color:var(--navy); }
  .product-price .was{ font-size:12.5px; color:var(--stone); text-decoration:line-through; font-weight:400; margin-left:6px; }
  .product-rating{ display:flex; align-items:center; gap:4px; font-size:12px; color:var(--stone); }
  .product-rating svg{ width:12px; height:12px; fill:var(--gold); stroke:none; }
  .product-tested{ display:flex; align-items:center; gap:5px; font-size:11.5px; font-weight:600; color:var(--sage); }
  .product-tested svg{ width:13px; height:13px; fill:none; stroke:var(--sage); stroke-width:1.8; }

  @media (max-width: 1080px){
    .product-grid{ grid-template-columns:repeat(4,1fr); }
    .product-card{ grid-column:span 2; }
    .product-card.hero-card{ grid-column:span 4; grid-row:span 1; }
    .hero-card .product-media{ aspect-ratio:16/9; min-height:0; }
  }
  @media (max-width: 640px){
    .product-grid{ grid-template-columns:repeat(2,1fr); }
    .product-card, .product-card.hero-card{ grid-column:span 2; }
  }

  /* ---------- Cart drawer ---------- */
  .cart-overlay{
    position:fixed; inset:0; background:rgba(22,35,46,0.5); z-index:300;
    opacity:0; pointer-events:none; transition:opacity .3s ease;
  }
  .cart-overlay.open{ opacity:1; pointer-events:auto; }
  .cart-drawer{
    position:fixed; top:0; right:0; bottom:0; width:440px; max-width:92vw;
    background:var(--white); z-index:301; display:flex; flex-direction:column;
    transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.7,.2,1);
    box-shadow:-20px 0 50px rgba(0,0,0,0.15);
  }
  .cart-drawer.open{ transform:translateX(0); }
  .cart-drawer-head{
    display:flex; justify-content:space-between; align-items:center;
    padding:24px 26px; border-bottom:1px solid var(--line);
  }
  .cart-drawer-head h3{ font-size:19px; }
  .cart-drawer-body{ flex:1; overflow-y:auto; padding:10px 26px; }
  .cart-line{
    display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--line);
  }
  .cart-line img{ width:76px; height:76px; object-fit:cover; border-radius:3px; background:var(--paper); flex-shrink:0; }
  .cart-line-icon{ width:76px; height:76px; border-radius:3px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--navy); }
  .cart-line-icon svg{ width:60%; opacity:.85; }
  .cart-line-icon.travel{ background:linear-gradient(155deg, var(--sage-pale) 0%, #E4E9DF 100%); }
  .cart-line-icon.senior{ background:linear-gradient(155deg, var(--gold-pale) 0%, #F5E7C8 100%); }
  .cart-line-info{ flex:1; display:flex; flex-direction:column; }
  .cart-line-name{ font-size:14px; font-weight:600; color:var(--navy); }
  .cart-line-variant{ font-size:12px; color:var(--stone); margin-top:2px; }
  .cart-line-bottom{ display:flex; justify-content:space-between; align-items:center; margin-top:auto; padding-top:8px; }
  .qty-stepper{ display:flex; align-items:center; border:1px solid var(--line); border-radius:20px; }
  .qty-stepper button{ width:26px; height:26px; font-size:15px; color:var(--navy); }
  .qty-stepper span{ font-size:13px; min-width:20px; text-align:center; }
  .cart-line-price{ font-size:14px; font-weight:700; color:var(--navy); }
  .cart-line-remove{ font-size:11.5px; color:var(--stone); text-decoration:underline; margin-top:4px; }
  .cart-empty{ text-align:center; padding:60px 20px; color:var(--stone); }
  .cart-empty svg{ width:44px; height:44px; stroke:var(--line); fill:none; stroke-width:1.2; margin-bottom:14px; }
  .cart-drawer-foot{ padding:20px 26px 26px; border-top:1px solid var(--line); }
  .cart-subtotal-row{ display:flex; justify-content:space-between; font-size:15px; margin-bottom:6px; }
  .cart-subtotal-row strong{ color:var(--navy); }
  .cart-shipnote{ font-size:12px; color:var(--stone); margin-bottom:16px; }
  .cart-shipnote strong{ color:var(--sage); }

  /* ---------- Product modal ---------- */
  .modal-overlay{
    position:fixed; inset:0; background:rgba(22,35,46,0.55); z-index:400;
    opacity:0; pointer-events:none; transition:opacity .3s ease;
  }
  .modal-overlay.open{ opacity:1; pointer-events:auto; }
  .product-modal{
    position:fixed; top:50%; left:50%; transform:translate(-50%, -48%) scale(0.97);
    width:920px; max-width:92vw; max-height:88vh; overflow-y:auto;
    background:var(--white); z-index:401; border-radius:6px;
    opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
  }
  .product-modal.open{ opacity:1; pointer-events:auto; transform:translate(-50%, -50%) scale(1); }
  .modal-close{
    position:absolute; top:18px; right:18px; z-index:5; width:36px; height:36px;
    border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
  }
  .modal-close svg{ width:16px; height:16px; stroke:var(--navy); fill:none; stroke-width:2; }
  .pdp{ display:grid; grid-template-columns:1fr 1fr; }
  .pdp-media{ background:var(--paper); position:relative; min-height:460px; display:flex; align-items:center; justify-content:center; }
  .pdp-icon{ width:42%; }
  .pdp-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
  .pdp-info{ padding:48px 44px; display:flex; flex-direction:column; }
  .pdp-collection{ font-size:12px; letter-spacing:0.4px; text-transform:uppercase; color:var(--stone); }
  .pdp-name{ font-size:28px; margin-top:8px; line-height:1.2; }
  .pdp-rating{ display:flex; align-items:center; gap:6px; margin-top:10px; font-size:13px; color:var(--sage); font-weight:600; }
  .pdp-rating svg{ width:14px; height:14px; fill:none; stroke:var(--sage); stroke-width:1.8; }
  .pdp-price{ font-size:24px; font-weight:700; color:var(--navy); margin-top:16px; }
  .pdp-price .was{ font-size:15px; color:var(--stone); text-decoration:line-through; font-weight:400; margin-left:8px; }
  .pdp-desc{ font-size:14.5px; color:var(--ink); line-height:1.6; margin-top:16px; }
  .pdp-features{ margin-top:20px; display:flex; flex-direction:column; gap:9px; }
  .pdp-features li{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--ink); }
  .pdp-features svg{ width:15px; height:15px; stroke:var(--sage); fill:none; stroke-width:2.4; flex-shrink:0; margin-top:2px; }
  .pdp-size-label{ font-size:12.5px; font-weight:700; color:var(--navy); margin-top:26px; letter-spacing:0.2px; }
  .pdp-sizes{ display:flex; gap:8px; margin-top:10px; flex-wrap:wrap; }
  .size-chip{
    padding:9px 16px; border:1.5px solid var(--line); border-radius:4px; font-size:13px; color:var(--ink);
    transition:all .15s ease;
  }
  .size-chip.active{ border-color:var(--navy); background:var(--navy); color:var(--white); }
  .pdp-qty-row{ display:flex; align-items:center; gap:16px; margin-top:24px; }
  .pdp-actions{ display:flex; gap:12px; margin-top:14px; }
  .pdp-actions .btn{ flex:1; }
  .pdp-guarantee{ display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--stone); margin-top:20px; }

  /* ---------- Subscribe & Save ---------- */
  .purchase-options{ margin:20px 0; border:1px solid var(--line); border-radius:6px; overflow:hidden; }
  .purchase-option{ display:flex; align-items:center; gap:12px; padding:14px 16px; cursor:pointer; border-bottom:1px solid var(--line); transition:background .15s ease; }
  .purchase-option:last-of-type{ border-bottom:none; }
  .purchase-option:hover{ background:var(--paper); }
  .purchase-option.active{ background:var(--gold-pale); }
  .purchase-option input{ position:absolute; opacity:0; pointer-events:none; }
  .po-radio{ width:18px; height:18px; border-radius:50%; border:1.5px solid var(--stone); flex-shrink:0; position:relative; }
  .purchase-option.active .po-radio{ border-color:var(--gold); }
  .purchase-option.active .po-radio::after{ content:''; position:absolute; inset:3px; border-radius:50%; background:var(--gold); }
  .po-label{ flex:1; font-size:13.5px; color:var(--ink); line-height:1.4; }
  .po-label strong{ color:var(--sage); }
  .po-price{ font-size:14px; font-weight:700; color:var(--navy); flex-shrink:0; }
  .frequency-row{ display:flex; align-items:center; gap:10px; padding:0 16px 14px; }
  .frequency-row label{ font-size:12.5px; color:var(--stone); }
  .frequency-row select{ flex:1; padding:8px 10px; border:1px solid var(--line); border-radius:4px; font-size:13px; font-family:inherit; }
  .sub-fineprint{ font-size:11px; color:var(--stone); padding:0 16px 14px; line-height:1.4; }
  .supplement-note{ font-size:11.5px; color:var(--stone); line-height:1.5; background:var(--paper); border-radius:5px; padding:12px 14px; margin-top:14px; }
  .sub-badge{ color:var(--sage); font-weight:600; }
  .pdp-guarantee svg{ width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.6; }

  @media (max-width: 760px){
    .pdp{ grid-template-columns:1fr; }
    .pdp-media{ min-height:280px; }
    .pdp-info{ padding:32px 24px; }
  }

  /* ---------- Checkout ---------- */
  .checkout-overlay{
    position:fixed; inset:0; background:var(--cream); z-index:500;
    opacity:0; pointer-events:none; transition:opacity .25s ease;
    overflow-y:auto;
  }
  .checkout-overlay.open{ opacity:1; pointer-events:auto; }
  .checkout-header{
    display:flex; justify-content:space-between; align-items:center;
    padding:22px 48px; border-bottom:1px solid var(--line); background:var(--white);
  }
  .checkout-exit{
    display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--stone);
  }
  .checkout-exit:hover{ color:var(--navy); }
  .checkout-exit svg{ stroke:currentColor; fill:none; stroke-width:2; }

  .checkout-steps{
    display:flex; justify-content:center; gap:36px; padding:22px 20px 6px; background:var(--white);
    border-bottom:1px solid var(--line);
  }
  .step-pill{ display:flex; align-items:center; gap:9px; font-size:13px; color:var(--stone); padding-bottom:16px; border-bottom:2px solid transparent; }
  .step-pill .num{
    width:22px; height:22px; border-radius:50%; border:1.5px solid var(--line); color:var(--stone);
    display:flex; align-items:center; justify-content:center; font-size:11.5px; font-weight:700;
  }
  .step-pill.active{ color:var(--navy); border-color:var(--gold); }
  .step-pill.active .num{ background:var(--navy); border-color:var(--navy); color:var(--white); }
  .step-pill.done .num{ background:var(--sage); border-color:var(--sage); color:var(--white); }
  .step-pill.done{ color:var(--navy); }

  .checkout-body{
    display:grid; grid-template-columns:1fr 420px; max-width:1180px; margin:0 auto; gap:0;
    min-height:calc(100vh - 140px);
  }
  .checkout-main{ padding:48px 64px; }
  .checkout-summary{
    background:var(--white); border-left:1px solid var(--line); padding:48px 40px;
  }
  .co-section-title{ font-size:20px; margin-bottom:22px; }
  .co-form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .co-field{ display:flex; flex-direction:column; margin-bottom:16px; }
  .co-field.full{ grid-column:1 / -1; }
  .co-field label{ font-size:12.5px; font-weight:600; color:var(--navy); margin-bottom:7px; }
  .co-field input, .co-field select{
    padding:13px 14px; border:1.5px solid var(--line); border-radius:4px; font-size:14.5px;
    font-family:inherit; color:var(--ink); transition:border-color .15s ease;
  }
  .co-field input:focus, .co-field select:focus{ border-color:var(--gold); outline:none; }
  .co-field input.error{ border-color:var(--rust); }
  .co-error{ font-size:11.5px; color:var(--rust); margin-top:5px; display:none; }
  .co-field.has-error .co-error{ display:block; }
  .co-divider{ height:1px; background:var(--line); margin:32px 0; }
  .co-actions{ display:flex; justify-content:space-between; align-items:center; margin-top:32px; }
  .co-back{ font-size:13.5px; color:var(--stone); }
  .co-back:hover{ color:var(--navy); }

  .pay-methods{ display:flex; gap:10px; margin-bottom:20px; }
  .pay-method{
    flex:1; padding:14px; border:1.5px solid var(--line); border-radius:5px; text-align:center;
    font-size:13px; font-weight:600; color:var(--stone); cursor:pointer;
  }
  .pay-method.active{ border-color:var(--navy); color:var(--navy); background:var(--paper); }

  .summary-line{ display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
  .summary-line img{ width:60px; height:60px; object-fit:cover; border-radius:3px; background:var(--paper); }
  .summary-line .cart-line-icon{ width:60px; height:60px; }
  .summary-line .cart-line-icon svg{ width:58%; }
  .summary-line-info{ flex:1; display:flex; flex-direction:column; justify-content:center; }
  .summary-line-name{ font-size:13px; font-weight:600; color:var(--navy); }
  .summary-line-meta{ font-size:11.5px; color:var(--stone); margin-top:2px; }
  .summary-line-price{ font-size:13.5px; font-weight:700; color:var(--navy); align-self:center; }
  .summary-totals{ margin-top:18px; display:flex; flex-direction:column; gap:9px; }
  .summary-totals .row{ display:flex; justify-content:space-between; font-size:13.5px; color:var(--stone); }
  .summary-totals .row.grand{ font-size:17px; color:var(--navy); font-weight:700; padding-top:10px; border-top:1px solid var(--line); margin-top:4px; }
  .demo-notice{ background:var(--gold-pale); border:1px solid rgba(201,150,44,.35); border-radius:5px; padding:14px 16px; font-size:12.5px; color:var(--ink); line-height:1.5; margin-bottom:22px; }
  .sub-disclosure{ background:var(--sage-pale); border:1px solid rgba(122,139,127,.3); border-radius:5px; padding:18px 20px; font-size:12.5px; color:var(--ink); line-height:1.55; margin-bottom:16px; }
  .sub-disclosure strong{ display:block; margin-bottom:8px; font-size:13.5px; color:var(--navy); }
  .sub-disclosure ul{ margin:0 0 10px 18px; padding:0; }
  .sub-disclosure li{ margin-bottom:4px; }
  .sub-disclosure p{ color:var(--stone); font-style:italic; margin:0; }
  .promo-row{ display:flex; gap:8px; margin-top:18px; }
  .promo-row input{ flex:1; padding:10px 12px; border:1.5px solid var(--line); border-radius:4px; font-size:13px; }

  .co-confirm{ text-align:center; padding:60px 20px; max-width:520px; margin:0 auto; }
  .co-confirm .check-circle{
    width:72px; height:72px; border-radius:50%; background:var(--sage); display:flex; align-items:center;
    justify-content:center; margin:0 auto 26px;
  }
  .co-confirm .check-circle svg{ width:34px; height:34px; stroke:var(--white); fill:none; stroke-width:2.5; }
  .co-confirm h2{ font-size:28px; }
  .co-confirm p{ color:var(--stone); margin-top:12px; font-size:15px; line-height:1.55; }
  .co-order-num{ display:inline-block; background:var(--paper); padding:10px 20px; border-radius:20px; font-size:13.5px; font-weight:700; color:var(--navy); margin-top:20px; }

  @media (max-width: 900px){
    .checkout-body{ grid-template-columns:1fr; }
    .checkout-summary{ border-left:none; border-top:1px solid var(--line); order:-1; }
    .checkout-main{ padding:36px 24px; }
    .co-form-grid{ grid-template-columns:1fr; }
    .checkout-steps{ gap:16px; padding-left:10px; padding-right:10px; }
    .step-pill span.label{ display:none; }
  }
  /* ---------- Our Story ---------- */
  /* ---------- Kits ---------- */
  .kits{ padding:100px 0 90px; }
  .section-head-center{ text-align:center; max-width:560px; margin:0 auto 56px; }
  .section-head-center h2{ font-size:32px; margin-top:10px; }
  .kits-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
  .kit-card{ display:flex; gap:28px; padding:32px; border-radius:6px; background:var(--paper); align-items:flex-start; }
  .kit-card.senior{ background:var(--gold-pale); }
  .kit-icons{ display:grid; grid-template-columns:repeat(2, 1fr); gap:8px; flex-shrink:0; width:120px; }
  .kit-icon{ width:56px; height:56px; background:var(--white); border-radius:6px; display:flex; align-items:center; justify-content:center; color:var(--navy); padding:10px; }
  .kit-icon svg{ width:100%; height:100%; }
  .kit-name{ font-family:'Fraunces',serif; font-size:21px; font-weight:600; color:var(--navy); }
  .kit-tagline{ font-size:13.5px; color:var(--stone); margin-top:6px; line-height:1.5; }
  .kit-items{ margin:14px 0; padding-left:18px; }
  .kit-items li{ font-size:12.5px; color:var(--ink); margin-bottom:4px; list-style:disc; }
  .kit-pricing{ display:flex; align-items:baseline; gap:10px; margin-bottom:16px; flex-wrap:wrap; }
  .kit-price{ font-size:20px; font-weight:700; color:var(--navy); }
  .kit-was{ font-size:14px; color:var(--stone); text-decoration:line-through; }
  .kit-save{ font-size:11.5px; font-weight:600; color:var(--sage); background:rgba(122,139,127,.12); padding:3px 8px; border-radius:3px; }

  /* ---------- Subscribe & Save ---------- */
  .subscribe-promo{ background:var(--navy); padding:100px 0; }
  .subscribe-wrap{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:64px; align-items:start; }
  .section-eyebrow.light{ color:var(--gold-light); }
  .subscribe-copy h2{ color:var(--white); font-size:34px; margin:10px 0 18px; line-height:1.2; }
  .subscribe-lead{ color:#C7CDD4; font-size:15.5px; line-height:1.65; max-width:520px; margin-bottom:36px; }
  .subscribe-steps{ display:flex; flex-direction:column; gap:22px; margin-bottom:36px; }
  .subscribe-step{ display:flex; gap:16px; align-items:flex-start; }
  .step-num{
    flex-shrink:0; width:30px; height:30px; border-radius:50%; border:1.5px solid var(--gold);
    color:var(--gold-light); font-family:'Fraunces',serif; font-weight:600; font-size:14px;
    display:flex; align-items:center; justify-content:center;
  }
  .subscribe-step strong{ color:var(--white); font-size:14.5px; display:block; margin-bottom:4px; }
  .subscribe-step p{ color:#9AA4B0; font-size:13px; line-height:1.5; }

  .subscribe-products{ background:var(--navy-2); border-radius:8px; padding:28px; }
  .subscribe-eyebrow-sm{ color:#8B96A1; font-size:11.5px; font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom:16px; }
  .sub-product-row{ display:flex; align-items:center; gap:14px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08); cursor:pointer; }
  .sub-product-row:last-of-type{ border-bottom:none; }
  .sub-product-row .sp-icon{ width:40px; height:40px; flex-shrink:0; background:rgba(255,255,255,.06); border-radius:5px; display:flex; align-items:center; justify-content:center; color:var(--gold-light); padding:8px; }
  .sub-product-row .sp-icon svg{ width:100%; height:100%; }
  .sub-product-row .sp-name{ color:var(--white); font-size:13.5px; font-weight:600; }
  .sub-product-row .sp-price{ color:#8B96A1; font-size:12px; margin-top:2px; }
  .subscribe-fineprint{ color:#6B7680; font-size:11px; line-height:1.5; margin-top:20px; }

  .story{ padding:100px 0; background:var(--paper); }
  .story-wrap{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
  .story-media{ display:flex; align-items:center; justify-content:center; }
  .story-icon-block{
    width:100%; aspect-ratio:1/1; max-width:400px; border-radius:6px;
    background:linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
    display:flex; align-items:center; justify-content:center;
  }
  .story-copy h2{ font-size:34px; margin:10px 0 22px; line-height:1.2; max-width:520px; }
  .story-copy p{ color:var(--ink); font-size:15.5px; line-height:1.65; max-width:560px; margin-bottom:18px; }
  .story-copy .btn{ margin-top:12px; }

  /* ---------- Reviews ---------- */
  .reviews{ padding:100px 0; }
  .reviews-head{ text-align:center; max-width:600px; margin:0 auto 56px; }
  .reviews-head h2{ font-size:32px; margin-top:10px; }
  .testing-sub{ font-size:15px; color:var(--stone); line-height:1.55; margin-top:14px; }
  .testing-grid{ display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; }
  .testing-card{ background:var(--paper); border-radius:6px; padding:28px 20px; text-align:center; }
  .testing-icon{ width:44px; height:44px; margin:0 auto 16px; color:var(--sage); }
  .testing-icon svg{ width:100%; height:100%; }
  .testing-card h3{ font-family:'Fraunces',serif; font-size:16.5px; font-weight:600; color:var(--navy); margin-bottom:8px; }
  .testing-card p{ font-size:12.5px; line-height:1.5; color:var(--stone); }
  .testing-note{ text-align:center; font-size:12px; color:var(--stone); font-style:italic; margin-top:32px; }

  /* ---------- Newsletter ---------- */
  .newsletter{ background:var(--navy); padding:72px 0; }
  .newsletter-wrap{ display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
  .newsletter h2{ color:var(--white); font-size:28px; }
  .newsletter p{ color:#B8C0C9; font-size:14.5px; margin-top:8px; max-width:420px; }
  .newsletter-form{ display:flex; gap:10px; flex-shrink:0; }
  .newsletter-form input{
    width:280px; padding:14px 18px; border-radius:3px; border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08); color:var(--white); font-size:14px; font-family:inherit;
  }
  .newsletter-form input::placeholder{ color:#85909C; }
  .newsletter-form input:focus{ outline:none; border-color:var(--gold); background:rgba(255,255,255,.12); }
  .newsletter-msg{ font-size:12.5px; margin-top:10px; }

  /* ---------- Footer ---------- */
  .site-footer{ background:#0F1922; padding:72px 0 0; }
  .footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1.1fr; gap:32px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1); }
  .footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .footer-logo span{ font-family:'Fraunces',serif; font-weight:600; font-size:18px; color:var(--white); }
  .footer-brand p{ color:#8B96A1; font-size:13.5px; line-height:1.6; max-width:240px; }
  .footer-col h4{ color:var(--white); font-size:13px; font-weight:600; margin-bottom:18px; letter-spacing:.3px; }
  .footer-col a{ display:block; color:#8B96A1; font-size:13.5px; margin-bottom:12px; transition:color .15s ease; }
  .footer-col a:hover{ color:var(--gold-light); }
  .footer-social{ display:flex; gap:12px; margin-top:16px; }
  .footer-social a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; color:#8B96A1; }
  .footer-social a:hover{ color:var(--gold-light); border-color:var(--gold-light); }
  .footer-social svg{ width:16px; height:16px; }
  .footer-bottom{ display:flex; justify-content:space-between; padding:24px 0; font-size:12.5px; color:#697682; }

  @media (max-width: 900px){
    .kits-grid{ grid-template-columns:1fr; }
    .kit-card{ flex-direction:column; }
    .kit-icons{ width:auto; grid-template-columns:repeat(4, 1fr); }
    .subscribe-wrap{ grid-template-columns:1fr; gap:40px; }
    .story-wrap{ grid-template-columns:1fr; }
    .story-media{ order:-1; }
    .testing-grid{ grid-template-columns:repeat(2,1fr); }
    .newsletter-wrap{ flex-direction:column; align-items:flex-start; }
    .newsletter-form{ width:100%; }
    .newsletter-form input{ flex:1; width:auto; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .footer-brand{ grid-column:span 2; }
    .footer-bottom{ flex-direction:column; gap:10px; }
  }