/* Ambar Penelope · Interactive Media Kit
   Editorial / soft-luxury aesthetic with bold motion + interactive accents. */

:root {
  --bg: #0e0b08;
  --bg-2: #181310;
  --bg-3: #221a14;
  --ivory: #f1ead9;
  --ivory-2: #c5bba8;
  --gold: #c9a576;
  --accent: #c9a576;
  --rule: rgba(241, 234, 217, 0.16);

  --display: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --body: "Inter", "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

[data-theme="champagne"] {
  --bg: #f3ead9;
  --bg-2: #ece1cb;
  --bg-3: #dfd0b3;
  --ivory: #2a1f15;
  --ivory-2: #5a4636;
  --gold: #a8754a;
  --accent: #a8754a;
  --rule: rgba(42, 31, 21, 0.18);
}
[data-theme="ink"] {
  --bg: #f7f4ee;
  --bg-2: #ebe6dc;
  --bg-3: #d9d2c2;
  --ivory: #0d0a07;
  --ivory-2: #4a3f33;
  --gold: #b8542d;
  --accent: #b8542d;
  --rule: rgba(13, 10, 7, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--bg); }

/* ─────────────────────────────────────────────────── */
/*   Type system                                       */
/* ─────────────────────────────────────────────────── */

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}
.display em { font-style: normal; color: var(--accent); font-weight: 400; }

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.h2 em { font-style: normal; color: var(--accent); }

.body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ivory);
  opacity: 0.9;
  text-wrap: pretty;
  margin: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-2);
}

/* ─────────────────────────────────────────────────── */
/*   Nav                                               */
/* ─────────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 36px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--bg) 88%, transparent) 0%, color-mix(in srgb, var(--bg) 0%, transparent) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-mark {
  font-family: var(--display); font-style: normal;
  font-size: 18px; letter-spacing: 0; text-transform: none;
  color: var(--accent);
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  color: var(--ivory-2);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--ivory); }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 0.5px solid var(--ivory-2);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--ivory); color: var(--bg); border-color: var(--ivory); }

/* ─────────────────────────────────────────────────── */
/*   Hero                                              */
/* ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 36px 36px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  color: var(--ivory-2);
}
.hero-meta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-display {
  font-size: clamp(64px, 10vw, 168px);
  margin-top: auto;
}

.hero-rotator {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 20px;
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory-2);
  height: 1.3em;
  overflow: hidden;
}
.hero-rotator-static { color: var(--ivory-2); }
.hero-rotator-list {
  position: relative;
  height: 1.3em;
  flex: 1;
}
.hero-rotator-item {
  position: absolute; inset: 0;
  color: var(--accent);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.hero-rotator-item.active {
  opacity: 1; transform: translateY(0);
}

.hero-foot {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  margin-top: 32px;
}
.hero-stats {
  display: flex; gap: 32px;
}
.hero-stat-num {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hero-stat-num em { font-style: normal; color: var(--accent); font-weight: 400; }
.hero-stat-label {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 6px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s;
}
.hero-img.exiting { opacity: 0; transform: scale(1.05); }
.hero-img.entering { opacity: 0; transform: scale(1.08); }

.hero-thumbs {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; gap: 8px; z-index: 3;
}
.hero-thumb {
  width: 44px; height: 60px;
  border-radius: 2px; overflow: hidden;
  cursor: pointer; opacity: 0.55;
  transition: opacity 0.25s, transform 0.25s;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumb:hover { opacity: 1; transform: translateY(-3px); }
.hero-thumb.active { opacity: 1; border-color: var(--accent); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-2);
  z-index: 3;
}
.hero-scroll-line {
  width: 0.5px; height: 32px;
  background: var(--ivory-2);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -16px; left: 0; right: 0;
  height: 16px; background: var(--accent);
  animation: scrollFall 1.8s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes scrollFall {
  0% { top: -16px; }
  60% { top: 32px; }
  100% { top: 32px; }
}

/* Cursor trailing image (interactive) */
.cursor-image {
  position: fixed;
  width: 200px; height: 280px;
  pointer-events: none;
  border-radius: 2px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.cursor-image.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cursor-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────────── */
/*   Marquee ticker                                    */
/* ─────────────────────────────────────────────────── */

.marquee {
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1;
  font-weight: 400;
  color: var(--ivory);
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-track .marquee-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ─────────────────────────────────────────────────── */
/*   Section scaffolding                               */
/* ─────────────────────────────────────────────────── */

.section {
  padding: 140px 36px;
  position: relative;
}
.section-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: end;
  margin-bottom: 72px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--rule);
}
.section-hd-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-hd-aside {
  font-size: 14px; line-height: 1.6;
  color: var(--ivory-2);
  text-wrap: pretty;
  max-width: 36ch;
  justify-self: end;
}

/* ─────────────────────────────────────────────────── */
/*   Stats                                             */
/* ─────────────────────────────────────────────────── */

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 56px 32px 36px;
  border-right: 0.5px solid var(--rule);
  position: relative;
  cursor: default;
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-2); }
.stat-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-bar {
  margin-top: 24px;
  height: 1px; background: var(--rule);
  position: relative; overflow: hidden;
}
.stat-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent);
  width: 0;
  transition: width 1.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.stat:hover .stat-bar-fill { width: var(--bar, 60%); }
.stat-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
}
.stat-sub {
  font-family: var(--display);
  font-style: normal;
  font-size: 13px;
  color: var(--ivory-2);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────── */
/*   Why Brands Partner — interactive quote tiles      */
/* ─────────────────────────────────────────────────── */

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
}
.quote-tile {
  background: var(--bg);
  padding: 56px 40px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s;
}
.quote-tile:hover { background: var(--bg-2); }
.quote-tile-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; filter: brightness(0.55);
  transform: scale(1.05);
  transition: opacity 0.5s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quote-tile:hover .quote-tile-img {
  opacity: 1; transform: scale(1);
}
.quote-tile-content {
  position: relative; z-index: 1;
}
.quote-tile-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 24px;
}
.quote-tile-text {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--ivory);
  text-wrap: balance;
  transition: color 0.3s;
}
.quote-tile:hover .quote-tile-text { color: #fff; }
[data-theme="champagne"] .quote-tile:hover .quote-tile-text,
[data-theme="ink"] .quote-tile:hover .quote-tile-text { color: #fff; }
.quote-tile-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 28px;
  display: flex; align-items: center; gap: 10px;
}
.quote-tile:hover .quote-tile-tag { color: rgba(255,255,255,0.85); }
.quote-tile-tick {
  width: 18px; height: 1px; background: var(--accent);
}

/* ─────────────────────────────────────────────────── */
/*   Heiress case study — full bleed split             */
/* ─────────────────────────────────────────────────── */

.feature {
  padding: 0;
  position: relative;
  background: var(--bg-2);
}
.feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 90vh;
}
.feature-img-wrap {
  position: relative;
  overflow: hidden;
}
.feature-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-wrap:hover .feature-img { transform: scale(1.04); }
.feature-img-tag {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}
.feature-copy {
  padding: 96px 64px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.feature-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 18px 0 36px;
}
.feature-headline em { font-style: normal; color: var(--accent); }

.feature-blocks {
  display: flex; flex-direction: column;
  border-top: 0.5px solid var(--rule);
}
.feature-block {
  padding: 22px 0;
  border-bottom: 0.5px solid var(--rule);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  cursor: pointer;
  transition: padding-left 0.3s;
}
.feature-block:hover { padding-left: 12px; }
.feature-block-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
}
.feature-block-text {
  font-size: 13.5px; line-height: 1.6;
  color: var(--ivory);
}

.feature-stats {
  display: flex; gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 0.5px solid var(--rule);
}
.feature-stat-num {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.feature-stat-label {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────── */
/*   Editorial gallery                                 */
/* ─────────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.plate {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.plate img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}
.plate:hover img { transform: scale(1.06); filter: brightness(1.05); }

.plate-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.plate:hover .plate-overlay { opacity: 1; }
.plate-overlay-title {
  font-family: var(--display);
  font-style: normal;
  font-size: 16px;
  color: #fff;
}
.plate-overlay-tag {
  font-family: var(--mono);
  font-size: 8.5px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 78vw;
  max-height: 84vh;
  border-radius: 2px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px; height: 40px; border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px; border-radius: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.12); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-meta {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────────── */
/*   Knix ambassadorship                               */
/* ─────────────────────────────────────────────────── */

.knix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.knix-img-wrap {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  min-height: 520px;
}
.knix-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.knix-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 0 0 24px;
}
.knix-list {
  display: flex; flex-direction: column;
  margin-top: 32px;
}
.knix-item {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-top: 0.5px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.3s;
}
.knix-item:last-child { border-bottom: 0.5px solid var(--rule); }
.knix-item:hover { padding-left: 12px; }
.knix-item-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold);
}
.knix-item-text {
  font-family: var(--display);
  font-style: normal; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.25;
}
.knix-item-arrow {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ivory-2);
  text-align: right;
  transition: transform 0.3s, color 0.3s;
}
.knix-item:hover .knix-item-arrow {
  transform: translateX(8px); color: var(--accent);
}

/* ─────────────────────────────────────────────────── */
/*   Closing / contact                                 */
/* ─────────────────────────────────────────────────── */

.closing {
  padding: 160px 36px 60px;
  text-align: center;
}
.closing-display {
  font-size: clamp(64px, 9vw, 144px);
  line-height: 0.95;
}
.closing-sub {
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--ivory-2);
  margin: 28px auto 0;
  max-width: 38ch;
}
.closing-cta {
  margin-top: 56px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 32px;
  border: 0.5px solid var(--ivory);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ivory);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.closing-cta:hover::before { transform: translateX(0); }
.closing-cta:hover { color: var(--bg); }
.closing-cta-text { position: relative; z-index: 1; }
.closing-cta-arrow {
  position: relative; z-index: 1;
  transition: transform 0.3s;
}
.closing-cta:hover .closing-cta-arrow { transform: translateX(4px); }

.closing-contacts {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.closing-contact {
  background: var(--bg);
  padding: 32px 24px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}
.closing-contact:hover { background: var(--bg-2); }
.closing-contact-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.closing-contact-value {
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.25;
  margin-top: 8px;
}

.colophon {
  margin-top: 72px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 0.5px solid var(--rule);
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-2);
}
.colophon-mark {
  font-family: var(--display);
  font-style: normal;
  font-size: 22px; letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}

/* ─────────────────────────────────────────────────── */
/*   Reveal-on-scroll                                  */
/* ─────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.ig-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.ig-reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-2);
  text-decoration: none;
  cursor: pointer;
}
.ig-reel-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}
.ig-reel-card:hover .ig-reel-poster { transform: scale(1.05); filter: brightness(1.0); }
.ig-reel-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
  color: #fff;
}
.ig-reel-top {
  display: flex; justify-content: space-between; align-items: start;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ig-reel-play {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: rgba(255,255,255,0.95);
  color: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.ig-reel-card:hover .ig-reel-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.ig-reel-bot { display: flex; flex-direction: column; gap: 4px; }
.ig-reel-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.15;
  color: #fff;
}
@media (max-width: 800px) {
  .ig-reel-grid { grid-template-columns: 1fr; }
}

.knix-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

video.ig-reel-poster { object-fit: cover; }
.ig-reel-card video.ig-reel-poster { transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s; }
.ig-reel-card:hover video.ig-reel-poster { transform: scale(1.05); filter: brightness(1.0); }

.feature-rev .feature-wrap > .feature-copy { order: 0; }
.ig-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.ig-reel-cell {
  display: flex; justify-content: center;
}
.feature-rev .feature-wrap > .feature-img-wrap { order: 1; }
.feature-video-wrap { background: #000; }
.feature-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-wrap:hover .feature-video { transform: scale(1.04); }

/* ─────────────────────────────────────────────────── */
/*   Reel placeholder (Instagram embeds coming)        */
/* ─────────────────────────────────────────────────── */

.reel-placeholder {
  border: 0.5px dashed var(--rule);
  background: var(--bg-2);
  padding: 96px 36px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.reel-placeholder-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 44ch;
}
.reel-placeholder-text {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ivory-2);
  margin: 0;
  text-wrap: balance;
}

/* ─────────────────────────────────────────────────── */
/*   Reel — vertical video carousel (legacy)           */
/* ─────────────────────────────────────────────────── */

.reel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.reel-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}
.reel-card:hover video { transform: scale(1.04); filter: brightness(1.0); }

.reel-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}
.reel-card-top {
  display: flex; justify-content: space-between; align-items: start;
}
.reel-card-num {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
}
.reel-card-play {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: #111;
  font-size: 11px;
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.reel-card:hover .reel-card-play { opacity: 1; transform: scale(1); }
.reel-card-bot {
  display: flex; flex-direction: column; gap: 4px;
}
.reel-card-title {
  font-family: var(--display);
  font-style: normal;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}
.reel-card-stats {
  display: flex; gap: 10px;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Video lightbox */
.video-lightbox {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(8, 6, 4, 0.94);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.video-lightbox.open { opacity: 1; pointer-events: auto; }
.video-lightbox-frame {
  position: relative;
  height: 84vh;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  background: #000;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-lightbox.open .video-lightbox-frame { transform: scale(1); }
.video-lightbox-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px; height: 40px; border-radius: 20px;
  cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.12); }
.video-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px; border-radius: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-lightbox-nav:hover { background: rgba(255,255,255,0.12); }
.video-lightbox-nav.prev { left: 24px; }
.video-lightbox-nav.next { right: 24px; }
.video-lightbox-meta {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}


/* ─────────────────────────────────────────────────── */
/*   Brand sections: micro-stats, beauty grid, metrics */
/* ─────────────────────────────────────────────────── */

.micro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.micro-stat { text-align: left; }
.micro-stat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}
.micro-stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 8px;
}

/* Beauty Work grid (5 brand tiles) */
.beauty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .beauty-grid { grid-template-columns: repeat(2, 1fr); }
}
.beauty-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.beauty-tile-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 2px var(--ivory-2) inset;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}
.beauty-tile:hover .beauty-tile-frame {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 0 0 2px var(--gold) inset;
}
.beauty-tile-frame img,
.beauty-tile-frame video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.beauty-tile:hover .beauty-tile-frame img { transform: scale(1.06); }
.beauty-tile-play {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s;
}
.beauty-tile:hover .beauty-tile-play { opacity: 1; background: rgba(0, 0, 0, 0.5); }
.beauty-tile-brand {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-align: center;
}

/* Per-post metrics */
.post-metrics-stack {
  display: flex; flex-direction: column;
  gap: 28px;
}
.post-metric-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
  background: var(--bg-2);
  border-radius: 4px;
}
@media (max-width: 900px) {
  .post-metric-row { grid-template-columns: 1fr; }
}
.post-metric-thumb {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-3);
}
.post-metric-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.post-metric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: end;
}
.post-metric-big .pm-num {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.post-metric-big .pm-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 8px;
}
.post-metric-small-grid {
  flex-basis: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .post-metric-small-grid { grid-template-columns: repeat(3, 1fr); }
}
.post-metric-small-grid .pm-num-sm {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
}
.post-metric-small-grid .pm-lbl-sm {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-2);
  margin-top: 6px;
}


/* ─── Feature: floating stats + pills + tagline ─── */

.feature-img-wrap {
  position: relative;
  overflow: visible !important;
}

.floating-stat {
  position: absolute;
  z-index: 4;
  min-width: 110px;
  padding: 14px 18px;
  background: rgba(20, 16, 12, 0.78);
  color: var(--ivory);
  border-radius: 14px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 0 0 0.5px rgba(255,255,255,0.12) inset;
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: stat-bob 6s ease-in-out infinite;
  animation-play-state: paused;
}
.floating-stat.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation-play-state: running;
}
.floating-stat:nth-of-type(2n) { animation-delay: -2s; }
.floating-stat:nth-of-type(3n) { animation-delay: -4s; }

@keyframes stat-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1); }
}

.floating-stat-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.floating-stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 234, 217, 0.78);
  margin-top: 8px;
  white-space: nowrap;
}

/* Tighter feature copy */
.feature-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ivory-2);
  margin: 18px 0 28px;
  max-width: 36ch;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(241, 234, 217, 0.06);
  border: 0.5px solid rgba(241, 234, 217, 0.18);
  font-size: 13px;
  color: var(--ivory);
  letter-spacing: 0.005em;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.feature-pill:hover {
  background: rgba(201, 165, 118, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.feature-pill > span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ─── Inline feature metrics row (clean, factual) ─── */
.feature-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.feature-metric { margin: 0; }
.feature-metric dt {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0;
}
.feature-metric dd {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-2);
}


/* ─────────────────────────────────────────────────── */
/*   Featured Partnerships — tabbed showcase           */
/* ─────────────────────────────────────────────────── */

.fp-section {
  padding: 120px 36px 0;
  position: relative;
}

.fp-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 0;
  padding: 8px;
  background: var(--bg-2);
  border-radius: 999px;
  width: fit-content;
}
.fp-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 13px;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
.fp-tab:hover { background: rgba(201,165,118,0.08); }
.fp-tab.active {
  background: var(--ivory);
  color: var(--bg);
}
.fp-tab-brand {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.fp-tab-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1;
}

/* Compact dropdown — hidden on wide screens */
.fp-drop { position: relative; display: none; margin-bottom: 24px; }
.fp-drop-trigger {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border: 0.5px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--body);
}
.fp-drop-label { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.fp-drop-brand {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.fp-drop-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
}
.fp-drop-chev {
  transition: transform 0.25s;
  font-size: 14px;
}
.fp-drop-chev.open { transform: rotate(180deg); }
.fp-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--bg-2);
  border: 0.5px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  z-index: 20;
}
.fp-drop-item {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  border-radius: 12px;
  font-family: var(--body);
}
.fp-drop-item:hover { background: rgba(201,165,118,0.08); }
.fp-drop-item.active { background: var(--ivory); color: var(--bg); }

@media (max-width: 880px) {
  .fp-tabs { display: none; }
  .fp-drop { display: block; }
}

.fp-stage { position: relative; margin-top: 40px; }
.fp-stage-inner {
  animation: fp-fade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fp-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* When wrapped in fp-stage, the .feature section already paints itself,
   but we want a top margin reset and no double padding. */
.fp-stage .feature { padding: 0; }
.fp-stage .feature-wrap { min-height: 80vh; }

/* ─────────────────────────────────────────────────── */
/*   Beauty Work — richer treatment                    */
/* ─────────────────────────────────────────────────── */
.beauty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 8px;
}
@media (max-width: 980px) {
  .beauty-grid { grid-template-columns: repeat(2, 1fr); }
}
.beauty-tile {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  cursor: pointer;
}
.beauty-tile-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 0 0 8px rgba(0,0,0,0.85),
    0 0 0 9px rgba(255,255,255,0.4),
    0 18px 40px rgba(0,0,0,0.22);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}
.beauty-tile:nth-child(odd)  .beauty-tile-frame { transform: rotate(-1.5deg); }
.beauty-tile:nth-child(even) .beauty-tile-frame { transform: rotate(1.5deg); }
.beauty-tile:hover .beauty-tile-frame {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 0 0 8px rgba(0,0,0,0.9),
    0 0 0 9px var(--gold),
    0 22px 48px rgba(0,0,0,0.28);
}
.beauty-tile-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}
.beauty-tile-frame img,
.beauty-tile-frame video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
  filter: brightness(0.92);
}
.beauty-tile:hover .beauty-tile-frame img,
.beauty-tile:hover .beauty-tile-frame video {
  transform: scale(1.08);
  filter: brightness(1.0);
}
.beauty-tile-play {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  transform: translate(-50%, -50%) scale(0.85);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; z-index: 3;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.beauty-tile:hover .beauty-tile-play {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
  background: rgba(0, 0, 0, 0.55);
}
.beauty-tile-brand {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-align: center;
  position: relative;
  padding-bottom: 4px;
}
.beauty-tile-brand::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
}
.beauty-tile:hover .beauty-tile-brand::after {
  width: 100%; left: 0;
}

/* ─────────────────────────────────────────────────── */
/*   Gallery — filter chips + hover tilt               */
/* ─────────────────────────────────────────────────── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 28px;
}
.gallery-filter {
  appearance: none;
  border: 0.5px solid var(--rule);
  background: transparent;
  color: var(--ivory-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.gallery-filter:hover { color: var(--ivory); border-color: var(--ivory-2); }
.gallery-filter.active {
  background: var(--ivory);
  color: var(--bg);
  border-color: var(--ivory);
}

.gallery {
  perspective: 1400px;
}
.plate {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s,
              filter 0.5s,
              opacity 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.plate.dimmed { opacity: 0.2; filter: grayscale(70%); }
.plate:hover {
  z-index: 4;
  box-shadow: 0 22px 52px rgba(0,0,0,0.28);
}
.plate img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.plate:hover img { transform: scale(1.06); }
.plate-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateZ(40px);
}
.plate:hover .plate-overlay { opacity: 1; }
.plate-overlay-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
}
.plate-overlay-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}


/* ─────────────────────────────────────────────────── */
/*   Section separation — force breathing room         */
/*   These override any inline paddingTop:0            */
/* ─────────────────────────────────────────────────── */

.section[id],
.fp-section[id] {
  padding-top: 140px !important;
  padding-bottom: 140px;
  position: relative;
}

/* Top dividing rule on every section so titles read as section openers */
.section[id]::before,
.fp-section[id]::before,
.feature[id]::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 0.5px;
  background: var(--rule);
}

/* Beefier section header so the title clearly opens a chapter */
.section-hd, .fp-header {
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--rule);
  position: relative;
}

/* Big chapter number, top-left of the header */
.section-hd-num, .fp-header .section-hd-num {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-2);
  border-radius: 999px;
  border: 0.5px solid var(--rule);
}

/* Section title — make sure inline tweak fontSize doesn't shrink it */
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 84px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

/* Aside copy slightly distanced */
.section-hd-aside {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ivory-2);
  max-width: 36ch;
  align-self: end;
}

/* Feature sections — also get the top rule treatment */
.feature[id] {
  padding-top: 0;
}
.feature[id]::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 0.5px;
  background: var(--rule);
}

/* Marquee should sit tight (no top divider) */
.marquee {
  margin: 0;
}

/* Tighten featured-partnerships internal feature stage so we don't double-add dividers */
.fp-stage .feature::before { display: none; }
.fp-stage .feature[id] { padding-top: 0; }


/* ─────────────────────────────────────────────────── */
/*   Mobile layout · ≤ 760px                           */
/* ─────────────────────────────────────────────────── */

@media (max-width: 760px) {

  /* Nav — collapse to a logo + single CTA. Hide inline links;
     section navigation works fine via vertical scroll on mobile. */
  .nav {
    padding: 14px 18px;
  }
  .nav-links { display: none; }
  .nav-cta {
    font-size: 11px;
    padding: 7px 12px;
  }
  .nav-mark { font-size: 22px !important; }

  /* Section padding tightens */
  .section[id],
  .fp-section[id] {
    padding: 96px 20px !important;
  }
  .section[id]::before,
  .fp-section[id]::before,
  .feature[id]::before {
    left: 20px; right: 20px;
  }

  /* Section header: stack the title + aside */
  .section-hd,
  .fp-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
    padding-bottom: 24px;
  }
  .section-hd-aside {
    max-width: none;
    align-self: start;
    font-size: 15px;
  }
  .section-title {
    font-size: clamp(38px, 9vw, 56px) !important;
    line-height: 1.02 !important;
  }

  /* Hero — stack the photo above the type */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto;
    padding: 110px 20px 60px !important;
    gap: 28px;
  }
  .hero-left { gap: 32px; }
  .hero-display {
    font-size: clamp(72px, 18vw, 120px) !important;
    margin-top: 0 !important;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 10px;
  }
  .hero-meta > span:nth-child(3) { display: none; } /* the divider rule */
  .hero-rotator { font-size: 18px !important; }
  .hero-foot { margin-top: 20px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .hero-stat-num { font-size: 28px !important; }
  .hero-stat-label { font-size: 8px !important; letter-spacing: 0.18em !important; }
  .hero-img-wrap {
    height: 70vh;
    min-height: 480px;
    order: -1; /* photo on top */
  }
  .hero-thumbs { bottom: 14px; left: 14px; gap: 6px; }
  .hero-thumb { width: 36px; height: 50px; }
  .hero-scroll { display: none; }

  /* Marquee — slow and chunky on phone */
  .marquee { padding: 18px 0; }
  .marquee-track {
    font-size: clamp(26px, 8vw, 40px) !important;
    animation-duration: 30s;
  }

  /* Stats grid — single column */
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
    padding: 36px 0 28px;
  }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: clamp(64px, 18vw, 96px) !important; }
  .stat-label { font-size: 18px !important; }

  /* Voice / Quote tiles — single column */
  .quotes {
    grid-template-columns: 1fr;
  }
  .quote-tile {
    padding: 36px 24px 28px;
  }
  .quote-tile-text {
    font-size: clamp(22px, 6vw, 30px) !important;
  }

  /* Knix ambassadorship — stack */
  .knix {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .knix-img-wrap {
    min-height: 380px;
  }
  .knix-copy {
    padding: 0;
  }
  .knix-item {
    grid-template-columns: 36px 1fr 24px;
    gap: 12px;
    padding: 18px 0;
  }
  .knix-item-text {
    font-size: clamp(18px, 5.4vw, 24px) !important;
  }

  /* Feature (partnership) — stack image above copy */
  .fp-section { padding: 96px 20px !important; }
  .fp-tabs { display: none; }
  .fp-drop { display: block; }
  .feature-wrap {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  /* Force image first regardless of feature-rev */
  .feature-rev .feature-wrap > .feature-img-wrap,
  .feature .feature-wrap > .feature-img-wrap {
    order: 0;
  }
  .feature-rev .feature-wrap > .feature-copy,
  .feature .feature-wrap > .feature-copy {
    order: 1;
    padding: 32px 0 0 !important;
  }
  .feature-img-wrap {
    height: 70vh;
    min-height: 460px;
  }
  .feature-headline {
    font-size: clamp(36px, 9vw, 54px) !important;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .feature-metrics {
    gap: 22px 28px;
    margin-top: 24px;
    padding-top: 18px;
  }
  .feature-metric dt { font-size: 26px !important; }

  /* Gallery — fluid grid, smaller plates */
  .gallery-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-bottom: 22px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .gallery-filter {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 9px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 8px;
  }
  /* Reset spans — every plate becomes a small tile on phone */
  .plate { grid-column: span 1 !important; grid-row: span 1 !important; }
  .plate-overlay { padding: 14px; opacity: 1; }
  .plate-overlay-title { font-size: 16px; }
  .plate-overlay-tag { font-size: 9px; }

  /* Reels — single column on phone */
  .ig-reel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Closing — tighter type, single-column contacts */
  .closing { padding: 80px 20px 40px !important; }
  .closing-display { font-size: clamp(64px, 16vw, 100px) !important; }
  .closing-contacts {
    grid-template-columns: 1fr;
  }
  .closing-contact { padding: 22px 18px; }
  .closing-cta {
    padding: 14px 24px;
    font-size: 10px;
  }
  .colophon {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 9px;
  }

  /* Lightboxes — make sure nav buttons aren't off-screen */
  .lightbox-nav, .video-lightbox-nav {
    width: 40px; height: 40px;
  }
  .lightbox-nav.prev, .video-lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next, .video-lightbox-nav.next { right: 8px; }
  .lightbox-close, .video-lightbox-close { top: 14px; right: 14px; }
  .lightbox-img { max-width: 92vw; max-height: 78vh; }
  .video-lightbox-frame { height: 78vh; }

  /* Cursor-trailing image is useless on touch — hide */
  .cursor-image { display: none !important; }

  /* Tweaks panel — let it size to the small viewport */
  .twk-panel {
    width: calc(100vw - 24px);
    right: 12px !important;
    bottom: 12px !important;
  }
}

/* Tighter still for very narrow phones */
@media (max-width: 380px) {
  .section-title { font-size: clamp(32px, 10vw, 44px) !important; }
  .hero-display { font-size: clamp(60px, 19vw, 90px) !important; }
  .hero-stats { gap: 12px; }
  .hero-stat-num { font-size: 22px !important; }
}
