:root{
    /* ---------- PALETTE ---------- */
    --bg:            #17191b;
    --bg-raised:     #1f2224;
    --steel:         #4a4f55;
    --steel-dark:    #2c2f32;
    --paper:         #edeae4;
    --paper-dim:     #a9a49b;
    --accent:        #ff6b1a;
    --accent-dim:    #c9541a;
    --amber:         #c9a227;
    --line:          #34383b;
    --products:      #000000;
    --transparent:   #00000000;
    --lightgray:     #8f8f8f;

    /* ---------- LIGHT / WHITE ACCENT SURFACES ---------- */
    --card-bg:       #f5f2ec;
    --card-bg-alt:   #ffffff;
    --card-text:     #1c1a17;
    --card-text-dim: #5b564c;
    --card-line:     #e2ddd3;
    --amber-dark:    #8a6710;

    /* ---------- TYPE ---------- */
    --font-display:  'Poppins', 'Arial', sans-serif;
    --font-body:     'DM Sans', -apple-system, sans-serif;
    --font-mono:     'DM Sans', -apple-system, sans-serif;

    --radius: 2px;
  }

  * { box-sizing: border-box; margin:0; padding:0; }

  html{ scroll-behavior:smooth; font-size: 16px; }

  /* ---------- MINIMAL SCROLLBAR ---------- */
  *{
    scrollbar-width: thin;
    scrollbar-color: var(--steel) transparent;
  }
  ::-webkit-scrollbar{
    width: 10px;
    height: 10px;
  }
  ::-webkit-scrollbar-track{
    background: transparent;
  }
  ::-webkit-scrollbar-thumb{
    background-color: var(--steel);
    border-radius: 8px;
    border: 3px solid var(--bg);
    background-clip: padding-box;
  }
  ::-webkit-scrollbar-thumb:hover{
    background-color: var(--accent-dim);
  }
  ::-webkit-scrollbar-corner{
    background: transparent;
  }

  body{
    background: var(--bg);
    color: var(--paper);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width:100%; display:block; }
  a { color: inherit; text-decoration:none; }

  /* ---------- FOCUS STATES ---------- */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  [tabindex]:focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .nav-cta:focus-visible,
  .btn:focus-visible,
  .modal-close:focus-visible,
  .hs-arrow:focus-visible,
  .carousel-arrow:focus-visible{
    outline-offset: 2px;
  }
  section { padding: 5rem 6vw; position: relative; overflow: hidden; }
  @media (max-width: 700px){ section{ padding: 3rem 6vw; } }

  h1,h2,h3{
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--paper);
  }

  .eyebrow{
    font-family: var(--font-mono);
    font-size: 27px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display:flex;
    align-items:center;
    gap:0.6em;
    font-weight: 1000;
  }
  .eyebrow::before{
    content:"";
    width: 22px; height:2px;
    background: var(--accent);
    display:inline-block;
    transition: width 0.4s ease;
  }
  @media (max-width: 700px){
    .eyebrow{ font-size: 16px; }
  }

  /* ============= REVEAL-ON-SCROLL ============= */
  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(.2,.7,.2,1),
                transform 0.8s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal.in-view{
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-1{ --reveal-delay: 0.05s; }
  .reveal-2{ --reveal-delay: 0.15s; }
  .reveal-3{ --reveal-delay: 0.25s; }
  .reveal-4{ --reveal-delay: 0.35s; }
  .reveal-5{ --reveal-delay: 0.45s; }
  .reveal-6{ --reveal-delay: 0.55s; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    .reveal{ opacity:1; transform:none; transition:none; }
    [data-parallax]{ transform:none !important; }
    .modal-spec-grid .cell{ opacity:1; transform:none; animation:none; }
  }

  /* ---------------- NAV ---------------- */
  header.nav{
    position: sticky; top: 14px; z-index: 50;
    display:flex; align-items:center; justify-content:space-between;
    height: 65px;
    margin: 0 16px;
    padding: 0px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 60%, rgba(255,255,255,0.02) 100%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
      0 8px 32px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.22),
      inset 0 -1px 0 rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease,
                transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
    will-change: transform;
  }

  header.nav.scrolled{
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.02) 100%);
    box-shadow:
      0 10px 36px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -1px 0 rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.22);
  }

  header.nav.nav-hidden{
    transform: translateY(-130%);
    opacity: 0;
  }
  @media (prefers-reduced-motion: reduce){
    header.nav{ transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
    header.nav.nav-hidden{ transform:none; opacity:1; }
  }
  .logo{
    display: inline-flex;
    align-items: center;
    margin-left: 34px;
  }
  .logo-img{
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.25s ease, filter 0.25s ease;
    margin-top: 18px;
  }
  .logo:hover .logo-img{
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255,107,26,0.55));
  }
  .logo:active .logo-img{
    transform: scale(0.97);
  }
  
  .options{
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 0.8rem;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
    color: var(--accent);
  }
  .options::after{
    content:"";
    position: absolute;
    left: 0.8rem; right: 0.8rem;
    bottom: 0.4rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
  }

  nav.links a:hover{ color: var(--accent); transform: translateY(-1px); }
  nav.links a:hover::after{ transform: scaleX(1); }
  .nav-cta{
    font-family: var(--font-body);
    font-size:0.78rem;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--accent);
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
    margin-right: 34px;
  }
  .nav-cta:hover{ background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-2px); }
  .nav-cta-mobile{ display: none; }
  .burger{
    display:none; flex-direction:column; align-items:center; justify-content:center;
    gap:5px; cursor:pointer; margin-right: 18px;
    width: 44px; height: 44px;
    background: transparent; border: none; padding: 0;
  }
  .burger span{ width:24px; height:2px; background:var(--paper); transition: transform .25s ease, opacity .25s ease; }
  .burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2){ opacity: 0; }
  .burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 800px){
    .nav-cta-desktop{ display:none; }
    .burger{ display:flex; }

    nav.links{
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
      position: absolute;
      top: calc(100% + 10px);
      left: 16px; right: 16px;
      padding: 1rem;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(31,34,36,0.98) 0%, rgba(20,22,23,0.98) 100%);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 20px 44px rgba(0,0,0,0.45);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }
    nav.links.is-open{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    nav.links .options{
      padding: 0.9rem 0.8rem;
      text-align: left;
    }
    nav.links .options::after{ display:none; }
    .nav-cta-mobile{
      display: block;
      text-align: center;
      margin: 0.5rem 0.2rem 0.2rem;
    }
    .logo-img{ width: 110px; height: 110px; margin-top: 8px; }
    .logo{ margin-left: 16px; }
  }

  /* ---------------- HERO ---------------- */
  .hero{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items:center;
    gap: 3rem;
    padding-top: 4rem;
    min-height: 88vh;
    position: relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; top:0; right:0; bottom:0; width:6px;
    background: repeating-linear-gradient(135deg, var(--accent) 0 10px, var(--bg) 10px 20px);
    opacity:0.5;
  }
  @media (max-width: 900px){
    .hero{ grid-template-columns: 1fr; min-height:auto; padding-top:2.5rem; }
  }

  .hero-copy .eyebrow{ margin-bottom: 1.4rem; }

  .power-figure{
    display:flex; align-items:baseline; gap:0.9rem;
    margin: 0.6rem 0 0.4rem;
  }
  .power-figure .num{
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 11vw, 8.5rem);
    line-height: 0.85;
    color: var(--paper);
  }
  .power-figure .unit{
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: 0.05em;
  }
  .hero-copy h2{
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 400;
    color: var(--paper-dim);
    text-transform:none;
    margin-bottom: 1.8rem;
    max-width: 30ch;
  }
  .hero-sub{
    font-family: var(--font-mono);
    color: var(--paper-dim);
    font-size: 0.95rem;
    margin-bottom: 2.4rem;
  }
  .hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; }
  .btn{
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.95rem 1.8rem;
    border-radius: var(--radius);
    cursor:pointer;
    border: 1px solid transparent;
    display: inline-block;
    touch-action: manipulation;
    transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .btn-primary{ background: var(--accent); color: var(--bg); font-weight:600; }
  .btn-primary:hover{ background: var(--amber); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
  .btn-ghost{ border-color: var(--steel); color: var(--products); }
  .btn-ghost:hover{ border-color: var(--paper); background: rgba(255,255,255,0.08); transform: translateY(-3px); }

  .hero-visual{ position:relative; display:flex; justify-content:center; }
  .photo-frame{
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align:center;
  position:relative;
  transition: transform .5s ease, border-color .3s ease;
  will-change: transform;
}
  .photo-frame::after{
    content:"";
    letter-spacing:0.08em;
  }
  .photo-frame:hover{ transform: scale(1.015); border-color: var(--accent-dim); }

  .gauge{
    position:absolute;
    bottom:-1.6rem; left:-1.6rem;
    width: 128px; height:128px;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius:50%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    will-change: transform;
  }
  .gauge .pct{ font-family: var(--font-display); font-size:1.7rem; color: var(--accent); }
  .gauge .lbl{ font-family: var(--font-mono); font-size:0.6rem; letter-spacing:0.1em; color: var(--paper-dim); }
  @media (max-width: 900px){ .gauge{ display:none; } }

  .product-card.linked-card{ cursor: pointer; }
  .product-card.linked-card:hover{ box-shadow: 0 0 0 1px var(--accent-dim); }

  /* ---------------- PRODUCT SPECS MODAL ---------------- */
  .modal-overlay{
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 5vw;
    background: rgba(10,11,12,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .modal-overlay.open{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
  }
  .modal-box{
    position: relative;
    width: min(960px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.4rem 2.6rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 60%, rgba(31,34,36,0.9) 100%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
      0 24px 60px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,0.22),
      inset 0 -1px 0 rgba(0,0,0,0.15);
    transform: scale(0.9) translateY(18px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
  }
  .modal-overlay.open .modal-box{
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  @media (max-width: 700px){
    .modal-box{ padding: 1.4rem; border-radius: 22px; }
  }

  .modal-box-lg{
    width: min(760px, 100%);
    max-height: 85vh;
  }
  .modal-box-xl{
    width: min(1080px, 96vw);
    max-height: 92vh;
    padding: 2.6rem 3rem;
  }
  @media (max-width: 700px){
    .modal-box-xl{ padding: 1.4rem; }
  }
  .modal-body-scroll{
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.6rem;
    color: var(--paper);
    font-size: 1.26rem;
    line-height: 1.75;
  }
  .modal-body-scroll p{ margin-bottom: 1.1rem; }
  .modal-body-scroll p:last-child{ margin-bottom: 0; }
  .about-story{ max-height: 76vh; }

  /* ---- About Us story layout ---- */
  .about-heading{
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--paper);
    margin: 2.4rem 0 1rem;
  }
  .about-heading:first-child{ margin-top: 0; }
  .about-block{ margin-bottom: 1.6rem; }
  .about-mission{
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1.5;
    border-left: 2px solid var(--accent-dim);
    padding-left: 1rem;
    margin: 1.2rem 0;
  }
  .about-block-split{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .about-block-reverse{ direction: rtl; }
  .about-block-reverse > *{ direction: ltr; }
  @media (max-width: 720px){
    .about-block-split{ grid-template-columns: 1fr; }
    .about-block-reverse{ direction: ltr; }
  }
  .about-figure{
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: #0f1011;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
  }
  .about-figure:hover{ transform: translateY(-4px); border-color: var(--accent-dim); }
  .about-figure img{
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
  }
  .about-figure-portrait img{ aspect-ratio: auto; object-fit: contain; object-position: center; }
  .about-figure-wide{ margin: 2rem 0; }
  .about-figure-wide img{ aspect-ratio: auto; object-fit: contain; }
  .about-figure figcaption{
    font-family: var(--font-mono);
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--paper);
    padding: 0.7rem 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .about-figure-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    margin: 2rem 0;
  }
  @media (max-width: 600px){
    .about-figure-row{ grid-template-columns: 1fr; }
  }
  .about-figure-row .about-figure img{ aspect-ratio: auto; object-fit: contain; }

  .about-closing{
    margin-top: 2.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.14);
    text-align: center;
  }
  .about-closing-eyebrow{
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
  }
  .about-closing-line{
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--paper);
    max-width: 46ch;
    margin: 0 auto 0.8rem;
    line-height: 1.5;
  }
  .about-closing-tagline{
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--accent-dim);
    text-transform: uppercase;
  }

  .reveal-in-modal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  }
  .reveal-in-modal.modal-in-view{
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    .reveal-in-modal{ opacity: 1; transform: none; transition: none; }
  }
  .modal-close{
    position: absolute;
    top: 1rem; right: 1rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(23,25,27,0.4);
    color: var(--paper);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .modal-close:hover{ border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

  .modal-header{
    padding-right: 2.5rem;
    margin-bottom: .02rem;
  }
  .modal-header h3{
    font-size: 1.6rem;
    margin: 0.5rem 0 0;
  }

  .modal-columns{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.6rem;
    align-items: start;
  }
  @media (max-width: 800px){
    .modal-columns{ grid-template-columns: 1fr; }
    .modal-col-right{ margin-top: 0; }
  }

  .modal-col-left{ display: flex; flex-direction: column; }
  .modal-photo{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 18px;
    border-color: rgba(255,255,255,0.14);
    margin-bottom: 1.1rem;
  }
  .modal-photo--contain{
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #ffffff;
  }
  .modal-photo--contain-more{
    background-size: 105%;
    background-repeat: no-repeat;
    background-color: #ffffff;
  }
  .modal-desc{
    color: var(--paper);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  .modal-features{
    list-style: none;
    display: inline-block;
    flex-direction: column;
    gap: 0.7rem;
  }
  .modal-features li{
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--paper);
    padding-left: 1.3rem;
    position: relative;
  }
  .modal-features li::before{
    content: "";
    position: absolute;
    left: 0; top: 0.45em;
    width: 7px; height: 7px;
    background: var(--accent);
  }

  .modal-col-right{ display: flex; flex-direction: column; margin-top: 7rem; }
  .modal-col-label{
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .modal-spec-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.6rem;
  }
  @media (max-width: 560px){
    .modal-spec-grid{ grid-template-columns: repeat(2, 1fr); }
    .modal-spec-grid.modal-spec-grid--compact{ grid-template-columns: repeat(3, 1fr); }
  }
  .modal-spec-grid .cell{
    background: rgba(23,25,27,0.55);
    padding: 1.1rem 1rem;
    transition: background .25s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: cellIn 0.5s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .modal-spec-grid .cell:nth-child(1){ animation-delay: 0.05s; }
  .modal-spec-grid .cell:nth-child(2){ animation-delay: 0.1s; }
  .modal-spec-grid .cell:nth-child(3){ animation-delay: 0.15s; }
  .modal-spec-grid .cell:nth-child(4){ animation-delay: 0.2s; }
  .modal-spec-grid .cell:nth-child(5){ animation-delay: 0.25s; }
  .modal-spec-grid .cell:nth-child(6){ animation-delay: 0.3s; }
  @keyframes cellIn{
    to{ opacity: 1; transform: translateY(0); }
  }
  .modal-spec-grid .cell:hover{ background: rgba(23,25,27,0.8); }
  .modal-spec-grid .cell .v{
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--paper);
  }
  .modal-spec-grid .cell .k{
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: var(--paper-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
  }
  .modal-order-btn{
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
  }

  .modal-gallery-wrap{
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .modal-hero-gallery{
    position: relative;
    margin-bottom: 0.9rem;
  }
  .modal-hero-photo{
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .2s ease;
    cursor: zoom-in;
  }
  .gallery-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(23,25,27,0.55);
    color: var(--paper);
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .2s ease, transform .2s ease;
    z-index: 2;
  }
  .gallery-arrow:hover{ background: var(--accent); transform: translateY(-50%) scale(1.08); }
  .gallery-arrow-left{ left: 12px; }
  .gallery-arrow-right{ right: 12px; }

  .modal-gallery{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.7rem;
  }
  @media (max-width: 700px){
    .modal-gallery{ grid-template-columns: repeat(3, 1fr); }
  }
  .modal-gallery .thumb{
    aspect-ratio: 1/1;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease;
  }
  .modal-gallery .thumb:hover{
    transform: translateY(-3px) scale(1.03);
    border-color: var(--accent-dim);
  }
  .modal-gallery .thumb.active{
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
  }

  .modal-appliance-wrap{
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .modal-appliance-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.6rem 1rem;
  }
  @media (max-width: 700px){
    .modal-appliance-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  .modal-appliance-grid .appliance{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-appliance-grid .appliance-icon{
    width: 44px;
    height: 44px;
    color: var(--accent-dim);
    margin-bottom: 0.6rem;
  }
  .modal-appliance-grid .appliance-icon svg{ width: 100%; height: 100%; }
  .modal-appliance-grid .appliance-name{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--paper);
    line-height: 1.3;
  }
  .modal-appliance-grid .appliance-runtime{
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--paper-dim);
    margin-top: 0.2rem;
  }

  .lightbox-overlay{ z-index: 400; }
  .lightbox-box{
    position: relative;
    width: min(90vw, 900px);
    max-height: 90vh;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease;
  }
  .lightbox-overlay.open .lightbox-box{
    transform: scale(1);
    opacity: 1;
  }
  .lightbox-img{
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }
  .lightbox-box .modal-close{
    top: -14px; right: -14px;
    background: rgba(15,16,17,0.9);
  }


  /* ---------------- FEATURES ---------------- */
  .features-head{ max-width: 46ch; margin-bottom: .1rem; }
  .features-head h2{ font-size: clamp(1.8rem,3vw,2.6rem); margin-top:0.6rem; }
  #products .features-head{ max-width: none; }
  #products .features-head h2{ white-space: nowrap; font-size: clamp(1.4rem,2.6vw,2.6rem); }
  .features-head-row{ display:flex; align-items:center; gap: 1.6rem; flex-wrap: wrap; }
  .cert-banner{
    display:flex; align-items:center; gap: 1.5rem;
    margin-left: auto;
    flex-wrap: wrap;
  }
  .cert-banner img{ height: 34px; width: auto; display:block; }
  @media (max-width: 700px){ .cert-banner{ margin-left: 0; } .cert-banner img{ height: 26px; } }

  .cert-badges{
    display:flex; align-items:center; gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
  .cert-badges img{ height: 30px; width: auto; display:block; }
  #features .features-head{ max-width: none; }
  #features .features-head h2{ white-space: nowrap; font-size: clamp(1.2rem,2.4vw,2.6rem); }
  #news .features-head{ max-width: none; }
  #news .features-head h2{ white-space: nowrap; font-size: clamp(1.4rem,2.6vw,2.6rem); }
  @media (max-width: 700px){
    #products .features-head h2,
    #features .features-head h2,
    #news .features-head h2{ white-space: normal; }
  }
  .feature-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--card-line);
    border: 1px solid var(--card-line);
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  }
  @media (max-width: 900px){ .feature-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px){ .feature-grid{ grid-template-columns: 1fr; } }
  .feature{
    background: var(--card-bg);
    padding: 2.4rem 2rem;
    transition: background .3s ease, transform .3s ease;
  }
  .feature:hover{ background: var(--card-bg-alt); transform: translateY(-4px); }
  .feature .tag{
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-weight: 1000;
    background: var(--accent);
    padding: 0.35rem 0.7rem;
  }
  .feature h3{
    font-size: 1.15rem;
    margin: 0.8rem 0 0.7rem;
    color: var(--card-text);
  }
  .feature p{ color: var(--products); font-size: 0.92rem; font-weight: 300; }

  /* ---------------- OUTPUT / PORTS SECTION ---------------- */
  .ports{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items:center;
    background: var(--bg-raised);
  }
  @media (max-width: 900px){ .ports{ grid-template-columns:1fr; } }
  .ports .photo-frame{ aspect-ratio: 16/10; }
  .port-list{ display:flex; flex-direction:column; gap:0; }
  .spec-row{
    display:flex; justify-content:space-between; align-items:center;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    transition: padding-left .3s ease, border-color .3s ease;
  }
  .spec-row:hover{ padding-left: 0.6rem; border-color: var(--accent-dim); }
  .spec-row .label{ color: var(--paper-dim); text-transform:uppercase; letter-spacing:0.04em; font-size:0.78rem; }
  .spec-row .value{ color: var(--paper); }

  .about-text{ display:flex; flex-direction:column; gap:1.1rem; max-width: 62ch; }
  .about-text p{ color: var(--paper); font-size: 1.3rem; line-height: 1.7; }
  .about-text p.about-tagline{
    color: var(--accent);
  }

  /* ---------------- GALLERY ---------------- */
  .gallery-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  @media (max-width: 800px){ .gallery-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px){ .gallery-grid{ grid-template-columns: 1fr; } }
  .gallery-grid .photo-frame{ aspect-ratio: 1/1; }

  /* ---------------- GALLERY WHEEL ---------------- */
  .gallery-wheel{
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -9rem;
    height: clamp(440px, 38vw, 640px);
    overflow: hidden;
    cursor: grab;
  }
  .gallery-wheel.dragging{ cursor: grabbing; }
  .gallery-slide{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: clamp(308px, 35vw, 504px);
    height: clamp(192.5px, 21.875vw, 315px);
    margin-left: calc(clamp(308px, 35vw, 504px) / -2);
    margin-bottom: calc(clamp(192.5px, 21.875vw, 315px) / -2);
    will-change: transform;
  }
  .gallery-slide .photo-frame{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    cursor: zoom-in;
  }
  @media (prefers-reduced-motion: reduce){
    .gallery-slide{ position: static; margin: 0; display: inline-block; transform:none !important; }
    .gallery-wheel{ width: 100%; margin-left: 0; height: auto; overflow: visible; cursor: default; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
  }

  @media (max-width: 700px){
    .gallery-wheel{
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-top: 0;
      height: auto;
      overflow: hidden;
      cursor: default;
    }
    .gallery-track{
      display: flex;
      width: max-content;
      will-change: transform;
    }
    .gallery-wheel .gallery-slide{
      position: static;
      margin: 0 0.75rem 0 0;
      width: 78vw;
      height: calc(78vw * 10 / 16);
    }
  }

  /* ---------------- NEWS & UPDATES (empty state) ---------------- */
  .news-empty{
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    border: 1px dashed var(--line);
    border-radius: 14px;
  }
  .news-empty-icon{
    margin: 0 auto 1rem;
    width: 130px;
  }
  .news-empty-icon img{
    width: 100%;
    height: auto;
  }
  .news-empty h3{
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .news-empty p{
    color: var(--paper-dim);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ---------------- CTA ---------------- */
  .cta{
    text-align:center;
    border-top: 1px solid var(--line);
  }
  .cta h2{ font-size: clamp(1.1rem,3.6vw,3.4rem); margin-bottom:1rem; white-space: nowrap; }
  .cta p{ color: var(--paper-dim); max-width: 42ch; margin: 0 auto 2.2rem; }

  /* ---------------- ORDER FORM ---------------- */
  .order-form{
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .order-form .form-row{
    display: flex;
    gap: 1.2rem;
  }
  .order-form .form-field{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .order-form .form-field-narrow{ flex: 0 0 120px; }
  @media (max-width: 700px){
    .order-form .form-row{ flex-direction: column; }
    .order-form .form-field-narrow{ flex: 1; }
    .order-form input,
    .order-form select,
    .order-form textarea{ font-size: 16px; }
  }
  .order-form label{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper-dim);
  }
  .order-form input,
  .order-form select,
  .order-form textarea{
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--paper);
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
  }
  .order-form input::placeholder,
  .order-form textarea::placeholder{ color: var(--paper-dim); opacity: 0.7; }
  .order-form input:focus,
  .order-form select:focus,
  .order-form textarea:focus{
    border-color: var(--accent-dim);
    background: var(--bg);
  }
  .order-form textarea{ resize: vertical; }
  .order-form button[type="submit"]{
    align-self: center;
    margin-top: 0.4rem;
  }
  .order-form-note{
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--paper-dim);
    margin-top: 0.4rem;
  }
  .order-form-note.error{ color: var(--accent); }

  /* ---------------- FOOTER ---------------- */
  footer{
    border-top: 1px solid var(--line);
    padding: 3rem 6vw;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--paper-dim);
  }
  footer .col h4{
    font-family: var(--font-mono);
    color: var(--paper);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  footer .col a{ display:block; color: var(--paper-dim); margin-bottom:0.5rem; transition: color .25s ease, transform .25s ease; }
  footer .col a:hover{ color: var(--accent); transform: translateX(4px); }
  /* ---------------- PRODUCT CAROUSEL ---------------- */

  /* ---------------- PRODUCT GRID ---------------- */
  .product-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  @media (max-width: 1100px){
    .product-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 700px){
    .product-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 460px){
    .product-grid{ grid-template-columns: 1fr; }
  }
  .product-grid .product-card{
    height: 420px;
  }
  @media (max-width: 700px){
    .product-grid .product-card{ height: auto; }
  }
  .product-card.hidden-card{
    display: none;
  }
  .product-card.card-appear{
    display: flex;
    opacity: 0;
    transform: translateY(24px);
  }
  .product-card.card-appear.card-in{
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
  }
  @media (prefers-reduced-motion: reduce){
    .product-card.card-appear{ opacity:1; transform:none; transition:none; }
  }

  .show-more-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.6rem;
  }
  .show-more-wrap.is-hidden{ display: none; }

  .product-card--coming-soon{ cursor: default; padding: 0; }
  .product-card--coming-soon:hover{ transform: none; box-shadow: 0 6px 22px rgba(0,0,0,0.22); border-color: rgba(0,0,0,0.08); }
  .product-card--coming-soon .coming-soon-banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .product-card{
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  }
  .product-card:hover{
    border-color: var(--accent-dim);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  }
  .product-card .photo-frame{
    aspect-ratio: 4/3;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    background-color: #ffffff00;
    background-size: 130%;
    color: var(--card-text-dim);
  }
  .product-card .photo-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-card .card-body{ padding: 1rem 1rem 1.2rem; display:flex; flex-direction:column; flex:1; }
  .product-card .badge{
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--accent-dim);
    padding: 0.2rem 0.45rem;
    margin-bottom: 0.6rem;
  }
  .product-card h3{
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--card-text);
  }
  .product-card .card-figure{
    font-family: var(--font-mono);
    color: var(--card-text-dim);
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  .product-card .card-figure b{ color: var(--accent-dim); font-weight:600; }
  .product-card p{
    color: var(--card-text-dim);
    font-size: 0.76rem;
    margin-bottom: 0.9rem;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }
  .product-card .card-price{
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--card-text);
    margin-bottom: 1rem;
  }
  .product-card .card-price span{
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--card-text-dim);
    text-transform: uppercase;
    margin-left: 0.4rem;
  }
  .product-card .card-body > .btn{
    margin-top: auto;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .carousel-arrow{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--paper);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }
  .carousel-arrow:hover{ border-color: var(--accent); background: var(--bg-raised); }
  .carousel-arrow:active{ transform: translateY(-50%) scale(0.92); }
  .carousel-arrow.prev{ left: -8px; }
  .carousel-arrow.next{ right: -8px; }
  .carousel-arrow:disabled{ opacity: 0.3; cursor: default; }
  @media (max-width: 700px){
    .carousel-arrow{ display:none; }
  }

  .carousel-dots{
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  .carousel-dots button{
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1px solid var(--steel);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, width .25s ease;
  }
  .carousel-dots button.active{
    background: var(--accent);
    border-color: var(--accent);
    width: 20px;
    border-radius: 4px;
  }

  /* ---------------- HERO BANNER SLIDER ---------------- */

  .hero-slider{
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    padding: 0;
    cursor: grab;
    margin-top: 33px;
  }
  .hero-slider.dragging{
    cursor: grabbing;
  }
  .hs-track{
    position: relative;
    display: flex;
    width: 100%;
    height: 88vh;
    transition: transform 1.3s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
  }
  .hs-track.dragging{
    transition: none;
  }
  .hs-slide{
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    user-select: none;
  }
  .hs-slide.is-active{
    z-index: 1;
  }
  .hs-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #101112;
  z-index: 0;
  }
  .hs-bg1-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: #101112;
  }

  .hs-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 11, 12, 0) 0%, rgba(10, 11, 12, 0) 100%);
    z-index: 1;
  }
  @media (max-width: 700px){
    .hs-bg{ background-size: contain; background-repeat: no-repeat; }
    .hs-bg1-video{ object-fit: contain; }
  }
  .hs-copy{
    position: relative;
    z-index: 2;
    padding: 0 6vw;
    max-width: 600px;
    margin-top: -8rem;
  }
  .hs-copy .eyebrow{ margin-bottom: 1.4rem; }
  .hs-copy h2{
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
    font-weight: 700;
    color: var(--paper);
    text-transform:none;
    margin-bottom: 1.8rem;
    max-width: 30ch;
  }

  /* -------- per-line entrance animation -------- */
  .hs-copy > *{
    opacity: 0;
    transform: translateY(26px);
  }
  .hs-slide.is-active .hs-copy > *{
    animation: hsLineIn 0.75s cubic-bezier(.2,.75,.25,1) forwards;
  }
  .hs-slide.is-active .hs-copy .eyebrow{ animation-delay: 0.05s; }
  .hs-slide.is-active .hs-copy h2{ animation-delay: 0.18s; }
  .hs-slide.is-active .hs-copy .hero-sub{ animation-delay: 0.3s; }
  .hs-slide.is-active .hs-copy .hero-actions{ animation-delay: 0.42s; }
  @keyframes hsLineIn{
    from{ opacity: 0; transform: translateY(26px); }
    to{ opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .hs-copy > *{ opacity:1; transform:none; }
    .hs-slide.is-active .hs-copy > *{ animation:none; }
  }

  /* -------- per-slide text position variants -------- */
  .hs-slide.hs-pos-left{ justify-content: flex-start; }
  .hs-slide.hs-pos-right{ justify-content: flex-end; }
  .hs-slide.hs-pos-right .hs-copy{ text-align: right; margin-left: auto; max-width: none; }
  .hs-slide.hs-pos-right .hs-copy .eyebrow{ justify-content: flex-end; white-space: nowrap; }
  .hs-slide.hs-pos-right .hs-copy h2{ white-space: nowrap; max-width: none; font-size: clamp(1.2rem, 2.6vw, 3.1rem); }
  .hs-slide.hs-pos-right .hs-copy .hero-sub{ white-space: nowrap; font-size: clamp(0.65rem, 1.3vw, 1rem); }
  .hs-slide.hs-pos-right .hs-copy .hero-actions{ justify-content: flex-end; }
  .hs-slide.hs-pos-center{ justify-content: center; align-items: flex-end; padding-bottom: 6rem; }
  .hs-slide.hs-pos-center .hs-copy{ text-align: left; max-width: 600px; margin: 0 auto; }
  .hs-slide.hs-pos-top-center{ justify-content: center; align-items: flex-start; padding-top: 3.5rem; }
  .hs-slide.hs-pos-top-center .hs-copy{ text-align: center; max-width: none; width: 100%; margin: 0 auto; margin-top: 0; }
  .hs-slide.hs-pos-top-center .hs-copy .eyebrow{ justify-content: center; }
  .hs-slide.hs-pos-top-center .hs-copy h2{ max-width: none; white-space: nowrap; font-size: clamp(1.2rem, 2.6vw, 3.1rem); }
  .hs-slide.hs-pos-top-center .hs-copy .hero-sub{ justify-content: center; white-space: nowrap; font-size: clamp(0.65rem, 1.3vw, 1rem); }
  .hs-slide.hs-pos-top-center .hs-copy .hero-actions{ justify-content: center; }
  @media (max-width: 700px){
    .hs-slide.hs-pos-top-center{ padding-top: 3rem; }
  }
  .hs-slide.hs-pos-center .hs-copy h2{ max-width: none; }
  .hs-slide.hs-pos-center .hs-copy .eyebrow{ justify-content: left; }
  .hs-slide.hs-pos-center .hs-copy .hero-actions{ justify-content: center; }
  @media (max-width: 700px){
    .hs-slide.hs-pos-center{ padding-bottom: 3rem; }
    .hs-copy{ margin-top: -2rem; }
    .hs-slide.hs-pos-right .hs-copy h2,
    .hs-slide.hs-pos-top-center .hs-copy h2{ white-space: normal; }
    .hs-slide.hs-pos-right .hs-copy .hero-sub,
    .hs-slide.hs-pos-top-center .hs-copy .hero-sub{ white-space: normal; }
  }

  /* -------- hero slider copy text -------- */
  .hs-copy .eyebrow{ color: #ff6b1a; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
  .hs-copy .eyebrow::before{ background: #fff; }
  .hs-copy h2{ color: #fff; font-weight: 700; text-shadow: 0 4px 24px rgba(0,0,0,0.55); }
  .hs-copy .hero-sub{ color: #ff6b1a; font-weight: 900; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.76); }
  .hs-copy .btn-ghost{ color: #000000; border-color: rgba(255,255,255,0.7); }
  .hs-copy .btn-ghost:hover{ border-color: #fff; background: rgba(255,255,255,0.12); }

  .hs-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(237,234,228,0.35);
    background: rgba(23,25,27,0.5);
    color: var(--paper);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }
  .hs-arrow:hover{ border-color: var(--accent); background: rgba(23,25,27,0.8); }
  .hs-arrow:active{ transform: translateY(-50%) scale(0.92); }
  .hs-prev{ left: 2vw; }
  .hs-next{ right: 2vw; }
  @media (max-width: 700px){ .hs-arrow{ display:none; } }

  .hs-dots{
    position: absolute;
    bottom: 1.8rem;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    z-index: 5;
  }
  .hs-dots button{
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(237,234,228,0.5);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, width .25s ease;
  }
  .hs-dots button.active{
    background: var(--accent);
    border-color: var(--accent);
    width: 22px;
    border-radius: 4px;
  }

  @media (max-width: 900px){
    .hs-track, .hero-slider{ min-height: 78vh; height:auto; }
    .hs-track{ height: 78vh; }
    .hs-overlay{ background: none; }
  }

  /* scale slider copy with viewport width (phone through tablet) so it
     shrinks in step with the image instead of jumping back to full desktop
     size above the old 700px cutoff */
  @media (max-width: 900px){
    .hs-copy .eyebrow{ font-size: clamp(7px, 1.2vw, 11px); margin-bottom: 0.5rem; }
    .hs-copy .eyebrow::before{ width: 10px; }

    .hs-copy h2{ font-size: clamp(0.75rem, 2.7vw, 1.15rem); margin-bottom: 0.6rem; }
    .hs-slide.hs-pos-right .hs-copy h2,
    .hs-slide.hs-pos-top-center .hs-copy h2{ font-size: clamp(0.5rem, 1.8vw, 0.8rem); }

    .hs-copy .hero-sub,
    .hs-slide.hs-pos-right .hs-copy .hero-sub,
    .hs-slide.hs-pos-top-center .hs-copy .hero-sub{ font-size: clamp(0.34rem, 1vw, 0.45rem); }

    .hs-copy .hero-actions{ gap: 0.4rem; }
    .hs-copy .btn{
      font-size: clamp(6px, 1vw, 8.5px);
      padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.6rem, 2vw, 0.95rem);
    }
  }

  @media (max-width: 700px){
    .hero-slider{ min-height: 0; overflow-x: hidden; overflow-y: visible; }
    .hs-track{ height: auto; min-height: 320px; aspect-ratio: 1.5; }
    .hs-slide{ overflow: hidden; }
    .hs-copy{ margin-top: 0; padding: 0 5vw; }
    .hs-slide.hs-pos-top-center{ padding-top: 0; align-items: center; }
    .hs-slide.hs-pos-center{ padding-bottom: 1rem; }

    /* tighten further for phones, still scaling continuously with vw so it
       shrinks in step with the (background-size: contain) image */
    .hs-copy .eyebrow{ font-size: clamp(6px, 1.6vw, 9px); }
    .hs-copy .eyebrow::before{ width: 8px; }

    .hs-copy h2{ font-size: clamp(0.65rem, 3.6vw, 0.95rem); margin-bottom: 0.4rem; }
    .hs-slide.hs-pos-right .hs-copy h2,
    .hs-slide.hs-pos-top-center .hs-copy h2{ font-size: clamp(0.42rem, 2.4vw, 0.65rem); }

    .hs-copy .hero-sub,
    .hs-slide.hs-pos-right .hs-copy .hero-sub,
    .hs-slide.hs-pos-top-center .hs-copy .hero-sub{ font-size: clamp(0.3rem, 1.3vw, 0.38rem); }

    .hs-copy .btn{
      font-size: clamp(5.5px, 1.2vw, 7px);
      padding: clamp(0.3rem, 1.2vw, 0.42rem) clamp(0.55rem, 2.2vw, 0.75rem);
    }
  }