/* ============================================================
   EZTHET — Home page sections
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(28px, 4vw, 56px); }
.hero-grid {
  display: grid; grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(28px, 5vw, 80px); align-items: center;
  min-height: min(86vh, 820px); padding-bottom: clamp(36px, 5vw, 72px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { display: block; margin-bottom: 1.6rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-stats {
  display: flex; gap: clamp(1.6rem, 4vw, 3.4rem); margin-top: 2.8rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 0.2rem; }
.hs-num { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; line-height: 1; color: var(--wine); letter-spacing: -0.02em; }
.hs-lbl { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }

.hero-slot-wrap { position: relative; }
.hero-slot-wrap image-slot {
  width: 100%; height: clamp(440px, 64vh, 700px); border-radius: var(--radius-card);
  box-shadow: var(--shadow); --slot-bg: var(--paper-3);
}
.hero-tagchip {
  position: absolute; left: -18px; bottom: 32px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 0.3rem;
  box-shadow: var(--shadow);
}
.hero-tagchip .eyebrow { color: var(--terracotta); }

/* marquee */
.hero-marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding-block: 1.1rem; background: var(--paper-2);
}
.hm-track {
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.3vw, 2rem);
  letter-spacing: -0.01em; text-transform: lowercase;
  color: var(--ink-soft); animation: marquee 38s linear infinite;
}
.hm-dot { color: var(--terracotta); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hm-track { animation: none; } }

/* ---------------- SECTION HEAD ---------------- */
.sec-head { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: clamp(2.4rem, 4vw, 4rem); max-width: 60ch; }
.sec-head .idx { display: block; }
.sec-head .body { margin-top: 0.4rem; }
.sec-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; gap: 2rem; flex-wrap: wrap; }
.sec-head.row .link-arrow { flex-shrink: 0; }

/* ---------------- UNIVERS ---------------- */
.univers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 36px); }
.univ-card { display: flex; flex-direction: column; }
.univ-media {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden; margin-bottom: 1.3rem;
  transition: border-color 0.4s ease; position: relative;
}
.univ-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.16 0.01 70 / 0.34));
  opacity: 0; transition: opacity 0.5s ease;
}
.univ-card:hover .univ-media { border-color: var(--line-strong); }
.univ-card:hover .univ-media::after { opacity: 1; }
.univ-body { display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start; }
.univ-body .eyebrow { color: var(--terracotta); }
.univ-body .link-arrow { margin-top: 0.5rem; }

/* ---------------- PRODUCT GRID ---------------- */
.prod-grid { grid-template-columns: repeat(4, 1fr); }

/* ---------------- VOYAGE (bande immersive) ---------------- */
.voyage {
  background:
    radial-gradient(120% 100% at 18% 0%, oklch(0.30 0.035 78), transparent 60%),
    linear-gradient(160deg, oklch(0.200 0.012 70), oklch(0.140 0.008 68));
  color: oklch(0.95 0.012 88);
  padding-block: clamp(72px, 10vw, 160px);
  position: relative; overflow: hidden;
}
.voyage .idx { color: var(--gold); }
.voyage-head { max-width: 60ch; margin-bottom: clamp(2.4rem, 4vw, 4rem); display: flex; flex-direction: column; gap: 0.8rem; }
.voyage-head .lead { color: oklch(0.84 0.014 86) !important; }
.voyage-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(20px, 3vw, 40px); }
.voyage-big { position: relative; }
.voyage-big image-slot { width: 100%; height: clamp(420px, 56vh, 640px); border-radius: var(--radius-card); --slot-bg: oklch(0.26 0.012 72); }
.voyage-cap {
  position: absolute; left: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 0.3rem;
  color: oklch(0.96 0.01 115); text-shadow: 0 2px 12px oklch(0 0 0 / 0.5);
}
.voyage-side { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 40px); }
.voyage-small { flex: 1; min-height: 220px; }
.voyage-small image-slot { width: 100%; height: 100%; min-height: 220px; border-radius: var(--radius-card); --slot-bg: oklch(0.26 0.012 72); }
.voyage-note { border-left: 2px solid var(--gold); padding-left: 1.6rem; }
.voyage-note .serif { color: oklch(0.96 0.01 115); }
.voyage-note .fineprint { color: var(--gold-soft); }

/* ---------------- REGIONS RAIL ---------------- */
.region-rail {
  display: flex; gap: clamp(14px, 1.6vw, 24px); overflow-x: auto;
  padding: 0.5rem var(--gutter) 1.5rem; scroll-snap-type: x mandatory;
  padding-left: max(var(--gutter), calc(50vw - var(--maxw) / 2 + var(--gutter)));
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.region-rail::-webkit-scrollbar { height: 4px; }
.region-rail::-webkit-scrollbar-thumb { background: var(--line-strong); }
.region-card { flex: 0 0 clamp(240px, 26vw, 320px); scroll-snap-align: start; }
.region-media { aspect-ratio: 3 / 4; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; margin-bottom: 1rem; transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1); }
.region-card:hover .region-media { transform: translateY(-6px); }
.region-info { display: flex; flex-direction: column; gap: 0.25rem; }
.region-name { font-size: 1.5rem; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }

/* ---------------- MANIFESTO ---------------- */
.manifesto { background: var(--paper-2); padding-block: clamp(80px, 11vw, 170px); }

/* ---------------- CLUB ---------------- */
.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.club-copy { display: flex; flex-direction: column; gap: 0.7rem; }
.club-copy .body { margin-top: 0.6rem; }
.club-form { display: flex; flex-direction: column; gap: 1rem; }
.club-form label { display: block; }
.club-field { display: flex; gap: 0.8rem; border-bottom: 1px solid var(--line-strong); padding-bottom: 0.8rem; flex-wrap: wrap; }
.club-field input {
  flex: 1; min-width: 200px; border: none; background: none; outline: none;
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--ink); letter-spacing: -0.01em;
}
.club-field input::placeholder { color: var(--ink-faint); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; }
  .hero-media { order: -1; }
  .hero-slot-wrap image-slot { height: clamp(360px, 52vh, 520px); }
  .univers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .voyage-grid { grid-template-columns: 1fr; }
  .club-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 680px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-head.row { align-items: flex-start; }
}
