/* ───── Boutique — Net-a-Porter Lüks ───── */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --y: #FFD60A;
  --y-soft: #FFF3B0;
  --y-bg: #FFFDF2;
  --ink: #181818;
  --ink-2: #2A2A2A;
  --gray-700: #525252;
  --gray-500: #8C8C8C;
  --gray-400: #B0B0B0;
  --gray-300: #D9D9D9;
  --gray-200: #E8E5E0;
  --gray-100: #F4F2EE;
  --gray-50: #FAF9F6;
  --paper: #FFFFFF;
  --bg: #FAF9F6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: inherit; }
.hl { background: linear-gradient(180deg, transparent 60%, var(--y) 60%); padding: 0 4px; }

/* Utility bar */
.utility {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.utility-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; gap: 12px; align-items: center;
}
.util-sep { color: var(--gray-500); }
.spacer { flex: 1; }
.utility a { font-size: 11px; transition: color .2s; padding: 0 8px; }
.utility a:hover { color: var(--y); }

/* Header */
.hd {
  background: var(--paper);
  padding: 20px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0;
  z-index: 50;
}
.hd-back {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-700);
  transition: color .2s;
}
.hd-back:hover { color: var(--ink); }
.hd-logo {
  display: flex; gap: 10px; align-items: center;
  justify-self: center;
  position: absolute; left: 50%;
  transform: translateX(-50%);
}
.hd-mark {
  width: 32px; height: 32px;
  background: var(--y);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.02em;
}
.hd-name {
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.16em;
}
.hd-nav {
  display: flex; gap: 24px;
  justify-self: center;
  position: absolute; left: 50%;
  transform: translateX(-50%);
  top: 64px;
}
.hd-nav a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  padding: 4px 0;
  position: relative;
  color: var(--gray-700);
  transition: color .2s;
}
.hd-nav a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.hd-nav a:hover { color: var(--ink); }
.hd-nav a:hover::after, .hd-nav a.active::after { transform: scaleX(1); }
.hd-nav a.active { color: var(--ink); }
.hd-nav a.sale { color: var(--y); font-weight: 700; }
.hd-nav a.sale::after { background: var(--y); }
.hd-r { display: flex; gap: 6px; align-items: center; justify-self: end; }
.hd-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s;
}
.hd-icon:hover { background: var(--gray-100); }
.hd-cart {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 14px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  border-left: 1px solid var(--gray-200);
  margin-left: 8px;
  padding-left: 14px;
}
.hd-cart-num { color: var(--gray-500); }

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  margin-top: 50px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: var(--ink);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  animation: zoom 12s ease-in-out infinite alternate;
}
@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-content {
  position: absolute;
  bottom: 80px; left: 60px;
  max-width: 600px;
  color: var(--paper);
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-content h1 em { font-style: italic; }
.hero-content p {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 460px;
  opacity: 0.9;
}
.hero-ctas {
  margin-top: 32px;
  display: flex; gap: 24px; align-items: center;
}
.hero-btn {
  background: var(--paper);
  color: var(--ink);
  padding: 16px 32px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}
.hero-btn:hover { background: var(--y); }
.hero-btn-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity .25s;
}
.hero-btn-link:hover { opacity: 0.7; }

.hero-side {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right;
  display: flex; gap: 12px; align-items: center;
  color: var(--paper);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em;
  z-index: 2;
}
.hero-side-num {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  font-style: italic;
}
.hero-side-line { width: 60px; height: 1px; background: var(--paper); }

/* Props */
.props {
  background: var(--paper);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--gray-200);
}
.prop { display: flex; gap: 14px; align-items: start; }
.prop-icon {
  font-size: 22px;
  color: var(--y);
  margin-top: -2px;
}
.prop-h { font-weight: 700; font-size: 12px; letter-spacing: 0.1em; }
.prop-p { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Section common */
.section {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 32px;
}
.sect-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap; gap: 16px;
}
.kicker {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.kicker.dark { color: var(--gray-300); }
.sect-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.sect-head h2 em { font-style: italic; }
.sect-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity .25s, gap .3s;
}
.sect-link:hover { opacity: 0.6; }

.filter-bar {
  display: flex; gap: 6px; align-items: center;
  font-size: 11px;
}
.filter-bar button {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: background .2s, color .2s;
}
.filter-bar button:hover { background: var(--gray-100); color: var(--ink); }
.filter-bar button.fb-active { background: var(--ink); color: var(--paper); }
.fb-sep { width: 1px; height: 16px; background: var(--gray-200); margin: 0 8px; }
.fb-sort {
  display: inline-flex; gap: 6px; align-items: center;
  border: 1px solid var(--gray-200) !important;
  border-radius: 100px;
}

/* Campaign vitrin — asymmetric */
.camp-vitrin {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 700px;
}
.camp-vitrin .camp:nth-child(1) { grid-row: span 2; }
.camp {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.camp:hover { transform: translateY(-4px); }
.camp img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.camp:hover img { transform: scale(1.05); }
.camp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: end;
  color: var(--paper);
}
.camp-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.camp-num {
  font-family: var(--serif);
  font-size: 12px; font-style: italic;
  opacity: 0.85;
  margin-bottom: 8px;
}
.camp-brand {
  font-size: 11px; letter-spacing: 0.18em;
  margin-bottom: 6px;
  opacity: 0.85;
}
.camp-title {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.camp:nth-child(1) .camp-title { font-size: 56px; }
.camp-foot {
  margin-top: 16px;
  display: flex; justify-content: space-between; align-items: end;
}
.camp-discount {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}
.camp-end {
  font-size: 11px; opacity: 0.85;
}

/* Brand alphabet section */
.brand-section {
  background: var(--paper);
  padding: 80px 32px;
}
.brand-head {
  max-width: 1440px;
  margin: 0 auto 40px;
  text-align: center;
}
.brand-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand-head h2 em { font-style: italic; }
.brand-list {
  max-width: 1440px;
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.brand-item {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  letter-spacing: -0.01em;
  padding: 24px 32px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background .25s, color .25s;
  flex-grow: 1;
  text-align: center;
  min-width: 200px;
}
.brand-item:hover { background: var(--y); }

/* Product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.prod {
  cursor: pointer;
  display: flex; flex-direction: column;
}
.prod-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 16px;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.prod:hover .prod-img img { transform: scale(1.05); }

.prod-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prod-tag.new { background: var(--ink); color: var(--paper); }
.prod-tag.sale { background: var(--y); color: var(--ink); }

.prod-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .35s, transform .35s, background .2s;
}
.prod:hover .prod-fav { opacity: 1; transform: translateY(0); }
.prod-fav:hover { background: var(--y); }
.prod-fav.on svg { fill: var(--ink); }

.prod-quick {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s, transform .35s, background .2s;
}
.prod:hover .prod-quick { opacity: 1; transform: translateY(0); }
.prod-quick:hover { background: var(--y); color: var(--ink); }

.prod-sizes {
  position: absolute;
  bottom: 60px; left: 14px; right: 14px;
  display: flex; gap: 4px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s .05s, transform .4s .05s;
  flex-wrap: wrap;
}
.prod:hover .prod-sizes { opacity: 1; transform: translateY(0); }
.prod-size {
  flex: 1; min-width: 30px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 4px;
  border-radius: 4px;
  font-size: 10px; font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background .15s;
}
.prod-size:hover { background: var(--y); }
.prod-size.out { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }

.prod-info { padding: 0; }
.prod-brand {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.prod-title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 4px;
  line-height: 1.25;
}
.prod-prices {
  margin-top: 8px;
  display: flex; gap: 10px; align-items: baseline;
  font-size: 13px;
}
.prod-price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.prod-old {
  color: var(--gray-400);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.prod-disc {
  color: var(--y);
  font-weight: 700;
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* Split section (Lookbook) */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 32px;
  align-items: center;
}
.split-l h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 20px;
}
.split-l h2 em { font-style: italic; }
.split-l p {
  margin-top: 28px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 380px;
}
.split-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity .25s;
}
.split-link:hover { opacity: 0.6; }

.split-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.split-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
}
.split-img-2 { margin-top: 60px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }
.split-img:hover img { transform: scale(1.05); }
.split-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  padding: 6px 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Best row */
.best-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.best {
  cursor: pointer;
  position: relative;
}
.best-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 16px;
  position: relative;
}
.best-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.best:hover .best-img img { transform: scale(1.05); }
.best-rank {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--serif);
  font-size: 38px; font-weight: 400;
  font-style: italic;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.best-info { font-size: 12px; }
.best-brand {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.best-title {
  font-family: var(--serif);
  font-size: 17px;
  margin-top: 4px;
  line-height: 1.25;
}
.best-meta {
  margin-top: 8px;
  display: flex; justify-content: space-between;
  font-variant-numeric: tabular-nums;
}
.best-price { font-weight: 600; }
.best-stock { color: #c2410c; font-size: 11px; }

/* Quote */
.quote {
  background: var(--y-bg);
  text-align: center;
  padding: 100px 32px;
  margin: 100px 0 0;
  position: relative;
}
.quote::before, .quote::after {
  content: ""; position: absolute;
  top: 50%; width: 80px; height: 1px;
  background: var(--ink);
}
.quote::before { left: 32px; }
.quote::after { right: 32px; }
.quote-mark {
  font-family: var(--serif);
  font-size: 120px; line-height: 0.4;
  display: block;
  height: 60px;
  color: var(--y);
  font-style: italic;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 1100px;
  margin: 0 auto;
}
.quote p em { font-style: italic; }
.quote-by {
  margin-top: 36px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray-700);
  text-transform: uppercase;
}

/* Member */
.member {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.member-l h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.member-l h2 em { font-style: italic; color: var(--y); }
.member-l p {
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.65;
  max-width: 400px;
}
.member-r {
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(255,255,255,0.08);
}
.member-row {
  background: var(--ink-2);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: background .25s;
  border-left: 2px solid transparent;
}
.member-row:hover { background: var(--ink); border-left-color: var(--y); }
.member-row.gold { background: var(--y); color: var(--ink); border-left-color: var(--ink); }
.member-row.gold:hover { background: var(--y-soft); }
.member-tier {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  letter-spacing: -0.01em;
}
.member-perks {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.5;
}
.member-row.gold .member-perks { color: var(--ink); opacity: 1; }
.member-cta {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* Newsletter */
.news {
  background: var(--paper);
  padding: 100px 32px;
  text-align: center;
}
.news-inner { max-width: 700px; margin: 0 auto; }
.news h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.news h2 em { font-style: italic; }
.news p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--gray-500);
}
.news-form {
  margin-top: 40px;
  display: flex; gap: 0;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}
.news-form input {
  flex: 1;
  border: 0; background: transparent;
  padding: 12px 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}
.news-form input:focus { outline: none; }
.news-form button {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .2s;
}
.news-form button:hover { opacity: 0.6; }

/* Footer */
.ft {
  background: var(--paper);
  padding: 60px 32px 24px;
  border-top: 1px solid var(--gray-200);
}
.ft-top {
  max-width: 1440px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-500);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  max-width: 280px;
}
.ft-top h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.ft-top a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray-700);
  transition: color .2s;
}
.ft-top a:hover { color: var(--ink); }
.ft-base {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.ft-base-r { display: flex; gap: 20px; }
.ft-base-r a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 1100px) {
  .hd-nav { display: none; }
  .hero-content { left: 32px; right: 32px; }
  .hero-side { display: none; }
  .props { grid-template-columns: 1fr 1fr; }
  .camp-vitrin { grid-template-columns: 1fr; min-height: auto; }
  .camp-vitrin .camp:nth-child(1) { grid-row: auto; min-height: 400px; }
  .camp-vitrin .camp { min-height: 280px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .best-row { grid-template-columns: 1fr 1fr; }
  .member { grid-template-columns: 1fr; gap: 40px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
