/* ═══════════════════════════════════════════════════════════════════════
   KAKOARA — SIZE & FIT HUB
   Master Design System v1.0 — "Find Your Fit in 60 Seconds"
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --kf-sage: #7A8B6E;
  --kf-sage-dark: #68795C;
  --kf-sage-light: #9AAB8E;
  --kf-indigo: #2A3B5C;
  --kf-indigo-light: #3D5080;
  --kf-cream: #F5F0E8;
  --kf-cream-50: #FDFBF7;
  --kf-cream-100: #F0EBE0;
  --kf-cream-dark: #EBE3D8;
  --kf-charcoal: #1A1A1A;
  --kf-charcoal-soft: #2D2D2D;
  --kf-clay: #8B5A3C;
  --kf-clay-light: #B08262;
  --kf-terracotta: #C45C3E;
  --kf-ochre: #D4A03C;
  --kf-magenta: #B83A5B;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Crimson Text', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Base ─── */
.kf-body {
  background: var(--kf-cream);
  color: var(--kf-charcoal);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.kf-body * { box-sizing: border-box; }
.kf-body img { max-width: 100%; height: auto; display: block; }
.kf-body a { color: inherit; text-decoration: none; }

/* ─── Scroll Reveal ─── */
.kf-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.kf-reveal.is-visible { opacity: 1; transform: translateY(0); }
.kf-delay-1 { transition-delay: 0.1s; }
.kf-delay-2 { transition-delay: 0.2s; }
.kf-delay-3 { transition-delay: 0.3s; }
.kf-delay-4 { transition-delay: 0.4s; }
.kf-delay-5 { transition-delay: 0.5s; }

/* ─── Typography ─── */
.kf-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kf-sage); margin-bottom: 1.25rem;
}
.kf-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--kf-sage); border-radius: 2px;
}
.kf-h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--kf-charcoal); font-family: var(--font-display); }
.kf-h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--kf-charcoal); font-family: var(--font-display); }
.kf-h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; line-height: 1.3; color: var(--kf-charcoal); }

/* ─── Buttons ─── */
.kf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0 1.75rem; height: 52px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s var(--ease-out); cursor: pointer; border: none; white-space: nowrap;
  font-family: var(--font); text-decoration: none;
}
.kf-btn-sage { background: var(--kf-sage); color: #fff; }
.kf-btn-sage:hover { background: var(--kf-sage-dark); transform: translateY(-2px); }
.kf-btn-indigo { background: var(--kf-indigo); color: var(--kf-cream); }
.kf-btn-indigo:hover { background: var(--kf-indigo-light); transform: translateY(-2px); }
.kf-btn-ghost { background: transparent; color: var(--kf-charcoal); border: 1.5px solid rgba(26,26,26,0.15); }
.kf-btn-ghost:hover { border-color: var(--kf-sage); color: var(--kf-sage); transform: translateY(-2px); }
.kf-btn-ghost-light { background: transparent; color: var(--kf-cream); border: 1.5px solid rgba(255,255,255,0.3); }
.kf-btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.kf-btn-full { width: 100%; }

/* ─── Container ─── */
.kf-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.kf-container--narrow { max-width: 800px; }
.kf-section { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 0: PRELOADER
   ═══════════════════════════════════════════════════════════════════════ */
.kf-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--kf-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.kf-preloader__tape {
  width: 200px; height: 6px;
  background: rgba(139,90,60,0.1);
  border-radius: 3px; overflow: hidden;
}
.kf-preloader__tape-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--kf-sage), var(--kf-ochre));
  border-radius: 3px;
  animation: kfTapeFill 1.2s var(--ease-out) forwards;
}
@keyframes kfTapeFill {
  from { width: 0%; }
  to { width: 100%; }
}
.kf-preloader__text {
  font-size: 0.85rem; color: var(--kf-clay); letter-spacing: 0.08em;
}
.kf-preloader--done {
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 1: HERO — "Find Your Fit in 60 Seconds"
   ═══════════════════════════════════════════════════════════════════════ */
.kf-hero {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--kf-cream);
}
.kf-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(139,90,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,90,60,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.kf-hero__inner {
  position: relative; z-index: 1;
  max-width: 800px; padding: clamp(4rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.kf-hero__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--kf-sage); margin-bottom: 1.5rem;
}
.kf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500; line-height: 0.95;
  color: var(--kf-indigo); margin-bottom: 1.25rem;
}
.kf-hero__title span { display: block; }
.kf-hero__sub {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7; color: var(--kf-charcoal);
  max-width: 55ch; margin: 0 auto 2.5rem;
}
.kf-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.kf-hero__trust {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(139,90,60,0.1);
}
.kf-hero__trust-item {
  font-size: 0.85rem; color: var(--kf-clay); display: flex; align-items: center; gap: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 2: AI SIZING TOOL — "The Fit Engine"
   ═══════════════════════════════════════════════════════════════════════ */
.kf-sizer {
  background: var(--kf-cream-50);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.kf-sizer__card {
  max-width: 720px; margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--kf-clay); border-radius: 16px;
  background: #fff;
}
.kf-sizer__steps {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.kf-sizer__step-label {
  font-size: 0.75rem; font-weight: 600; color: var(--kf-clay);
  margin-bottom: 0.75rem;
}
.kf-sizer__step { display: none; }
.kf-sizer__step.is-visible { display: block; }
.kf-sizer__copy {
  font-size: 0.85rem; color: var(--kf-charcoal-soft);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.kf-sizer__options-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 640px) { .kf-sizer__options-grid { grid-template-columns: repeat(3, 1fr); } }
.kf-sizer__option {
  height: 56px; display: flex; align-items: center; justify-content: center;
  padding: 0 1rem; border-radius: 12px;
  border: 1px solid rgba(139,90,60,0.15); cursor: pointer;
  font-size: 0.85rem; font-weight: 600; color: var(--kf-charcoal);
  transition: all 0.3s var(--ease-out); text-align: center;
  background: #fff; font-family: var(--font);
}
.kf-sizer__option:hover { border-color: var(--kf-sage); background: rgba(122,139,110,0.05); }
.kf-sizer__option.is-selected { border-color: var(--kf-sage); background: rgba(122,139,110,0.08); color: var(--kf-indigo); }
.kf-sizer__next {
  margin-top: 1.5rem; height: 56px; width: 100%;
}
.kf-sizer__option-row { display: flex; flex-direction: column; gap: 0.5rem; }
.kf-sizer__option-row select {
  width: 100%; height: 56px; padding: 0 1rem; border-radius: 12px;
  border: 1px solid rgba(139,90,60,0.15); background: #fff;
  font-size: 0.9rem; color: var(--kf-charcoal); outline: none;
  font-family: var(--font); transition: border-color 0.3s;
}
.kf-sizer__option-row select:focus { border-color: var(--kf-sage); }
.kf-sizer__checkboxes {
  display: grid; gap: 0.5rem;
}
.kf-sizer__checkbox {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 10px;
  border: 1px solid rgba(139,90,60,0.1); cursor: pointer;
  transition: all 0.3s; background: #fff;
}
.kf-sizer__checkbox:hover { border-color: var(--kf-sage); }
.kf-sizer__checkbox.is-selected { border-color: var(--kf-sage); background: rgba(122,139,110,0.06); }
.kf-sizer__checkbox-box {
  width: 24px; height: 24px; border-radius: 6px;
  border: 2px solid rgba(26,26,26,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.kf-sizer__checkbox.is-selected .kf-sizer__checkbox-box {
  background: var(--kf-sage); border-color: var(--kf-sage);
}
.kf-sizer__checkbox-box svg { display: none; color: #fff; }
.kf-sizer__checkbox.is-selected .kf-sizer__checkbox-box svg { display: block; }
.kf-sizer__checkbox-label { font-size: 0.85rem; color: var(--kf-charcoal); flex: 1; }

/* Photo Scan / Manual Cards */
.kf-sizer__scan-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .kf-sizer__scan-grid { grid-template-columns: 1fr 1fr; } }
.kf-sizer__scan-card {
  padding: 1.5rem; border-radius: 12px;
  border: 1px solid rgba(139,90,60,0.12); background: var(--kf-cream-50);
  text-align: center; cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.kf-sizer__scan-card:hover { border-color: var(--kf-sage); box-shadow: 0 4px 16px rgba(122,139,110,0.08); }
.kf-sizer__scan-card.is-selected { border-color: var(--kf-sage); }
.kf-sizer__scan-icon {
  width: 48px; height: 48px; margin: 0 auto 0.75rem;
  border-radius: 50%; background: rgba(42,59,92,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--kf-indigo);
}
.kf-sizer__scan-title { font-size: 0.9rem; font-weight: 700; color: var(--kf-charcoal); margin-bottom: 0.5rem; }
.kf-sizer__scan-body { font-size: 0.78rem; color: var(--kf-charcoal-soft); line-height: 1.5; margin-bottom: 0.5rem; }
.kf-sizer__scan-note { font-size: 0.7rem; color: var(--kf-clay); }

/* Unit Toggle */
.kf-sizer__unit-toggle {
  display: inline-flex; background: rgba(139,90,60,0.08);
  padding: 4px; border-radius: 100px; margin-bottom: 1rem;
}
.kf-sizer__unit-btn {
  padding: 6px 16px; border-radius: 100px;
  border: none; background: transparent;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: var(--font);
  color: var(--kf-clay);
}
.kf-sizer__unit-btn.is-active { background: var(--kf-sage); color: #fff; }

/* Privacy Badge */
.kf-sizer__privacy {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.75rem; color: var(--kf-clay);
}

/* Progress Bar */
.kf-sizer__progress {
  margin-bottom: 2rem;
}
.kf-sizer__progress-bar {
  width: 100%; height: 4px; border-radius: 2px;
  background: rgba(139,90,60,0.1); overflow: hidden;
}
.kf-sizer__progress-fill {
  height: 100%; border-radius: 2px;
  background: var(--kf-sage);
  transition: width 0.4s var(--ease-out);
}

/* Result Card */
.kf-sizer__result { display: none; }
.kf-sizer__result.is-visible { display: block; }
.kf-sizer__result-header {
  background: var(--kf-sage); color: #fff;
  padding: 1.25rem; border-radius: 12px 12px 0 0;
  text-align: center; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.kf-sizer__result-body {
  background: var(--kf-cream-50); padding: 2rem;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(139,90,60,0.1); border-top: none;
}
.kf-sizer__result-fit {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--kf-indigo); margin-bottom: 0.35rem;
}
.kf-sizer__result-sub {
  font-size: 0.85rem; color: var(--kf-clay); margin-bottom: 1.5rem;
}
.kf-sizer__result-score {
  margin-bottom: 1rem;
}
.kf-sizer__result-score-label {
  font-size: 0.85rem; font-weight: 600; color: var(--kf-sage); margin-bottom: 0.35rem;
}
.kf-sizer__result-score-bar {
  height: 8px; border-radius: 4px;
  background: rgba(139,90,60,0.1); overflow: hidden;
}
.kf-sizer__result-score-fill {
  height: 100%; border-radius: 4px;
  background: var(--kf-sage);
  transition: width 1s var(--ease-out);
}
.kf-sizer__result-note {
  font-size: 0.85rem; color: var(--kf-clay);
  padding: 0.75rem; background: rgba(122,139,110,0.08);
  border-radius: 8px; margin-bottom: 1.5rem;
}
.kf-sizer__result-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.kf-sizer__result-translator {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(139,90,60,0.1);
  display: grid; gap: 0.5rem;
}
.kf-sizer__result-translator p {
  font-size: 0.8rem; color: var(--kf-charcoal-soft);
  line-height: 1.5; margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 3: GARMENT-SPECIFIC SIZE TABLES
   ═══════════════════════════════════════════════════════════════════════ */
.kf-tables { background: #fff; border-top: 1px solid rgba(139,90,60,0.08); }
.kf-tables__controls {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.kf-tables__btn {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  border: 1px solid rgba(139,90,60,0.12); background: transparent;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; color: var(--kf-clay);
  font-family: var(--font);
}
.kf-tables__btn:hover { border-color: var(--kf-sage); color: var(--kf-sage); }
.kf-tables__btn.is-active { background: var(--kf-indigo); border-color: var(--kf-indigo); color: #fff; }

.kf-tables__panel { display: none; }
.kf-tables__panel.is-active { display: block; }
.kf-tables__panel-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.kf-tables__panel-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
  color: var(--kf-indigo);
}
.kf-tables__panel-link {
  font-size: 0.8rem; font-weight: 600; color: var(--kf-magenta);
  transition: color 0.3s;
}
.kf-tables__panel-link:hover { color: var(--kf-magenta); text-decoration: underline; }

.kf-table-wrap { overflow-x: auto; scrollbar-width: thin; }
.kf-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.9rem; background: #fff;
  border-radius: 12px; overflow: hidden;
}
.kf-table thead { background: var(--kf-indigo); color: #fff; }
.kf-table th {
  padding: 0.8rem 1rem; text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.kf-table td {
  padding: 0.75rem 1rem; text-align: center; color: var(--kf-charcoal);
  border-top: 1px solid rgba(139,90,60,0.06);
}
.kf-table tbody tr:nth-child(even) { background: rgba(245,240,232,0.4); }
.kf-table tbody tr:hover { background: rgba(122,139,110,0.04); }
.kf-table tbody tr.is-recommended {
  background: rgba(122,139,110,0.08) !important;
  border-left: 4px solid var(--kf-sage);
}
.kf-table tbody tr.is-recommended td:first-child {
  position: relative;
}
.kf-table tbody tr.is-recommended td:first-child::before {
  content: '✓ '; color: var(--kf-sage); font-weight: 700;
}

.kf-table__note {
  font-size: 0.82rem; color: var(--kf-clay);
  line-height: 1.6; margin-top: 1.5rem;
  padding: 1rem; background: rgba(42,59,92,0.04);
  border-radius: 8px;
}
.kf-table__note strong { color: var(--kf-charcoal); }
.kf-table__model {
  font-size: 0.8rem; color: var(--kf-clay);
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 4: CROSS-BRAND TRANSLATION
   ═══════════════════════════════════════════════════════════════════════ */
.kf-cross {
  background: var(--kf-cream);
  border-top: 1px solid rgba(139,90,60,0.08);
}
.kf-cross__table {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  border: 1px solid rgba(139,90,60,0.08);
  border-radius: 12px; overflow: hidden;
}
.kf-cross__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(139,90,60,0.06);
}
.kf-cross__row:last-child { border-bottom: none; }
.kf-cross__row--header { background: var(--kf-indigo); color: #fff; }
.kf-cross__cell {
  padding: 0.9rem 1rem; font-size: 0.82rem;
  display: flex; align-items: center;
}
.kf-cross__cell:nth-child(2) { border-left: 1px solid rgba(139,90,60,0.06); border-right: 1px solid rgba(139,90,60,0.06); }
.kf-cross__row--header .kf-cross__cell {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.kf-cross__row:nth-child(even) { background: rgba(245,240,232,0.4); }
.kf-cross__cta {
  text-align: center; margin-top: 2rem;
}
.kf-cross__cta p {
  font-size: 0.9rem; color: var(--kf-clay); line-height: 1.6; margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 5: RETURNS & ALTERATION SAFETY NET
   ═══════════════════════════════════════════════════════════════════════ */
.kf-safety {
  background: var(--kf-indigo); color: var(--kf-cream);
}
.kf-safety__grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .kf-safety__grid { grid-template-columns: repeat(3, 1fr); } }
.kf-safety__card { text-align: center; }
.kf-safety__icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  border-radius: 50%; background: rgba(212,160,60,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--kf-ochre);
}
.kf-safety__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.kf-safety__body { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
.kf-safety__detail {
  display: block; margin-top: 1rem;
  font-size: 0.75rem; color: var(--kf-ochre);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 6: VIDEO FIT CHECKS — "See It Move"
   ═══════════════════════════════════════════════════════════════════════ */
.kf-videos {
  background: var(--kf-cream);
}
.kf-videos__scroll {
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1rem; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.kf-videos__scroll::-webkit-scrollbar { display: none; }
.kf-video-card {
  flex: 0 0 280px; scroll-snap-align: start;
  aspect-ratio: 9/16; border-radius: 12px; overflow: hidden;
  position: relative; background: var(--kf-cream-dark);
  cursor: pointer; transition: transform 0.3s var(--ease-out);
}
.kf-video-card:hover { transform: scale(1.02); }
.kf-video-card img { width: 100%; height: 100%; object-fit: cover; }
.kf-video-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.kf-video-card__title { font-size: 0.72rem; font-weight: 600; color: #fff; }
.kf-video-card__size { font-size: 0.6rem; color: rgba(255,255,255,0.7); }
.kf-video-card__link {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  padding: 0.3rem 0.6rem; border-radius: 100px;
  background: var(--kf-sage); color: #fff;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em;
}
.kf-videos__footer { text-align: center; margin-top: 2rem; }
.kf-videos__footer a {
  font-size: 0.85rem; color: var(--kf-magenta); font-weight: 600;
  transition: color 0.3s;
}
.kf-videos__footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 7: CONTINUE EXPLORING — Compact Strip
   ═══════════════════════════════════════════════════════════════════════ */
.kf-explore {
  border-top: 1px solid var(--kf-clay);
  padding: 48px 0; background: var(--kf-cream);
  max-height: 320px; overflow: hidden;
}
.kf-explore__inner {
  display: flex; align-items: center; gap: 1.5rem;
}
.kf-explore__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--kf-clay);
  flex-shrink: 0; white-space: nowrap;
}
.kf-explore__scroll {
  display: flex; gap: 0.75rem; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  flex: 1;
}
.kf-explore__scroll::-webkit-scrollbar { display: none; }
.kf-explore__card {
  flex: 0 0 200px; display: flex; flex-direction: column;
  gap: 0.35rem; text-decoration: none;
  opacity: 0.85; transition: opacity 0.3s;
}
.kf-explore__card:hover { opacity: 1; }
.kf-explore__card-img {
  width: 100%; aspect-ratio: 3/4; max-height: 160px;
  border-radius: 6px; overflow: hidden;
  background: var(--kf-cream-dark);
}
.kf-explore__card-img img { width: 100%; height: 100%; object-fit: cover; }
.kf-explore__card-title {
  font-size: 0.82rem; font-weight: 500; color: var(--kf-charcoal);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.3;
}
.kf-explore__link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--kf-magenta); white-space: nowrap;
  flex-shrink: 0; transition: color 0.3s;
}
.kf-explore__link:hover { color: var(--kf-magenta); text-decoration: underline; }

@media (max-width: 768px) {
  .kf-explore__inner { flex-wrap: wrap; gap: 1rem; }
  .kf-explore__label { width: 100%; }
  .kf-explore__scroll { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 8: FOOTER — Corrected (No Icons, Text-Only)
   ═══════════════════════════════════════════════════════════════════════ */
.kf-footer {
  background: var(--kf-indigo);
  color: var(--kf-cream);
  padding: 80px clamp(1.25rem, 4vw, 3rem) 48px;
}
.kf-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .kf-footer__inner { grid-template-columns: 1fr 1fr; } }
.kf-footer__brand { display: grid; gap: 0.5rem; align-content: start; }
.kf-footer__wordmark { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.kf-footer__studio { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.kf-footer__address { font-style: normal; line-height: 1.8; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.kf-footer__contact {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.kf-footer__contact a { color: var(--kf-cream); font-size: 0.85rem; transition: color 0.3s; text-decoration: none; }
.kf-footer__contact a:hover { color: var(--kf-ochre); }
.kf-footer__columns {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 640px) { .kf-footer__columns { grid-template-columns: repeat(3, 1fr); } }
.kf-footer__col { display: grid; gap: 0.75rem; align-content: start; }
.kf-footer__col-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--kf-ochre);
}
.kf-footer__col a { color: rgba(255,255,255,0.7); font-size: 0.82rem; transition: color 0.3s; text-decoration: none; }
.kf-footer__col a:hover { color: var(--kf-cream); }
.kf-footer__bottom {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}
.kf-footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.kf-footer__payments { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.kf-footer__legal { display: flex; gap: 1rem; font-size: 0.7rem; }
.kf-footer__legal a { color: rgba(255,255,255,0.4); transition: color 0.3s; text-decoration: none; }
.kf-footer__legal a:hover { color: var(--kf-cream); }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .kf-cross__row { grid-template-columns: 1fr; }
  .kf-cross__cell:nth-child(2) { border-left: none; border-right: none; border-top: 1px solid rgba(139,90,60,0.06); border-bottom: 1px solid rgba(139,90,60,0.06); }
  .kf-table { font-size: 0.78rem; }
  .kf-table th, .kf-table td { padding: 0.6rem 0.5rem; }
  .kf-sizer__options-grid { grid-template-columns: repeat(2, 1fr); }
  .kf-safety__grid { gap: 1.5rem; }
  .kf-footer__bottom { flex-direction: column; text-align: center; }
  .kf-footer__columns { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .kf-sizer__options-grid { grid-template-columns: 1fr; }
  .kf-sizer__scan-grid { grid-template-columns: 1fr; }
  .kf-hero__title { font-size: clamp(2rem, 15vw, 2.8rem); }
  .kf-btn { height: 48px; font-size: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .kf-reveal, .kf-sizer__progress-fill, .kf-video-card,
  .kf-explore__card, .kf-sizer__result-score-fill { transition: none !important; opacity: 1 !important; transform: none !important; }
  .kf-preloader__tape-fill { animation: none; width: 100%; }
}
