:root{
  --black:#000000;
  --gold:#E18A19;
  --purple:#B515BF;
  --bg:#0a0a0a;
  --text:#f5f5f5;
  --muted:#bcbcbc;
  --card:#121212;
  --border:#1e1e1e;
  --carbon: #2b2b2b;
}

.hl-gold { color: var(--gold); }
.hl-muted { color: var(--muted); }

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:Roboto,system-ui,-apple-system,Segoe UI,Arial,sans-serif}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 16px}

h1,h2,h3{font-family:Outfit,system-ui,-apple-system,Segoe UI,Arial,sans-serif;margin:0 0 .5rem 0}
h1{font-size:48px;line-height:1.1}
h2{font-size:28px}
h3{font-size:20px}

.btn{display:inline-block;padding:12px 18px;border-radius:6px;border:1px solid transparent;font-weight:600;cursor:pointer;transition:transform .12s ease, opacity .2s ease}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-gold{background:var(--gold);color:#1b1b1b}
.btn-outline{border-color:var(--gold);color:var(--gold);background:transparent}

.site-header{position:sticky;top:0;left:0;right:0;z-index:50;background:#0c0c0c;border-bottom:1px solid rgba(255,255,255,.06);transition:background .25s ease}
.site-header.transparent{background:transparent;border-bottom-color:transparent}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{display:flex;align-items:center;gap:10px;font-weight:700}
.logo .brand{font-family:Outfit, sans-serif;font-size:18px;letter-spacing:.5px}

.main-nav ul{display:flex;gap:22px;list-style:none;margin:0;padding:0}
.main-nav a{padding:8px 6px;border-bottom:2px solid transparent}
.main-nav a.active, .main-nav a:hover{border-bottom-color:var(--gold);}

.hamburger{display:none;background:none;border:0;cursor:pointer}
.hamburger span{display:block;width:24px;height:2px;background:#fff;margin:5px 0}

@media (max-width: 920px){
  .main-nav{display:none}
  .hamburger{display:block}
}

.mobile-drawer{position:fixed;inset:0 0 0 auto;width:78%;max-width:360px;background:#0b0b0b;transform:translateX(100%);transition:transform .25s ease;z-index:60;border-left:1px solid rgba(255,255,255,.08)}
.mobile-drawer.open{transform:translateX(0)}
.mobile-drawer .drawer-close{position:absolute;right:12px;top:8px;background:none;border:0;color:#fff;font-size:32px}
.mobile-drawer ul{list-style:none;margin:64px 0 0;padding:0}
.mobile-drawer li{border-bottom:1px solid rgba(255,255,255,.06)}
.mobile-drawer a{display:block;padding:16px}

/* ===== Hero: full-viewport background slideshow ===== */
.hero{
  position:relative;
  min-height:100vh;               /* full screen */
  display:flex;
  align-items:center;
  padding:0;                      /* no extra space; content is vertically centered */
  overflow:hidden;
}
.hero::before{                    /* gradient/vignette to keep text and header readable */
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35) 35%, rgba(0,0,0,.5) 100%);
}
.hero-slideshow{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#000;
}
.hero-slideshow .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.06);          /* subtle zoom-out effect while active */
  transition:opacity 900ms ease, transform 6s ease;
  will-change:opacity, transform;
}
.hero-slideshow .slide.is-active{
  opacity:1;
  transform:scale(1);
}
.hero-inner{
  position:relative;
  z-index:2;                      /* above slides + vignette */
  width:100%;
}
.hero-copy{
  max-width:720px;
  padding:20px 0;
}
.hero-copy p{color:var(--muted)}
.subscribe{display:flex;gap:10px;margin-top:18px}
.subscribe input[type="email"]{flex:1;min-width:0;padding:24px 14px;border-radius:8px;border:1px solid var(--border);background:#0f0f0f;font-size:large;color:#fff}
.subscribe .hp{display:none} /* honeypot */
.form-note{margin-top:8px;font-size:14px;color:var(--muted)}

.section{padding:40px 0}
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}

.grid.products{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media(max-width:920px){ .grid.products{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .grid.products{grid-template-columns:1fr} }

.product-card{background:var(--card);border:1px solid var(--border);border-radius:12px;overflow:hidden;display:flex;flex-direction:column}
.product-image img{aspect-ratio:1/1;object-fit:cover;background:#111}
.product-info{padding:14px}
.product-info .desc{color:var(--muted);margin:.25rem 0 .5rem}
.price{font-weight:700;margin-bottom:12px}
.product-actions{display:flex;gap:10px}

.section-reviews{background:#0d0d0d;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.reviews{display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;padding:8px 0}
.review{min-width:280px;scroll-snap-align:start;background:var(--card);border:1px solid var(--border);border-radius:12px;padding:16px}
.stars{color:var(--gold);margin-bottom:6px}

.modal{position:fixed;inset:0;z-index:999;display:none}
.modal.open{
  display:flex;                 /* center modals in viewport */
  align-items:center;
  justify-content:center;
}
.modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6)}
.modal-dialog{
  position:relative;
  max-width:900px;
  margin:0;                     /* overridden to work with flex centering */
  width: min(900px, 100% - 32px);
  background:#0e0e0e;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
}
.modal-close{position:absolute;top:10px;right:12px;background:none;border:1px solid var(--border);color:#fff;font-size:28px;width:36px;height:36px;border-radius:50%}
.modal-body{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:20px;
}

/* Image-only modal body (sizing chart) */
.modal-image-body{
  display:block;
  padding:0;
}
.modal-image-body img{
  width:100%;
  height:auto;
  display:block;
}

.qv-image img{border-radius:10px;border:1px solid var(--border)}
.qv-price{font-weight:800;margin:8px 0}
.qv-sizes{color:var(--muted);margin-bottom:10px}

.site-footer{border-top:1px solid var(--border);padding:28px 0 10px;background:#0c0c0c}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:16px;
}
.footer-grid h4{font-family:Outfit, sans-serif;margin-bottom:10px}
.list{list-style:none;margin:0;padding:0}
.list li{margin:6px 0}
.footer-bottom{border-top:1px solid var(--border);margin-top:12px;padding-top:12px;color:#9a9a9a}

/* Sizing chart thumb in footer */
.footer-sizing .size-chart-thumb{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  background:#111;
  border-radius:8px;
  border:1px solid var(--border);
  cursor:pointer;
}
.footer-sizing .size-chart-thumb img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:6px;
}
.footer-sizing .size-chart-thumb span{
  font-size:14px;
  color:var(--muted);
}
.footer-sizing .size-chart-thumb:hover{
  border-color:var(--gold);
}

/* Footer responsive layout */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width: 560px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

.cookie-banner{position:fixed;left:0;right:0;bottom:0;background:#111;border-top:1px solid var(--border);display:none}
.cookie-banner .cookie-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 0}
.cookie-banner p{margin:0;color:#cfcfcf}

:focus-visible{outline:2px solid var(--purple);outline-offset:2px}

h1.bigger {
  font-size: 70px;
  text-transform: uppercase;

  /* Fallback solid color for older browsers */
  color: #E18A19;

  /* Gradient text */
  background: linear-gradient(#E18A19, #dda357, #E18A19);
  -webkit-background-clip: text;
  background-clip: text;           /* future/Firefox */
  color: transparent;              /* standard way to reveal gradient */
  -webkit-text-fill-color: transparent; /* Safari/Chrome */
  display: inline-block;           /* helps ensure clipping behaves */
}

/* Light header bar like the screenshot */
.site-header.light{
  position: sticky; top:0; left:0; right:0; z-index:50;
  background:#fff; color:#111;
  border-bottom:1px solid rgba(0,0,0,.06);
}

/* three-zone layout: hamburger+logo | nav | icon */
.header-inner{display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; height:72px}

/* brand block */
.logo{display:flex; align-items:center; gap:10px; color:#111}
.brand-wrap{line-height:1}
.logo .brand{font-family:Outfit, sans-serif; font-weight:800; letter-spacing:.5px; font-size:18px}
.logo .tagline{font-size:11px; letter-spacing:.12em; color:#666; text-transform:uppercase; display:block; margin-top:2px}

/* center nav */
.main-nav{justify-self:center}
.main-nav ul{display:flex; gap:26px; list-style:none; margin:0; padding:0}
.main-nav a{display:inline-block; padding:8px 4px; color:#111; font-weight:600; border-bottom:2px solid transparent}
.main-nav a:hover{color:#000}
.main-nav a.active{border-bottom-color: var(--gold)}

/* right icon */
.header-cta .icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(0,0,0,.12); color:#111;
}

/* hamburger */
.hamburger{background:none; border:0; cursor:pointer; padding:6px}
.hamburger span{display:block; width:24px; height:2px; background:var(--gold); margin:5px 0}

/* responsive: hide center nav under 980px */
@media (max-width:980px){
  .main-nav{display:none}
}

/* Mobile drawer contrast fix */
.mobile-drawer{
  background:#0b0b0b;   /* dark panel */
  color:#fff;           /* make all text light */
}
.mobile-drawer a{
  color:#fff;
  font-weight:600;
}
.mobile-drawer a.active{ color: var(--gold); }
.mobile-drawer li{ border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-drawer .drawer-close{
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}

/* Center the modal in the viewport (already handled above) */
/* (kept here in case of earlier references) */

/* Let the dialog size nicely when centered */
/* (already handled above) */

/* ===== Featured Video Band ===== */
.video-band{
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate; /* keeps overlay above bg */
}

/* full-bleed background */
.video-band-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}
@media (min-width: 768px){
  .video-band-bg{ background-attachment: fixed; } /* simple parallax */
}

/* darkening overlay for readability */
.video-band-overlay{
  position:absolute; inset:0; z-index:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}

/* constrained inner content */
.video-band-inner{
  position: relative; z-index: 1;
  width: 100%;
  padding: 48px 0;
  text-align: left;
}
.video-band-title{
  font-family: Outfit, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 6px 0;
}
.video-band-sub{ color: var(--muted); margin: 0 0 16px 0; }

/* center play button */
.play-btn{
  position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);
  z-index: 1;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  transition: transform .15s ease, opacity .2s ease;
}
.play-btn:hover{ transform: translate(-50%, -50%) scale(1.04); }
.play-btn:active{ transform: translate(-50%, -50%) scale(0.98); }

/* video modal sizing */
.video-modal-body{ padding: 0; }
.video-embed{ position: relative; width: min(960px, 100vw - 32px); aspect-ratio: 16/9; background:#000; }
.video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; }

/* Optional: softer edge on band */
.video-band::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px;
  background: rgba(255,255,255,.06);
}

/* Desktop: keep the play button centered over the band */
.play-btn{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%, -50%);
  z-index:1;
  background:transparent; border:0; cursor:pointer; padding:0;
  transition: transform .15s ease, opacity .2s ease;
}
.play-btn:hover{ transform:translate(-50%, -50%) scale(1.04); }

/* Mobile layout: center everything and stack in order */
@media (max-width: 768px){
  .video-band-inner{
    text-align:center;
    padding:56px 0;
  }
  .video-band-title{ margin:8px 0 4px; }
  .video-band-sub{ margin:0 0 14px; }
  .video-band-actions{ display:flex; justify-content:center; }

  /* Put the play button in normal flow on mobile so it sits above the text */
  .play-btn{
    position:static;
    transform:none;
    margin:0 auto 14px;
    display:block;
  }
  .play-btn:hover{ transform:none; }
  .play-btn svg{ width:72px; height:72px; }
}

/* Smooth SVG "laser" that runs around the card edge */
.product-card.laser{ position:relative; overflow:hidden; } /* keep glow tidy */

.product-card.laser .laser-border{
  position:absolute; inset:0; pointer-events:none; z-index:3;
  border-radius:1px; /* match card radius */
  filter: drop-shadow(0 0 8px rgba(255,211,106,.45));
}
.product-card.laser .laser-border svg{ width:100%; height:100%; display:block; }

/* animate the dash around the full perimeter */
.product-card.laser .laser-border rect{
  animation: gnb-laser 4.6s linear infinite;
}
@keyframes gnb-laser{
  to { stroke-dashoffset: -1000; } /* one full lap */
}

/* pause on hover (optional) */
.product-card.laser:hover .laser-border rect{
  animation-play-state: paused;
}

/* ===== Video grid (matches your dark UI) ===== */
.grid.grid-videos{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media(max-width:920px){.grid.grid-videos{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.grid.grid-videos{grid-template-columns:1fr}}

.video-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  display:flex;flex-direction:column;
}

.video-thumb{position:relative;aspect-ratio:16/9;background:#000;overflow:hidden}
.video-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.video-card:hover .video-thumb img{transform:scale(1.03)}

/* play badge */
.play-badge{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:72px;height:72px;border-radius:50%;
  border:2px solid rgba(255,255,255,.95);
  background:rgba(0,0,0,.28);
  display:grid;place-items:center;
}
.play-badge::before{
  content:"";display:block;width:0;height:0;
  border-left:18px solid #fff;border-top:12px solid transparent;border-bottom:12px solid transparent;
  margin-left:4px;
}

.video-title{padding:12px 14px 6px;font-size:16px;line-height:1.25}
.video-meta{padding:0 14px 14px;color:var(--muted);font-size:13px}

/* modal sizing for video */
.video-modal-body{padding:0}
.video-embed{position:relative;width:min(960px, 100vw - 32px);aspect-ratio:16/9;background:#000}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%}

/* Quick View gallery */
.qv-gallery{display:grid; gap:10px}
.qv-gallery img{
  border-radius:10px;
  border:1px solid var(--border);
  background:#0f0f0f;
  width:100%;
  aspect-ratio:1 / 1;           /* square crops like your product cards */
  object-fit:cover;
}
.qv-gallery.has-2{grid-template-columns:1fr 1fr}
@media (max-width: 560px){
  .qv-gallery.has-2{grid-template-columns:1fr} /* stack on small screens */
}

/* ===== About Page ===== */
.page-hero{
  position:relative;
  min-height:48vh;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  background-image:var(--hero-bg);
  border-bottom:1px solid var(--border);
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.75) 100%);
}
.page-hero .container{
  position:relative; z-index:1;
  padding:24px 16px 28px;
}
.page-hero .kicker{
  display:inline-block;
  padding:4px 10px;
  background:rgba(225,138,25,.12);
  border:1px solid rgba(225,138,25,.35);
  color:var(--gold);
  border-radius:999px;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:8px;
}
.page-hero h1{font-size:42px;margin:.25rem 0}
.page-hero .meta{color:var(--muted)}
@media (max-width:560px){ .page-hero h1{font-size:32px} }

.about-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:22px;
}
@media (max-width: 960px){
  .about-grid{ grid-template-columns: 1fr; }
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.card-title{
  font-family:Outfit, sans-serif;
  margin:0 0 10px 0;
  font-size:18px;
}

.lead{font-size:18px;color:#eaeaea}
.pull-quote{
  margin:18px 0;
  padding:14px 16px;
  border-left:4px solid var(--gold);
  background:#0f0f0f;
  color:#f0f0f0;
  border-radius:8px;
}
.bulleted{margin:0;padding-left:18px}
.bulleted li{margin:6px 0}

.media-card .media{
  width:100%; height:auto;
  border-radius:10px;
  border:1px solid var(--border);
  background:#111;
}
.media-card .media-caption{
  font-size:13px;
  color:var(--muted);
  margin-top:8px;
}

.contact-card .tight{margin:0 0 6px 0}
.contact-card a{color:var(--gold);text-decoration:underline}

.about-gallery{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap:14px;
  margin-top:18px;
}
.about-gallery .gal-item{
  border-radius:12px; overflow:hidden;
  background:#0f0f0f; border:1px solid var(--border);
}
.about-gallery img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.about-gallery .tall{ grid-row: span 2; }
@media (max-width:960px){
  .about-gallery{ grid-template-columns: 1fr 1fr; grid-auto-rows:180px; }
  .about-gallery .tall{ grid-row: span 1; }
}

.overhero {
  max-width: 1200px;
  display:block;
}

/* ===== Hero (About) — full-bleed bg, text aligned to body start ===== */
.page-hero.centerparent{
  /* let the section span the full width so the bg can be full-bleed */
  max-width: none;
  margin: 0;
  padding: 0;

  /* place the text block at the bottom of the hero */
  position: relative;
  display: flex;
  align-items: flex-end;

  /* make sure the background covers */
  background-size: cover;
  background-position: center;
}
.page-hero.centerparent::before{
  /* dark gradient for readability over the image */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.55) 65%,
    rgba(0,0,0,.75) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.page-hero.centerparent .row{
  /* row should span full width so we can center the inner container */
  width: 100%;
}

.page-hero.centerparent .container-abt{
  /* this mimics your site container: centered, with gutters */
  position: relative;
  z-index: 1;                 /* above gradient */
  width: 100%;
  max-width: 1200px;          /* same as your .container */
  margin: 0 auto;             /* centers the block */
  padding: 24px 16px 28px;    /* same side gutters as body */
  text-align: left;           /* make sure headings aren’t centered */
}

/* About gallery: 3 equal rectangles */
.about-gallery.rect3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.about-gallery.rect3 .gal-item{
  border-radius:12px;
  overflow:hidden;
  background:#0f0f0f;
  border:1px solid var(--border);
  aspect-ratio: 16 / 9;      /* rectangular look */
}
.about-gallery.rect3 img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Responsive */
@media (max-width:960px){
  .about-gallery.rect3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:560px){
  .about-gallery.rect3{ grid-template-columns: 1fr; }
}
