/* ============================================
   Crest Athletica — Design System
   Typography: Montserrat (display) + Inter (body)
   Light, bold, energetic — opposite of Vela
   ============================================ */

:root {
  --bg:           #F5F4F0;
  --bg-2:         #EDECEA;
  --bg-dark:      #111111;
  --bg-dark-2:    #1A1A1A;
  --accent:       #FF4500;
  --accent-dim:   #CC3700;
  --accent-glow:  rgba(255,69,0,0.12);
  --white:        #FFFFFF;
  --off-white:    #F5F4F0;
  --black:        #0A0A0A;
  --text:         #0A0A0A;
  --text-inv:     #FFFFFF;
  --muted:        #777777;
  --muted-inv:    #999999;
  --border:       #D8D6D0;
  --border-dark:  #2A2A2A;
  --font-display: 'Montserrat', 'Arial Black', -apple-system, sans-serif;
  --font:         'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --nav-h:        70px;
  --max-w:        1240px;
  --radius:       2px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}
.section-title--inv { color: var(--white); }
.section-sub--inv { color: var(--muted-inv); }
.label--inv { color: var(--accent); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 104px 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease);
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  border: none;
}
.btn:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,69,0,0.35);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-lg { padding: 18px 44px; font-size: 0.84rem; }
.btn-sm { padding: 12px 22px; font-size: 0.72rem; min-height: 44px; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  box-shadow: none;
  transform: none;
}
.btn-ghost--dark {
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost--dark:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--text);
  box-shadow: none;
  transform: none;
}
.btn-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}
.btn-loading::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* Screen reader util */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================
   NAVIGATION — light nav, dark text
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 22px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-link--active { color: var(--accent); }

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav.scrolled .nav-link { color: var(--muted); }
.nav.scrolled .nav-link:hover { color: var(--text); }
.nav.scrolled .nav-link--active { color: var(--accent); }
.nav.scrolled .nav-logo-img.nav-logo-light { display: none; }
.nav.scrolled .nav-logo-img.nav-logo-scrolled { display: block; }
.nav-logo-img.nav-logo-scrolled { display: none; }
.nav.hidden { transform: translateY(-100%); transition: transform 0.3s var(--ease); }

/* Nav burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: background 0.2s;
}
.nav.scrolled .nav-burger span { background: var(--text); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
}
.nav-mobile.open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-links { padding: 32px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.nav-mobile-link {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--accent); }
.nav-mobile-cta { margin: 0 24px; }
.nav-close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

@media (max-width: 900px) {
  .nav-links, .nav > .container > .btn { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================
   HERO — full bleed, image-forward
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   TRUST BAR — dark band
   ============================================ */
.trust-bar {
  background: var(--bg-dark);
  overflow: hidden;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  border-top: 3px solid var(--accent);
}
.ticker-track { width: 100%; overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-inner li {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0 36px;
}
.trust-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   DEAL SECTION — dark background
   ============================================ */
.deal-section { background: var(--bg-dark); }
.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.deal-media {
  position: relative;
  overflow: hidden;
}
.deal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.deal-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.deal-media:hover img { transform: scale(1.03); }
.deal-content .label { margin-bottom: 16px; }
.deal-content .section-title { margin-bottom: 20px; }
.deal-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.deal-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.deal-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.price-now {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-was {
  font-size: 0.82rem;
  color: var(--muted-inv);
  line-height: 1.5;
}
.price-badge {
  background: var(--accent-glow);
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,69,0,0.3);
  border-radius: var(--radius);
}
.size-row { margin-bottom: 16px; }
.size-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-bottom: 8px;
}
.size-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  appearance: none;
}
.size-select:focus { border-color: var(--accent); }
.deal-reassurance {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted-inv);
  text-align: center;
}

@media (max-width: 900px) {
  .deal-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   INDIVIDUAL PRODUCTS — light background
   ============================================ */
.products-section { background: var(--bg); }
.products-section .section-title { color: var(--text); }
.products-section .section-sub { color: var(--muted); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 14px; }
.section-header .section-title { margin-bottom: 14px; }
.section-header .section-sub { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.product-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius);
}
.product-info { padding: 20px 20px 24px; border-top: 1px solid var(--border); }
.product-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}
.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
}

@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT — light background
   ============================================ */
.about-section { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media { overflow: hidden; position: relative; }
.about-media::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.8s var(--ease);
}
.about-media:hover img { transform: scale(1.02); }
.about-content .label { margin-bottom: 18px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content .section-sub { color: var(--muted); margin-bottom: 18px; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}
.about-values li { display: flex; flex-direction: column; gap: 4px; }
.about-values li strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.about-values li span { font-size: 0.84rem; color: var(--muted); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media::before { display: none; }
}

/* ============================================
   REVIEWS — dark background
   ============================================ */
.reviews-section {
  background: var(--bg-dark);
  border-top: 3px solid var(--accent);
}
.reviews-section .section-header { margin-bottom: 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.review-card {
  background: var(--bg-dark);
  padding: 40px 32px;
  transition: background 0.3s;
}
.review-card:hover { background: var(--bg-dark-2); }
.review-stars {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-bottom: 24px;
}
.review-author { display: flex; flex-direction: column; gap: 3px; }
.review-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.review-location { font-size: 0.75rem; color: var(--muted-inv); }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================
   SIZE GUIDE — light
   ============================================ */
.size-section { background: var(--bg); }
.size-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.size-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
  color: var(--text);
}
.size-toggle-btn:hover { border-color: var(--accent); background: var(--bg-2); }
.size-icon { font-size: 1.1rem; font-weight: 400; }
.size-content { display: none; }
.size-content.open { display: block; }
.size-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.size-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  background: var(--bg);
}
.size-table td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.size-table tbody tr:hover td { background: var(--bg-2); }
.size-note { font-size: 0.82rem; color: var(--muted); }
.size-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   CONTACT — light
   ============================================ */
.contact-section { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .label { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .section-sub { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-details a { color: var(--accent); }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}
.form-success p { font-size: 0.88rem; color: var(--muted); }
.form-error {
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.84rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-dark); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand {}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.82rem; color: var(--muted-inv); line-height: 1.7; max-width: 280px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.84rem;
  color: var(--muted-inv);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted-inv); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 0.78rem; color: var(--muted-inv); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--accent); }

.footer-minimal { background: var(--bg-dark); border-top: 1px solid var(--border-dark); padding: 20px 0; }
.footer-minimal .footer-bottom-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: calc(var(--nav-h) + 64px) 0 96px;
  min-height: 100vh;
  background: var(--bg);
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 48px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 6px;
}
.legal-content a { color: var(--accent); }
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.88rem;
}
.shipping-table th {
  text-align: left;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.shipping-table td {
  padding: 12px 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

/* ============================================
   RESULT PAGES (success / cancel)
   ============================================ */
.result-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
}
.result-icon { margin-bottom: 32px; color: var(--accent); }
.result-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}
.result-page p { font-size: 0.96rem; color: var(--muted); line-height: 1.8; max-width: 440px; margin: 0 auto 32px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js-reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LEGAL PAGES (flat structure)
   ============================================ */
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-section { max-width: 720px; margin-bottom: 40px; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: var(--text);
}
.legal-section p,
.legal-section li { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul,
.legal-section ol { margin: 12px 0 20px 20px; }
.legal-section ul li { list-style: disc; }
.legal-section ol li { list-style: decimal; }
.legal-section a { color: var(--accent); }

/* ============================================
   STATUS PAGES (success / cancel)
   ============================================ */
.page-minimal { background: var(--bg); }
.status-page {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
}
.status-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.status-icon { margin-bottom: 24px; }
.status-icon svg { width: 56px; height: 56px; }
.status-card--success .status-icon { color: #22c55e; }
.status-card--cancel  .status-icon { color: var(--accent); }
.status-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}
.status-text { font-size: 0.96rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.status-list {
  list-style: none;
  margin: 0 0 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.status-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.status-list svg { width: 18px; height: 18px; flex-shrink: 0; color: #22c55e; }
.status-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.status-contact { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
.status-contact a { color: var(--accent); }

@media (max-width: 600px) {
  .status-card { padding: 40px 24px; }
}

/* ============================================
   DEAL TIMER
   ============================================ */
.deal-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted-inv);
  margin-bottom: 28px;
}
.deal-timer svg { width: 16px; height: 16px; flex-shrink: 0; }
.timer-block {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--accent);
  min-width: 32px;
  text-align: center;
}
.timer-sep { color: var(--muted-inv); font-weight: 700; }
.deal-note { font-size: 0.78rem; color: var(--muted-inv); margin-top: 12px; opacity: 0.7; }

/* ============================================
   ABOUT STATS
   ============================================ */
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #15803d;
  padding: 20px 24px;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
