/* ==========================================================
   VOICE 313 INDUSTRY — Design tokens (navy + red, from logo)
   ========================================================== */
:root{
  --pitch-black:#0D1F3C;      /* brand navy, sampled from logo */
  --turf-green:#0D1F3C;       /* primary dark (kept var name for minimal diff, now navy) */
  --turf-green-light:#17335C; /* lighter navy for gradients */
  --volt:#E30016;             /* brand red, sampled from logo */
  --chalk:#F5F7F2;
  --signal-orange:#E30016;    /* brand red used as the single accent throughout */
  --grey:#8B94A8;
  --grey-dark:#414C63;

  --font-display:'Anton', sans-serif;
  --font-body:'Manrope', sans-serif;
  --font-mono:'Space Mono', monospace;

  --radius:14px;
  --ease:cubic-bezier(.19,1,.22,1);
  --header-h:74px; /* fallback, overridden by JS with the real measured header height */
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--chalk);
  color:var(--pitch-black);
  font-family:var(--font-body);
  line-height:1.5;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

.text-accent{ color:var(--volt); }

/* ==========================================================
   Loader stripe (brief page-load animation)
   ========================================================== */
.stripe-loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--pitch-black);
  display:flex; align-items:center; justify-content:center;
  transition:transform .7s var(--ease);
}
.stripe-loader span{
  width:64px; height:64px; border-radius:50%;
  border:4px solid var(--turf-green-light);
  border-top-color:var(--volt);
  animation:spin .8s linear infinite;
}
.stripe-loader.is-done{ transform:translateY(-100%); pointer-events:none; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* ==========================================================
   Header
   ========================================================== */
.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(245,247,242,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(11,14,12,.08);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-hidden{ transform:translateY(-100%); }
.site-header.is-scrolled{ box-shadow:0 8px 24px rgba(11,14,12,.06); }

.header-inner{
  max-width:1240px; margin:0 auto; padding:16px 28px;
  display:flex; align-items:center; gap:24px;
}
.logo{ display:flex; align-items:center; gap:8px; margin-right:auto; }
.logo-mark-img{ width:34px; height:34px; object-fit:contain; }
.logo-text{ font-family:var(--font-display); font-size:19px; letter-spacing:.5px; }
.logo-text em{ font-style:normal; color:var(--volt); }

.main-nav{ display:flex; gap:28px; }
.nav-link{
  position:relative; font-weight:600; font-size:14.5px; padding:6px 2px; color:var(--pitch-black);
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background:var(--volt); transition:width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after{ width:100%; }
.nav-link.is-active{ color:var(--volt); }

.burger{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;
}
.burger span{ width:22px; height:2px; background:var(--pitch-black); transition:transform .3s, opacity .3s; }
.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); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:999px; font-weight:700; font-size:14.5px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  border:1.5px solid transparent; white-space:nowrap;
}
.btn-accent{ background:var(--volt); color:var(--chalk); }
.btn-accent:hover{ background:var(--pitch-black); transform:translateY(-3px); box-shadow:0 10px 24px rgba(13,31,60,.3); }
.btn-ghost{ border-color:var(--pitch-black); color:var(--pitch-black); }
.btn-ghost:hover{ background:var(--pitch-black); color:var(--chalk); transform:translateY(-3px); }
.btn-full{ width:100%; justify-content:center; }
.nav-cta{ padding:10px 22px; }

/* ==========================================================
   Reveal-on-scroll (generic utility)
   ========================================================== */
[data-reveal]{
  opacity:0; transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* ==========================================================
   Hero
   ========================================================== */
.hero{
  position:relative; width:100%;
  overflow:hidden;
  min-height:calc(100vh - var(--header-h));
  display:flex;
}
.hero-content{
  position:relative; z-index:1;
  width:100%; max-width:1240px; margin:0 auto; padding:28px;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-inner{
  max-width:min(calc(32vw - 68px), 329px);
  margin-left: 100px;
  margin-top: 50px;
  
}
.hero-diagonal{
  position:absolute; top:-20%; right:-10%; width:70%; height:160%;
  background:linear-gradient(135deg, var(--turf-green) 0%, var(--turf-green-light) 100%);
  transform:rotate(-8deg);
  z-index:-1; border-radius:40px;
  opacity:.08;
  overflow:hidden;
}
.hero .hero-diagonal.has-bg{
  position:absolute; top:0; right:0; bottom:0;
  left:max(32vw, calc(50vw - 223px));
  width:auto; height:auto;
  transform:none; border-radius:0; opacity:1;
  clip-path:polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background:url('../assets/hero.png') center/cover no-repeat;
  animation:heroBgPan 18s ease-in-out infinite alternate;
  z-index:0;
}
@keyframes heroBgPan{
  0%{ background-position:46% 50%; }
  100%{ background-position:54% 46%; }
}
.hero-shine{
  position:absolute; top:-60%; left:-35%; width:26%; height:220%;
  background:linear-gradient(100deg, rgba(245,247,242,0) 0%, rgba(245,247,242,.4) 50%, rgba(245,247,242,0) 100%);
  transform:skewX(-18deg);
  animation:heroShineSweep 5.5s ease-in-out infinite;
  animation-delay:1s;
  pointer-events:none;
}
@keyframes heroShineSweep{
  0%{ left:-35%; opacity:0; }
  8%{ opacity:.7; }
  45%{ opacity:.15; }
  62%{ left:135%; opacity:0; }
  100%{ left:135%; opacity:0; }
}

/* Floating sport-icon accents, sit just above the diagonal image, below all text */
.hero-float{
  position:absolute; z-index:-1; pointer-events:none;
}
.hero-float svg{ width:100%; height:100%; display:block; }
.hero-float-ball{
  top:9%; left:63%; width:56px; height:56px; color:var(--chalk); opacity:.22;
  animation:heroFloatA 7s ease-in-out infinite;
}
.hero-float-volleyball{
  top:46%; left:84%; width:42px; height:42px; color:var(--chalk); opacity:.2;
  animation:heroFloatB 8.5s ease-in-out infinite; animation-delay:.6s;
}
.hero-float-glove{
  top:74%; left:58%; width:48px; height:48px; color:var(--volt); opacity:.24;
  animation:heroFloatA 9s ease-in-out infinite; animation-delay:1.6s;
}
@keyframes heroFloatA{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-16px) rotate(7deg); }
}
@keyframes heroFloatB{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(14px) rotate(-9deg); }
}
@media (max-width: 900px){
  .hero-float{ display:none; }
  .hero .hero-diagonal.has-bg{ left:46%; clip-path:polygon(18% 0, 100% 0, 100% 100%, 0 100%); }
  .hero-inner{ max-width:calc(46vw - 68px); }
}
@media (max-width: 640px){
  .hero .hero-diagonal.has-bg{ left:58%; clip-path:polygon(22% 0, 100% 0, 100% 100%, 0 100%); }
  .hero-inner{ max-width:calc(58vw - 60px); }
}
@media (prefers-reduced-motion: reduce){
  .hero-diagonal.has-bg, .hero-shine, .hero-float{ animation:none; }
}
.eyebrow{
  font-family:var(--font-mono); text-transform:uppercase; letter-spacing:2px;
  font-size:12.5px; color:var(--volt); margin:0 0 18px;
}
.hero-title{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(36px, 6vw, 72px); line-height:.98; margin:0 0 18px; letter-spacing:.5px;
}
.hero-title .line{ display:block; }
/* Staggered entrance timing for the home hero only */
.hero .eyebrow{ transition-delay:.05s; }
.hero-title .line:nth-child(1){ transition-delay:.16s; }
.hero-title .line:nth-child(2){ transition-delay:.3s; }
.hero .hero-sub{ transition-delay:.46s; }
.hero .hero-actions{ transition-delay:.6s; }
.hero .scoreboard{ transition-delay:.74s; }
.hero-accent{ color:var(--volt); position:relative; }
.hero-sub{ font-size:15.5px; line-height:1.5; color:var(--grey-dark); margin:0 0 24px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.scoreboard{
  margin-top:clamp(28px, 5vh, 56px); background:var(--pitch-black); color:var(--chalk);
  border-radius:var(--radius); padding:22px 36px;
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
}
.score-cell{ display:flex; flex-direction:column; }
.score-num{ font-family:var(--font-mono); font-weight:700; font-size:38px; color:var(--volt); }
.score-label{ font-size:12px; color:var(--grey); text-transform:uppercase; letter-spacing:1px; }
.score-divider{ color:var(--grey-dark); font-size:20px; }

/* Marquee */
.marquee{
  background:var(--pitch-black); overflow:hidden; padding:16px 0; margin-top:60px;
}
.marquee-track{
  display:flex; gap:22px; white-space:nowrap; width:max-content;
  animation:marquee 22s linear infinite;
  font-family:var(--font-display); font-size:20px; color:var(--grey-dark); letter-spacing:1px;
}
.marquee-track span:nth-child(4n+1){ color:var(--volt); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================
   Sections (generic)
   ========================================================== */
.section{ max-width:1240px; margin:0 auto; padding:100px 28px; }
.section-title{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(30px, 5vw, 52px); line-height:1.05; margin:0 0 50px;
}

/* Category grid */
.category-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.category-card{
  position:relative; background:var(--pitch-black); color:var(--chalk);
  border-radius:var(--radius); padding:34px; overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.category-card::before{
  content:''; position:absolute; inset:0; background:linear-gradient(135deg, var(--volt) 0%, transparent 60%);
  opacity:0; transition:opacity .4s;
}
.category-card:hover{ transform:translateY(-8px); box-shadow:0 20px 40px rgba(11,14,12,.25); }
.category-card:hover::before{ opacity:1; }
.card-index{ font-family:var(--font-mono); color:var(--grey); font-size:13px; }
.category-card h3{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:32px; margin:16px 0 8px; position:relative; }
.category-card p{ color:var(--grey); margin:0 0 20px; position:relative; }
.card-arrow{
  display:inline-flex; width:38px; height:38px; border-radius:50%; border:1.5px solid var(--grey-dark);
  align-items:center; justify-content:center; transition:transform .35s var(--ease), background .35s, border-color .35s;
  position:relative;
}
.category-card:hover .card-arrow{ background:var(--volt); color:var(--chalk); border-color:var(--volt); transform:translateX(6px) rotate(45deg); }

/* ==========================================================
   Interactive photo banner carousel (category spotlights)
   ========================================================== */
.banner-carousel{
  position:relative; height:460px; border-radius:22px; overflow:hidden;
  box-shadow:0 24px 50px rgba(13,31,60,.18);
  margin-bottom:48px;
}
.banner-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1s var(--ease);
}
.banner-slide.is-active{ opacity:1; visibility:visible; z-index:2; }
.banner-bg{
  position:absolute; inset:-4%; background-size:cover; background-position:center;
  animation:bannerKenburns 9s ease-in-out infinite alternate;
}
.banner-slide.no-image{ background:linear-gradient(135deg, var(--pitch-black) 0%, var(--turf-green-light) 100%); }
@keyframes bannerKenburns{ from{ transform:scale(1); } to{ transform:scale(1.08); } }

.banner-overlay{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(13,31,60,.92) 0%, rgba(13,31,60,.35) 55%, rgba(13,31,60,.05) 100%);
}
.banner-content{
  position:relative; z-index:2; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:46px; color:var(--chalk); max-width:560px;
}
.banner-index{ font-family:var(--font-mono); color:var(--volt); font-size:13px; letter-spacing:1px; }
.banner-content h3{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(30px, 4vw, 46px); margin:8px 0 10px; line-height:1;
}
.banner-content p{ margin:0 0 22px; color:rgba(245,247,242,.82); font-size:15.5px; }

.banner-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(245,247,242,.35);
  background:rgba(245,247,242,.12); backdrop-filter:blur(6px);
  color:var(--chalk); font-size:22px; line-height:1; display:flex; align-items:center; justify-content:center;
  transition:background .25s, transform .25s;
}
.banner-arrow:hover{ background:var(--volt); border-color:var(--volt); transform:translateY(-50%) scale(1.08); }
.banner-prev{ left:22px; }
.banner-next{ right:22px; }

.banner-dots{
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; gap:8px;
}
.banner-dot{
  width:8px; height:8px; border-radius:999px; background:rgba(245,247,242,.4);
  cursor:pointer; transition:all .3s var(--ease);
}
.banner-dot.is-active{ width:24px; background:var(--volt); }

/* Secondary quick-link grid now sits below the carousel, needs breathing room */
.category-grid-secondary{ margin-top:8px; }

@media (max-width: 680px){
  .banner-carousel{ height:520px; margin-bottom:36px; }
  .banner-content{ padding:28px; }
}

/* Why section */
.why-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:60px; align-items:start; }
.why-copy p{ color:var(--grey-dark); font-size:16px; max-width:420px; }
.why-item{ display:flex; gap:20px; padding:24px 0; border-bottom:1px solid rgba(11,14,12,.1); }
.why-item:first-child{ padding-top:0; }
.why-num{ font-family:var(--font-mono); color:var(--volt); font-weight:700; font-size:14px; }
.why-item h4{ margin:0 0 6px; font-size:18px; }
.why-item p{ margin:0; color:var(--grey-dark); font-size:14.5px; }

/* CTA band */
.cta-band{
  max-width:1240px; margin:0 auto 100px; padding:70px 40px; border-radius:24px;
  background:var(--turf-green); color:var(--chalk); text-align:center;
  position:relative; overflow:hidden;
}
.cta-band h2{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:clamp(28px,5vw,44px); margin:0 0 14px; }
.cta-band p{ color:rgba(245,247,242,.75); margin:0 0 30px; }
.cta-band .btn-accent{ background:var(--volt); color:var(--chalk); }
.cta-band .btn-accent:hover{ background:var(--chalk); color:var(--pitch-black); }

/* ==========================================================
   Page hero (Products / Contact)
   ========================================================== */
.page-hero{ position:relative; max-width:1240px; margin:0 auto; padding:80px 28px 40px; overflow:hidden; }
.hero-diagonal.small{ width:50%; height:140%; opacity:.06; }
.page-hero-title{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(38px,7vw,76px); margin:0 0 18px; line-height:1;
}
.page-hero-sub{ max-width:520px; color:var(--grey-dark); font-size:16px; }

/* ==========================================================
   Catalog — tab switcher (scoreboard flip style)
   ========================================================== */
.catalog{ max-width:1240px; margin:0 auto; padding:20px 28px 100px; }

.tab-switcher{
  position:relative; display:inline-flex; background:var(--pitch-black); border-radius:999px;
  padding:6px; margin-bottom:56px; gap:4px;
}
.tab-btn{
  position:relative; z-index:2; background:none; border:none; color:var(--grey);
  padding:12px 26px; border-radius:999px; display:flex; align-items:center; gap:10px;
  font-weight:700; font-size:14.5px; transition:color .3s;
}
.tab-btn .tab-index{ font-family:var(--font-mono); font-size:11px; color:var(--grey-dark); }
.tab-btn.is-active{ color:var(--chalk); }
.tab-btn.is-active .tab-index{ color:rgba(245,247,242,.65); }
.tab-indicator{
  position:absolute; top:6px; left:6px; height:calc(100% - 12px); border-radius:999px;
  background:var(--volt); transition:transform .4s var(--ease), width .4s var(--ease); z-index:1;
}

.tab-panel{ display:none; }
.tab-panel.is-active{ display:block; animation:fadeUp .5s var(--ease); }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(16px);} to{ opacity:1; transform:translateY(0);} }

.panel-head{ margin-bottom:34px; }
.panel-head h2{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:clamp(26px,4vw,40px); margin:0 0 8px; }
.panel-head p{ color:var(--grey-dark); margin:0; }

.sub-switcher{ display:flex; gap:10px; margin-bottom:30px; }
.sub-btn{
  background:transparent; border:1.5px solid var(--pitch-black); color:var(--pitch-black);
  padding:9px 20px; border-radius:999px; font-weight:600; font-size:13.5px; transition:all .3s var(--ease);
}
.sub-btn.is-active{ background:var(--pitch-black); color:var(--volt); }

.sub-panel{ display:none; }
.sub-panel.is-active{ display:block; animation:fadeUp .4s var(--ease); }

.product-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.product-card{
  background:#fff; border:1px solid rgba(11,14,12,.08); border-radius:var(--radius);
  padding:22px; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:0 16px 34px rgba(11,14,12,.1); border-color:transparent; }
.product-thumb{
  aspect-ratio:4 / 3; width:100%; border-radius:10px; margin-bottom:18px;
  background:linear-gradient(135deg, var(--turf-green) 0%, var(--pitch-black) 100%);
  background-size:contain; background-position:center; background-repeat:no-repeat;
  display:flex; align-items:flex-end; padding:14px; position:relative; overflow:hidden;
}
.product-thumb::after{
  content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg, rgba(245,247,242,.05) 0 10px, transparent 10px 20px);
}
.product-tag{
  position:relative; font-family:var(--font-mono); font-size:11px; text-transform:uppercase;
  background:var(--volt); color:var(--chalk); padding:5px 10px; border-radius:999px; font-weight:700;
}
.product-thumb-link{ display:block; color:inherit; text-decoration:none; }
.product-thumb-link:hover .product-thumb{ transform:scale(1.02); }
.product-thumb{ transition:transform .35s var(--ease); }
.product-card h3{ font-size:17px; margin:0 0 8px; }
.product-card p{ font-size:14px; color:var(--grey-dark); margin:0 0 16px; min-height:38px; }
.product-link{ font-weight:700; font-size:14px; color:var(--volt); }
.product-link:hover{ color:var(--pitch-black); }
.product-card-actions{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.product-link-ghost{ color:var(--grey-dark); font-weight:600; }
.product-link-ghost:hover{ color:var(--volt); }

/* ==========================================================
   Product detail page
   ========================================================== */
.product-detail{ padding-top:10px; }
.product-detail-grid{
  display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start;
}
.product-detail-image{
  height:420px; border-radius:var(--radius);
  background:linear-gradient(135deg, var(--turf-green) 0%, var(--pitch-black) 100%);
  background-size:contain; background-position:center; background-repeat:no-repeat;
  display:flex; align-items:flex-start; padding:22px; position:relative; overflow:hidden;
}
.product-detail-image::after{
  content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg, rgba(245,247,242,.05) 0 10px, transparent 10px 20px);
}
.breadcrumb-link{ color:inherit; text-decoration:underline; }
.product-detail-info h2{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(28px,4vw,42px); margin:6px 0 14px; line-height:1.05;
}
.product-detail-price{ font-family:var(--font-mono); font-size:20px; color:var(--volt); font-weight:700; margin:0 0 18px; }
.product-detail-desc{ font-size:16px; color:var(--grey-dark); margin:0 0 14px; }
.product-detail-long{ font-size:15px; color:var(--grey-dark); line-height:1.7; margin:0 0 26px; }
.product-detail-subhead{ font-size:15px; text-transform:uppercase; letter-spacing:1px; margin:0 0 14px; }
.product-detail-features{ list-style:none; padding:0; margin:0 0 34px; display:grid; gap:12px; }
.product-detail-features li{
  font-size:14.5px; color:var(--grey-dark); padding-left:24px; position:relative;
}
.product-detail-features li::before{
  content:'✓'; position:absolute; left:0; color:var(--volt); font-weight:700;
}
.product-detail-actions{ display:flex; gap:16px; flex-wrap:wrap; }

@media (max-width: 900px){
  .product-detail-grid{ grid-template-columns:1fr; gap:32px; }
  .product-detail-image{ height:300px; }
}

/* ==========================================================
   Contact page
   ========================================================== */
.contact-section{ padding-top:20px; }
.contact-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:60px; }
.contact-info h2{ font-family:var(--font-display); font-weight:400; text-transform:uppercase; font-size:34px; margin:0 0 14px; }
.contact-info p{ color:var(--grey-dark); max-width:360px; margin:0 0 34px; }
.info-row{ display:flex; flex-direction:column; gap:4px; padding:18px 0; border-bottom:1px solid rgba(11,14,12,.1); }
.info-label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; color:var(--grey); letter-spacing:1px; }
.info-row a, .info-row span:last-child{ font-weight:700; font-size:16px; }

.contact-form-wrap{ background:#fff; border:1px solid rgba(11,14,12,.08); border-radius:20px; padding:38px; }
.form-row{ margin-bottom:20px; display:flex; flex-direction:column; gap:8px; }
.form-row-split{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-row label{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--grey-dark); }
.form-row input, .form-row select, .form-row textarea{
  font-family:var(--font-body); font-size:15px; padding:13px 16px; border-radius:10px;
  border:1.5px solid rgba(11,14,12,.15); background:var(--chalk); transition:border-color .25s, background .25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--turf-green); background:#fff;
}
.form-row textarea{ resize:vertical; min-height:110px; }

.form-alert{ padding:16px 18px; border-radius:10px; margin-bottom:22px; font-size:14.5px; }
.form-success{ background:rgba(13,31,60,.08); border:1px solid rgba(13,31,60,.25); }
.form-error{ background:rgba(227,0,22,.08); border:1px solid rgba(227,0,22,.3); }
.form-error ul{ margin:8px 0 0 18px; padding:0; }
.form-note{ background:rgba(138,145,135,.15); border:1px solid rgba(138,145,135,.35); font-family:var(--font-mono); font-size:12.5px; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer{ background:var(--pitch-black); color:var(--chalk); margin-top:60px; }
.footer-inner{
  max-width:1240px; margin:0 auto; padding:70px 28px 40px;
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px;
}
.footer-brand .logo-text{ color:var(--chalk); }
.footer-brand .logo-text em{ color:var(--volt); }
.footer-brand p{ color:var(--grey); font-size:14px; margin-top:14px; max-width:280px; }
.footer-col h4{ font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--grey); margin:0 0 16px; }
.footer-col a{ display:block; color:var(--chalk); font-size:14.5px; margin-bottom:10px; opacity:.85; transition:opacity .25s, color .25s; }
.footer-col a:hover{ opacity:1; color:var(--volt); }
.footer-bottom{
  border-top:1px solid rgba(245,247,242,.1); padding:22px 28px; max-width:1240px; margin:0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-size:12.5px; color:var(--grey);
}
.admin-link{ color:var(--grey); text-decoration:underline; text-underline-offset:2px; opacity:.7; transition:opacity .2s, color .2s; }
.admin-link:hover{ opacity:1; color:var(--volt); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 900px){
  .why-grid, .contact-grid{ grid-template-columns:1fr; }
  .category-grid, .product-grid{ grid-template-columns:1fr 1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 680px){
  .main-nav, .nav-cta{ display:none; }
  .burger{ display:flex; }
  .main-nav.is-open{
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    background:var(--chalk); padding:20px 28px; border-bottom:1px solid rgba(11,14,12,.08); gap:16px;
  }
  .category-grid, .product-grid{ grid-template-columns:1fr; }
  .form-row-split{ grid-template-columns:1fr; }
  .scoreboard{ gap:18px; padding:22px; }
  .score-num{ font-size:28px; }
  .footer-inner{ grid-template-columns:1fr; }
}

/* ==========================================================
   COMPLETE RESPONSIVE FIX
==========================================================*/

/* Large Tablets */
@media (max-width:1024px){

.header-inner{
    padding:15px 20px;
}

.hero{
    min-height:auto;
    padding:60px 0;
}

.hero-inner{
    max-width:50%;
    margin-left:40px;
    margin-top:30px;
}

.hero .hero-diagonal.has-bg{
    left:48%;
}

.section{
    padding:80px 20px;
}

.category-grid,
.product-grid{
    gap:20px;
}

.banner-carousel{
    height:380px;
}

.banner-content{
    padding:34px;
}

.why-grid,
.contact-grid,
.product-detail-grid{
    gap:35px;
}

.footer-inner{
    padding:60px 20px;
}

}


/* Tablets */
@media (max-width:768px){

.hero{
    flex-direction:column;
    min-height:auto;
    padding:40px 0;
}

.hero-inner{
    max-width:100%;
    margin:0;
    padding:20px;
    text-align:center;
}

.hero-title{
    font-size:clamp(40px,8vw,56px);
}

.hero-sub{
    max-width:650px;
    margin:auto;
}

.hero-actions{
    justify-content:center;
}

.hero .hero-diagonal.has-bg{
    position:relative;
    left:0;
    width:100%;
    height:350px;
    clip-path:none;
    margin-top:40px;
    border-radius:0;
}

.category-grid{
    grid-template-columns:repeat(2,1fr);
}

.banner-carousel{
    height:420px;
    border-radius:16px;
}

.banner-content h3{
    font-size:30px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid,
.contact-grid,
.product-detail-grid{
    grid-template-columns:1fr;
}

.cta-band{
    margin:60px 20px;
    padding:50px 25px;
}

.footer-inner{
    grid-template-columns:repeat(2,1fr);
}

}




/* ==========================================================
   How It Works — process steps
   ========================================================== */
.steps-grid{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:start; gap:20px;
}
.step-card{
  background:#fff; border:1px solid rgba(13,31,60,.08); border-radius:var(--radius);
  padding:32px 26px; transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(13,31,60,.1); }
.step-icon{
  width:56px; height:56px; border-radius:14px; background:var(--pitch-black); color:var(--volt);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  transition:transform .35s var(--ease);
}
.step-icon svg{ width:26px; height:26px; }
.step-card:hover .step-icon{ transform:scale(1.08) rotate(-4deg); }
.step-num{ font-family:var(--font-mono); color:var(--grey); font-size:12.5px; letter-spacing:1px; }
.step-card h3{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:22px; margin:8px 0 10px;
}
.step-card p{ font-size:14.5px; color:var(--grey-dark); margin:0; line-height:1.55; }

.step-connector{
  width:40px; height:2px; background:repeating-linear-gradient(90deg, var(--grey) 0 6px, transparent 6px 12px);
  margin-top:48px;
}

@media (max-width: 900px){
  .steps-grid{ grid-template-columns:1fr; gap:20px; }
  .step-connector{ display:none; }
}

/* ==========================================================
   Brand statement — split text / image
   ========================================================== */
.statement-grid{
  display:grid; grid-template-columns:1fr 0.9fr; gap:64px; align-items:center;
}
.statement-text .eyebrow{ margin-bottom:20px; }
.statement-title{
  font-family:var(--font-display); font-weight:400; text-transform:uppercase;
  font-size:clamp(30px, 4.2vw, 48px); line-height:1.1; margin:0 0 22px;
}
.statement-sub{
  font-size:16px; color:var(--grey-dark); max-width:440px; margin:0 0 32px; line-height:1.6;
}

.statement-media{
  position:relative; border-radius:22px; overflow:hidden;
  aspect-ratio:4 / 5; box-shadow:0 24px 50px rgba(13,31,60,.18);
}
.statement-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s var(--ease);
}
.statement-media:hover img{ transform:scale(1.04); }
.statement-media.no-image{
  background:linear-gradient(135deg, var(--pitch-black) 0%, var(--turf-green-light) 100%);
}
.statement-split{
  background:var(--pitch-black);
  border-radius:28px;
  padding:70px 50px;
}
.statement-split .eyebrow{ color:var(--volt); }
.statement-title{ color:var(--chalk); }
.statement-sub{ color:rgba(245,247,242,.75); }

@media (max-width: 680px){
  .statement-split{ padding:44px 26px; border-radius:20px; }
}

@media (max-width: 900px){
  .statement-grid{ grid-template-columns:1fr; gap:36px; }
  .statement-media{ aspect-ratio:16 / 10; }
}


/* Mobile */
@media (max-width:576px){

.header-inner{
    padding:15px;
}

.hero{
    padding:20px 0;
}

.hero-inner{
    padding:20px;
}

.hero-title{
    font-size:38px;
}

.hero-sub{
    font-size:15px;
}

.hero-actions{
    flex-direction:column;
    align-items:center;
}

.hero-actions .btn{
    width:100%;
    justify-content:center;
}

.hero .hero-diagonal.has-bg{
    height:260px;
}

.section{
    padding:60px 16px;
}

.section-title{
    margin-bottom:30px;
}

.category-grid,
.product-grid{
    grid-template-columns:1fr;
}

.category-card{
    padding:25px;
}

.product-card{
    padding:18px;
}

.product-detail-image{
    height:250px;
}

.contact-form-wrap{
    padding:22px;
}

.form-row-split{
    grid-template-columns:1fr;
}

.cta-band{
    margin:40px 15px;
    padding:40px 20px;
}

.footer-inner{
    grid-template-columns:1fr;
    padding:50px 16px;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

}


/* Small Phones */
@media (max-width:400px){

.hero-title{
    font-size:32px;
}

.hero-sub{
    font-size:14px;
}

.btn{
    padding:12px 18px;
    font-size:13px;
}

.logo-text{
    font-size:16px;
}

.category-card h3{
    font-size:26px;
}

.page-hero-title{
    font-size:34px;
}

.contact-info h2{
    font-size:28px;
}

.cta-band{
    border-radius:16px;
}

}

.category-grid-secondary{
  grid-template-columns:repeat(2, minmax(280px, 380px));
  justify-content:center;
}