/* NameCrush v3 — Concept-theme clone. Inter, ink #171717, paper #fafafa, peach #ffddbf. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #171717;
  --ink-soft: #444;
  --grey: #6b6b6b;
  --paper: #fafafa;
  --card: #f4f4f2;
  --white: #fff;
  --line: rgba(23, 23, 23, .1);
  --peach: #ffddbf;
  --amber: #fde68a;
  --accent: #e8452e;
  --star: #f59e0b;
  --r-lg: 28px;
  --r-md: 16px;
  --pad: clamp(16px, 3vw, 44px);
  --shadow: 0 10px 40px -12px rgba(23, 23, 23, .18);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Announcement bar ---------- */
.announce { background: var(--ink); color: #eee; font-size: 13px; }
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 9px var(--pad);
}
.announce-social { display: flex; gap: 14px; }
.announce-social svg { width: 15px; height: 15px; opacity: .85; }
.announce-msg { display: flex; align-items: center; gap: 22px; font-weight: 500; }
.announce-arrow { color: #bbb; transition: color .15s; }
.announce-arrow:hover { color: #fff; }
.announce-right { display: flex; gap: 20px; font-size: 12.5px; color: #ddd; }
.announce-right span { display: inline-flex; align-items: center; gap: 5px; }
.chev { width: 13px; height: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  transition: box-shadow .25s;
}
.site-header.is-stuck { box-shadow: 0 6px 24px -12px rgba(23, 23, 23, .18); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  max-width: 1720px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; }
.nav-links { display: flex; gap: clamp(16px, 2.4vw, 38px); }
.nav-links a { font-size: 15.5px; font-weight: 500; padding: 8px 2px; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--ink); transition: right .22s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-icons { display: flex; gap: 18px; align-items: center; }
.nav-icons button, .nav-icons a { position: relative; display: inline-flex; padding: 4px; }
.nav-icons svg { width: 21px; height: 21px; }
.cart-dot { position: absolute; top: 0; right: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); }

/* ---------- Social rail ---------- */
.rail {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%); z-index: 40;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border-radius: 999px; padding: 14px 9px;
  box-shadow: var(--shadow);
}
.rail a { display: inline-flex; padding: 7px; border-radius: 50%; transition: background .15s; }
.rail a:hover { background: var(--card); }
.rail svg { width: 15px; height: 15px; }
.rail-tag {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em;
  background: var(--card); border-radius: 999px; padding: 14px 7px !important; margin-top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 15px 30px;
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: transform .18s ease, background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-black { background: var(--ink); color: var(--white); }
.btn-black:hover { background: #000; }
.btn-outline { border: 1.5px solid var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-wide { width: 100%; }
.btn-arr { font-weight: 400; }

/* ---------- Hero ---------- */
.hero { padding: 10px var(--pad) 0; }
.hero-frame {
  position: relative; height: min(86vh, 820px); min-height: 540px;
  border-radius: var(--r-lg); overflow: hidden; isolation: isolate;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  background-size: cover; background-position: center;
}
.hero-slide.is-active { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,.32) 0%, rgba(10,10,10,.08) 40%, rgba(10,10,10,.5) 100%);
}
.hero-search-wrap {
  position: absolute; z-index: 3; left: 50%; top: 24%; transform: translateX(-50%);
  width: min(640px, calc(100% - 48px)); text-align: center;
}
.hero-kicker {
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; margin-bottom: 16px; text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-search {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px);
  border-radius: 999px; padding: 9px 10px 9px 24px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, .45);
}
.hero-search > svg { width: 21px; height: 21px; color: var(--grey); flex: none; }
.hero-search input {
  flex: 1; border: 0; background: none; outline: none;
  font: inherit; font-size: 17px; color: var(--ink); min-width: 0;
}
.hero-search input::placeholder { color: #999; }
.hero-search button {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  transition: background .15s;
}
.hero-search button:hover { background: #000; }
.hero-suggests { margin-top: 14px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-suggests button {
  font-size: 12.5px; font-weight: 500; color: #fff;
  background: rgba(255, 255, 255, .16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; padding: 7px 14px;
  transition: background .15s;
}
.hero-suggests button:hover { background: rgba(255, 255, 255, .3); }
.hero-title {
  position: absolute; z-index: 2; left: clamp(20px, 4vw, 64px); bottom: clamp(24px, 5vh, 56px);
  color: #fff; font-size: clamp(30px, 4.6vw, 64px); font-weight: 700;
  letter-spacing: -.015em; line-height: 1.04; text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .3); max-width: 14em;
}
.hero-cta { position: absolute; z-index: 3; right: clamp(20px, 4vw, 64px); bottom: clamp(28px, 5vh, 60px); }
.hero-arrows {
  position: absolute; z-index: 3; left: clamp(20px, 4vw, 64px); top: clamp(20px, 4vh, 40px);
  display: flex; gap: 10px;
}
.hero-arrows button {
  width: 42px; height: 42px; border-radius: 50%; color: #fff;
  border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px);
  transition: background .15s;
}
.hero-arrows button:hover { background: rgba(255, 255, 255, .2); }
.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); transition: background .15s, transform .15s; }
.hero-dots button.is-on { background: #fff; transform: scale(1.25); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: clamp(40px, 7vw, 90px) 0 clamp(10px, 2vw, 30px); }
.marquee-track {
  display: flex; align-items: center; gap: 48px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: clamp(70px, 11vw, 170px); font-weight: 700; letter-spacing: -.03em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(23, 23, 23, .55);
}
.marquee-track i { font-style: normal; font-size: clamp(24px, 3vw, 44px); color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 7vw, 110px) var(--pad); max-width: 1720px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: clamp(30px, 4vw, 56px); }
.eyebrow { font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-bottom: 10px; }
.section-head h2, .about h2 {
  font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -.025em; line-height: 1.12;
  text-wrap: balance;
}
.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -.12em; height: .22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9C30 3 60 3 118 8' fill='none' stroke='%23ffddbf' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- Domain cards ---------- */
.grid { display: grid; gap: clamp(14px, 1.8vw, 26px); }
.grid-featured { grid-template-columns: repeat(4, 1fr); }
.grid-collection { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--r-md); padding: 10px 10px 18px;
  display: flex; flex-direction: column; gap: 0;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-tile {
  position: relative; border-radius: 12px; aspect-ratio: 1 / .82;
  display: grid; place-items: center; overflow: hidden;
  background-color: #35322d;
  background-size: cover; background-position: center;
}
.card-tile b {
  position: relative; z-index: 1; color: #fff; font-size: clamp(19px, 1.7vw, 26px); font-weight: 700;
  letter-spacing: -.02em; text-align: center; padding: 0 12px; word-break: break-word;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.card-tile small {
  position: absolute; bottom: 12px; z-index: 1; font-size: 11px; font-weight: 600;
  letter-spacing: .16em; color: rgba(255, 255, 255, .8); text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}
.card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--white); border-radius: 999px; padding: 5px 11px;
  font-size: 12px; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.card-badge svg { width: 12px; height: 12px; color: var(--star); }
.card-info { padding: 15px 8px 0; }
.card-vendor { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.card-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 5px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.card-row h3 { font-size: 18.5px; font-weight: 600; letter-spacing: -.015em; }
.card-row b { font-size: 16px; font-weight: 600; }
.card-meta { display: flex; align-items: center; gap: 7px; margin: 13px 0 15px; min-height: 26px; }
.card-meta span {
  font-size: 11.5px; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
.card-meta .chip-aged { background: var(--amber); border-color: var(--amber); }
.card .btn { margin: 0 8px; }

/* Featured cards slightly richer */
.grid-featured .card-tile { aspect-ratio: 1 / .95; }
.grid-featured .card-tile b { font-size: clamp(21px, 1.9vw, 30px); }

/* ---------- Statement / stats / quote frames ---------- */
.statement, .stats, .quote { padding: clamp(24px, 3.5vw, 60px) var(--pad); }
.statement-frame, .stats-frame, .quote-frame {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  background-color: #23201c;
}
.statement-frame::before, .stats-frame::before, .quote-frame::before {
  content: ""; position: absolute; inset: 0; background: rgba(12, 12, 12, .45);
}
.statement-inner {
  position: relative; z-index: 1; min-height: 480px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 60px 24px; gap: 18px;
}
.statement-inner h2 { font-size: clamp(38px, 5.4vw, 72px); font-weight: 700; letter-spacing: -.025em; }
.statement-inner p { font-size: 17px; color: rgba(255, 255, 255, .85); }
.statement-inner .btn { margin-top: 10px; }

.stats-frame { text-align: center; padding: clamp(50px, 7vw, 90px) 24px; }
.stats-row {
  position: relative; z-index: 1; display: flex; justify-content: center;
  gap: clamp(28px, 6vw, 96px); flex-wrap: wrap; margin-bottom: 40px;
}
.stat b { display: block; color: #fff; font-size: clamp(52px, 6.5vw, 88px); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.stats-frame .btn { position: relative; z-index: 1; }

.quote-frame { text-align: center; padding: clamp(60px, 8vw, 110px) 24px; }
.quote-mark { position: relative; z-index: 1; width: 44px; height: 30px; fill: #fff; margin-bottom: 26px; }
.quote-frame blockquote {
  position: relative; z-index: 1; color: #fff; max-width: 21em; margin: 0 auto;
  font-size: clamp(22px, 3vw, 38px); font-weight: 600; letter-spacing: -.02em; line-height: 1.3;
  text-wrap: balance;
}

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.about-left h2 { margin-bottom: 30px; max-width: 10em; }
.about-right p { font-size: 16.5px; color: var(--ink-soft); }
.about-right p + p { margin-top: 18px; }
.about-right strong { color: var(--ink); }

/* ---------- Filters ---------- */
.filters { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pills button {
  font-size: 13.5px; font-weight: 500; padding: 9px 18px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  transition: background .15s, color .15s, border-color .15s;
}
.filter-pills button:hover { border-color: var(--ink); }
.filter-pills button.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-count { font-size: 13px; color: var(--grey); }
.empty { text-align: center; color: var(--grey); padding: 40px 0; }

/* ---------- Compare ---------- */
.compare { padding: clamp(48px, 7vw, 110px) var(--pad); max-width: 1720px; margin: 0 auto; }
.compare-frame {
  position: relative; height: min(70vh, 620px); min-height: 420px;
  border-radius: var(--r-lg); overflow: hidden; isolation: isolate;
  cursor: ew-resize; user-select: none; touch-action: none;
}
.compare-pane { position: absolute; inset: 0; background-size: cover; background-position: center; }
.compare-pane::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45)); }
.compare-right { clip-path: inset(0 0 0 50%); background-color: #3a3a3a; filter: saturate(.35); }
.compare-left { background-color: #6d5732; }
.compare-label { position: absolute; bottom: 26px; color: #fff; }
.compare-left .compare-label { left: 30px; }
.compare-right .compare-label { right: 30px; text-align: right; }
.compare-label span { display: block; font-size: 13px; opacity: .85; margin-bottom: 4px; }
.compare-label b { font-size: clamp(20px, 2.6vw, 32px); font-weight: 700; letter-spacing: -.02em; }
.compare-handle {
  position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff;
}
.compare-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

/* ---------- Shop the look ---------- */
.look { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(16px, 2vw, 28px); align-items: stretch; }
.look-image {
  position: relative; border-radius: var(--r-lg); min-height: 520px;
  background-size: cover; background-position: center; background-color: #d9d4cb;
}
.hotspot {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .82); backdrop-filter: blur(10px);
  border-radius: 999px; padding: 9px 16px 9px 9px;
  font-size: 13.5px; box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .18s; cursor: pointer;
}
.hotspot:hover { transform: scale(1.04); }
.hotspot i {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-style: normal; font-size: 14px; flex: none;
}
.hotspot b { font-weight: 600; }
.hotspot span { color: var(--grey); }
.look-panel {
  background: var(--white); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 44px);
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.look-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.look-row h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -.02em; }
.look-row b { font-size: 20px; }
.look-tag { color: var(--ink-soft); font-size: 15.5px; min-height: 3em; }
.look-swatches { display: flex; gap: 8px; }
.look-swatches span {
  font-size: 12px; font-weight: 500; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px; color: var(--ink-soft);
}
.look-dots { display: flex; gap: 7px; justify-content: center; margin-top: 10px; }
.look-dots button { width: 7px; height: 7px; border-radius: 50%; background: #d5d5d0; transition: background .15s, transform .15s; }
.look-dots button.is-on { background: var(--ink); transform: scale(1.3); }

/* ---------- Guides (how it works) ---------- */
.guides { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(16px, 2vw, 28px); }
.guide-big {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background-size: cover; background-position: center; background-color: #2a2622;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 3vw, 44px); color: #fff; isolation: isolate;
}
.guide-big::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(185deg, rgba(10,10,10,.15) 30%, rgba(10,10,10,.78) 85%); }
.guide-meta { display: flex; gap: 20px; margin-bottom: 14px; font-size: 13px; }
.meta-item { display: inline-flex; align-items: center; gap: 7px; opacity: .9; }
.meta-item svg { width: 15px; height: 15px; }
.guide-big h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; letter-spacing: -.02em; margin-bottom: 12px; max-width: 16em; }
.guide-big p { max-width: 52ch; color: rgba(255,255,255,.85); font-size: 15px; }
.guide-side { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 28px); }
.guide-item {
  flex: 1; display: flex; gap: 18px; background: var(--white);
  border-radius: var(--r-md); padding: 14px;
}
.guide-thumb {
  position: relative; flex: none; width: clamp(120px, 12vw, 170px); border-radius: 12px;
  background-size: cover; background-position: center; background-color: var(--card);
}
.pill-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 600;
  border-radius: 999px; padding: 4px 10px;
}
.guide-body { padding: 8px 6px; align-self: center; }
.guide-body h4 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
.guide-body p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-section { max-width: 940px; }
.faq details {
  background: var(--white); border-radius: var(--r-md);
  padding: 4px 26px; margin-bottom: 12px; border: 1px solid transparent;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 16.5px; font-weight: 600; padding: 18px 0; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { font-style: normal; font-size: 22px; font-weight: 400; color: var(--grey); transition: transform .2s; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15px; max-width: 62ch; }

/* ---------- Trust ---------- */
.trust { padding: 0 var(--pad) clamp(48px, 6vw, 90px); max-width: 1720px; margin: 0 auto; }
.trust-inner {
  background: var(--card); border-radius: var(--r-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(28px, 3.5vw, 52px) clamp(18px, 2vw, 36px);
}
.trust-item { display: flex; gap: 15px; padding: 6px 22px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item svg { flex: none; width: 26px; height: 26px; margin-top: 2px; }
.trust-item h5 { font-size: 15.5px; font-weight: 600; margin-bottom: 5px; }
.trust-item p { font-size: 13px; color: var(--grey); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfcfcf; margin: 0 10px 10px; border-radius: var(--r-lg); }
.footer-top {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 90px);
  padding: clamp(44px, 6vw, 80px) var(--pad) clamp(28px, 3vw, 44px);
}
.footer-cols { display: flex; gap: clamp(40px, 6vw, 110px); }
.footer-col h6 { color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; color: #b9b9b9; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-news h3 {
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; letter-spacing: -.025em;
  color: #6f6f6f; line-height: 1.15; margin-bottom: 26px; text-wrap: balance;
}
.news-form {
  display: flex; align-items: center; gap: 10px;
  background: #222; border-radius: 14px; padding: 8px 8px 8px 20px; max-width: 460px;
}
.news-form input { flex: 1; background: none; border: 0; outline: none; color: #fff; font: inherit; font-size: 15px; min-width: 0; }
.news-form input::placeholder { color: #777; }
.news-form button {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: #2e2e2e; color: #fff; display: grid; place-items: center; transition: background .15s;
}
.news-form button:hover { background: #3a3a3a; }
.news-note { margin-top: 12px; font-size: 13px; color: #9a9a9a; min-height: 1.2em; }
.footer-mid {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 0 var(--pad) clamp(28px, 3vw, 44px);
}
.footer-contact a { display: block; color: #fff; font-size: 17px; text-decoration: underline; text-underline-offset: 4px; }
.footer-social { display: flex; gap: 18px; }
.footer-social svg { width: 17px; height: 17px; }
.footer-social a { opacity: .8; transition: opacity .15s; }
.footer-social a:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px var(--pad); font-size: 13px; color: #9a9a9a;
}
.footer-pills { display: flex; gap: 10px; }
.footer-pills span { border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 16px; font-size: 12.5px; }
.footer-pay { display: flex; gap: 8px; }
.footer-pay span {
  background: #fff; color: var(--ink); font-size: 11px; font-weight: 700;
  border-radius: 5px; padding: 5px 9px; letter-spacing: .02em;
}

/* ---------- Offer modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; }
.modal[hidden], .toast[hidden] { display: none; }
.modal-back { position: absolute; inset: 0; background: rgba(15, 15, 15, .55); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; width: min(880px, 100%); max-height: calc(100vh - 40px); overflow: auto;
  background: var(--white); border-radius: 24px;
  display: grid; grid-template-columns: 1fr 1.15fr;
  animation: pop .25s ease;
}
@keyframes pop { from { transform: translateY(14px); opacity: 0; } }
.modal-x {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: var(--card);
  display: grid; place-items: center; font-size: 15px;
}
.modal-tile {
  margin: 10px; border-radius: 16px; background-color: #35322d;
  background-size: cover !important; background-position: center !important;
  display: grid; place-items: center; position: relative; min-height: 320px;
}
.modal-tile b { color: #fff; font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -.02em; text-align: center; padding: 0 20px; word-break: break-word; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.modal-tile span { position: absolute; bottom: 18px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.modal-body { padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 40px) clamp(24px, 3vw, 36px) 10px; }
.modal-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin: 4px 0 10px; }
.modal-row h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; }
.modal-row b { font-size: 20px; }
.modal-tag { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.modal-age { margin-bottom: 18px; }
.modal-age span { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.modal-age i {
  display: block; height: 4px; border-radius: 4px; margin-top: 8px;
  background: linear-gradient(90deg, var(--peach), var(--star) 70%, var(--card) 70%);
}
#offerForm { display: flex; flex-direction: column; gap: 11px; }
#offerForm input, #offerForm textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  outline: none; background: var(--paper); resize: vertical; width: 100%;
}
#offerForm input:focus, #offerForm textarea:focus { border-color: var(--ink); }
.offer-amount { position: relative; }
.offer-amount span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--grey); }
#offerForm .offer-amount input { padding-left: 32px; }
.modal-trust { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 13px; color: var(--ink-soft); }
.modal-trust svg { width: 17px; height: 17px; flex: none; }
.modal-note { margin-top: 12px; font-size: 14px; font-weight: 500; }
.modal-note.ok { color: #1d6f42; }
.modal-note.err { color: var(--accent); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 120;
  background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500;
  border-radius: 999px; padding: 14px 26px; box-shadow: var(--shadow);
  animation: pop .25s ease;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .grid-featured, .grid-collection { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 900px) {
  .announce-social, .announce-right { display: none; }
  .announce-inner { justify-content: center; }
  .announce-msg { gap: 14px; font-size: 12.5px; }
  .nav { padding: 12px var(--pad); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); padding: 14px var(--pad) 24px; gap: 0;
    box-shadow: 0 20px 30px -18px rgba(0,0,0,.2);
  }
  .site-header.menu-open .nav-links a { display: block; padding: 13px 2px; font-size: 17px; border-bottom: 1px solid var(--line); }
  .rail { display: none; }
  .grid-featured, .grid-collection { grid-template-columns: repeat(2, 1fr); }
  .about, .look, .guides, .modal-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-frame { height: min(78vh, 700px); min-height: 500px; }
  .hero-search-wrap { top: 17%; }
  .hero-title { font-size: clamp(26px, 7vw, 40px); max-width: 11em; bottom: 24px; padding-right: 16px; }
  .hero-cta { right: auto; left: clamp(20px, 4vw, 64px); bottom: 96px; }
  .look-image { min-height: 400px; }
  .look-panel { padding: 26px 22px; }
  .modal-card { grid-template-rows: 220px auto; }
  .modal-tile { min-height: 0; }
  .modal-body { padding: 22px; }
  .compare-frame { height: 420px; min-height: 320px; }
  .statement-inner { min-height: 380px; }
  .guide-big { min-height: 380px; }
}
@media (max-width: 560px) {
  :root { --pad: 14px; --r-lg: 20px; }
  .grid-featured, .grid-collection { grid-template-columns: 1fr; gap: 18px; }
  .card-tile, .grid-featured .card-tile { aspect-ratio: 16 / 10.5; }
  .card-tile b, .grid-featured .card-tile b { font-size: 24px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; padding: 14px 6px; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); }
  .footer-mid, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom { gap: 14px; }
  .footer-cols { flex-direction: column; gap: 30px; }
  /* 16px inputs prevent iOS focus-zoom */
  .hero-search input, #offerForm input, #offerForm textarea, .news-form input { font-size: 16px; }
  .hero-search { padding: 7px 8px 7px 16px; gap: 8px; }
  .hero-search button { width: 42px; height: 42px; }
  .hero-suggests button { font-size: 11.5px; padding: 6px 11px; }
  .hero-arrows { display: none; }
  .hero-search-wrap { top: 12%; }
  .hero-title { bottom: 46px; }
  .hero-cta { bottom: 112px; padding: 13px 24px; }
  .hero-dots { bottom: 16px; }
  .filters { flex-direction: column; align-items: flex-start; }
  .filter-pills { flex-wrap: nowrap; overflow-x: auto; max-width: 100%; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-pills button { white-space: nowrap; }
  .hotspot { font-size: 11.5px; padding: 7px 12px 7px 7px; gap: 7px; }
  .hotspot i { width: 22px; height: 22px; font-size: 12px; }
  .look-image { min-height: 320px; }
  .compare-frame { height: 340px; }
  .compare-label b { font-size: 17px; }
  .compare-handle span { width: 40px; height: 40px; }
  .guide-item { flex-direction: column; }
  .guide-thumb { width: 100%; aspect-ratio: 16 / 8; }
  .guide-big { padding: 20px 18px; min-height: 330px; }
  .stats-row { gap: 26px 34px; }
  .stat b { font-size: 44px; }
  .faq details { padding: 2px 18px; }
  .faq summary { font-size: 15px; gap: 12px; }
  .marquee-track span { -webkit-text-stroke-width: 1px; }
  .footer-news h3 { font-size: 26px; }
  .modal { padding: 10px; }
  .modal-card { grid-template-rows: 180px auto; }
  .modal-row h3 { font-size: 20px; }
}
