
  :root{
    --bordeaux-950:#430e19;
    --bordeaux-900:#5c1422;
    --bordeaux-800:#7A1A2E;
    --bordeaux-700:#9C0F1E;
    --gold-500:#E6C757;
    --gold-300:#f1e1a4;
    --cream-50:#f8f3ea;
    --cream-100:#f1e9db;
    --ink-900:#211712;
    --ink-700:#4a3a32;
    --forest-600:#3d6a49;
    --forest-700:#2e5138;
    --line: rgba(33,23,18,0.12);
    --bg: var(--cream-50);
    --bg-alt: var(--cream-100);
    --surface: #ffffff;
    --text: var(--ink-900);
    --text-muted: var(--ink-700);
    --brand: var(--bordeaux-800);
    --brand-deep: var(--bordeaux-950);
    --accent: var(--gold-500);
  }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg:#170a0c;
      --bg-alt:#1e0d10;
      --surface:#241014;
      --text:#f3e9de;
      --text-muted:#cdb9ad;
      --line: rgba(243,233,222,0.14);
    }
  }
  :root[data-theme="dark"]{
    --bg:#170a0c;
    --bg-alt:#1e0d10;
    --surface:#241014;
    --text:#f3e9de;
    --text-muted:#cdb9ad;
    --line: rgba(243,233,222,0.14);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth; overflow-x:hidden;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Work Sans', sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    width:100%;
  }
  img{max-width:100%;display:block;}
  a{color:inherit; text-decoration:none;}
  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:450;
    margin:0;
    color:var(--text);
    letter-spacing:-0.01em;
  }
  .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  ::selection{background:var(--gold-300); color:var(--brand-deep);}
  :focus-visible{outline:2px solid var(--accent); outline-offset:3px;}

  /* ---------- NAV ---------- */
  header.site-nav{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(248,243,234,0.98);
    border-bottom:1px solid var(--line);
  }
  :root[data-theme="dark"] header.site-nav{ background:rgba(23,10,12,0.98); }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]) header.site-nav{ background:rgba(23,10,12,0.98); }
  }
  .nav-inner{
    max-width:1180px;
    margin:0 auto;
    padding:14px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }
  .brand-mark{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    background:none;
    border:none;
    padding:0;
  }
  .brand-mark img{height:40px;width:auto;border-radius:50%;}
  .brand-mark span{
    font-family:'Fraunces', serif;
    font-size:1.15rem;
    color:var(--brand);
    letter-spacing:0.02em;
  }
  nav.links{
    display:flex;
    gap:2px;
    flex-wrap:wrap;
  }
  nav.links a{
    background:none;
    border:none;
    font-family:'Work Sans', sans-serif;
    font-size:0.86rem;
    letter-spacing:0.03em;
    color:var(--text-muted);
    padding:9px 14px;
    cursor:pointer;
    border-radius:20px;
    transition:background .2s ease, color .2s ease;
  }
  nav.links a:hover{color:var(--text);}
  nav.links a.active{
    background:var(--brand);
    color:var(--cream-50);
  }
  .nav-cta{
    display:none;
  }
  @media(min-width:860px){
    .nav-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:var(--accent);
      color:var(--brand-deep);
      padding:10px 18px;
      border-radius:24px;
      font-size:0.85rem;
      font-weight:600;
      text-decoration:none;
      white-space:nowrap;
    }
  }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:1px solid var(--line);
    border-radius:8px;
    width:44px;
    height:44px;
    font-size:1.2rem;
    cursor:pointer;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
    position:relative;
    z-index:10;
  }
  @media(min-width:860px){ .nav-toggle{display:none;} }
  @media(max-width:859px){
    nav.links{
      display:none;
      width:100%;
      flex-direction:column;
      padding-top:10px;
      gap:4px;
    }
    nav.links.open{display:flex;}
    nav.links a{
      padding:14px 16px;
      font-size:0.95rem;
      text-align:left;
      border-radius:10px;
      min-height:44px;
    }
    .nav-inner{flex-wrap:wrap;}
  }

  /* ---------- VIEWS ---------- */
  main{min-height:60vh;}
  .view{display:none;}
  .view.active{display:block; animation:viewIn .5s ease both;}
  @keyframes viewIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
  }
  @media (prefers-reduced-motion: reduce){
    .view.active{animation:none;}
    html{scroll-behavior:auto;}
  }

  section{padding:88px 0;}
  .section-tight{padding:64px 0;}
  .eyebrow{
    font-size:0.78rem;
    color:var(--brand);
    font-weight:600;
    margin-bottom:14px;
  }
  .lede{
    max-width:640px;
    color:var(--text-muted);
    font-size:1.06rem;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:
      radial-gradient(circle at 82% -10%, rgba(201,161,90,0.18), transparent 55%),
      linear-gradient(160deg, var(--brand-deep) 0%, var(--brand) 62%, #b31122 100%);
    color:var(--cream-50);
    padding:120px 0 100px;
    overflow:hidden;
  }
  .hero::after{
    content:"";
    position:absolute;
    top:0; right:0; bottom:0; left:0;
    background-image:
      repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 90px);
    pointer-events:none;
  }
  .hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;
  }
  @media(max-width:900px){ .hero-grid{grid-template-columns:1fr; text-align:center;} }
  .hero-eyebrow{
    font-size:0.8rem;
    letter-spacing:0.08em;
    color:var(--gold-300);
    margin-bottom:18px;
    font-weight:500;
  }
  .hero h1{
    font-size:clamp(1rem, 4.2vw, 2.15rem);
    line-height:1.15;
    color:var(--cream-50);
    white-space:nowrap;
  }
  @media(max-width:900px){ .hero h1{margin:0 auto;} }
  .hero p.sub{
    margin-top:22px;
    font-size:1.12rem;
    color:rgba(248,243,234,0.82);
    max-width:46ch;
  }
  @media(max-width:900px){ .hero p.sub{margin-left:auto; margin-right:auto;} }
  .hero-ctas{
    display:flex;
    gap:14px;
    margin-top:34px;
    flex-wrap:wrap;
  }
  @media(max-width:900px){ .hero-ctas{justify-content:center;} }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:2px;
    font-size:0.92rem;
    font-weight:500;
    text-decoration:none;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-gold{ background:var(--accent); color:var(--brand-deep); }
  .btn-gold:hover{ background:var(--gold-300); }
  .btn-outline{
    background:transparent;
    border-color:rgba(248,243,234,0.4);
    color:var(--cream-50);
  }
  .btn-outline:hover{ border-color:var(--cream-50); }
  .btn-dark-outline{
    background:transparent;
    border-color:var(--line);
    color:var(--text);
  }
  .hero-bottle{
    position:relative;
    display:flex;
    justify-content:center;
  }
  .hero-bottle img{
    max-height:440px;
    max-width:100%;
    width:auto;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  }
  @media(max-width:520px){ .hero-bottle img{ max-height:300px; } }

  /* ---------- BANNER CAROUSEL ---------- */
  .banner-carousel{
    position:relative;
    overflow:hidden;
    background:var(--brand-deep);
  }
  .bc-frame{
    position:relative;
    width:100%;
    height:0;
    padding-top:37.5%; /* 8:3 ratio, padding-hack for browsers without aspect-ratio support */
  }
  @media(max-width:700px){ .bc-frame{ padding-top:56%; /* less crop on mobile; combined with object-fit:contain below, nothing is cut off */ } }
  .bc-slide{
    position:absolute;
    top:0; right:0; bottom:0; left:0;
    margin:0;
    opacity:0;
    transition:opacity 1s ease;
  }
  .bc-slide.active{ opacity:1; }
  .bc-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  @media(max-width:700px){
    .bc-slide img{
      object-fit:contain; /* show the full photo on mobile instead of cropping the sides */
      background:var(--brand-deep);
    }
  }
  .bc-dots{
    position:absolute;
    left:0; right:0; bottom:14px;
    display:flex;
    justify-content:center;
    gap:4px;
    z-index:2;
  }
  .bc-dots button{
    width:32px; height:32px;
    background:transparent;
    border:none;
    padding:0;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    -webkit-tap-highlight-color:transparent;
  }
  .bc-dots button::after{
    content:"";
    width:9px; height:9px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.7);
    background:rgba(255,255,255,0.25);
    transition:background .2s ease, transform .2s ease;
    display:block;
  }
  .bc-dots button.active::after{
    background:var(--gold-500);
    border-color:var(--gold-500);
    transform:scale(1.15);
  }
  @media (prefers-reduced-motion: reduce){
    .bc-slide{ transition:none; }
  }

  /* ---------- MARQUEE BANNER ---------- */
  .marquee{
    background:var(--brand-deep);
    border-top:1px solid rgba(248,243,234,0.12);
    border-bottom:1px solid rgba(248,243,234,0.12);
    overflow:hidden;
    padding:16px 0;
  }
  .marquee-track{
    display:flex;
    width:max-content;
    animation:marquee-scroll 32s linear infinite;
  }
  .marquee-set{
    display:flex;
    flex-shrink:0;
    align-items:center;
  }
  .marquee-set span{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:1.02rem;
    color:var(--gold-300);
    white-space:nowrap;
    padding:0 28px;
    position:relative;
  }
  @keyframes marquee-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }
  .marquee:hover .marquee-track{ animation-play-state:paused; }
  @media (prefers-reduced-motion: reduce){
    .marquee-track{ animation:none; }
    .marquee{ overflow-x:auto; }
  }

  /* ---------- QUICK PRODUCTS STRIP (accueil) ---------- */
  .strip{
    background:var(--bg-alt);
    border-bottom:1px solid var(--line);
  }
  .strip-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
  }
  @media(max-width:760px){ .strip-grid{grid-template-columns:1fr;} }
  .strip-item{
    padding:36px 28px;
    border-right:1px solid var(--line);
  }
  .strip-item:last-child{border-right:none;}
  @media(max-width:760px){ .strip-item{border-right:none; border-bottom:1px solid var(--line);} }
  .strip-item h3{font-size:1.05rem; margin-bottom:8px;}
  .strip-item p{color:var(--text-muted); font-size:0.92rem; margin:0;}

  /* ---------- Section: two column with image ---------- */
  .split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:center;
  }
  @media(max-width:860px){ .split{grid-template-columns:1fr; gap:36px;} }
  .split.reverse .split-media{order:2;}
  @media(max-width:860px){ .split.reverse .split-media{order:0;} }
  .split-media img{
    border-radius:2px;
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
  }
  .origin-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:22px;
  }
  .origin-tags span{
    font-size:0.78rem;
    padding:7px 14px;
    border:1px solid var(--line);
    border-radius:20px;
    color:var(--text-muted);
  }

  /* ---------- Values / process rows ---------- */
  /* ---------- Long-form article (Notre histoire) ---------- */
  .article-body{
    max-width:740px;
    margin-top:8px;
  }
  .article-body h3{
    font-size:1.3rem;
    margin-top:44px;
    margin-bottom:12px;
  }
  .article-body p{
    color:var(--text-muted);
    font-size:0.98rem;
    line-height:1.75;
    margin:0 0 16px;
  }
  .pull-quote{
    max-width:640px;
    margin:56px auto;
    padding:0 20px;
    text-align:center;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:1.3rem;
    line-height:1.5;
    color:var(--brand);
  }
  .article-notes{
    max-width:740px;
    margin-top:12px;
    border:1px solid var(--line);
    border-radius:2px;
  }
  .article-notes summary{
    cursor:pointer;
    padding:16px 20px;
    font-size:0.88rem;
    font-weight:600;
    color:var(--text);
    list-style:none;
  }
  .article-notes summary::-webkit-details-marker{ display:none; }
  .article-notes summary::before{
    content:"+ ";
    color:var(--gold-500);
    font-weight:700;
  }
  .article-notes[open] summary::before{ content:"– "; }
  .article-notes .notes-inner{
    padding:0 20px 20px;
    font-size:0.85rem;
    color:var(--text-muted);
    line-height:1.7;
  }
  .article-notes .notes-inner ol{ padding-left:18px; margin:10px 0 0; }
  .article-notes .notes-inner li{ margin-bottom:6px; }

  .rule-list{
    margin-top:40px;
    border-top:1px solid var(--line);
  }
  .rule-item{
    display:grid;
    grid-template-columns:80px 1fr 2fr;
    gap:24px;
    padding:26px 0;
    border-bottom:1px solid var(--line);
    align-items:baseline;
  }
  @media(max-width:700px){ .rule-item{grid-template-columns:1fr; gap:6px;} }
  .rule-item .rn{ font-family:'Fraunces', serif; color:var(--gold-500); font-size:1rem;}
  .rule-item h4{font-size:1.15rem;}
  .rule-item p{margin:0; color:var(--text-muted); font-size:0.95rem;}

  /* ---------- Product cards ---------- */
  .products-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
    margin-top:48px;
  }
  @media(max-width:940px){ .products-grid{grid-template-columns:repeat(2,1fr); max-width:640px; margin-left:auto; margin-right:auto;} }
  @media(max-width:620px){ .products-grid{grid-template-columns:1fr; max-width:420px;} }
  .product-card{
    background:var(--surface);
    border:1px solid var(--line);
    display:flex;
    flex-direction:column;
    overflow:hidden;
  }
  .product-card .p-media{
    aspect-ratio:1/1;
    overflow:hidden;
    background:var(--bg-alt);
  }
  .product-card.dark .p-media{ background:var(--brand-deep); }
  .product-card .p-media img{
    width:100%; height:100%; object-fit:contain;
    padding:18px;
  }
  .product-card .p-body{
    padding:26px 26px 30px;
    flex:1;
    display:flex;
    flex-direction:column;
  }
  .p-format{
    font-size:0.75rem;
    color:var(--gold-500);
    font-weight:600;
    letter-spacing:0.03em;
    margin-bottom:6px;
  }
  .product-card h3{font-size:1.4rem; margin-bottom:10px;}
  .product-card p.desc{
    color:var(--text-muted);
    font-size:0.92rem;
    flex:1;
  }
  .p-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:20px;
    padding-top:18px;
    border-top:1px solid var(--line);
  }
  .p-price{font-family:'Fraunces', serif; font-size:1.25rem;}
  .p-link{
    font-size:0.85rem;
    text-decoration:none;
    color:var(--brand);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:6px;
  }
  .thesane-card{ border-color:var(--forest-600); }
  .thesane-card .p-format{ color:var(--forest-600); }
  .thesane-card .p-link{ color:var(--forest-700); }

  /* ---------- Certification card + lightbox ---------- */
  .cert-card{
    display:flex;
    gap:22px;
    align-items:flex-start;
    background:var(--surface);
    border:1px solid var(--line);
    padding:22px;
    max-width:640px;
    margin-top:44px;
  }
  @media(max-width:560px){ .cert-card{flex-direction:column;} }
  .cert-thumb{
    flex-shrink:0;
    width:120px;
    border:1px solid var(--line);
    cursor:pointer;
    transition:transform .2s ease;
  }
  .cert-thumb:hover{ transform:scale(1.03); }
  .cert-badge{
    display:inline-block;
    font-size:0.72rem;
    font-weight:600;
    color:var(--gold-500);
    background:var(--bg-alt);
    border:1px solid var(--line);
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:8px;
  }
  .cert-info h4{ font-size:1.05rem; margin-bottom:6px; }
  .cert-info p{ font-size:0.85rem; color:var(--text-muted); margin:0 0 10px; }
  .cert-info button{
    font-size:0.82rem;
    color:var(--brand);
    background:none;
    border:none;
    padding:0;
    cursor:pointer;
    font-weight:600;
    text-decoration:underline;
  }
  .lightbox-overlay{
    position:fixed;
    top:0; right:0; bottom:0; left:0;
    background:rgba(20,10,10,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:500;
    padding:24px;
    cursor:zoom-out;
  }
  .lightbox-overlay.open{ display:flex; }
  .lightbox-overlay img{
    max-width:100%;
    max-height:90vh;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
  }
  .lightbox-close{
    position:absolute;
    top:20px; right:24px;
    background:none;
    border:1px solid rgba(255,255,255,0.4);
    color:#fff;
    width:36px; height:36px;
    border-radius:50%;
    font-size:1.1rem;
    cursor:pointer;
  }

  .compliance-note{
    margin-top:44px;
    padding:20px 24px;
    background:var(--bg-alt);
    border-left:3px solid var(--gold-500);
    font-size:0.85rem;
    color:var(--text-muted);
    max-width:820px;
  }

  /* ---------- Galerie ---------- */
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:14px;
    margin-top:44px;
  }
  @media(max-width:900px){ .gallery-grid{grid-template-columns:repeat(2,1fr);} }
  .gallery-grid figure{
    margin:0;
    overflow:hidden;
    background:var(--bg-alt);
    position:relative;
  }
  .gallery-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    aspect-ratio:1/1;
    transition:transform .5s ease;
  }
  .gallery-grid a:hover img{ transform:scale(1.06); }
  .g-tall{grid-row:span 2;}
  .g-tall img{aspect-ratio:1/2.06;}
  .gallery-caption{
    position:absolute; left:0; right:0; bottom:0;
    padding:10px 12px;
    font-size:0.72rem;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }
  .gallery-empty{
    grid-column: span 4;
    border:1px dashed var(--line);
    padding:48px 24px;
    text-align:center;
    color:var(--text-muted);
    font-size:0.9rem;
  }
  @media(max-width:900px){ .gallery-empty{grid-column:span 2;} }

  /* ---------- Témoignages ---------- */
  .testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:44px;
  }
  @media(max-width:900px){ .testi-grid{grid-template-columns:repeat(2,1fr); max-width:640px; margin:44px auto 0;} }
  @media(max-width:620px){ .testi-grid{grid-template-columns:1fr; max-width:480px;} }
  .testi-card{
    background:var(--surface);
    border:1px solid var(--line);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .testi-quote{
    font-family:'Fraunces', serif;
    font-size:1.08rem;
    font-style:italic;
    color:var(--text);
  }
  .testi-who{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:auto;
  }
  .testi-avatar{
    width:38px; height:38px; border-radius:50%;
    background:var(--bg-alt);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces', serif;
    color:var(--brand);
    font-size:0.95rem;
    border:1px solid var(--line);
  }
  .testi-who .name{font-size:0.85rem; font-weight:600;}
  .testi-who .role{font-size:0.76rem; color:var(--text-muted);}
  .testi-placeholder-tag{
    font-size:0.68rem;
    text-transform:none;
    color:var(--gold-500);
    letter-spacing:0.02em;
  }

  /* ---------- Contact ---------- */
  .contact-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:56px;
  }
  @media(max-width:900px){ .contact-grid{grid-template-columns:1fr;} }
  .contact-grid--commande{ grid-template-columns:0.7fr 1.3fr; }
  @media(max-width:900px){ .contact-grid--commande{grid-template-columns:1fr;} }
  .contact-info-row{
    display:flex;
    gap:16px;
    padding:20px 0;
    border-bottom:1px solid var(--line);
  }
  .contact-info-row .ci-label{
    width:110px;
    flex-shrink:0;
    font-size:0.78rem;
    color:var(--text-muted);
    text-transform:uppercase;
    letter-spacing:0.04em;
    padding-top:2px;
  }
  .contact-info-row .ci-value{font-size:1rem;}
  .contact-info-row a{ text-decoration:none; border-bottom:1px solid var(--line); }

  .form-card{
    background:var(--surface);
    border:1px solid var(--line);
    padding:36px;
  }
  .form-tabs{ display:flex; gap:6px; margin-bottom:26px; }
  .form-tabs button{
    flex:1;
    padding:11px 12px;
    font-size:0.85rem;
    background:var(--bg-alt);
    border:1px solid var(--line);
    cursor:pointer;
    color:var(--text-muted);
  }
  .form-tabs button.active{
    background:var(--brand);
    color:var(--cream-50);
    border-color:var(--brand);
  }
  form.pane{display:none;}
  form.pane.active{display:grid; gap:16px;}
  .field{ display:flex; flex-direction:column; gap:6px; }
  .field label{ font-size:0.8rem; color:var(--text-muted); }
  .field input, .field select, .field textarea{
    font-family:'Work Sans', sans-serif;
    font-size:0.95rem;
    padding:12px 14px;
    border:1px solid var(--line);
    background:var(--bg);
    color:var(--text);
    border-radius:2px;
  }
  .field textarea{resize:vertical; min-height:100px;}
  .hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }
  .field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  @media(max-width:520px){ .field-row{grid-template-columns:1fr;} }
  .form-status{
    font-size:0.82rem;
    padding:12px 14px;
    border-radius:2px;
    display:none;
  }
  .form-status.show{ display:block; }
  .form-status.ok{ background:#e7f0e9; color:var(--forest-700); }

  /* ---------- Footer ---------- */
  footer{
    background:var(--brand-deep);
    color:rgba(248,243,234,0.82);
    padding:64px 0 32px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:36px;
  }
  .footer-grid > div{ min-width:0; }
  @media(max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr; } }
  .footer-grid h5{
    font-family:'Work Sans', sans-serif;
    font-size:0.78rem;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--gold-300);
    margin-bottom:16px;
    font-weight:600;
  }
  .footer-grid ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
  .footer-grid a{ text-decoration:none; font-size:0.9rem; color:rgba(248,243,234,0.82); overflow-wrap:anywhere; }
  .footer-grid a:hover{ color:var(--gold-300); }
  .footer-brand img{ height:44px; border-radius:50%; margin-bottom:14px; }
  .footer-brand p{ font-size:0.86rem; max-width:32ch; color:rgba(248,243,234,0.65); }
  .social-links{
    display:flex;
    gap:10px;
    margin-top:18px;
  }
  .social-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid rgba(248,243,234,0.3);
    color:rgba(248,243,234,0.85);
    transition:background .2s ease, border-color .2s ease, color .2s ease;
  }
  .social-links a:hover{
    background:var(--gold-500);
    border-color:var(--gold-500);
    color:var(--brand-deep);
  }
  .footer-bottom{
    margin-top:48px;
    padding-top:24px;
    border-top:1px solid rgba(248,243,234,0.14);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:0.78rem;
    color:rgba(248,243,234,0.55);
  }
  .age-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:0.74rem;
    color:rgba(248,243,234,0.7);
    border:1px solid rgba(248,243,234,0.25);
    padding:6px 12px;
    border-radius:20px;
  }

  /* skip link */
  .skip-link{
    position:absolute; left:-999px; top:0;
    background:var(--brand); color:#fff; padding:10px 16px; z-index:200;
  }
  .skip-link:focus{ left:12px; top:12px; }

  .visually-hidden{
    position:absolute !important;
    width:1px; height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
  }

  /* ---------- Page header banner ---------- */
  .page-banner{
    position:relative;
    height:220px;
    background-size:cover;
    background-position:center;
  }
  @media(max-width:700px){ .page-banner{ height:130px; } }
  .page-banner::before{
    content:"";
    position:absolute; top:0; right:0; bottom:0; left:0;
    background:linear-gradient(0deg, rgba(15,6,8,0.65) 0%, rgba(15,6,8,0.25) 100%);
  }
  .page-banner-inner{
    position:relative;
    z-index:1;
    height:100%;
    display:flex;
    align-items:flex-end;
    padding-bottom:20px;
  }
  .page-banner-inner h1{
    color:#fff;
    font-size:clamp(1.3rem, 3vw, 1.9rem);
    text-shadow:0 2px 10px rgba(0,0,0,0.4);
  }

  /* ---------- Floating WhatsApp button ---------- */
  .whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:58px;
    height:58px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.3);
    z-index:150;
    transition:transform .2s ease;
    -webkit-tap-highlight-color:transparent;
  }
  .whatsapp-float:hover{ transform:scale(1.08); }
  @media(max-width:600px){
    .whatsapp-float{ right:14px; bottom:14px; width:52px; height:52px; }
  }
