/* =========================================================================
   AKEfit Official Website — Styles
   Aesthetic: Premium outdoor gear. Forest green + sand cream + rust red + slate.
   Typography: Archivo (display), Fraunces (serif accent), Manrope (body), IBM Plex Mono (labels).
   ========================================================================= */

:root {
  /* 60-30-10 palette */
  --sand: #F3EEDF;
  --paper: #FBF8EE;
  --cream: #E9E1C7;
  --bone: #D9CFB0;

  --forest: #1F5F45;       /* brand primary */
  --forest-deep: #12402F;
  --forest-soft: #3C8869;

  --slate: #385269;        /* "rain" blue-gray accent */
  --slate-deep: #233447;

  --rust: #C9432E;         /* brand red accent — 10% */
  --rust-deep: #9B2F1F;

  --ink: #0E1A16;
  --ink-2: #2C3730;
  --ink-3: #5E6B62;
  --hairline: rgba(14,26,22,0.14);

  --shadow-soft: 0 20px 50px -20px rgba(14,26,22,0.30);
  --shadow-hard: 6px 6px 0 0 var(--ink);

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.3125rem;
  --fs-xl: clamp(1.625rem, 1.1rem + 2.2vw, 2.5rem);
  --fs-2xl: clamp(2rem, 1.2rem + 3.2vw, 3.5rem);
  --fs-3xl: clamp(2.75rem, 1.2rem + 6vw, 6rem);

  --lh-tight: 1.02;
  --lh-body: 1.65;

  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px;

  --maxw: 1280px;
  --maxw-wide: 1440px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--sand);
}
body {
  min-height: 100vh;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--sand);
  background-image:
    radial-gradient(1100px 600px at 90% -10%, rgba(31,95,69,0.18), transparent 60%),
    radial-gradient(800px 500px at -5% 110%, rgba(56,82,105,0.08), transparent 60%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: var(--fs-3xl); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { max-width: 68ch; }
::selection { background: var(--forest); color: var(--sand); }

.serif {
  font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
em.serif { color: var(--rust); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; position: relative; }
@media (min-width: 640px) { .wrap { padding-inline: var(--s-3); } }
@media (min-width: 900px) { .wrap { padding-inline: var(--s-5); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 6px 14px;
  background: transparent;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; background: var(--rust); border-radius: 50%;
}

.cta {
  --cta-bg: var(--forest);
  --cta-ink: var(--sand);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  min-height: 48px;
  background: var(--cta-bg);
  color: var(--cta-ink);
  font-family: 'Archivo', sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 0 var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
  white-space: nowrap;
}
.cta:hover, .cta:focus-visible {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 0 var(--ink);
  background: var(--forest-deep);
  outline: none;
}
.cta:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--ink); }
.cta--rust { --cta-bg: var(--rust); --cta-ink: #fff; }
.cta--rust:hover { background: var(--rust-deep); }
.cta--ghost {
  --cta-bg: transparent; --cta-ink: var(--ink);
  box-shadow: 5px 5px 0 0 transparent;
}
.cta--ghost:hover { background: var(--ink); color: var(--sand); box-shadow: 5px 5px 0 0 var(--rust); }

.cta svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.cta:hover svg { transform: translateX(3px); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.skip {
  position: absolute; top: -100px; left: 8px; z-index: 1000;
  background: var(--forest); color: var(--sand); padding: 10px 14px;
  font-weight: 700;
}
.skip:focus { top: 8px; }

/* =========================================================================
   RIBBON
   ========================================================================= */
.ribbon {
  background: var(--forest);
  color: var(--sand);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
}
.ribbon-track {
  display: flex; gap: 36px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.ribbon-track span { display: inline-flex; align-items: center; gap: 8px; }
.ribbon-track b { color: var(--rust); font-weight: 600; }
.dot { width: 6px; height: 6px; background: var(--rust); border-radius: 50%; display: inline-block; }
@media (max-width: 720px) {
  .ribbon-track { justify-content: center; gap: 14px; }
  .ribbon-track > span:nth-child(2),
  .ribbon-track > span:nth-child(3) { display: none; }
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--sand);
  border-bottom: 1.5px solid var(--ink);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: 14px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px; flex: 0 0 40px;
  position: relative;
  display: grid; place-items: center;
}
.logo-mark::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--forest);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.logo-mark::after {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 10px; height: 10px;
  background: var(--rust);
  border-radius: 50%;
}
.logo-mark span {
  position: relative; z-index: 2;
  color: var(--sand);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0;
}
.logo sup { font-size: 10px; color: var(--rust); margin-left: 2px; vertical-align: super; font-weight: 500; }

.nav-links {
  list-style: none;
  display: flex; justify-content: center; gap: 4px;
}
.nav-links a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color .15s, background .15s;
  position: relative;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a[aria-current="page"] {
  color: var(--forest);
}
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute;
  left: 18px; right: 18px; bottom: 8px;
  height: 2px; background: var(--rust);
}
.nav-cta { justify-self: end; }

.hamburger {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border: 2px solid var(--ink); border-radius: 6px;
  background: var(--forest);
  color: var(--sand);
  position: relative;
}
.hamburger span {
  width: 20px; height: 2.5px; background: var(--sand);
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s, background .2s;
}
.hamburger span:nth-child(1) { transform: translate(-50%, -7px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 7px); }
.hamburger.is-open { background: var(--rust); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--forest);
  z-index: 100;
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  color: var(--sand);
}
.mobile-menu.is-open { display: flex; animation: mm-in .35s var(--ease) both; }
@keyframes mm-in { from { opacity: 0; } to { opacity: 1; } }
.mobile-menu::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(243,238,223,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.mobile-menu a {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sand);
  padding: 8px 16px;
  position: relative;
  z-index: 2;
}
.mobile-menu a::after {
  content: ""; position: absolute; left: 14%; right: 14%; bottom: 4px;
  height: 2px; background: var(--rust); opacity: 0;
  transition: opacity .2s;
}
.mobile-menu a:hover::after, .mobile-menu a[aria-current="page"]::after { opacity: 1; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px;
  border: 2px solid var(--sand); background: transparent; border-radius: 50%;
  display: grid; place-items: center; z-index: 3;
}
.mobile-close::before, .mobile-close::after {
  content: ""; width: 22px; height: 2.5px; background: var(--sand); position: absolute;
}
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }
.mobile-menu .mm-cta { margin-top: var(--s-3); background: var(--rust); color: #fff; border-color: var(--sand); box-shadow: 5px 5px 0 0 var(--sand); }
.mobile-menu .mm-foot {
  position: absolute; bottom: 24px; left: 0; right: 0;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(243,238,223,0.55);
}
body.menu-open { overflow: hidden; }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee {
  background: var(--sand);
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: scroll-x 60s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after {
  content: "◆"; color: var(--rust); font-size: 0.75rem;
}
.marquee-track span.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 10vw, 160px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 30%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(31,95,69,.16) 0%, transparent 70%);
  pointer-events: none;
}
/* Rain streaks — subtle */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, transparent 0, transparent 49.8%, rgba(56,82,105,0.06) 49.9%, rgba(56,82,105,0.06) 50%, transparent 50.1%);
  background-size: 32px 120px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  container-type: inline-size;
  position: relative; z-index: 2;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  padding: 6px 12px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: var(--s-3);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2rem, 0.8rem + 5.6vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: var(--s-3);
  overflow-wrap: normal;
}
.hero h1 em.serif {
  color: var(--forest);
}
.hero h1 .rust { color: var(--rust); }
.hero h1 .underline {
  position: relative; display: inline-block;
  padding: 0 4px;
}
.hero h1 .underline::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px; background: var(--rust); opacity: 0.28;
  z-index: -1;
}

.hero-lede {
  font-size: clamp(1.0625rem, 0.9rem + 0.5vw, 1.25rem);
  max-width: 54ch;
  color: var(--ink-2);
  margin-bottom: var(--s-4);
}
@media (max-width: 960px) { .hero-lede { margin-inline: auto; } }
.hero-ctas { display: inline-flex; gap: var(--s-2); flex-wrap: wrap; }
@media (max-width: 960px) { .hero-ctas { justify-content: center; } }
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta { justify-content: center; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  justify-self: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-visual { aspect-ratio: 1/1; max-width: 420px; margin-top: var(--s-3); }
}
.hero-card {
  position: absolute; inset: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 16px 16px 0 0 var(--forest);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: -24px; left: -24px;
  width: 160px; height: 160px;
  background: var(--rust);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 0.875rem; font-weight: 800; letter-spacing: 0.04em;
  line-height: 1.15;
  box-shadow: 4px 4px 0 0 var(--ink);
  animation: spin 30s linear infinite;
}
.hero-badge b { display: block; font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
@media (max-width: 560px) {
  .hero-badge { width: 108px; height: 108px; font-size: 0.72rem; top: -12px; left: -12px; }
  .hero-badge b { font-size: 1.15rem; }
}

.hero-specs {
  position: absolute; right: -8px; bottom: -16px;
  background: var(--sand);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 0 var(--ink);
  min-width: 200px;
}
.hero-specs b { color: var(--forest); display: block; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 4px; font-weight: 700; }
@media (max-width: 560px) {
  .hero-specs { position: static; margin-top: var(--s-3); max-width: 320px; margin-inline: auto; }
}

.hero-chips {
  display: flex; gap: 8px; margin-top: var(--s-3); flex-wrap: wrap;
}
@media (max-width: 960px) { .hero-chips { justify-content: center; } }
.hero-chips li {
  list-style: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  white-space: nowrap;
}

/* =========================================================================
   SECTION SHELL
   ========================================================================= */
.section {
  padding: clamp(56px, 8vw, 120px) 0;
  position: relative;
}
.section--forest {
  background: var(--forest); color: var(--sand);
}
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--sand); }
.section--forest .eyebrow { color: var(--sand); border-color: var(--sand); }
.section--forest .eyebrow::before { background: var(--rust); }
.section--forest .section-head p { color: rgba(243,238,223,0.82); }

.section--slate {
  background: var(--slate); color: var(--sand);
  border-block: 2px solid var(--ink);
}
.section--slate h2 { color: var(--sand); }
.section--slate .eyebrow { color: var(--sand); border-color: var(--sand); }
.section--slate .eyebrow::before { background: var(--rust); }
.section--slate .section-head p { color: rgba(243,238,223,0.82); }

.section-head { margin-bottom: var(--s-5); max-width: 880px; }
.section-head .eyebrow { margin-bottom: var(--s-3); }
.section-head h2 { margin-bottom: var(--s-2); }
.section-head p { color: var(--ink-2); font-size: var(--fs-md); }

/* =========================================================================
   PRODUCTS — grid on home
   ========================================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-3);
  container-type: inline-size;
}
.product {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: var(--s-3);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.product::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(31,95,69,0.16), transparent 55%);
  pointer-events: none;
  opacity: 0; transition: opacity .3s;
}
.product:hover { transform: translate(-4px,-4px); box-shadow: 8px 10px 0 0 var(--forest); }
.product:hover::before { opacity: 1; }

.product-media {
  aspect-ratio: 1/1;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.product-media img {
  width: 92%; height: 92%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--rust); color: #fff;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.product-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}
.product h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem; line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  min-height: 3.2em;
}
.product ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.9rem;
  color: var(--ink-2);
  margin: 0;
}
.product ul li {
  position: relative; padding-left: 20px;
  line-height: 1.5;
}
.product ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--forest);
}
.product-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: var(--s-2);
  border-top: 1px solid var(--hairline);
}
.product-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--forest); color: var(--sand);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  min-height: 44px;
  transition: background .2s, color .2s, transform .2s;
}
.product-cta:hover { background: var(--rust); color: #fff; transform: translateX(3px); }
.product-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.product-cta:hover svg { transform: translateX(2px); }

/* =========================================================================
   BENEFITS
   ========================================================================= */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-3);
}
.benefit {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: var(--s-3);
  transition: transform .3s, background .3s, color .3s;
}
.benefit:hover {
  background: var(--forest);
  color: var(--sand);
  transform: translate(-3px,-3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.benefit:hover h3 { color: var(--sand); }
.benefit:hover p { color: rgba(243,238,223,0.82); }
.benefit:hover .benefit-num { color: var(--rust); }

.benefit-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  transition: color .3s;
}
.benefit h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color .3s;
}
.benefit p {
  font-size: 0.9375rem;
  color: var(--ink-2);
  transition: color .3s;
}

/* =========================================================================
   STATS
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
}
.stat {
  padding: var(--s-4) var(--s-3);
  text-align: center;
  border-right: 1.5px solid var(--ink);
  position: relative;
  transition: background .3s, color .3s;
}
.stat:hover { background: var(--forest); color: var(--sand); }
.stat:hover .stat-label { color: var(--sand); }
.stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat { border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .stat:last-child { border-bottom: 0; }
}
.stat-n {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
}
.stat:hover .stat-n { color: var(--sand); }
.stat-label {
  margin-top: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color .3s;
}

/* =========================================================================
   BANNER
   ========================================================================= */
.banner {
  background: var(--forest);
  color: var(--sand);
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}
.banner::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,67,46,.30) 0%, transparent 60%);
  pointer-events: none;
}
.banner h2 {
  color: var(--sand);
  font-size: clamp(2.25rem, 1.2rem + 4vw, 5rem);
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.banner p { color: rgba(243,238,223,.82); margin: 16px 0 var(--s-3); font-size: var(--fs-md); max-width: 56ch; }
.banner .cta { background: var(--rust); color: #fff; box-shadow: 5px 5px 0 0 var(--sand); }
.banner .cta:hover { background: var(--sand); color: var(--ink); box-shadow: 7px 7px 0 0 var(--rust); }

/* =========================================================================
   REVIEWS — judge.me asymmetric masonry
   ========================================================================= */
.reviews-summary {
  display: flex; align-items: center; gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
  padding: var(--s-3);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
}
.reviews-summary .big {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  color: var(--forest);
}
.reviews-summary .small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  max-width: 32ch;
}
.reviews-summary .vr { width: 1.5px; height: 56px; background: var(--ink); opacity: 0.2; }

.reviews-masonry {
  columns: 3 300px;
  column-gap: var(--s-2);
}
.review {
  break-inside: avoid;
  margin-bottom: var(--s-2);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: 6px 6px 0 0 var(--forest); }
.review:nth-child(3n+2) { background: var(--cream); }
.review:nth-child(5n) { background: var(--forest); color: var(--sand); }
.review:nth-child(5n) h4, .review:nth-child(5n) .review-name { color: var(--sand); }
.review:nth-child(5n) p { color: rgba(243,238,223,0.82); }
.review:nth-child(5n) .review-meta { color: rgba(243,238,223,0.55); }
.review:nth-child(5n) .review-avatar { background: var(--rust); color: #fff; }

.review-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: var(--sand);
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif; font-size: 1rem; font-weight: 800;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--forest);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.review:nth-child(5n) .review-verified { color: var(--sand); }
.review-verified svg { width: 10px; height: 10px; }
.review h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem; letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-weight: 700;
}
.review p { font-size: 0.9375rem; line-height: 1.55; color: var(--ink-2); }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */
.about-hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 96px);
  background: var(--forest);
  color: var(--sand);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,67,46,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.about-hero::after {
  content: "AKEFIT";
  position: absolute;
  bottom: -12%; left: -2%;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(243,238,223,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.about-hero h1 {
  max-width: 22ch; margin-bottom: var(--s-3);
  font-size: clamp(2.5rem, 1.4rem + 5vw, 5.5rem);
  color: var(--sand);
}
.about-hero .hero-lede { color: rgba(243,238,223,0.82); }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
  align-items: end;
}
@media (max-width: 920px) { .about-hero-grid { grid-template-columns: 1fr; } }
.about-hero-figure {
  aspect-ratio: 4/3;
  background: var(--sand);
  border: 2px solid var(--sand);
  border-radius: 10px;
  box-shadow: 10px 10px 0 0 var(--rust);
  overflow: hidden;
}
.about-hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-hero .eyebrow { color: var(--sand); border-color: var(--sand); }
.about-hero .eyebrow::before { background: var(--rust); }
.about-hero .crumbs a { color: rgba(243,238,223,.78); }
.about-hero .crumbs a:hover { color: var(--rust); }
.about-hero .crumbs span:not(.sep) { color: rgba(243,238,223,.9); }

.mission {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 920px) { .mission { grid-template-columns: 1fr; } }
.mission-title {
  position: sticky; top: 90px;
  font-size: clamp(2rem, 1.1rem + 3vw, 3.5rem);
}
.mission-body p {
  font-size: var(--fs-lg);
  max-width: 62ch;
  margin-bottom: var(--s-2);
}
.mission-body strong { background: var(--forest); color: var(--sand); padding: 0 8px; font-weight: 600; }
@media (max-width: 920px) { .mission-title { position: static; text-align: center; } .mission-body p { margin-inline: auto; } }

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-3);
}
.value {
  padding: var(--s-3);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  transition: transform .3s, box-shadow .3s;
}
.value:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 0 var(--rust); }
.value-icon {
  width: 56px; height: 56px;
  background: var(--forest);
  color: var(--sand);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 500;
}
.value h3 { font-size: 1.3rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.value p { font-size: 0.95rem; color: var(--ink-2); }

/* Fabric specs block */
.fabric-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
}
.spec {
  padding: var(--s-4) var(--s-3);
  border-right: 1.5px solid var(--ink);
  transition: background .3s, color .3s;
}
.spec:hover { background: var(--ink); color: var(--sand); }
.spec:hover .spec-n { color: var(--rust); }
.spec:last-child { border-right: 0; }
@media (max-width: 720px) {
  .spec { border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .spec:last-child { border-bottom: 0; }
}
.spec-n {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.spec h4 { font-size: 1.05rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.spec p { font-size: 0.875rem; color: var(--ink-2); }
.spec:hover p { color: rgba(243,238,223,0.82); }

/* Promises (slate) */
.promises {
  background: var(--slate);
  color: var(--sand);
  padding: clamp(64px, 8vw, 120px) 0;
  border-block: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.promises h2 { color: var(--sand); }
.promises .eyebrow { color: var(--sand); border-color: var(--sand); }
.promises .eyebrow::before { background: var(--rust); }
.promises-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-3);
  list-style: none;
}
.promise {
  padding: var(--s-3);
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  background: rgba(14,26,22,0.18);
  backdrop-filter: blur(4px);
  transition: transform .3s, background .3s;
}
.promise:hover { transform: translate(-2px,-2px); background: var(--forest); border-color: var(--forest); }
.promise-n {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 2.75rem;
  color: var(--rust);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.promise h3 { font-size: 1.3rem; color: var(--sand); margin-bottom: 8px; letter-spacing: -0.01em; }
.promise p { color: rgba(243,238,223,.88); font-size: 0.95rem; }

/* =========================================================================
   PRODUCTS PAGE
   ========================================================================= */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: var(--s-2) 0;
  margin-bottom: var(--s-4);
  border-block: 1.5px solid var(--ink);
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.filter-btn[aria-pressed="true"] { background: var(--forest); color: var(--sand); border-color: var(--forest); }
.filter-btn:hover { background: var(--rust); color: #fff; border-color: var(--rust); }
.filter-btn[aria-pressed="true"]:hover { background: var(--rust); border-color: var(--rust); }
.filter-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; opacity: 0.7; font-weight: 500;
}

.product-detailed {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--s-4);
  padding: var(--s-4);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  margin-bottom: var(--s-3);
  container-type: inline-size;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-detailed:hover { transform: translate(-2px,-3px); box-shadow: 6px 8px 0 0 var(--forest); }
.product-detailed .product-media { aspect-ratio: 1/1; }
.product-detailed h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.product-detailed .product-cat { margin-bottom: 10px; }
.product-detailed p { margin-bottom: 16px; color: var(--ink-2); font-size: var(--fs-md); }
.product-detailed ul { margin-bottom: 20px; }
.product-detailed ul li { font-size: 0.9375rem; }
@media (max-width: 860px) { .product-detailed { grid-template-columns: 1fr; } }

.cat-heading {
  margin-top: 48px;
  margin-bottom: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  color: var(--forest);
  letter-spacing: -0.02em;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-5);
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  padding: var(--s-4);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 10px 10px 0 0 var(--forest);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  background: var(--sand);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  font-size: var(--fs-base);
  transition: background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(31,95,69,.25);
  outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-meta { font-size: 0.875rem; color: var(--ink-2); }
.form-success {
  display: none;
  padding: 16px;
  background: var(--forest);
  color: var(--sand);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  font-weight: 600;
}
.form-success.is-visible { display: block; animation: pop .4s var(--ease-bounce); }
@keyframes pop { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.contact-cards {
  display: grid; gap: var(--s-2);
}
.c-card {
  padding: var(--s-3);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  transition: background .3s, color .3s;
}
.c-card:hover { background: var(--forest); color: var(--sand); }
.c-card:hover h3 { color: var(--sand); }
.c-card:hover p { color: rgba(243,238,223,0.82); }
.c-card:hover a { color: var(--rust); }
.c-card h3 { font-size: 1.1rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.c-card p { font-size: 0.95rem; color: var(--ink-2); }
.c-card a { color: var(--forest); font-weight: 600; }
.c-card a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  transition: background .3s, color .3s;
}
.faq-item[open] { background: var(--forest); color: var(--sand); }
.faq-item[open] summary { color: var(--sand); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  min-height: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 32px; height: 32px; flex: 0 0 32px;
  border-radius: 50%;
  background: var(--forest); color: var(--sand);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--sand);
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 14px; transition: transform .3s; }
.faq-item[open] .faq-toggle { background: var(--rust); transform: rotate(180deg); }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); }
.faq-answer {
  padding: 0 24px 24px;
  font-size: var(--fs-md);
  line-height: 1.65;
}
.faq-item[open] .faq-answer { color: rgba(243,238,223,0.88); }
.faq-item:not([open]) .faq-answer { color: var(--ink-2); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--s-6) 0 var(--s-4);
  border-top: 2px solid var(--rust);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "AKEfit";
  position: absolute;
  right: -2vw; bottom: -10vw;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(31,95,69,0.16);
  letter-spacing: -0.04em;
  pointer-events: none;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  position: relative; z-index: 2;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .logo { color: var(--sand); }
.footer-brand p {
  margin-top: 16px;
  max-width: 42ch;
  color: rgba(255,255,255,0.65);
}
.footer h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  color: var(--rust);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); }
.footer ul a:hover { color: var(--rust); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--s-3);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
}

/* =========================================================================
   REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================================
   MOBILE
   ========================================================================= */
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav > nav { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; justify-self: end; }
  .section-head { text-align: center; margin-inline: auto; }
  .section-head p { margin-inline: auto; }
  .hero-chips, .hero-ctas { justify-content: center; }
  .mission-title { position: static; text-align: center; }
  .mission-body p { margin-inline: auto; }
  .banner { text-align: center; }
  .banner p { margin-inline: auto; }
  .reviews-masonry { columns: 1; }
}

.crumbs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--s-3);
}
.crumbs a:hover { color: var(--rust); }
.crumbs .sep { opacity: .5; margin-inline: 6px; }
