/* ==========================================================================
   SOLARA SWIM — styles.css
   Editorial luxury swimwear. Mobile first. No framework.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --white: #FBF8F3;
  --paper: #F5EFE6;
  --sand: #E9DFD0;
  --sand-deep: #CDBBA2;
  --ink: #121212;
  --ink-2: #3A3633;
  --muted: #6B645D;
  --coral: #E8664A;
  --coral-deep: #B8432A;
  --ocean: #1F5E7A;
  --ocean-deep: #0E3445;
  --sunset: #F2A65A;
  --line: rgba(18, 18, 18, .12);
  --line-light: rgba(255, 255, 255, .28);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(16px, 4vw, 48px);
  --max: 1440px;
  --section: clamp(48px, 6.5vw, 96px);   /* padded, not airy */
  --gap: clamp(12px, 1.6vw, 24px);
  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 68px;
  --announce-h: 36px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd, fieldset { margin: 0; }
fieldset { border: 0; padding: 0; min-width: 0; }
[hidden] { display: none !important; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; transition: top .2s; }
.skip-link:focus { top: 12px; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.small { font-size: 13px; color: var(--muted); }
.center { text-align: center; }
.img-fallback { object-fit: cover; }

/* ---------- 3. Typography ---------- */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--coral-deep); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #fff; }
.display {
  font-family: var(--sans); font-weight: 300; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 76px); line-height: .98; letter-spacing: -.02em;
}
.display em { font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; letter-spacing: -.01em; color: var(--coral-deep); }
.display strong { font-weight: 800; }
.display--light, .display--light em { color: #fff; }
.display--sm { font-size: clamp(28px, 3.4vw, 44px); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px; border: 1px solid transparent;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s, transform .35s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after { content: ''; position: absolute; inset: 0; background: currentColor; opacity: 0; transition: opacity .3s; }
.btn:active { transform: scale(.98); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--coral-deep); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.7); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 11px; letter-spacing: .14em; }
.btn--block { width: 100%; }
.btn--grow { flex: 1; }
.link-btn {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding: 4px 0; display: inline-flex; gap: 8px; align-items: center;
  transition: color .25s;
}
.link-btn:hover { color: var(--coral-deep); }
.link-btn--muted { color: var(--muted); border-color: transparent; }
.link-btn svg { width: 16px; height: 16px; }
.icon-btn {
  position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; transition: background .25s, color .25s, transform .25s;
}
.icon-btn:hover { background: rgba(18,18,18,.06); }
.icon-btn--ring { border: 1px solid var(--line); }
.icon-btn--ring:hover { background: var(--ink); color: #fff; }
.icon-btn--ring:disabled { opacity: .3; cursor: default; background: none; color: inherit; }
.icon-btn--glass { background: rgba(255,255,255,.85); color: var(--ink); backdrop-filter: blur(8px); }
.icon-btn--glass:hover { background: #fff; }
.count {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--coral); color: #fff; font-size: 10px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.count.bump { animation: bump .5s var(--ease-out); }
@keyframes bump { 40% { transform: scale(1.45); } }
.count--wish { background: var(--ink); }

/* ---------- 5. Intro curtain ---------- */
.intro {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink); color: var(--white);
  display: none; place-content: center; text-align: center; pointer-events: none;
}
.js .intro { display: grid; transition: transform 1.1s var(--ease-out) .25s; }
.intro__word { font-weight: 300; font-size: clamp(40px, 9vw, 120px); letter-spacing: .32em; padding-left: .32em; animation: introIn 1s var(--ease-out) both; }
.intro__sub { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 24px); color: var(--sunset); animation: introIn 1s var(--ease-out) .2s both; }
@keyframes introIn { from { opacity: 0; transform: translateY(24px); letter-spacing: .5em; } }
.is-loaded .intro { transform: translateY(-101%); }

/* ---------- 6. Announcement bar ---------- */
.announce { position: relative; height: var(--announce-h); background: var(--ink); color: #fff; overflow: hidden; z-index: 61; }
.announce__item {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 16px;
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; transform: translateY(100%); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.announce__item.is-active { opacity: 1; transform: none; }
.announce__item:not(.is-active) { transform: translateY(-100%); }

/* ---------- 7. Header ---------- */
.header {
  position: fixed; left: 0; right: 0; top: var(--announce-h); z-index: 60; color: #fff;
  transition: background .45s var(--ease), color .45s, top .45s var(--ease), box-shadow .45s;
}
.header::before { content: ''; position: absolute; inset: 0 0 -40px; background: linear-gradient(rgba(0,0,0,.35), transparent); pointer-events: none; transition: opacity .4s; }
.header.is-solid { top: 0; background: rgba(251,248,243,.94); color: var(--ink); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header.is-solid::before { opacity: 0; }
.header__inner {
  position: relative; max-width: var(--max); margin: 0 auto; height: var(--header-h);
  padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.header__burger { justify-self: start; }
.nav { display: none; }
.nav ul { display: flex; gap: clamp(14px, 1.6vw, 28px); }
.nav a { white-space: nowrap; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; position: relative; padding: 8px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.logo { justify-self: center; font-weight: 800; font-size: 22px; letter-spacing: .3em; padding-left: .3em; display: inline-flex; align-items: baseline; gap: .5em; white-space: nowrap; }
.logo span { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: .08em; font-size: .78em; text-transform: lowercase; }
.logo--dark { color: var(--ink); }
.header__tools { justify-self: end; display: flex; gap: 2px; }
.header .icon-btn:hover { background: rgba(255,255,255,.14); }
.header.is-solid .icon-btn:hover { background: rgba(18,18,18,.06); }
.hide-sm { display: none; }

@media (min-width: 1100px) {
  .header__inner { grid-template-columns: 1fr auto 1fr; }
  .header__burger { display: none; }
  .nav { display: block; grid-column: 1; grid-row: 1; }
  .header .logo { grid-column: 2; grid-row: 1; }
  .hide-sm { display: inline-grid; }
}
@media (min-width: 700px) { .hide-sm { display: inline-grid; } }

/* ---------- 8. Overlays (shared) ---------- */
.overlay { position: fixed; inset: 0; z-index: 200; }
.overlay__backdrop { position: absolute; inset: 0; background: rgba(12,10,9,.55); opacity: 0; transition: opacity .45s var(--ease); backdrop-filter: blur(2px); }
.overlay.is-open .overlay__backdrop { opacity: 1; }

/* Mobile menu */
.menu { display: grid; background: var(--white); clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease-out); }
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__media { position: relative; height: 34vh; overflow: hidden; }
.menu__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); transition: transform 1.4s var(--ease-out); }
.menu.is-open .menu__media img { transform: scale(1); }
.menu__caption { position: absolute; left: 20px; bottom: 16px; color: #fff; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.menu__caption em { font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 18px; }
.menu__panel { padding: 16px 20px 28px; display: flex; flex-direction: column; overflow-y: auto; }
.menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.menu__top .logo { font-size: 18px; }
.menu__list li { border-bottom: 1px solid var(--line); overflow: hidden; }
.menu__list a { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; font-size: clamp(26px, 7vw, 44px); font-weight: 300; text-transform: uppercase; letter-spacing: -.01em; transform: translateY(100%); transition: transform .7s var(--ease-out), color .2s; }
.menu__list a span { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: var(--coral-deep); }
.menu__list a:hover { color: var(--coral-deep); }
.menu.is-open .menu__list a { transform: none; }
.menu.is-open .menu__list li:nth-child(2) a { transition-delay: .05s; }
.menu.is-open .menu__list li:nth-child(3) a { transition-delay: .1s; }
.menu.is-open .menu__list li:nth-child(4) a { transition-delay: .15s; }
.menu.is-open .menu__list li:nth-child(5) a { transition-delay: .2s; }
.menu.is-open .menu__list li:nth-child(6) a { transition-delay: .25s; }
.menu__foot .link-btn { border: 0; padding: 0; }
.menu__foot { margin-top: auto; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 22px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
@media (min-width: 900px) {
  .menu { grid-template-columns: 45% 1fr; }
  .menu__media { height: 100vh; }
  .menu__panel { padding: 28px 48px 40px; }
}

/* Drawers */
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--white);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .55s var(--ease-out);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer__head h2 { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.drawer__head h2 span { color: var(--muted); font-weight: 500; }
.drawer__list { flex: 1; overflow-y: auto; padding: 4px 20px; }
.drawer__foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: grid; gap: 10px; background: var(--paper); }
.drawer__total { display: flex; justify-content: space-between; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; }
.drawer__foot .link-btn { justify-self: center; width: auto; }
.ship { padding: 14px 20px; background: var(--paper); font-size: 13px; }
.ship__track { height: 3px; background: var(--sand); margin-top: 8px; overflow: hidden; }
.ship__track span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sunset), var(--coral)); transition: width .6s var(--ease-out); }

.line { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line__img { width: 84px; height: 105px; object-fit: cover; background: var(--sand); }
.line__top { display: flex; justify-content: space-between; gap: 10px; }
.line__name { font-weight: 600; font-size: 14px; }
.line__price { font-size: 14px; }
.line__meta { font-size: 13px; color: var(--muted); margin: 2px 0 10px; }
.line__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); height: 38px; }
.qty button { width: 36px; height: 100%; font-size: 16px; transition: background .2s; }
.qty button:hover { background: var(--sand); }
.qty span { min-width: 28px; text-align: center; font-size: 14px; }
.qty--lg { height: 50px; }
.qty--lg button { width: 44px; }
.empty { text-align: center; padding: 48px 12px; display: grid; gap: 10px; justify-items: center; color: var(--muted); }
.empty__title { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--ink); }
.empty .btn { margin-top: 10px; }
.empty--wide { grid-column: 1 / -1; }

/* Modals */
.modal { display: grid; place-items: center; padding: 16px; }
.modal__panel {
  position: relative; background: var(--white); width: min(1080px, 100%); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  overflow-y: auto; opacity: 0; transform: translateY(24px) scale(.98); transition: opacity .45s var(--ease), transform .55s var(--ease-out);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__close { position: absolute; top: 8px; right: 8px; z-index: 5; background: rgba(251,248,243,.9); }

/* Quick view */
.qv { display: grid; }
.qv__gallery { position: relative; background: var(--sand); }
.qv__slides { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.qv__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); }
.qv__slide.is-active { opacity: 1; }
.qv__slide img { width: 100%; height: 100%; object-fit: cover; }
.qv__slide.is-active img { animation: kb 8s var(--ease) both; }
@keyframes kb { from { transform: scale(1.06); } to { transform: scale(1); } }
.qv__prev, .qv__next { position: absolute; top: 45%; }
.qv__prev { left: 12px; } .qv__next { right: 12px; }
.qv__thumbs { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 6px; }
.qv__thumb { width: 44px; height: 56px; overflow: hidden; border: 1px solid transparent; opacity: .7; transition: opacity .2s, border-color .2s; }
.qv__thumb img { width: 100%; height: 100%; object-fit: cover; }
.qv__thumb.is-active, .qv__thumb:hover { opacity: 1; border-color: #fff; }
.qv__info { padding: 24px 20px 28px; display: grid; gap: 14px; align-content: start; }
.qv__title { font-weight: 300; font-size: clamp(26px, 3vw, 38px); text-transform: uppercase; line-height: 1.05; }
.qv__price { font-size: 18px; }
.qv__label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.qv__label span { font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--muted); }
.qv__label--row { display: flex; justify-content: space-between; align-items: center; }
.qv__colors, .qv__sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.qv__buy { display: flex; gap: 10px; }
.qv__wish { justify-self: start; }
.qv__wish.is-active svg { fill: var(--coral); stroke: var(--coral); }
.qv__desc { color: var(--ink-2); }
.acc { border-top: 1px solid var(--line); padding: 12px 0 0; }
.acc summary { cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; list-style: none; display: flex; justify-content: space-between; }
.acc summary::after { content: '+'; font-size: 18px; line-height: 1; }
.acc[open] summary::after { content: '−'; }
.acc summary::-webkit-details-marker { display: none; }
.acc p { padding-top: 8px; font-size: 14px; color: var(--ink-2); }
@media (min-width: 820px) {
  .qv { grid-template-columns: 1.05fr 1fr; }
  .qv__slides { aspect-ratio: auto; height: min(760px, calc(100vh - 32px)); }
  .qv__info { padding: 44px 40px; }
}

/* Swatches & sizes */
.swatch { width: 22px; height: 22px; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); position: relative; transition: transform .2s; }
.swatch::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid transparent; transition: border-color .2s; }
.swatch.is-selected::after { border-color: var(--ink); }
.swatch:hover { transform: scale(1.1); }
.swatch--lg { width: 30px; height: 30px; }
.size-chip {
  min-width: 40px; height: 36px; padding: 0 10px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; transition: background .2s, color .2s, border-color .2s;
}
.size-chip:hover { border-color: var(--ink); }
.size-chip.is-selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-chip--lg { min-width: 52px; height: 46px; font-size: 13px; }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative; height: calc(100vh - var(--announce-h)); height: calc(100svh - var(--announce-h)); min-height: 560px; max-height: 1100px;
  color: #fff; overflow: hidden; display: flex; align-items: flex-end;
}
.hero__media { position: absolute; inset: 0; background: var(--ocean-deep); }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; transform: scale(1.14); }
.is-loaded .hero__img { animation: heroZoom 9s var(--ease-out) forwards; }
@keyframes heroZoom { to { transform: scale(1.02); } }
.hero__shade { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(10,8,6,.62) 0%, rgba(10,8,6,.28) 45%, rgba(10,8,6,0) 70%),
  linear-gradient(0deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,0) 45%); }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) clamp(72px, 12vh, 120px); }
.hero__title { font-weight: 300; text-transform: uppercase; font-size: clamp(56px, 12vw, 176px); line-height: .88; letter-spacing: -.035em; margin-bottom: 18px; }
.hero__title strong { font-weight: 800; display: inline-block; }
.hero__text { max-width: 440px; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; margin-bottom: 26px; color: rgba(255,255,255,.92); }
.hero__ctas > span { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.js .hero__line > span { transform: translateY(105%); transition: transform 1.2s var(--ease-out); }
.js .is-loaded .hero__line > span { transform: none; }
.is-loaded .hero__line:nth-child(1) > span { transition-delay: .9s; }
.is-loaded .hero__title .hero__line:nth-child(1) > span { transition-delay: 1s; }
.is-loaded .hero__title .hero__line:nth-child(2) > span { transition-delay: 1.1s; }
.is-loaded .hero__text > span { transition-delay: 1.25s; }
.is-loaded .hero__ctas > span { transition-delay: 1.35s; }
.hero__title .hero__line { display: inline-block; }
.hero__meta { position: absolute; right: var(--gutter); bottom: clamp(72px, 12vh, 120px); z-index: 2; text-align: right; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; display: none; }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; z-index: 2; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; padding-left: .3em; }
.scroll-cue__line { width: 1px; height: 42px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: #fff; animation: cue 2s var(--ease) infinite; }
@keyframes cue { to { top: 100%; } }
@media (min-width: 900px) { .hero__meta { display: block; } }
@media (max-width: 699px) {
  .hero { min-height: 600px; }
  .hero__img { object-position: 70% 50%; }
  .hero__shade { background: linear-gradient(0deg, rgba(10,8,6,.78) 0%, rgba(10,8,6,.35) 55%, rgba(10,8,6,.15) 100%); }
  .hero__ctas .btn { flex: 1 1 100%; }
  .scroll-cue { display: none; }
}

/* ---------- 10. Sections & reveal ---------- */
.section { padding-block: var(--section); }
.section__head { margin-bottom: clamp(20px, 2.8vw, 36px); }
.section__head--split { display: grid; gap: 14px; align-items: end; }
.section__head--split > p { max-width: 420px; color: var(--muted); font-size: 15px; }
@media (min-width: 800px) { .section__head--split { grid-template-columns: 1fr auto; } .section__head--split > p { justify-self: end; } }

.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1.1s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--clip { opacity: 1; transform: none; clip-path: inset(12% 0 12% 0); transition: clip-path 1.3s var(--ease-out); }
.js .reveal--clip img { transform: scale(1.18); transition: transform 1.8s var(--ease-out); }
.js .reveal--clip.is-in { clip-path: inset(0 0 0 0); }
.js .reveal--clip.is-in img { transform: scale(1); }

/* ---------- 11. Categories ---------- */
.cats { background: var(--white); }
.cats__grid { display: grid; gap: var(--gap); }
.cat { position: relative; display: block; overflow: hidden; color: #fff; background: var(--sand); isolation: isolate; }
.cat__media { position: absolute; inset: 0; z-index: -1; }
.cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.cat::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0) 55%); transition: opacity .5s; }
.cat:hover .cat__media img, .cat:focus-visible .cat__media img { transform: scale(1.06); }
.cat--a { aspect-ratio: 4 / 5; }
.cat--b, .cat--c { aspect-ratio: 5 / 4; }
.cat--d { aspect-ratio: 16 / 10; }
.cat__label { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(16px, 2.4vw, 32px); display: grid; gap: 6px; }
.cat__label h3 { font-size: clamp(30px, 4vw, 60px); font-weight: 300; text-transform: uppercase; line-height: .95; letter-spacing: -.02em; transition: transform .6s var(--ease-out); }
.cat__num { font-size: 11px; font-weight: 600; letter-spacing: .2em; }
.cat__desc { font-family: var(--serif); font-style: italic; font-size: 19px; max-width: 360px; }
.cat__link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.cat__link svg { width: 16px; transition: transform .4s var(--ease-out); }
.cat:hover .cat__link svg { transform: translateX(6px); }
.cat:hover .cat__label h3 { transform: translateX(6px); }
@media (min-width: 800px) {
  .cats__grid { grid-template-columns: 7fr 5fr; grid-template-rows: auto auto auto; }
  .cat--a { grid-row: 1 / 3; aspect-ratio: auto; min-height: 640px; }
  .cat--b, .cat--c { aspect-ratio: 6 / 5; }
  .cat--d { grid-column: 1 / -1; aspect-ratio: 21 / 7; }
  .cat__label--row { grid-template-columns: auto auto 1fr auto; align-items: end; gap: 12px 28px; }
  .cat__label--row .cat__desc { justify-self: start; }
}

/* ---------- 12. Shop / product grid ---------- */
.shop { background: var(--paper); }
.shop__head { display: grid; gap: 12px; margin-bottom: 20px; align-items: end; }
.shop__intro { max-width: 420px; color: var(--muted); font-size: 15px; }
@media (min-width: 800px) { .shop__head { grid-template-columns: 1fr auto; } }
.toolbar { display: grid; gap: 12px; padding: 12px 0; border-block: 1px solid var(--line); position: sticky; top: var(--header-h); z-index: 20; background: var(--paper); }
.filters { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.filters::-webkit-scrollbar { display: none; }
.filter-tab { flex: none; height: 38px; padding: 0 16px; border: 1px solid var(--line); border-radius: 40px; font-size: 12px; font-weight: 500; letter-spacing: .06em; transition: all .25s; background: transparent; }
.filter-tab:hover { border-color: var(--ink); }
.filter-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.toolbar__right { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.field--inline { position: relative; }
.field--inline input, .field--inline select { height: 40px; border: 1px solid var(--line); background: var(--white); padding: 0 14px; font-size: 13px; width: 100%; border-radius: 40px; }
.field--inline input { padding-left: 38px; }
.field__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); display: grid; }
.field__icon svg { width: 17px; height: 17px; }
@media (min-width: 900px) {
  .toolbar { grid-template-columns: 1fr auto; align-items: center; }
  .filters { margin: 0; padding: 0; }
  .toolbar__right { grid-template-columns: 220px 190px; }
}
.shop__status { font-size: 12px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin: 14px 0; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 36px var(--gap); } }
@media (min-width: 1200px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.shop__foot { text-align: center; margin-top: 28px; }

.card { position: relative; }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.card__imglink { position: absolute; inset: 0; }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .7s var(--ease), transform 1.4s var(--ease-out); }
.card__img--alt { opacity: 0; transform: scale(1.06); }
.card:hover .card__img--alt { opacity: 1; transform: scale(1); }
.card:hover .card__img:not(.card__img--alt) { transform: scale(1.04); }
.badge { position: absolute; top: 10px; left: 10px; background: var(--white); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 5px 9px; }
.badge--new { background: var(--coral); color: #fff; }
.badge--inline { position: static; margin-left: 6px; }
.badge--inline:empty { display: none; }
.card__wish { position: absolute; top: 4px; right: 4px; color: var(--ink); background: rgba(251,248,243,.8); width: 40px; height: 40px; }
.card__wish.is-active svg, .bs__wish.is-active svg { fill: var(--coral); stroke: var(--coral); }
.card__wish:hover { background: #fff; }
.card__quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; padding: 10px; display: grid; gap: 8px;
  background: rgba(18,18,18,.72); backdrop-filter: blur(10px); color: #fff;
  opacity: 0; transform: translateY(12px); transition: opacity .4s var(--ease), transform .5s var(--ease-out);
}
.card:hover .card__quick, .card:focus-within .card__quick, .card.show-quick .card__quick { opacity: 1; transform: none; }
.card__sizes { display: flex; flex-wrap: wrap; gap: 4px; }
.card__sizes .size-chip { border-color: rgba(255,255,255,.3); min-width: 34px; height: 30px; font-size: 11px; padding: 0 6px; }
.card__sizes .size-chip:hover { border-color: #fff; }
.card__sizes .size-chip.is-selected { background: #fff; color: var(--ink); }
.card.needs-size .card__sizes { animation: shake .45s; }
.card.needs-size .card__sizes .size-chip { border-color: var(--sunset); }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.card__actions .btn { min-height: 36px; padding: 0 8px; font-size: 10px; letter-spacing: .1em; }
.card__info { padding-top: 12px; }
.card__row { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.card__name { font-size: 14px; font-weight: 500; line-height: 1.3; }
.card__name a:hover { color: var(--coral-deep); }
.card__price { font-size: 14px; white-space: nowrap; }
.card__swatches { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.card__swatches .swatch { width: 16px; height: 16px; }
.card__colorname { font-size: 12px; color: var(--muted); }
@media (max-width: 699px) {
  .card__quick { left: 6px; right: 6px; bottom: 6px; padding: 8px; }
  .card__actions { grid-template-columns: 1fr; }
  .card__actions .btn--ghost-light { display: none; }
  .card__name { font-size: 13px; }
}
@media (hover: none) {
  .card__quick { opacity: 1; transform: none; background: rgba(18,18,18,.55); }
  .card__sizes { display: none; }
  .card.show-quick .card__sizes, .card.needs-size .card__sizes { display: flex; }
}

/* ---------- 13. Escape campaign ---------- */
.escape { position: relative; overflow: hidden; color: #fff; min-height: min(92vh, 880px); display: flex; align-items: center; background: var(--ocean-deep); }
.escape__bg { position: absolute; inset: -10% 0; }
.escape__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.escape__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,52,69,.2), rgba(10,8,6,.62) 70%); }
.escape__inner { position: relative; display: grid; gap: 28px; padding-block: var(--section); align-items: center; }
.escape__inset { width: min(62%, 360px); position: relative; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.escape__inset img { width: 100%; aspect-ratio: 18 / 25; object-fit: cover; }
.escape__inset figcaption { position: absolute; left: 12px; bottom: 10px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.escape__copy { max-width: 520px; display: grid; gap: 18px; justify-items: start; }
.escape__copy p:not(.eyebrow) { font-size: 16px; color: rgba(255,255,255,.9); }
@media (min-width: 900px) {
  .escape__inner { grid-template-columns: 5fr 6fr; }
  .escape__inset { width: 78%; justify-self: center; transform: rotate(-2deg); }
  .escape__copy { justify-self: end; }
}

/* ---------- 14. Shop the look ---------- */
.look__grid { display: grid; gap: var(--gap); grid-auto-flow: column; grid-auto-columns: 84%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.look__grid::-webkit-scrollbar { display: none; }
.look__item { scroll-snap-align: start; }
.look__media { position: relative; aspect-ratio: 4 / 5; overflow: visible; background: var(--sand); }
.look__media > img { width: 100%; height: 100%; object-fit: cover; }
.look__item figcaption { margin-top: 10px; font-family: var(--serif); font-style: italic; font-size: 22px; display: flex; gap: 12px; align-items: baseline; }
.look__item figcaption span { font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coral-deep); }
@media (min-width: 900px) {
  .look__grid { grid-auto-flow: row; grid-template-columns: 1.15fr 1fr 1fr; overflow: visible; align-items: start; }
  .look__item--2 { margin-top: 64px; }
  .look__item--3 { margin-top: 24px; }
}
.hotspot { position: absolute; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; display: grid; place-items: center; z-index: 3; }
.hotspot span { width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2.2s infinite; position: relative; transition: transform .3s var(--ease-out); }
.hotspot span::after { content: ''; position: absolute; inset: 5px; border-radius: 50%; background: var(--coral); }
.hotspot:hover span, .hotspot.is-active span { transform: scale(1.3); }
@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
.hotspot__pop {
  position: absolute; z-index: 4; width: 230px; margin: 26px 0 0 -20px; padding: 16px; background: var(--white); color: var(--ink);
  box-shadow: 0 18px 40px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .3s, transform .4s var(--ease-out), visibility .3s;
}
.hotspot__pop.is-left { margin-left: -210px; }
.hotspot__pop.is-open { opacity: 1; visibility: visible; transform: none; }
.hotspot__name { font-weight: 600; font-size: 14px; }
.hotspot__price { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.hotspot__colors { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.hotspot__cn { font-size: 11px; color: var(--muted); }
.hotspot__actions { display: flex; gap: 14px; align-items: center; }

/* ---------- 15. Collections ---------- */
.coll { position: relative; }
.mini { display: grid; gap: 8px; }
.mini__media { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); width: 100%; }
.mini__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.mini:hover .mini__media img { transform: scale(1.05); }
.mini__name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.mini__price { font-size: 13px; color: var(--muted); }
.mini__info { display: grid; gap: 2px; justify-items: start; }
.mini__info .link-btn { font-size: 10px; margin-top: 4px; }
.coll__products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.coll__lead { font-size: 16px; color: var(--ink-2); max-width: 520px; }

/* Miami */
.coll--miami { display: grid; background: #F6E3DA; }
.coll__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.coll__media img { width: 100%; height: 100%; object-fit: cover; }
.coll__stamp { position: absolute; right: 16px; bottom: 8px; font-size: clamp(60px, 11vw, 150px); font-weight: 800; line-height: 1; color: rgba(255,255,255,.85); letter-spacing: -.04em; mix-blend-mode: overlay; }
.coll__body { padding: var(--section) var(--gutter); display: grid; gap: 20px; align-content: center; justify-items: start; }
@media (min-width: 900px) {
  .coll--miami { grid-template-columns: 1fr 1fr; }
  .coll--miami .coll__media { aspect-ratio: auto; min-height: 100%; position: sticky; top: 0; max-height: 100vh; height: 100vh; }
  .coll__body { padding-inline: clamp(32px, 5vw, 80px); }
}

/* Resort */
.coll--resort { min-height: min(100vh, 940px); display: grid; align-items: center; padding: var(--section) var(--gutter); overflow: hidden; }
.coll__bg { position: absolute; inset: 0; }
.coll__bg img { width: 100%; height: 100%; object-fit: cover; }
.coll--resort::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(40,18,8,.55), rgba(40,18,8,.1)); z-index: 1; }
.coll__glass {
  position: relative; z-index: 2; max-width: 620px; padding: clamp(22px, 3.2vw, 40px); display: grid; gap: 18px; justify-items: start;
  background: rgba(30,18,12,.36); backdrop-filter: blur(18px) saturate(1.2); border: 1px solid var(--line-light); color: #fff;
}
.coll__glass .coll__lead { color: rgba(255,255,255,.9); }
.coll__products--light .mini__name, .coll__products--light .link-btn { color: #fff; }
.coll__products--light .mini__price { color: rgba(255,255,255,.75); }
@media (min-width: 1000px) { .coll__glass { margin-left: auto; margin-right: max(0px, calc((100vw - var(--max)) / 2)); } }

/* Essentials */
.coll--essentials { background: var(--ink); color: #fff; padding-block: var(--section); }
.coll__ess { display: grid; gap: 28px; }
.coll__ess-head { display: grid; gap: 18px; justify-items: start; align-content: center; }
.coll__ess-head .coll__lead { color: rgba(255,255,255,.78); }
.coll__ess-media { aspect-ratio: 4 / 5; overflow: hidden; }
.coll__ess-media img { width: 100%; height: 100%; object-fit: cover; }
.coll__products--dark .mini__media { background: #222; }
.coll__products--dark .mini__price { color: rgba(255,255,255,.65); }
.coll__products--dark .link-btn { color: #fff; }
@media (min-width: 900px) {
  .coll__ess { grid-template-columns: 1fr 1.1fr; grid-template-rows: auto auto; column-gap: clamp(32px, 5vw, 80px); row-gap: 32px; }
  .coll__ess-media { grid-column: 2; grid-row: 1 / 3; aspect-ratio: 4 / 5; }
  .coll__products--dark { align-self: end; }
}

/* ---------- 16. Story ---------- */
.story { background: var(--white); }
.story__grid { display: grid; gap: clamp(28px, 4vw, 64px); align-items: center; }
.story__images { position: relative; padding-bottom: 18%; }
.story__big { width: 82%; aspect-ratio: 41 / 50; overflow: hidden; }
.story__big img, .story__small img, .story__detail img { width: 100%; height: 100%; object-fit: cover; }
.story__small { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 4 / 5; overflow: hidden; border: 8px solid var(--white); }
.story__detail { position: absolute; right: 8%; top: 8%; width: 26%; aspect-ratio: 1; overflow: hidden; border-radius: 50%; border: 6px solid var(--white); }
.story__copy { display: grid; gap: 18px; justify-items: start; }
.story__lead { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 25px); line-height: 1.4; color: var(--ink-2); }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; border-top: 1px solid var(--line); padding-top: 20px; width: 100%; }
.pillars h3 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 4px 0; }
.pillars p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.pillars__n { font-family: var(--serif); font-style: italic; color: var(--coral-deep); font-size: 20px; }
@media (min-width: 900px) { .story__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- 17. Fit guide ---------- */
.fit { background: var(--sand); }
.fit__wrap { display: grid; gap: 28px; }
.fit__intro { display: grid; gap: 14px; justify-items: start; align-content: start; }
.fit__intro > p:not(.eyebrow) { color: var(--ink-2); max-width: 420px; }
.fit__form { display: grid; gap: 18px; }
.q legend { display: flex; align-items: baseline; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.q legend span { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 20px; color: var(--coral-deep); letter-spacing: 0; }
.opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.opts label { position: relative; }
.opts input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opts span { display: grid; place-items: center; height: 48px; border: 1px solid rgba(18,18,18,.22); background: var(--white); font-size: 13px; font-weight: 500; transition: all .25s; text-align: center; padding: 0 6px; }
.opts label:hover span { border-color: var(--ink); }
.opts input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.opts input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }
.fit__actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.form-error { color: var(--coral-deep); font-size: 13px; font-weight: 500; }
.fit__results { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(18,18,18,.18); }
.fit__results.is-in { animation: rise .8s var(--ease-out); }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
.fit__summary { font-family: var(--serif); font-size: 22px; margin-bottom: 16px; }
.fit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 820px; }
@media (min-width: 900px) { .fit__wrap { grid-template-columns: 5fr 7fr; column-gap: 64px; } }

/* ---------- 18. Best sellers rail ---------- */
.bests { background: var(--white); overflow: hidden; }
.rail__nav { display: flex; gap: 8px; }
.rail__track {
  display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
  padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); cursor: grab;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.rail__track.is-dragging img { pointer-events: none; }
@media (min-width: 1440px) { .rail__track { padding-inline: calc((100vw - var(--max)) / 2 + var(--gutter)); scroll-padding-inline: calc((100vw - var(--max)) / 2 + var(--gutter)); } }
.rail__item { flex: 0 0 78%; scroll-snap-align: start; }
@media (min-width: 700px) { .rail__item { flex-basis: 42%; } }
@media (min-width: 1100px) { .rail__item { flex-basis: 30%; } }
.bs__media { display: block; position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); }
.bs__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); -webkit-user-drag: none; }
.bs__media:hover img { transform: scale(1.05); }
.bs__num { position: absolute; left: 14px; top: 10px; color: #fff; font-family: var(--serif); font-style: italic; font-size: 36px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.bs__info { display: grid; grid-template-columns: 1fr auto; align-items: center; padding-top: 10px; }
.bs__name { font-size: 14px; font-weight: 500; }
.bs__price { font-size: 13px; color: var(--muted); grid-row: 2; }
.bs__wish { grid-row: 1 / 3; grid-column: 2; }
.rail__progress { margin-top: 22px; }
.rail__progress::before { content: ''; display: block; height: 1px; background: var(--line); }
.rail__progress span { display: block; height: 2px; margin-top: -1.5px; background: var(--ink); width: 20%; transition: width .3s; }

/* ---------- 19. Film campaign ---------- */
.film { position: relative; min-height: min(100vh, 900px); display: flex; align-items: center; overflow: hidden; color: #fff; background: #0b1b22; }
.film__media { position: absolute; inset: 0; }
.film__img { width: 100%; height: 100%; object-fit: cover; animation: filmPan 26s ease-in-out infinite alternate; }
@keyframes filmPan { from { transform: scale(1.04) translate3d(-1%, 0, 0); } to { transform: scale(1.16) translate3d(1.5%, -1.5%, 0); } }
.film::before { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 30% 60%, rgba(0,0,0,.1), rgba(0,0,0,.6)); }
.film__grain { position: absolute; inset: -50%; z-index: 1; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite; }
@keyframes grain { 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-1%, 3%); } }
.film__bars span { position: absolute; left: 0; right: 0; height: 6vh; background: #000; z-index: 2; }
.film__bars span:first-child { top: 0; } .film__bars span:last-child { bottom: 0; }
.film__hud { position: absolute; z-index: 2; top: calc(6vh + 14px); left: var(--gutter); right: var(--gutter); display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .24em; font-variant-numeric: tabular-nums; opacity: .85; }
.film__rec { color: #fff; }
.film__rec::first-letter { color: var(--coral); }
.film__copy { position: relative; z-index: 3; display: grid; gap: 18px; justify-items: start; padding-block: calc(6vh + 56px); }
.film__title { font-weight: 800; text-transform: uppercase; font-size: clamp(48px, 10vw, 150px); line-height: .88; letter-spacing: -.04em; }
.film__title span { display: block; font-weight: 300; }
.film__title em { font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: -.02em; color: var(--sunset); }
.film__text { font-size: clamp(16px, 1.5vw, 20px); max-width: 440px; }
.play { width: 0; height: 0; border-left: 8px solid currentColor; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }

/* ---------- 20. Gallery ---------- */
.gallery { background: var(--paper); }
.demo-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--ink); color: #fff; padding: 3px 7px; margin-right: 6px; vertical-align: middle; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gallery__item { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .5s; }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: rgba(18,18,18,.3); opacity: 0; transition: opacity .4s; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__ig { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -30%); opacity: 0; color: #fff; transition: all .4s var(--ease-out); }
.gallery__ig svg { width: 28px; height: 28px; }
.gallery__item:hover .gallery__ig { opacity: 1; transform: translate(-50%, -50%); }
.gallery__cta { margin-top: 18px; text-align: center; }
.gallery__cta a { display: inline-flex; gap: 8px; align-items: center; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid; padding-bottom: 3px; }
.gallery__cta svg { width: 16px; }
@media (min-width: 800px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .gallery__grid li:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__grid li:nth-child(1) .gallery__item { height: 100%; }
}

/* Lightbox */
.lightbox { display: grid; place-items: center; padding: 56px 12px; }
.lightbox .overlay__backdrop { background: rgba(10,9,8,.92); }
.lightbox__fig { position: relative; max-width: min(1100px, 100%); display: grid; gap: 10px; opacity: 0; transform: scale(.97); transition: opacity .4s, transform .5s var(--ease-out); }
.lightbox.is-open .lightbox__fig { opacity: 1; transform: none; }
.lightbox__fig img { max-height: calc(100vh - 150px); max-height: calc(100dvh - 150px); width: auto; margin: 0 auto; object-fit: contain; opacity: 0; transition: opacity .5s; }
.lightbox__fig img.is-in { opacity: 1; }
.lightbox__fig figcaption { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; color: rgba(255,255,255,.85); font-size: 13px; text-align: center; }
.lightbox__fig .demo-tag { background: #fff; color: var(--ink); }
.lightbox__prev, .lightbox__next, .lightbox__close { position: absolute; z-index: 2; }
.lightbox__prev { left: 12px; top: 50%; } .lightbox__next { right: 12px; top: 50%; }
.lightbox__close { right: 12px; top: 12px; }

/* ---------- 21. Reviews ---------- */
.reviews { background: var(--white); overflow-x: clip; }
.reviews__wrap { display: grid; gap: 28px; }
.reviews__head { display: grid; gap: 14px; align-content: start; }
.demo-note { font-size: 13px; color: var(--muted); }
.reviews__slider { position: relative; display: grid; }
.review { grid-area: 1 / 1; opacity: 0; transform: translateX(24px); transition: opacity .6s var(--ease), transform .7s var(--ease-out); visibility: hidden; }
.review.is-active { opacity: 1; transform: none; visibility: visible; }
.review__stars { color: var(--coral); letter-spacing: .2em; font-size: 14px; margin-bottom: 14px; }
.review blockquote { margin: 0; }
.review blockquote p { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 38px); line-height: 1.25; }
.review figcaption { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: baseline; font-size: 13px; }
.review figcaption strong { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.review figcaption span { color: var(--muted); }
.verified { color: var(--ocean) !important; }
.verified em { font-style: normal; color: var(--muted); }
.reviews__controls { grid-area: 2 / 1; display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.reviews__dots { display: flex; gap: 4px; }
.dotnav { width: 28px; height: 28px; display: grid; place-items: center; }
.dotnav::before { content: ''; width: 18px; height: 2px; background: var(--line); transition: background .3s, width .3s; }
.dotnav.is-active::before { background: var(--ink); width: 28px; }
@media (min-width: 900px) { .reviews__wrap { grid-template-columns: 4fr 7fr; column-gap: 64px; } }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__wrap { display: grid; gap: 24px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 0; display: flex; justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 500; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary span { position: relative; flex: none; width: 14px; height: 14px; margin-top: 6px; }
.faq__item summary span::before, .faq__item summary span::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .3s; }
.faq__item summary span::after { transform: rotate(90deg); }
.faq__item[open] summary span::after { transform: rotate(0); }
.faq__item p { padding-bottom: 18px; color: var(--ink-2); max-width: 680px; }
@media (min-width: 900px) { .faq__wrap { grid-template-columns: 4fr 7fr; column-gap: 64px; } }

/* ---------- 22. Join ---------- */
.join { position: relative; min-height: min(86vh, 780px); display: grid; place-items: center; padding: var(--section) var(--gutter); overflow: hidden; }
.join__bg { position: absolute; inset: 0; }
.join__bg img { width: 100%; height: 100%; object-fit: cover; }
.join::before { content: ''; position: absolute; inset: 0; background: rgba(14,52,69,.2); z-index: 1; }
.join__card { position: relative; z-index: 2; background: var(--white); width: min(560px, 100%); padding: clamp(24px, 4vw, 48px); display: grid; gap: 14px; text-align: center; justify-items: center; box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.join__card .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.join__card > p:not(.eyebrow) { color: var(--ink-2); max-width: 420px; }
.join__form { width: 100%; display: grid; gap: 10px; margin-top: 6px; }
.join__field { display: grid; gap: 6px; text-align: left; }
.join__field label { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.join__field input { height: 52px; border: 1px solid rgba(18,18,18,.3); background: #fff; padding: 0 16px; font-size: 16px; }
.join__field input[aria-invalid="true"] { border-color: var(--coral-deep); box-shadow: 0 0 0 1px var(--coral-deep); }
.join__form .form-error:empty { display: none; }
.join__form.is-done { display: none; }
.join__success { display: grid; gap: 12px; justify-items: center; animation: rise .8s var(--ease-out); }
.join__sun { width: 56px; height: 56px; border-radius: 50%; background: radial-gradient(circle at 50% 60%, var(--sunset), var(--coral)); box-shadow: 0 0 0 10px rgba(242,166,90,.18), 0 0 0 22px rgba(242,166,90,.08); }
@media (min-width: 600px) {
  .join__form { grid-template-columns: 1fr auto; align-items: end; }
  .join__form .btn { height: 52px; }
  .join__form .form-error { grid-column: 1 / -1; text-align: left; }
}

/* ---------- 23. Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding-top: clamp(48px, 6vw, 80px); overflow: hidden; }
.footer__top { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; display: grid; gap: 14px; max-width: 360px; }
.logo--xl { color: #fff; font-size: 24px; justify-self: start; }
.footer__social { display: flex; gap: 4px; margin-left: -10px; }
.footer__social .icon-btn:hover { background: rgba(255,255,255,.1); }
.footer__col h2 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 8px; }
.footer__col a { font-size: 14px; transition: color .2s; }
.footer__col a:hover, .footer__legal a:hover { color: var(--sunset); }
.footer__word { font-size: clamp(80px, 22vw, 340px); font-weight: 800; letter-spacing: -.05em; line-height: .78; color: rgba(255,255,255,.06); text-align: center; margin-top: 40px; user-select: none; white-space: nowrap; }
.footer__bottom { display: grid; gap: 12px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__credit a, .footer__hq { color: var(--sunset); border-bottom: 1px solid currentColor; }
.footer__demo { padding-block: 14px calc(90px + env(safe-area-inset-bottom)); font-size: 12px; color: rgba(255,255,255,.55); display: grid; gap: 8px; text-align: center; }
.footer__demo a { text-decoration: underline; }
.footer__hq { font-size: 13px; text-decoration: none !important; }
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .footer__credit { text-align: right; }
  .footer__demo { padding-bottom: 28px; }
}

/* ---------- 24. Mobile bar, to-top, toast ---------- */
.mbar {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 90;
  display: grid; grid-template-columns: repeat(5, 1fr); background: rgba(18,18,18,.92); color: #fff; backdrop-filter: blur(14px);
  border-radius: 18px; padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.mbar a, .mbar button { position: relative; display: grid; justify-items: center; gap: 2px; padding: 6px 0; font-size: 10px; letter-spacing: .06em; border-radius: 12px; min-height: 48px; }
.mbar svg { width: 21px; height: 21px; }
.mbar .count { top: 2px; right: calc(50% - 22px); }
.mbar__bag { background: var(--coral-deep); }
@media (min-width: 900px) { .mbar { display: none; } }
.to-top {
  position: fixed; right: 16px; bottom: calc(92px + env(safe-area-inset-bottom)); z-index: 80; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,.18); display: grid; place-items: center;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: all .4s var(--ease-out);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--ink); color: #fff; }
@media (min-width: 900px) { .to-top { bottom: 24px; right: 24px; } }
.toast {
  position: fixed; left: 50%; bottom: calc(96px + env(safe-area-inset-bottom)); z-index: 300; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 12px 20px; font-size: 13px; opacity: 0; pointer-events: none; transition: all .4s var(--ease-out);
  max-width: calc(100% - 32px); text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) { .toast { bottom: 28px; } }

/* ---------- 25. Search overlay ---------- */
.search__panel { position: absolute; left: 0; right: 0; top: 0; background: var(--white); padding-bottom: 28px; transform: translateY(-100%); transition: transform .55s var(--ease-out); max-height: 100vh; overflow-y: auto; }
.search.is-open .search__panel { transform: none; }
.search__form { display: flex; align-items: center; gap: 12px; height: 76px; border-bottom: 1px solid var(--line); }
.search__form > svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.search__form input { flex: 1; border: 0; background: transparent; font-size: clamp(18px, 2.4vw, 28px); font-weight: 300; height: 100%; min-width: 0; }
.search__form input:focus { outline: none; }
.search__body { padding-top: 18px; }
.search__chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.search__chips button { border: 1px solid var(--line); border-radius: 30px; padding: 6px 14px; font-size: 12px; color: var(--ink); }
.search__chips button:hover { border-color: var(--ink); }
.search__label { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; }
.search__results { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.search-hit { display: flex; gap: 14px; align-items: center; width: 100%; text-align: left; padding: 8px; transition: background .2s; }
.search-hit:hover { background: var(--paper); }
.search-hit img { width: 60px; height: 75px; object-fit: cover; }
.search-hit__name { display: block; font-size: 14px; font-weight: 500; }
.search-hit__price { display: block; font-size: 13px; color: var(--muted); }
.search-empty { color: var(--muted); font-size: 14px; }

/* ---------- 26. Size guide ---------- */
.sg { padding: clamp(22px, 4vw, 44px); width: min(920px, 100%); display: grid; gap: 12px; }
.sg__layout { display: grid; gap: 20px; margin-top: 8px; }
.sg__figure { display: none; }
.sg__figure svg { width: 100%; height: auto; stroke: none; }
.sg__body { fill: var(--sand); }
.sg__line { stroke: var(--coral); stroke-width: 1.5; stroke-dasharray: 4 3; }
.sg__figure text { fill: var(--ink); font: 600 9px var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.unit-toggle { display: inline-flex; border: 1px solid var(--ink); margin-bottom: 14px; }
.unit-toggle button { padding: 8px 16px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.unit-toggle button.is-active { background: var(--ink); color: #fff; }
.table-wrap { overflow-x: auto; }
.sg__table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 520px; }
.sg__table th, .sg__table td { padding: 10px 8px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.sg__table thead th { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sg__table tbody th { font-weight: 700; }
.sg__table td:nth-child(2), .sg__table td:nth-child(3), .sg__table td:nth-child(4) { background: rgba(233,223,208,.4); }
.sg__h { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 20px 0 8px; }
.sg__tips { list-style: decimal; padding-left: 18px; display: grid; gap: 6px; font-size: 14px; color: var(--ink-2); }
@media (min-width: 760px) { .sg__layout { grid-template-columns: 160px 1fr; } .sg__figure { display: block; } }

/* Info modal */
.info { padding: clamp(24px, 4vw, 44px); width: min(560px, 100%); display: grid; gap: 14px; }
.info__body { display: grid; gap: 12px; color: var(--ink-2); }
.info__body a { text-decoration: underline; }
.info__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

/* ---------- 27. Checkout ---------- */
.co { width: min(1100px, 100%); }
.co__banner { background: var(--ocean-deep); color: #fff; padding: 12px 56px 12px 20px; font-size: 13px; letter-spacing: .02em; }
.co__banner--inline { padding: 12px 16px; }
.co__grid { display: grid; }
.co__form, .co__done { padding: clamp(20px, 3.4vw, 40px); display: grid; gap: 20px; align-content: start; }
.co__form legend { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; display: flex; gap: 10px; align-items: center; }
.co__form fieldset { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .co__code input { height: 48px; border: 1px solid rgba(18,18,18,.25); background: #fff; padding: 0 14px; font-size: 16px; width: 100%; border-radius: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--coral-deep); box-shadow: 0 0 0 1px var(--coral-deep); }
.field__err { font-size: 12px; color: var(--coral-deep); }
.field__hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.field__hint.is-ok { color: var(--ocean); } .field__hint.is-err { color: var(--coral-deep); }
.row2, .row3 { display: grid; gap: 12px; }
@media (min-width: 560px) { .row2 { grid-template-columns: 1fr 1fr; } .row3 { grid-template-columns: 1.4fr 1fr 1fr; } }
.radio-card { display: flex; gap: 12px; align-items: center; border: 1px solid rgba(18,18,18,.25); padding: 14px; cursor: pointer; font-size: 14px; transition: border-color .2s, background .2s; }
.radio-card:has(input:checked) { border-color: var(--ink); background: var(--paper); }
.radio-card span { flex: 1; }
.radio-card strong { display: block; }
.radio-card em { font-style: normal; font-weight: 600; }
.radio-card input { accent-color: var(--ink); width: 18px; height: 18px; }
.co__pay { background: var(--paper); padding: 16px; border: 1px dashed rgba(18,18,18,.3); }
.co__pay p { font-size: 13px; color: var(--ink-2); }
.co__pay .demo-tag { margin: 0; }
.co__pay-mock { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; }
.co__pay-mock span { height: 44px; display: grid; align-items: center; padding: 0 12px; border: 1px solid var(--line); color: #a39b92; background: #fff; font-size: 13px; opacity: .7; }
.co__done { text-align: center; justify-items: center; min-height: 420px; align-content: center; }
.co__summary { background: var(--paper); padding: clamp(20px, 3vw, 36px); display: grid; gap: 16px; align-content: start; }
.co__summary h3 { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.co__lines { display: grid; gap: 12px; }
.co-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: center; font-size: 13px; }
.co-line__img { position: relative; }
.co-line__img img { width: 60px; height: 75px; object-fit: cover; }
.co-line__qty { position: absolute; top: -6px; right: -6px; background: var(--ink); color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 11px; display: grid; place-items: center; }
.co-line__name { display: block; font-weight: 600; }
.co-line__meta { display: block; color: var(--muted); }
.co__code label { font-size: 12px; font-weight: 600; display: block; margin-bottom: 6px; }
.co__code-row { display: flex; gap: 8px; }
.co__code-row .btn { min-height: 48px; }
.co__totals { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 14px; }
.co__totals div { display: flex; justify-content: space-between; }
.co__grand { font-size: 18px; font-weight: 600; border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; }
@media (min-width: 900px) {
  .co__grid { grid-template-columns: 1.4fr 1fr; }
  .co__summary { grid-column: 2; grid-row: 1; position: sticky; top: 0; align-self: start; min-height: 100%; }
  .co__form, .co__done { grid-column: 1; grid-row: 1; }
}

/* ---------- 28. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal--clip { opacity: 1; transform: none; clip-path: none; }
  .js .reveal--clip img, .hero__img { transform: none !important; }
  .film__img { animation: none; }
  .film__grain { display: none; }
}
