/* ============================================================
   THE ATHLETE'S FOOT — Home Page CSS
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

/* ── Left: Content Panel ── */
.hero-content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + var(--sp-10)) clamp(20px, 5vw, 80px) var(--sp-16) clamp(20px, 5vw, 80px);
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(212,43,43,0.07);
  border: 1px solid rgba(212,43,43,0.25);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  width: fit-content;
}

.hero-badge .label {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 440px;
}

.hero-sub-accent {
  color: var(--red);
  font-style: italic;
  font-family: var(--font-accent);
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

.hero-trust-sep {
  width: 1px; height: 18px;
  background: var(--border);
}

/* Product thumbnail strip */
.hero-thumbs {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 7px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-thumb-img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--surface-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.hero-thumb:hover {
  border-color: rgba(212,43,43,0.4);
  color: var(--red);
  background: rgba(212,43,43,0.04);
}

.hero-thumb.active {
  border-color: var(--red);
  color: var(--red);
  background: rgba(212,43,43,0.06);
}

/* Scroll indicator — anchored inside content panel */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  z-index: 5;
}

.hero-scroll-indicator span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ── Right: Visual Panel ── */
.hero-visual-panel {
  position: relative;
  background: linear-gradient(155deg, #141414 0%, #1c0606 45%, #0e0e0e 100%);
  overflow: hidden;
  min-height: 100vh;
}

/* Subtle grid texture */
.hero-visual-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Ambient glow orb */
.hero-visual-glow {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(110px);
  opacity: 0.14;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Large watermark text */
.hero-visual-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 270px;
  line-height: 1;
  color: rgba(255,255,255,0.024);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%) rotate(-12deg);
  z-index: 0;
}

/* Auto-play progress bar */
.hero-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #f07070);
  width: 0;
  animation: hero-progress 4.5s linear infinite;
}

@keyframes hero-progress {
  from { width: 0% }
  to   { width: 100% }
}

/* Slide counter */
.hero-counter {
  position: absolute;
  top: calc(var(--header-h) + var(--sp-6));
  right: var(--sp-6);
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.hero-counter-current {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: rgba(255,255,255,0.75);
}

.hero-counter-sep,
.hero-counter-total {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--sp-6)) var(--sp-8) var(--sp-14);
  opacity: 0;
  transform: scale(0.96) translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-slide-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  background: var(--red);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-5);
}

.hero-slide-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.7));
  transform: rotate(-10deg) translateX(8px);
  position: relative;
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), filter 0.45s ease;
}

.hero-slide.active .hero-slide-img {
  animation: float-shoe 5s ease-in-out infinite;
}

@keyframes float-shoe {
  0%, 100% { transform: rotate(-10deg) translateX(8px) translateY(0); }
  50%       { transform: rotate(-8deg)  translateX(8px) translateY(-14px); }
}

.hero-slide:hover .hero-slide-img {
  animation-play-state: paused;
  transform: rotate(-6deg) translateX(8px) translateY(-20px) scale(1.07);
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.75));
}

.hero-slide-info {
  margin-top: var(--sp-6);
  text-align: center;
  position: relative;
  z-index: 4;
}

.hero-slide-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}

.hero-slide-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.hero-slide-price {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--red);
  margin-bottom: var(--sp-3);
}

.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  padding-bottom: 3px;
  transition: color var(--t-base), border-color var(--t-base);
}

.hero-slide-cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

/* Dot navigation */
.hero-dots {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 7px; height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-dot:hover { background: rgba(255,255,255,0.45); }

.hero-dot.active {
  width: 28px;
  background: var(--red);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-section { grid-template-columns: 52% 48%; }
  .hero-title { font-size: clamp(50px, 7vw, 96px); }
  .hero-slide-img { max-width: 300px; }
}

@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual-panel {
    min-height: 70vw;
    order: -1;
  }
  .hero-slides { position: relative; min-height: 70vw; }
  .hero-slide { position: absolute; padding: var(--sp-8) var(--sp-6) var(--sp-10); }
  .hero-content-panel {
    padding: var(--sp-10) var(--sp-5) var(--sp-16);
  }
  .hero-title { font-size: clamp(40px, 12vw, 68px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust-sep { display: none; }
  .hero-scroll-indicator { left: var(--sp-5); }
  .hero-slide-img { max-width: 220px; }
  .hero-counter { top: var(--sp-4); }
}

@media (max-width: 480px) {
  .hero-visual-panel { min-height: 85vw; }
  .hero-slides { min-height: 85vw; }
  .hero-thumbs { display: none; }
  .hero-slide-img { max-width: 180px; }
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-section {
  padding: var(--sp-5) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color var(--t-base);
  cursor: default;
}

.marquee-brand:hover { color: var(--text); }

.marquee-sep {
  color: var(--red);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Product Grid ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

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

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

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

/* Filter buttons */
.filter-btn {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-base);
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-md);
}

.filter-btn.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section {
  padding: var(--sp-16) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(212,43,43,0.04), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.stats-grid .stat-card {
  border-right: 1px solid var(--border);
}

.stats-grid .stat-card:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid .stat-card:nth-child(2) { border-right: none; }
  .stats-grid .stat-card:nth-child(1),
  .stats-grid .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--sp-8);
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Collections ───────────────────────────────────────────── */
.collections-section {
  position: relative;
  isolation: isolate;
  background: var(--bg);
}

.collections-section .section-header {
  scroll-margin-top: calc(var(--header-h) + var(--sp-6));
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-6);
  height: 600px;
}

.collection-main { height: 100%; }

.collections-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-6);
}

.collection-side { height: 100%; }

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 4px;
}

.collection-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-4);
}

.collection-cta-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--t-base), color var(--t-base);
}

.collection-card:hover .collection-cta-link {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .collection-main { height: 400px; }
  .collections-side { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .collection-side { height: 280px; }
}

@media (max-width: 600px) {
  .collections-side { grid-template-columns: 1fr; }
  .collection-side { height: 220px; }
}

/* ── About Strip ───────────────────────────────────────────── */
.about-strip {
  position: relative;
  isolation: isolate;
  background: var(--surface);
}

/* Override initial-invisible animation state so the section always has visible content */
.about-strip .anim-scale-in,
.about-strip .anim-fade-left,
.about-strip .anim-fade-right,
.about-strip .anim-fade-in {
  opacity: 1;
  transform: none;
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-strip-images {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding-bottom: 40px;
  min-height: 420px;
}

.about-img-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: 0;
  right: -20px;
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-6);
  z-index: 2;
}

.about-img-float-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.about-strip-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.about-pill {
  padding: 6px 16px;
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--t-base);
}

.about-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 900px) {
  .about-strip-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-img-float { right: 0; }
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-section {
  background: var(--surface-2);
  position: relative;
  isolation: isolate;
}

/* Score bar */
.reviews-score-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  margin: var(--sp-6) auto var(--sp-12);
  padding: var(--sp-6) var(--sp-10);
  background: var(--surface);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 560px;
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.reviews-score-num sub {
  font-size: 28px;
  color: var(--text-dim);
  vertical-align: baseline;
}

.reviews-score-meta { display: flex; flex-direction: column; gap: var(--sp-2); }

.reviews-stars-big { display: flex; gap: 3px; }
.reviews-stars-big svg { width: 20px; height: 20px; }

.reviews-score-label {
  font-size: 13px;
  color: var(--text-muted);
}

.reviews-score-label strong { color: var(--text); }

.reviews-platforms {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.reviews-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* Testimonial card */
.tcard {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--t-slow), transform var(--t-slow), border-color var(--t-slow);
}

.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-md);
}

/* Decorative large quote mark */
.tcard::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--red);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}

.tcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard-stars { display: flex; gap: 2px; }
.tcard-stars svg { width: 14px; height: 14px; fill: var(--gold); }

.tcard-source {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.tcard-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tcard-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,43,43,0.1);
  border: 1px solid rgba(212,43,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.tcard-info { flex: 1; min-width: 0; }

.tcard-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}

.tcard-date {
  font-size: 11px;
  color: var(--text-faint);
}

.tcard-verified {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--success);
  white-space: nowrap;
}

.tcard-verified svg { width: 11px; height: 11px; }

/* Last row center alignment (2 cards in 3-col grid) */
.reviews-grid .tcard:nth-child(4) { grid-column: 1; }
.reviews-grid .tcard:nth-child(4),
.reviews-grid .tcard:nth-child(5) {
  justify-self: center;
  width: 100%;
}

/* Reviews bottom CTA */
.reviews-cta-row {
  text-align: center;
  margin-top: var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.reviews-cta-note {
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .tcard:nth-child(4) { grid-column: auto; }
  .reviews-grid .tcard:nth-child(5) { grid-column: 1 / -1; max-width: 520px; justify-self: center; }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .tcard:nth-child(4),
  .reviews-grid .tcard:nth-child(5) { grid-column: auto; max-width: none; }
  .reviews-score-bar { flex-direction: column; text-align: center; gap: var(--sp-4); padding: var(--sp-6); }
  .reviews-platforms { justify-content: center; }
}

/* ── Brands Grid ───────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

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

/* ── Inquiry Section ───────────────────────────────────────── */
.inquiry-section {
  background: var(--bg-alt);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}

.inquiry-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: var(--sp-4) 0 var(--sp-6);
}

.inquiry-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.inquiry-contact-items { display: flex; flex-direction: column; }

.inquiry-form-wrap {
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
}

@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}

/* ── Visually Hidden (accessibility) ──────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
