  :root{
    --ink:#2A1F1A;
    --ink-soft:#6B5D52;
    --paper:#F5EFE6;
    --paper-alt:#ECE1D0;
    --navy:#3E2723;
    --navy-soft:#5C3A2E;
    --amber:#D9A441;
    --amber-soft:#F0DFB0;
    --teal:#7C8B5B;
    --line:#D9CBB8;
    --white:#FFFFFF;
    --radius: 2px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--paper);
    line-height:1.55;
    font-size:16px;
  }
  h1,h2,h3,.wordmark{
    font-family:'Space Grotesk', sans-serif;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
  ul{list-style:none;}

  /* ---------- Nav ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(237,238,231,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 28px;
    max-width:1180px; margin:0 auto;
  }
  .wordmark{
    font-weight:700; font-size:22px; letter-spacing:0.5px;
    display:flex; align-items:center; gap:8px;
  }
  .wordmark .dot{width:8px; height:8px; background:var(--amber); display:inline-block; border-radius:50%;}
  .nav-links{display:flex; gap:28px; font-size:14.5px; font-weight:500;}
  .nav-links a{position:relative; padding-bottom:4px; transition:color .2s;}
  .nav-links a:hover{color:var(--navy-soft);}
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
    background:var(--amber); transition:width .25s;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-actions{display:flex; align-items:center; gap:18px; font-size:14.5px; font-weight:500;}
  .btn{
    display:inline-block; padding:11px 22px; font-weight:600; font-size:14.5px;
    border:1px solid var(--navy); border-radius:var(--radius);
    transition:background .2s, color .2s, border-color .2s;
    cursor:pointer;
  }
  .btn-primary{background:var(--navy); color:var(--white);}
  .btn-primary:hover{background:var(--navy-soft);}
  .btn-ghost{border-color:var(--line); color:var(--ink);}
  .btn-ghost:hover{border-color:var(--navy);}
  .menu-toggle{display:none; flex-direction:column; gap:5px; cursor:pointer;}
  .menu-toggle span{width:22px; height:2px; background:var(--ink);}

  /* ---------- Hero ---------- */
  .hero{
    position:relative; overflow:hidden;
    background-image:
      linear-gradient(var(--paper), var(--paper)),
      repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(28,37,65,0.06) 39px, rgba(28,37,65,0.06) 40px),
      repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(28,37,65,0.06) 39px, rgba(28,37,65,0.06) 40px);
    padding:88px 0 96px;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
  }
  .badge{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--white); border:1px solid var(--line);
    padding:6px 14px; font-size:13px; font-weight:500; color:var(--ink-soft);
    border-radius:20px; margin-bottom:22px;
  }
  .badge .dot{width:6px; height:6px; border-radius:50%; background:var(--teal);}
  .hero h1{
    font-size:52px; font-weight:700; line-height:1.08; letter-spacing:-0.5px;
    max-width:15ch; opacity:0; transform:translateY(14px);
    animation:rise .7s ease forwards .1s;
  }
  .hero p.lede{
    margin-top:22px; font-size:17.5px; color:var(--ink-soft); max-width:46ch;
    opacity:0; transform:translateY(14px);
    animation:rise .7s ease forwards .3s;
  }
  .hero-actions{
    margin-top:34px; display:flex; gap:16px; align-items:center;
    opacity:0; transform:translateY(14px);
    animation:rise .7s ease forwards .5s;
  }
  .hero-actions .link-inline{font-weight:600; font-size:14.5px; border-bottom:1px solid var(--navy); padding-bottom:2px;}
  @keyframes rise{to{opacity:1; transform:translateY(0);}}

  /* Manifest card */
  .manifest{
    background:var(--white);
    border:1px solid var(--line);
    position:relative;
    padding:26px 24px 22px;
    opacity:0; transform:translateY(14px);
    animation:rise .7s ease forwards .5s;
    box-shadow: 6px 6px 0 var(--navy);
  }
  .manifest::before{
    content:''; position:absolute; top:-1px; left:24px; right:24px; height:14px;
    background-image: radial-gradient(circle, var(--paper) 5px, transparent 5.5px);
    background-size:20px 20px; background-position:0 -6px; background-repeat:repeat-x;
  }
  .manifest-head{
    display:flex; justify-content:space-between; align-items:baseline;
    border-bottom:1px dashed var(--line); padding-bottom:14px; margin-bottom:14px;
  }
  .manifest-head .label{font-size:12.5px; color:var(--ink-soft); letter-spacing:0.3px;}
  .manifest-head .lotno{font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:19px;}
  .manifest-row{
    display:flex; justify-content:space-between; padding:9px 0;
    border-bottom:1px solid var(--paper-alt); font-size:14.5px;
  }
  .manifest-row:last-child{border-bottom:none;}
  .manifest-row .k{color:var(--ink-soft);}
  .manifest-row .v{font-weight:600;}
  .stamp{
    margin-top:16px; display:inline-flex; align-items:center; gap:8px;
    border:1.5px solid var(--teal); color:var(--teal); font-weight:700; font-size:13px;
    padding:6px 12px; transform:rotate(-2deg);
  }

  /* ---------- Section shell ---------- */
  section{padding:88px 0;}
  .section-head{max-width:56ch; margin-bottom:52px;}
  .section-head h2{font-size:33px; font-weight:700; letter-spacing:-0.3px; margin-bottom:14px;}
  .section-head p{color:var(--ink-soft); font-size:16.5px;}

  /* ---------- Categories ---------- */
  .categories{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .cat-row{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;}
  .cat-row::before{
    content:''; position:absolute; top:34px; left:0; right:0; height:1px; background:var(--line); z-index:0;
  }
  .cat{
    position:relative; z-index:1; padding:0 20px 0 0; border-left:1px solid var(--line); padding-left:22px;
  }
  .cat:first-child{border-left:none; padding-left:0;}
  .cat-icon{
    width:68px; height:68px; border:1px solid var(--navy); background:var(--paper);
    display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  }
  .cat h3{font-size:17.5px; font-weight:600; margin-bottom:8px;}
  .cat p{font-size:14.5px; color:var(--ink-soft);}

  /* ---------- Features ---------- */
  .features-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .feature-tag{
    background:var(--white); border:1px solid var(--line);
    padding:26px 22px; position:relative;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  }
  .feature-tag .num{font-family:'Space Grotesk', sans-serif; font-weight:700; color:var(--amber); font-size:14px; margin-bottom:14px; display:block;}
  .feature-tag h3{font-size:17px; font-weight:600; margin-bottom:8px;}
  .feature-tag p{font-size:14.5px; color:var(--ink-soft);}

  /* ---------- How it works ---------- */
  .how{background:var(--white); color:var(--ink); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .how .section-head p{color:var(--ink-soft);}
  .how .section-head h2{color:var(--ink);}
  .steps{display:grid; grid-template-columns:repeat(5,1fr); gap:20px;}
  .step{border-top:2px solid var(--amber); padding-top:18px;}
  .step .n{font-family:'Space Grotesk', sans-serif; font-size:28px; font-weight:700; color:var(--amber); margin-bottom:12px; display:block;}
  .step h3{font-size:16px; font-weight:600; margin-bottom:8px;}
  .step p{font-size:14px; color:var(--ink-soft);}

  /* ---------- Grading ---------- */
  .grading-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .grade-table{width:100%; border-collapse:collapse; background:var(--white); border:1px solid var(--line);}
  .grade-table th, .grade-table td{padding:14px 16px; text-align:left; font-size:14.5px; border-bottom:1px solid var(--paper-alt);}
  .grade-table th{background:var(--paper-alt); font-weight:600; font-size:13px;}
  .grade-table td.grade{font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:17px;}
  .grade-table tr:last-child td{border-bottom:none;}
  .g-A{color:var(--teal);} .g-B{color:var(--navy);} .g-C{color:var(--amber);} .g-R{color:#A24B3E;}

  /* ---------- Program ---------- */
  .program{
    background:var(--paper-alt); border:1px solid var(--line);
    padding:56px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center;
  }
  .program-tag{
    display:inline-block; font-size:12.5px; font-weight:600; color:var(--teal);
    border:1px solid var(--teal); padding:5px 12px; margin-bottom:18px;
  }
  .program h2{font-size:29px; font-weight:700; margin-bottom:16px; letter-spacing:-0.3px;}
  .program p{color:var(--ink-soft); font-size:16px; margin-bottom:22px;}
  .program ul{margin-bottom:26px;}
  .program li{
    font-size:15px; padding:9px 0; border-bottom:1px solid var(--line);
    display:flex; gap:10px; align-items:baseline;
  }
  .program li:last-child{border-bottom:none;}
  .program li::before{content:'—'; color:var(--amber); font-weight:700;}
  .program-card{
    background:var(--white); color:var(--ink); padding:32px; position:relative;
    border:1px solid var(--line);
  }
  .program-card .big{font-family:'Space Grotesk', sans-serif; font-size:40px; font-weight:700; color:var(--navy);}
  .program-card .cap{font-size:14px; color:var(--ink-soft); margin-top:6px; margin-bottom:24px;}
  .program-card .row{display:flex; justify-content:space-between; padding:10px 0; border-top:1px solid var(--line); font-size:14px;}

  /* ---------- FAQ ---------- */
  .faq-list{max-width:760px;}
  details{
    border-bottom:1px solid var(--line); padding:20px 0;
  }
  summary{
    cursor:pointer; font-weight:600; font-size:16.5px; list-style:none;
    display:flex; justify-content:space-between; align-items:center;
  }
  summary::-webkit-details-marker{display:none;}
  summary::after{content:'+'; font-size:22px; font-weight:400; color:var(--amber); transition:transform .2s;}
  details[open] summary::after{content:'–';}
  details p{margin-top:14px; color:var(--ink-soft); font-size:15px; max-width:64ch;}

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:var(--white); color:var(--ink); text-align:left;
    padding:70px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .cta-inner{display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;}
  .cta-banner h2{font-size:30px; font-weight:700; max-width:20ch; letter-spacing:-0.3px;}
  .cta-banner .btn-primary{background:var(--amber); border-color:var(--amber); color:var(--navy);}
  .cta-banner .btn-primary:hover{background:#c9812b;}

  /* ---------- Footer ---------- */
  footer{padding:60px 0 32px; border-top:1px solid var(--line);}
  .foot-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:40px; margin-bottom:40px;}
  footer h4{font-size:13.5px; font-weight:600; margin-bottom:16px;}
  footer li{font-size:14.5px; padding:6px 0; color:var(--ink-soft);}
  footer li a:hover{color:var(--ink);}
  .foot-brand p{color:var(--ink-soft); font-size:14.5px; max-width:34ch; margin-top:10px;}
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:24px; border-top:1px solid var(--line); font-size:13px; color:var(--ink-soft); flex-wrap:wrap; gap:12px;
  }
  .foot-bottom .legal{display:flex; gap:18px;}

  /* ---------- Responsive ---------- */
  @media (max-width: 900px){
    .nav-links, .nav-actions .btn-ghost{display:none;}
    .menu-toggle{display:flex;}
    .hero-grid{grid-template-columns:1fr;}
    .hero h1{font-size:38px; max-width:none;}
    .cat-row, .features-grid, .steps{grid-template-columns:1fr 1fr; row-gap:32px;}
    .cat-row::before{display:none;}
    .cat{border-left:none; padding-left:0;}
    .grading-grid, .program{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr;}
  }
  @media (max-width: 560px){
    .cat-row, .features-grid, .steps{grid-template-columns:1fr;}
    .hero{padding:64px 0;}
    section{padding:64px 0;}
    .cta-inner{flex-direction:column; align-items:flex-start;}
  }
  @media (prefers-reduced-motion: reduce){
    .hero h1, .hero p.lede, .hero-actions, .manifest{animation:none; opacity:1; transform:none;}
  }

  /* ---------- Apply form ---------- */
  .apply-form{
    background:var(--white); border:1px solid var(--line);
    padding:40px; max-width:760px;
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px;}
  .form-field{display:flex; flex-direction:column; gap:7px;}
  .form-field.full{grid-column:1 / -1;}
  .form-field label{font-size:13.5px; font-weight:600; color:var(--ink);}
  .form-field .hint{font-size:12.5px; color:var(--ink-soft); font-weight:400;}
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field select,
  .form-field textarea{
    border:1px solid var(--line); background:var(--paper); color:var(--ink);
    padding:11px 12px; font-family:'Inter', sans-serif; font-size:14.5px;
    border-radius:var(--radius);
  }
  .form-field textarea{resize:vertical; min-height:90px;}
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{
    outline:2px solid var(--navy-soft); outline-offset:1px;
  }
  .checkbox-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px 20px;}
  .checkbox-item{display:flex; align-items:center; gap:9px; font-size:14.5px;}
  .checkbox-item input{width:16px; height:16px;}
  .form-submit-row{display:flex; align-items:center; gap:16px; margin-top:8px;}
  .form-note{font-size:13px; color:var(--ink-soft);}
  .honeypot-field{position:absolute; left:-9999px; top:-9999px;}

  /* ---------- Simple content pages (contact/policy/thank-you) ---------- */
  .simple-page{padding:72px 0 96px;}
  .simple-page h1{font-size:38px; font-weight:700; letter-spacing:-0.3px; margin-bottom:18px;}
  .simple-page .updated{font-size:13.5px; color:var(--ink-soft); margin-bottom:36px;}
  .simple-page h2{font-size:20px; font-weight:600; margin:34px 0 12px;}
  .simple-page p{color:var(--ink-soft); font-size:15.5px; max-width:70ch; margin-bottom:14px;}
  .simple-page ul{max-width:70ch; margin-bottom:14px;}
  .simple-page li{color:var(--ink-soft); font-size:15.5px; padding:4px 0 4px 18px; position:relative;}
  .simple-page li::before{content:'—'; position:absolute; left:0; color:var(--amber);}
  .disclaimer-box{
    background:var(--paper-alt); border-left:3px solid var(--amber);
    padding:16px 20px; margin-bottom:32px; font-size:14px; color:var(--ink-soft); max-width:70ch;
  }
  .back-link{display:inline-block; margin-top:20px; font-weight:600; font-size:14.5px; border-bottom:1px solid var(--navy); padding-bottom:2px;}
  .contact-block{margin-bottom:28px;}
  .contact-block .k{font-size:13px; color:var(--ink-soft); margin-bottom:4px;}
  .contact-block .v{font-size:17px; font-weight:600;}

  @media (max-width: 640px){
    .form-row, .checkbox-grid{grid-template-columns:1fr;}
    .apply-form{padding:26px 20px;}
  }

  /* ---------- Logo ---------- */
  .wordmark img{
    height: 34px;
    width: auto;
    display: block;
  }
  .foot-brand .wordmark img{
    height: 30px;
  }

  /* ---------- Premium polish: hover interactions ---------- */
  .feature-tag, .program-card, .cat-icon, .manifest, .apply-form{
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .feature-tag:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(62,39,35,0.25);
    border-color: var(--navy);
  }
  .cat{transition: transform .25s ease;}
  .cat:hover .cat-icon{
    background: var(--navy);
    border-color: var(--navy);
  }
  .cat:hover .cat-icon svg{
    stroke: #fff !important;
  }
  .cat:hover .cat-icon svg circle{
    fill: #fff !important;
  }
  .cat-icon{transition: background .25s ease, border-color .25s ease;}
  .cat-icon svg{transition: stroke .25s ease;}
  .btn{transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;}
  .btn-primary:hover{transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(62,39,35,0.35);}
  .manifest:hover{transform: translateY(-3px);}
  details{transition: background .2s ease;}
  details:hover summary{color: var(--navy-soft);}

  /* ---------- Scroll reveal ---------- */
  .reveal{
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1; transform:none; transition:none;}
  }

  /* ---------- Notify signup section ---------- */
  .notify-section{
    background: var(--white);
    color: var(--ink);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .notify-section::before{
    content:'';
    position:absolute; inset:0;
    background-image: radial-gradient(circle at 15% 30%, rgba(217,164,65,0.10), transparent 45%),
                       radial-gradient(circle at 85% 70%, rgba(124,139,91,0.10), transparent 45%);
    pointer-events:none;
  }
  .notify-inner{
    position:relative; z-index:1;
    display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  }
  .notify-copy{max-width:44ch;}
  .notify-copy .eyebrow{font-size:13px; font-weight:600; color:var(--amber); margin-bottom:10px; display:block;}
  .notify-copy h2{font-size:27px; font-weight:700; margin-bottom:10px; letter-spacing:-0.3px;}
  .notify-copy p{color:var(--ink-soft); font-size:15.5px;}
  .notify-form{display:flex; gap:12px; flex-wrap:wrap; min-width:340px; flex:1;}
  .notify-form input[type="email"]{
    flex:1; min-width:220px;
    padding:13px 16px; border:1px solid var(--line); background:var(--paper); color:var(--ink);
    font-family:'Inter', sans-serif; font-size:14.5px; border-radius:var(--radius);
  }
  .notify-form input[type="email"]::placeholder{color:var(--ink-soft);}
  .notify-form input[type="email"]:focus{outline:2px solid var(--amber); outline-offset:1px;}
  .notify-form .btn-primary{background:var(--amber); border-color:var(--amber); color:var(--navy); white-space:nowrap;}
  .notify-form .btn-primary:hover{background:#c99236;}
  .notify-note{font-size:12.5px; color:var(--ink-soft); margin-top:10px; width:100%;}
  .notify-success{
    display:none; background:var(--amber-soft); border:1px solid var(--amber); color:var(--ink);
    padding:14px 18px; font-size:14.5px; border-radius:var(--radius); margin-top:4px;
  }
  @media (max-width: 760px){
    .notify-inner{flex-direction:column; align-items:flex-start;}
    .notify-form{width:100%;}
  }

  /* ============================================================
     Theme refresh: premium minimal look — rounder, bolder, one
     confident accent color, editorial eyebrow labels, ticker strip
     ============================================================ */

  :root{
    --radius: 10px;
  }

  /* Rounder corners cascade to buttons, inputs, and cards automatically
     since they already reference var(--radius). Manual additions below. */

  .feature-tag{
    clip-path: none;
    border-radius: var(--radius);
  }
  .cat-icon{
    border-radius: calc(var(--radius) - 2px);
  }
  .manifest{
    border-radius: var(--radius);
  }
  .program, .program-card, .apply-form, .grade-table{
    border-radius: var(--radius);
    overflow: hidden;
  }

  /* ---------- Eyebrow labels ---------- */
  .eyebrow{
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
  }
  .how .eyebrow, .notify-copy .eyebrow{ color: var(--amber); }

  /* ---------- Hero badge: solid tag style ---------- */
  .badge{
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: calc(var(--radius) - 4px);
  }

  /* ---------- Hero headline underline accent ---------- */
  .hero h1 .accent{
    position: relative;
    display: inline-block;
  }
  .hero h1 .accent::after{
    content: '';
    position: absolute;
    left: 2px; right: 2px; bottom: 0.08em;
    height: 0.26em;
    background: var(--amber);
    opacity: 0.55;
    z-index: -1;
    border-radius: 3px;
  }

  /* ---------- Ticker strip ---------- */
  .ticker{
    background: var(--paper-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 15px 0;
  }
  .ticker-track{
    display: flex;
    width: max-content;
    gap: 16px;
    animation: ticker-scroll 32s linear infinite;
    align-items: center;
    white-space: nowrap;
  }
  .ticker-track span{
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .ticker-track .sep{ color: var(--amber); }
  @keyframes ticker-scroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .ticker-track{ animation: none; }
  }

  /* ---------- Pill-style category toggles ---------- */
  .checkbox-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .pill-checkbox{
    position: relative;
    cursor: pointer;
  }
  .pill-checkbox input{
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }
  .pill-checkbox span{
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    background: var(--paper);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .pill-checkbox input:checked + span{
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .pill-checkbox input:focus-visible + span{
    outline: 2px solid var(--navy-soft);
    outline-offset: 1px;
  }

  /* ---------- Brands we carry: reuses .ticker styling, slower scroll
     since the brand list is much longer than the category strip ---------- */
  .brand-ticker .ticker-track{
    animation-duration: 100s;
  }

  /* ---------- Floating chat buttons (WhatsApp / Telegram) ---------- */
  .chat-fabs{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .fab{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .fab:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -6px rgba(0,0,0,0.4);
  }
  .fab-whatsapp{
    background: #25D366;
    animation: fab-pulse 2.6s ease-in-out infinite;
  }
  .fab-telegram{
    background: #229ED9;
    animation: fab-pulse 2.6s ease-in-out infinite;
    animation-delay: 0.3s;
  }
  @keyframes fab-pulse{
    0%, 100%{ box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.45); }
    50%{ box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
  }
  @media (prefers-reduced-motion: reduce){
    .fab-whatsapp, .fab-telegram{ animation: none; }
  }
  @media (max-width: 560px){
    .chat-fabs{
      right: 16px;
      bottom: 16px;
    }
    .fab{
      width: 50px;
      height: 50px;
    }
  }

  /* ---------- Stock gallery ---------- */
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
  .gallery-grid img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
  }
  .gallery-grid img:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 26px -12px rgba(62,39,35,0.3);
  }
  .gallery-empty{
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--ink-soft);
    background: var(--white);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
  }
  @media (max-width: 560px){
    .gallery-grid{
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .gallery-grid img{ height: 160px; }
  }
