/* =====================================================================
   ICEZONE — Summer '26 Showcase
   Aesthetic: Icy luxe + warm summer accent
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand core (from logo) */
  --ink:        #0a2540;   /* deep navy — sparkle / text */
  --ink-2:      #0e1c33;
  --ice:        #6db8ec;   /* logo wordmark ice-blue */
  --ice-bright: #2ea8e6;
  --ice-deep:   #1d7fc4;
  --frost:      #eaf6ff;
  --frost-2:    #f4fbff;
  --white:      #ffffff;

  /* Warm summer accents (use sparingly) */
  --sun:   #ffc24b;
  --coral: #ff7a59;
  --coral-deep: #e85d36;

  /* Neutrals */
  --paper: #f7fbff;
  --line:  #dce9f4;
  --muted: #5b728c;

  /* Glass */
  --glass:        rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-line:   rgba(255, 255, 255, 0.7);

  /* Gradients */
  --grad-ice:  linear-gradient(135deg, #2ea8e6 0%, #6db8ec 50%, #aee0ff 100%);
  --grad-sun:  linear-gradient(135deg, #ffc24b 0%, #ff7a59 100%);
  --grad-cool: linear-gradient(160deg, #eaf6ff 0%, #d7ecfc 40%, #bfe2fb 100%);

  /* Type */
  --font-display: "Outfit", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Spacing / radius / shadow */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 6px 20px rgba(13, 48, 84, 0.08);
  --shadow-md: 0 18px 50px rgba(13, 48, 84, 0.14);
  --shadow-lg: 0 40px 90px rgba(13, 48, 84, 0.22);
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ice-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-ice);
  border-radius: 2px;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.02em; font-weight: 700; }
.h-section { font-size: clamp(2rem, 4.6vw, 3.4rem); color: var(--ink); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 56ch; }
.text-grad { background: var(--grad-ice); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-warm { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--ink-2); }
.btn-primary:hover svg { transform: translate(3px, -3px); }
.btn-noon { background: var(--grad-sun); color: #3a1d00; box-shadow: 0 10px 30px rgba(255, 122, 89, 0.4); }
.btn-noon:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(255, 122, 89, 0.5); }
.btn-noon:hover svg { transform: translate(3px, -3px); }
.btn-ghost { background: rgba(255,255,255,.88); color: var(--ink); border: 1px solid var(--glass-line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); background: var(--white); }
.btn-ice { background: var(--grad-ice); color: var(--white); box-shadow: 0 12px 30px rgba(46, 168, 230, 0.4); }
.btn-ice:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(46, 168, 230, 0.5); }
.btn-ice:hover svg { transform: translate(3px, -3px); }
.btn-sm { --pad-y: 11px; --pad-x: 20px; font-size: 0.85rem; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: 1.42rem; letter-spacing: 0.04em;
  background: var(--grad-ice);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.logo__word sup { font-size: 0.5em; -webkit-text-fill-color: var(--ice-deep); margin-left: 1px; }

/* =====================================================================
   Announcement bar
   ===================================================================== */
.announce {
  background: var(--ink);
  color: var(--frost);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 16px;
  position: relative; z-index: 60;
}
.announce a { color: var(--sun); font-weight: 600; }
.announce .dot { color: var(--ice); margin: 0 8px; }

/* =====================================================================
   Navbar
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(13, 48, 84, 0.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-ice); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__menu { display: none; }  /* mobile slide-down menu — shown only at <=860px */
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav__burger span { position: absolute; left: 11px; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--grad-cool);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(48px); opacity: 0.7;
}
.hero__blob.b1 { width: 540px; height: 540px; top: -140px; right: -80px; background: radial-gradient(circle at 30% 30%, #aee0ff, #6db8ec 70%); }
.hero__blob.b2 { width: 460px; height: 460px; bottom: -160px; left: -120px; background: radial-gradient(circle at 40% 40%, #d7f0ff, #2ea8e6 75%); }
.hero__blob.b3 { width: 360px; height: 360px; top: 30%; left: 42%; background: radial-gradient(circle at 50% 50%, #ffd98a, #ff7a59 80%); opacity: 0.4; }
.hero__grain { position: absolute; inset: 0; opacity: 0.6; mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1.4px);
  background-size: 4px 4px;
}
.hero__shine {
  position: absolute; inset: -20% -10% auto auto; width: 70%; height: 140%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: skewX(-12deg); pointer-events: none;
  animation: sheen 9s ease-in-out infinite;
}
@keyframes sheen { 0%,70%,100% { transform: translateX(40%) skewX(-12deg); opacity:0; } 82% { opacity:.8; } }

.hero__inner { position: relative; z-index: 2; width: min(100% - 40px, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 60px 0; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass-strong); border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  padding: 7px 8px 7px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 500;
  color: var(--ink); box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero__pill b { background: var(--ink); color: var(--white); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; font-family: var(--font-display); }
.hero h1 {
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  font-weight: 800; font-style: italic;
  letter-spacing: -0.03em;
}
.hero h1 .line2 { font-style: normal; }
.hero__sub { margin: 24px 0 34px; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: #2c4763; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero__meta .stat b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; display: block; line-height: 1; }
.hero__meta .stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: .02em; }

/* Hero visual card */
.hero__visual { position: relative; aspect-ratio: 4/5; display: grid; place-items: center; }
.hero__card {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 90% at 75% 10%, rgba(255,255,255,.85), transparent 55%),
    var(--grad-ice);
  box-shadow: var(--shadow-lg);
  overflow: hidden; isolation: isolate;
  border: 1px solid rgba(255,255,255,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.hero__card.tilt-active { box-shadow: 0 50px 100px rgba(13, 48, 84, .3); }
.hero__card::after { /* frosted glare */
  content:""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.35), transparent 40%);
}
.hero__card__glare {
  position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: inherit;
  opacity: 0; transition: opacity .3s ease; mix-blend-mode: overlay;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.5), rgba(255,255,255,0) 45%);
}
.hero__card.tilt-active .hero__card__glare { opacity: 1; }
.hero__card .garment { width: 78%; color: #fff; filter: drop-shadow(0 30px 40px rgba(10,37,64,.35)); z-index: 2; }
.hero__card .crystal { position: absolute; z-index: 1; opacity: .9; }
.hero__card .crystal.c1 { top: 8%; right: 10%; width: 64px; animation: float 6s ease-in-out infinite; }
.hero__card .crystal.c2 { bottom: 12%; left: 8%; width: 44px; animation: float 7s ease-in-out infinite reverse; }
.hero__chip {
  position: absolute; z-index: 5;
  background: var(--glass-strong); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line); border-radius: 16px;
  padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px; font-size: .85rem;
}
.hero__chip b { font-family: var(--font-display); display: block; font-size: .95rem; }
.hero__chip span { color: var(--muted); font-size: .76rem; }
.hero__chip .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.hero__chip.top { top: 6%; left: -6%; animation: float 8s ease-in-out infinite; }
.hero__chip.bot { bottom: 8%; right: -8%; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ice-deep);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .mouse { width: 22px; height: 34px; border: 2px solid var(--ice-deep); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content:""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; background: var(--ice-deep); border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity:1; top:6px;} 70%{opacity:0; top:16px;} 100%{opacity:0;} }

/* =====================================================================
   Marquee strip
   ===================================================================== */
.marquee { background: var(--ink); color: var(--frost); padding: 20px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 48px; opacity: .92; }
.marquee__track span::after { content: "✦"; color: var(--ice); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =====================================================================
   Collection / product grid
   ===================================================================== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 52px; flex-wrap: wrap; }
.section-head .lead { margin-top: 16px; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter {
  font-family: var(--font-display); font-weight: 500; font-size: .9rem;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink); transition: .3s var(--ease);
}
.filter:hover { border-color: var(--ice); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  display: grid; place-items: center;
  background: var(--cw, var(--grad-ice));
}
.card__media .garment { width: 66%; color: #fff; filter: drop-shadow(0 22px 26px rgba(10,37,64,.3)); transition: transform .5s var(--ease); z-index: 2; }
.card:hover .card__media .garment { transform: scale(1.06) rotate(-2deg); }
.card__media::before { content:""; position:absolute; inset:0; background: radial-gradient(110% 80% at 70% 10%, rgba(255,255,255,.5), transparent 55%); }
.card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(8,28,48,.14)); }
.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(255,255,255,.9);
  font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink); padding: 6px 12px; border-radius: 100px; border: 1px solid var(--glass-line);
}
.card__tag.warm { color: var(--coral-deep); }
.card__fav { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid var(--glass-line);
  display: grid; place-items: center; color: var(--ink); transition: .3s var(--ease); }
.card__fav:hover { background: #fff; color: var(--coral); transform: scale(1.1); }
.card__swatches { position: absolute; bottom: 14px; left: 14px; z-index: 3; display: flex; gap: 7px; }
.card__swatches i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); white-space: nowrap; }
.card__price s { color: var(--muted); font-weight: 500; font-size: .85rem; margin-right: 6px; }
.card__desc { color: var(--muted); font-size: .9rem; }
.card__cta { margin-top: 14px; }
.card__cta .btn { width: 100%; }

/* =====================================================================
   Hero photo + Collection showcase (editorial / portfolio)
   ===================================================================== */
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 14%; z-index: 1; }

.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.show-tile { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 540px; box-shadow: var(--shadow-md); }
.show-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.show-tile:hover img { transform: scale(1.05); }
.show-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,28,48,.62)); }
.show-tile__cap { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; color: #fff; }
.show-tile__cap .k { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.show-tile__cap h3 { font-family: var(--font-display); font-size: 1.8rem; line-height: 1.05; }

.show-panel { display: flex; flex-direction: column; justify-content: center; gap: 16px;
  padding: clamp(30px, 4vw, 52px); border-radius: var(--r-lg);
  background: radial-gradient(120% 100% at 100% 0%, rgba(255,255,255,.7), transparent 55%), var(--grad-cool);
  border: 1px solid var(--glass-line); box-shadow: var(--shadow-sm); }
.show-panel h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.show-panel p { color: #3a536d; max-width: 42ch; }
.show-panel__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.show-panel__tags span { font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  padding: 8px 15px; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.show-panel .btn { align-self: flex-start; margin-top: 6px; }

.banner { position: relative; display: block; margin-top: 26px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.banner img { display: block; width: 100%; height: clamp(300px, 42vw, 460px); object-fit: cover; object-position: center 28%; transition: transform .9s var(--ease); }
.banner:hover img { transform: scale(1.04); }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,28,48,.72), rgba(8,28,48,.28) 55%, rgba(8,28,48,.05)); }
.banner__cap { position: absolute; z-index: 2; left: clamp(22px, 5vw, 60px); top: 50%; transform: translateY(-50%); color: #fff; max-width: 30ch; }
.banner__cap .k { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; opacity: .88; }
.banner__cap h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.06; margin: 10px 0 20px; }
.banner__cap .btn { pointer-events: none; }  /* the whole banner is the link */

/* =====================================================================
   Lookbook journey — scroll-drawn connector line
   ===================================================================== */
.journey { position: relative; margin-top: 24px; }
/* SVG connector that threads bottom-of-image → top-of-next-image (computed in main.js) */
.journey__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.journey__track { display: none; } /* no faint preview line — it compressed into speckles */
.journey__glow { fill: none; stroke: url(#journeyGrad); stroke-width: 9; stroke-linecap: round; opacity: .2; }
.journey__path { fill: none; stroke: url(#journeyGrad); stroke-width: 3; stroke-linecap: round; }
.journey__head { fill: #fff; stroke: var(--ice-bright); stroke-width: 3; opacity: 0; transition: opacity .3s ease; }

.journey__item { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(40px, 7vw, 96px); padding: clamp(56px, 8vw, 104px) 0; }
.journey__media { grid-column: 1; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4/5; background: var(--grad-cool); }
.journey__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.journey__item:hover .journey__media img { transform: scale(1.05); }

.journey__text { grid-column: 2; }
.journey__text .k { font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ice-deep); }
.journey__text h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 6px 0 10px; }
.journey__text p { color: var(--muted); max-width: 38ch; }

/* alternate sides (items are the only <article> children, so nth-of-type is safe) */
.journey__item:nth-of-type(even) .journey__media { grid-column: 2; }
.journey__item:nth-of-type(even) .journey__text { grid-column: 1; grid-row: 1; text-align: right; }
.journey__item:nth-of-type(even) .journey__text p { margin-left: auto; }

@media (max-width: 760px) {
  .journey__item { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
  .journey__media { grid-column: 1; }
  .journey__text { grid-column: 1; grid-row: auto; margin-top: 6px; text-align: left !important; }
  .journey__item:nth-of-type(even) .journey__media { grid-column: 1; }
  .journey__item:nth-of-type(even) .journey__text { grid-column: 1; grid-row: auto; text-align: left; }
  .journey__item:nth-of-type(even) .journey__text p { margin-left: 0; }
}

/* =====================================================================
   Difference / feature split
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 34px; }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; border-radius: var(--r-md); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.feature__ic { width: 52px; height: 52px; border-radius: 15px; flex: none; display: grid; place-items: center; color: #fff; }
.feature h3 { font-size: 1.1rem; margin-bottom: 3px; }
.feature p { color: var(--muted); font-size: .92rem; }

.showcase {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl);
  background: radial-gradient(110% 90% at 30% 10%, rgba(255,255,255,.7), transparent 50%), var(--grad-cool);
  border: 1px solid var(--glass-line); box-shadow: var(--shadow-md); overflow: hidden;
  display: grid; place-items: center;
}
.showcase .garment { width: 60%; color: var(--ice-bright); filter: drop-shadow(0 30px 40px rgba(10,37,64,.25)); }
.showcase .ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(46,168,230,.4); }
.showcase .ring.r1 { inset: 12%; animation: spin 40s linear infinite; }
.showcase .ring.r2 { inset: 24%; animation: spin 30s linear infinite reverse; border-style: dotted; }
@keyframes spin { to { transform: rotate(360deg); } }
.showcase .badge {
  position: absolute; background: rgba(255,255,255,.9);
  border: 1px solid var(--glass-line); border-radius: 14px; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 8px;
}
.showcase .badge.b-a { top: 10%; left: 8%; } .showcase .badge.b-b { bottom: 12%; right: 6%; } .showcase .badge.b-c { bottom: 8%; left: 12%; }
.showcase .badge .dotc { width: 9px; height: 9px; border-radius: 50%; }

/* =====================================================================
   Lookbook
   ===================================================================== */
.lookbook .grid-look { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.look {
  position: relative; border-radius: var(--r-md); overflow: hidden; color: #fff;
  display: flex; align-items: flex-end; padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.look:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.look::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(8,28,48,.55)); z-index:1; }
.look::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,.18), transparent 55%); }
.look__label { position: relative; z-index: 2; }
.look__label span { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
.look__label b { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.look.tall { grid-row: span 2; }
.look.wide { grid-column: span 2; }
.lk1 { background: linear-gradient(160deg, #2ea8e6, #1d7fc4); }
.lk2 { background: linear-gradient(160deg, #ffc24b, #ff7a59); }
.lk3 { background: linear-gradient(160deg, #6db8ec, #aee0ff); }
.lk4 { background: linear-gradient(160deg, #0a2540, #1d7fc4); }
.lk5 { background: linear-gradient(160deg, #18b3a7, #6de0c8); }

/* =====================================================================
   Brand story
   ===================================================================== */
.story { background:
  radial-gradient(80% 120% at 100% 0%, rgba(109,184,236,.18), transparent 50%),
  radial-gradient(70% 100% at 0% 100%, rgba(255,194,75,.14), transparent 50%),
  var(--white); }
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.story__art {
  aspect-ratio: 3/4; border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: linear-gradient(165deg, #0a2540, #1d7fc4 60%, #2ea8e6);
  box-shadow: var(--shadow-lg); display: grid; place-items: center; color: #fff;
}
.story__art .bigmark { width: 56%; opacity: .96; }
.story__art .sunburst { position: absolute; bottom: -30%; left: -20%; width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,75,.55), transparent 60%); filter: blur(20px); }
.story p + p { margin-top: 16px; }
.story .lead { color: #3a536d; }
.signature { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--ice-deep); margin-top: 26px; font-size: 1.1rem; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(135deg, #0a2540, #134a78 55%, #2ea8e6);
  color: #fff; padding: clamp(48px, 7vw, 88px); text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-card::before { content:""; position:absolute; top:-40%; right:-10%; width:60%; height:160%;
  background: radial-gradient(circle, rgba(255,194,75,.4), transparent 60%); }
.cta-card::after { content:""; position:absolute; bottom:-50%; left:-10%; width:60%; height:160%;
  background: radial-gradient(circle, rgba(109,184,236,.45), transparent 60%); }
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-style: italic; }
.cta-card p { color: #cfe6fa; margin: 18px auto 32px; max-width: 50ch; }
.cta-card .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-card .note { margin-top: 22px; font-size: .82rem; color: #9dc4e3; }

/* =====================================================================
   Newsletter
   ===================================================================== */
.news { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(32px,5vw,60px); box-shadow: var(--shadow-sm); }
.news form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.news input { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 100px; border: 1px solid var(--line); font-size: 1rem; font-family: var(--font-body); background: var(--frost-2); }
.news input:focus { outline: none; border-color: var(--ice); box-shadow: 0 0 0 4px rgba(109,184,236,.2); }
.news small { color: var(--muted); display: block; margin-top: 12px; font-size: .8rem; }
.news__msg { color: var(--ice-deep); font-weight: 600; font-family: var(--font-display); margin-top: 12px; min-height: 1.2em; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--ink); color: #b9d2e8; padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo__word { font-size: 1.6rem; }
.footer__brand p { margin-top: 16px; max-width: 34ch; font-size: .92rem; color: #8fb2d0; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #cfe2f4; transition: .3s var(--ease); }
.footer__social a:hover { background: var(--ice-bright); color: #fff; border-color: var(--ice-bright); transform: translateY(-3px); }
.footer__col h4 { font-family: var(--font-display); color: #fff; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: #9fbdd8; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; font-size: .82rem; color: #7fa2c0; }
.footer__bottom a { color: var(--ice); }

/* =====================================================================
   Reveal animation
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* Cursor trail overlay (canvas injected by main.js) */
#trailCanvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }

/* =====================================================================
   Extras: scroll progress, back-to-top, pull-quote, FAQ
   ===================================================================== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--ice-bright), var(--sun)); box-shadow: 0 0 8px rgba(46,168,230,.45); }

.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: var(--ink); box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s ease; }
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--ice-bright); transform: translateY(-3px); }

.pullquote { text-align: center;
  background: radial-gradient(80% 120% at 0% 0%, rgba(109,184,236,.16), transparent 55%),
    radial-gradient(70% 100% at 100% 100%, rgba(255,194,75,.14), transparent 55%), var(--white); }
.pullquote__box { position: relative; max-width: 60ch; margin-inline: auto; }
.pullquote__mark { display: block; font-family: var(--font-display); font-size: 5rem; line-height: .55; color: var(--ice); opacity: .55; margin-bottom: 4px; }
.pullquote__box p { font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.25; letter-spacing: -.01em; color: var(--ink); }
.pullquote__box em { font-style: italic; background: var(--grad-ice); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pullquote__box cite { display: block; margin-top: 22px; font-style: normal; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ice-deep); }

.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white);
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .3s ease; }
.faq__item[open] { border-color: var(--ice); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--ice-deep); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s ease; }
.faq__plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 22px 20px; }
.faq__a p { color: var(--muted); font-size: .96rem; max-width: 64ch; }
.faq__item[open] .faq__a { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   Intro splash — branded ICEZONE logo reveal on load
   ===================================================================== */
.intro { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 38%, #ffffff 0%, #eaf6ff 65%, #d7ecfc 100%);
  opacity: 1; transition: opacity .6s var(--ease); }
.intro.intro--out { opacity: 0; pointer-events: none; }
.intro.intro--hidden { display: none; }
.intro__logo { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.intro__logo::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(109,184,236,.28), transparent 70%); filter: blur(8px);
  animation: introGlow 1.7s ease-in-out both; }
.intro__mark { width: 60px; height: 60px; transform-origin: center;
  filter: drop-shadow(0 8px 20px rgba(13,48,84,.18));
  animation: introMark .85s var(--ease) both; }
.intro__word { font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2rem, 9vw, 3.4rem); letter-spacing: .06em; line-height: 1;
  background: var(--grad-ice); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0; animation: introWord .7s var(--ease) .42s forwards; }
.intro__word sup { font-size: .42em; -webkit-text-fill-color: var(--ice-deep); margin-left: 2px; }
.intro__tag { font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--ice-deep); opacity: 0; animation: introTag .6s var(--ease) .85s forwards; }
@keyframes introMark {
  0%   { opacity: 0; transform: scale(.2) rotate(-55deg); }
  55%  { opacity: 1; transform: scale(1.18) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes introWord {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(10px); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}
@keyframes introTag { 0% { opacity: 0; transform: translateY(6px); } 100% { opacity: .9; transform: none; } }
@keyframes introGlow { 0% { opacity: 0; transform: scale(.6); } 55% { opacity: 1; } 100% { opacity: .65; transform: scale(1); } }

/* =====================================================================
   Interactive 3D shorts (The difference panel)
   ===================================================================== */
.showcase--3d { position: relative; isolation: isolate; }
.show3d__hint { position: absolute; z-index: 6; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ice-deep); opacity: .6; white-space: nowrap; }

/* connector lines (built in JS) */
.show3d__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: visible; }
.show3d__lines line { stroke: var(--line); stroke-width: 1.5; transition: stroke .3s, stroke-width .3s; }
.show3d__lines circle { fill: var(--ice); }
.showcase--3d.show--dry .ln-dry,
.showcase--3d.show--upf .ln-upf,
.showcase--3d.show--rec .ln-rec { stroke: var(--ice-bright); stroke-width: 2.5; }

/* flat shorts (with idle float + a wet overlay for Quick-dry) */
.stage3d { position: relative; z-index: 3; width: 56%; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.shorts2d { position: relative; width: 100%; height: 100%;
  filter: drop-shadow(0 22px 24px rgba(10,37,64,.22)); animation: shortsFloat 5s ease-in-out infinite; }
.shorts2d__svg, .shorts2d__wet { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.shorts2d__wet { opacity: 0; }
.showcase--3d.show--dry .shorts2d__wet { animation: wetDry 2.2s var(--ease) forwards; }
@keyframes wetDry { 0% { opacity: 0; } 20% { opacity: .55; } 58% { opacity: .55; } 100% { opacity: 0; } }
@keyframes shortsFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* feature tags */
.feat3d { position: absolute; z-index: 5; display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-strong); border: 1px solid var(--glass-line); border-radius: 100px;
  padding: 9px 15px; font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.feat3d:hover, .feat3d:focus-visible { transform: translateY(-2px) scale(1.05); box-shadow: var(--shadow-md); outline: none; }
.feat3d .dotc { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.feat3d[data-feat="dry"] { top: 11%; left: 7%; }
.feat3d[data-feat="upf"] { bottom: 15%; right: 7%; }
.feat3d[data-feat="rec"] { bottom: 12%; left: 11%; }

/* UPF 50+ → sun */
.fx-sun { position: absolute; z-index: 1; top: 30%; left: 50%; width: 160px; height: 160px;
  transform: translate(-50%, -50%) scale(.5); border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, #ffe1a3 0%, #ffc24b 42%, rgba(255,194,75,0) 70%);
  transition: opacity .5s var(--ease), transform .5s var(--ease); }
.fx-sun::before { content: ""; position: absolute; inset: -26%; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,180,60,.55) 0 5deg, transparent 5deg 17deg);
  -webkit-mask: radial-gradient(circle, transparent 46%, #000 48%, #000 62%, transparent 64%);
  mask: radial-gradient(circle, transparent 46%, #000 48%, #000 62%, transparent 64%); animation: sunSpin 16s linear infinite; }
.showcase--3d.show--upf .fx-sun { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.showcase--3d.show--upf::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 32%, rgba(255,194,75,.2), transparent 60%); }
@keyframes sunSpin { to { transform: rotate(360deg); } }

/* Quick-dry → wet then dry */
.fx-water { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.fx-drop { position: absolute; width: 14px; height: 18px; opacity: 0; transform: translateY(-12px) scale(.3);
  border-radius: 50% 50% 50% 50% / 62% 62% 40% 40%;
  background: linear-gradient(180deg, rgba(200,236,255,.98), rgba(46,168,230,.95));
  box-shadow: inset 0 -3px 5px rgba(255,255,255,.75), 0 3px 7px rgba(13,48,84,.25); }
.showcase--3d.show--dry .fx-drop { animation: dripWetDry 2.2s var(--ease) forwards; }
@keyframes dripWetDry {
  0%   { opacity: 0; transform: translateY(-12px) scale(.3); }
  15%  { opacity: 1; transform: translateY(0) scale(1); }
  52%  { opacity: 1; transform: translateY(9px) scale(1.05); }
  100% { opacity: 0; transform: translateY(30px) scale(.55); }
}
.fx-water::after { content: ""; position: absolute; inset: 0; opacity: 0; transform: translateX(-45%);
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.65) 50%, transparent 58%); }
.showcase--3d.show--dry .fx-water::after { animation: drySheen 2.1s ease-in-out forwards; }
@keyframes drySheen { 0%, 52% { opacity: 0; transform: translateX(-45%); } 68% { opacity: .85; } 100% { opacity: 0; transform: translateX(65%); } }

/* Recycled → bin opens */
.fx-bin { position: absolute; z-index: 5; top: 5%; left: 50%; transform: translateX(-50%); width: 46px;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.showcase--3d.show--rec .fx-bin { opacity: 1; }
.fx-bin__lid { display: block; width: 56px; height: 12px; border-radius: 6px; margin: 0 0 3px -5px;
  background: linear-gradient(180deg, #21c2b5, #14988c); transform-origin: left bottom;
  transition: transform .45s var(--ease); }
.showcase--3d.show--rec .fx-bin__lid { transform: rotate(-30deg) translateY(-2px); }
.fx-bin__can { display: grid; place-items: center; width: 46px; height: 44px; border-radius: 8px 8px 13px 13px;
  background: linear-gradient(180deg, #18b3a7, #0e7a72); box-shadow: var(--shadow-sm); }
.showcase--3d.show--rec .fx-bin__can svg { animation: sunSpin 3.5s linear infinite; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 10px; }
  .hero__visual { max-width: 460px; margin: 10px auto 0; }
  .hero__chip.top { left: 0; } .hero__chip.bot { right: 0; }
  .split, .story__grid, .news { grid-template-columns: 1fr; }
  .story__art { max-width: 420px; }
  .lookbook .grid-look { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr; }
  .show-tile { min-height: 460px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn-text-hide { display: none; }
  .nav__burger { display: block; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
    background: var(--glass-strong); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; gap: 4px; padding: 18px 20px 26px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav__menu a { font-family: var(--font-display); font-size: 1.05rem; padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav__menu .btn { margin-top: 12px; }
  body.menu-open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .lookbook .grid-look { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .look.wide, .look.tall { grid-column: auto; grid-row: auto; }
  .hero__meta { gap: 22px; }
  .cta-card .actions { flex-direction: column; }
  .cta-card .btn { width: 100%; }
}

/* ---------- Mobile pass ---------- */
@media (max-width: 760px) {
  /* footer: stop the 4-column squeeze — brand on top, links 2-up */
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px 22px; padding-bottom: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
  /* tighten section rhythm */
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
}
@media (max-width: 700px) {
  /* hero: content-sized, no forced tall viewport, lighter spacing */
  .hero { min-height: auto; }
  .hero__inner { padding: 26px 0 44px; }
  .hero__visual { max-width: 300px; }
  .hero__scroll { display: none; }
  .hero__pill { margin-bottom: 20px; }
  .hero__sub { margin: 16px 0 24px; }
  .hero__meta { margin-top: 26px; gap: 18px 26px; }
  .announce { font-size: .73rem; line-height: 1.5; padding: 8px 14px; }
}
@media (max-width: 560px) {
  .hero__chip { display: none; }                 /* decorative — declutter small screens */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .news input { min-width: 0; flex: 1 1 100%; }
  .news form .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .to-top { width: 44px; height: 44px; right: 16px; bottom: 16px; }
  .section { padding: 50px 0; }
  .stage3d { width: 72%; }
  .feat3d { font-size: .78rem; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
