/* ================================================================
   FARROW FIELD — HOME.CSS
   Homepage-specific styles: hero, product, sounds, comfort,
   stats, teaser, cta-block, trust strip
   ================================================================ */


/* ── Section Kicker ──────────────────────────────────────── */

.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}


/* ══════════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* ── Copy ── */

.hero-copy {
  text-align: center;
  max-width: 560px;
}

.hero-headline {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--color-brand);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.hero-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.hero-meta-sep {
  opacity: 0.35;
}

/* ── Visual ── */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-visual {
  position: absolute;
  inset: -10% -20%;
  width: 140%;
  height: 120%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-brand-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 40px var(--color-brand-glow);
  display: block;
}

/* ── Desktop layout ── */

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero-copy {
    text-align: left;
    flex: 1 1 0;
  }

  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-meta {
    justify-content: flex-start;
  }

  .hero-visual {
    flex: 0 0 420px;
    max-width: 420px;
  }

  .hero-product-img {
    max-width: 420px;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
  }
}


/* ══════════════════════════════════════════════════════════
   2. FEATURE STRIP  (layout extended from main.css base)
══════════════════════════════════════════════════════════ */

.feature-strip {
  padding: 4rem 1.25rem;
}

.feature-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .feature-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ══════════════════════════════════════════════════════════
   3. PRODUCT PRESENTATION
══════════════════════════════════════════════════════════ */

.product-section {
  padding: var(--section-gap) 0;
}

.product-section-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-section-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.product-section-copy > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 2rem;
}

/* Spec grid — defined in main.css; local overrides if needed */
.product-section .spec-grid {
  margin-top: 0;
}

.product-section-img-frame {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-bg-panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-section-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .product-section-grid {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .product-section-copy {
    flex: 1 1 0;
  }

  .product-section-visual {
    flex: 0 0 48%;
  }
}


/* ══════════════════════════════════════════════════════════
   4. HOW IT SOUNDS PREVIEW
══════════════════════════════════════════════════════════ */

.sounds-preview {
  padding: var(--section-gap) 1.25rem;
  overflow: hidden;
}

.sounds-preview-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.sounds-preview-img-wrap {
  width: 100%;
  max-width: 360px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 32px var(--color-brand-glow);
  flex-shrink: 0;
}

.sounds-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

.sounds-preview-copy {
  max-width: 520px;
}

.sounds-preview-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.sounds-preview-copy > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 2rem;
}

.sounds-preview-copy .btn svg {
  margin-left: 0.4rem;
  vertical-align: -2px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .sounds-preview-inner {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .sounds-preview-img-wrap {
    max-width: 320px;
  }
}


/* ══════════════════════════════════════════════════════════
   5. COMFORT SECTION
══════════════════════════════════════════════════════════ */

.comfort-section {
  padding: var(--section-gap) 0;
}

.comfort-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.comfort-img-frame {
  border-radius: 50%;
  overflow: hidden;
  width: 280px;
  height: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 28px var(--color-brand-glow);
  background: var(--color-bg-panel);
  flex-shrink: 0;
}

.comfort-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comfort-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.comfort-copy > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.eartip-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.eartip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.eartip-badge.active {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.comfort-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 900px) {
  .comfort-grid {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .comfort-img-frame {
    width: 360px;
    height: 360px;
    flex-shrink: 0;
  }
}


/* ══════════════════════════════════════════════════════════
   6. STATS STRIP
══════════════════════════════════════════════════════════ */

.stats-strip {
  padding: 4.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  min-width: 90px;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-sep {
  display: block;
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .stat-sep {
    display: none;
  }

  .stats-strip-inner {
    gap: 1.5rem 2.5rem;
  }
}


/* ══════════════════════════════════════════════════════════
   7. COMING SOON TEASER
══════════════════════════════════════════════════════════ */

.teaser-section {
  padding: var(--section-gap) 0;
}

.teaser-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.teaser-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.teaser-sub {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}

.teaser-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-bg-panel);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

.teaser-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.teaser-image-wrap:hover .teaser-img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.03);
}

.teaser-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  pointer-events: none;
}

@media (min-width: 600px) {
  .teaser-grid {
    gap: 1.75rem;
  }
}


/* ══════════════════════════════════════════════════════════
   8 & 9. CTA BLOCK + TRUST STRIP
   Fully defined in main.css — no overrides needed here.
══════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════
   10. PRODUCT GALLERY
══════════════════════════════════════════════════════════ */

.product-gallery {
  padding: var(--section-gap) 0;
}

.product-gallery-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.product-gallery-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.pgallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .product-gallery-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .pgallery-side {
    grid-template-rows: 1fr 1fr;
  }

  .pgallery-card--main {
    grid-row: 1 / 3;
  }
}

@media (min-width: 900px) {
  .product-gallery-grid {
    gap: 1.25rem;
  }

  .pgallery-side {
    gap: 1.25rem;
  }
}

.pgallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-bg-panel);
}

.pgallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.pgallery-card--main .pgallery-img {
  min-height: 340px;
}

@media (min-width: 640px) {
  .pgallery-card--main .pgallery-img {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }

  .pgallery-card--main {
    min-height: 440px;
  }
}

.pgallery-card:hover .pgallery-img {
  transform: scale(1.04);
  filter: brightness(1);
}

.pgallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.75) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.pgallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 2;
}

.pgallery-caption-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.2;
}

.pgallery-tag {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(251, 61, 14, 0.12);
  border: 1px solid rgba(251, 61, 14, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.65rem;
  white-space: nowrap;
}

.product-gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  text-align: center;
}

.pgallery-cta-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}


/* ══════════════════════════════════════════════════════════
   11. SOUNDING — Split atmospheric section
══════════════════════════════════════════════════════════ */

.sounding-section {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) {
  .sounding-section {
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
  }
}

/* ── Image column ── */

.sounding-visual-col {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  order: -1;
}

@media (min-width: 900px) {
  .sounding-visual-col {
    min-height: unset;
    order: 0;
  }
}

.sounding-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sounding-img-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(5, 5, 5, 0.88) 100%);
}

@media (min-width: 900px) {
  .sounding-img-veil {
    background:
      linear-gradient(to bottom, rgba(5, 5, 5, 0.25) 0%, transparent 25%, transparent 65%, rgba(5, 5, 5, 0.4) 100%),
      linear-gradient(to right, transparent 55%, rgba(5, 5, 5, 0.9) 100%);
  }
}

/* ── Content column ── */

.sounding-content-col {
  background: var(--color-bg-panel);
  display: flex;
  align-items: center;
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.sounding-content-col::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--color-brand-glow) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
}

.sounding-content-col::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(251, 61, 14, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

@media (min-width: 900px) {
  .sounding-content-col {
    padding: 5rem 4rem 5rem 3.5rem;
  }
}

.sounding-content-inner {
  position: relative;
  max-width: 460px;
  width: 100%;
}

.sounding-content-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.sounding-content-inner > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 2rem;
}

.sounding-content-inner .btn svg {
  margin-left: 0.4rem;
  vertical-align: -2px;
  flex-shrink: 0;
}

/* ── Sound frequency bars ── */

.sound-bands {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.25rem;
}

.sound-band-row {
  display: grid;
  grid-template-columns: 5rem 1fr 1.8rem;
  align-items: center;
  gap: 0.8rem;
}

.sound-band-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.sound-band-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.sound-band-fill {
  height: 100%;
  background: linear-gradient(to right, var(--color-brand), rgba(251, 61, 14, 0.45));
  border-radius: 2px;
}

.sound-band-fill--bass   { width: 72% }
.sound-band-fill--mids   { width: 88% }
.sound-band-fill--treble { width: 80% }

.sound-band-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand);
  text-align: right;
}


/* ══════════════════════════════════════════════════════════
   12. SPECIFICATIONS
══════════════════════════════════════════════════════════ */

.specs-section {
  padding: var(--section-gap) 0;
  position: relative;
  background: var(--color-bg-soft);
  overflow: hidden;
}

/* Decorative concentric arcs — top-left corner */
.specs-deco-arc {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(251, 61, 14, 0.1);
  pointer-events: none;
}

.specs-deco-arc::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(251, 61, 14, 0.06);
}

.specs-deco-arc::after {
  content: '';
  position: absolute;
  inset: 110px;
  border-radius: 50%;
  border: 1px solid rgba(251, 61, 14, 0.04);
}

.specs-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 3.5rem;
}

.specs-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.specs-layout {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

@media (min-width: 900px) {
  .specs-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}

/* ── Image column ── */

.specs-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .specs-visual {
    width: 260px;
    align-items: flex-start;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

.specs-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-bg-panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 260px;
}

.specs-img-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 55%;
  background: linear-gradient(to bottom, var(--color-brand), transparent);
  z-index: 2;
  pointer-events: none;
}

.specs-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.82) saturate(0.9);
}

.specs-img-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(251, 61, 14, 0.18), transparent);
  pointer-events: none;
}

.specs-badges {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  max-width: 260px;
}

.specs-badge {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-soft);
  border-left: 3px solid var(--color-brand);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.625rem 0.875rem;
}

.specs-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand);
  white-space: nowrap;
}

.specs-badge span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ── Specs table column ── */

.specs-table-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.specs-group-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 0.875rem;
}

.specs-group-title svg {
  flex-shrink: 0;
}

.specs-dl {
  display: flex;
  flex-direction: column;
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row dt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.specs-row dd {
  font-size: 0.875rem;
  color: var(--color-text-main);
  font-weight: 600;
  margin: 0;
  text-align: right;
}


/* ══════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .teaser-img,
  .hero-product-img,
  .pgallery-img {
    transition: none;
  }

  .teaser-image-wrap:hover .teaser-img,
  .pgallery-card:hover .pgallery-img {
    transform: none;
  }
}
