@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #060607;
  --text: #f0ece4;
  --muted: rgba(240,236,228,.65);
  --soft: rgba(240,236,228,.38);
  --accent: #c8b89a;
  --accent-bright: #e8d5b7;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --panel: rgba(8,8,10,.72);
  --shadow: 0 32px 80px rgba(0,0,0,.55);
  --radius-pill: 999px;
  --radius-card: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .22s;
}
.brand:hover { border-color: rgba(200,184,154,.25); }

.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,154,.30);
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: .18em;
  color: var(--accent);
  background: radial-gradient(circle at 35% 35%, rgba(200,184,154,.18), rgba(200,184,154,.04));
  flex-shrink: 0;
  font-weight: 600;
}
.brand-kicker {
  font-size: 9px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 400;
}
.brand-name {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  max-width: min(55vw, 680px);
  overflow: auto hidden;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .18s, color .18s;
  font-weight: 400;
}
.nav a:hover, .nav a.active {
  background: rgba(255,255,255,.09);
  color: var(--text);
}
.nav a.active { color: var(--accent-bright); }

.socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-pill {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .18s, border-color .18s;
  font-weight: 400;
}
.social-pill:hover { color: var(--text); border-color: rgba(255,255,255,.2); }

/* ─── LEFT RAIL ─────────────────────────────────────── */
.left-rail {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dots-wrap {
  padding: 14px 12px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dot-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 5px 2px;
  color: var(--soft);
  text-align: left;
  transition: color .22s;
}
.dot-btn:hover, .dot-btn.active { color: var(--text); }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  flex-shrink: 0;
  transition: background .22s, box-shadow .22s, transform .22s;
}
.dot-btn.active .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,184,154,.12);
  transform: scale(1.25);
}
.dot-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: max-width .26s ease;
}
.dot-btn:hover .dot-label, .dot-btn.active .dot-label { max-width: 140px; }

/* ─── FEED ───────────────────────────────────────────── */
.feed {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  background: var(--bg);
}
.feed::-webkit-scrollbar { display: none; }

/* ─── HERO SECTION (full height, dominant) ─────────── */
.section[data-index="0"] {
  height: 100vh;
}

/* ─── PORTFOLIO SECTIONS (slightly inset for hierarchy) ─ */
.section {
  position: relative;
  height: 92vh;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--bg);
}

/* cinematic overlay */
.section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.28) 0%,
      rgba(0,0,0,.04) 20%,
      rgba(0,0,0,.08) 45%,
      rgba(0,0,0,.76) 78%,
      rgba(0,0,0,.96) 100%),
    linear-gradient(90deg, rgba(0,0,0,.42), transparent 30%, transparent 70%, rgba(0,0,0,.26));
  z-index: 2;
  pointer-events: none;
}

/* rounded frame border */
.frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 30px;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
}

/* story progress bar */
.storybar {
  position: absolute;
  left: 24px; right: 24px;
  top: 84px;
  z-index: 4;
  display: flex;
  gap: 6px;
}
.storybar span {
  display: block;
  height: 2px;
  flex: 1;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
  overflow: hidden;
}
.storybar span i {
  display: block;
  height: 100%;
  width: 0;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  transition: width .32s linear;
}
.section.active .storybar .fill-active { width: 60%; }
.section.viewed .storybar .fill-done { width: 100%; }

/* ─── BOTTOM META ────────────────────────────────────── */
.bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 44px 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}
.meta { max-width: min(840px, calc(100vw - 110px)); }
.eyebrow {
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 400;
}
.title {
  margin-top: 10px;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}
.role {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.chip {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 400;
}
.caption-wrap {
  margin-top: 14px;
  max-width: 680px;
}
.caption-text {
  font-size: 14px;
  line-height: 1.70;
  color: rgba(240,236,228,.80);
  font-weight: 300;
}
.collapsed .caption-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.more-btn {
  margin-top: 7px;
  background: none;
  border: 0;
  color: var(--accent);
  padding: 0;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.btn {
  appearance: none;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  padding: 12px 20px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .18s, border-color .18s;
  font-weight: 400;
}
.btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2); }
.btn.primary {
  background: var(--text);
  color: #070706;
  border-color: transparent;
  font-weight: 600;
}
.btn.primary:hover { background: rgba(240,236,228,.90); }
.btn.ghost { background: transparent; border-color: var(--line); }

/* ─── RIGHT RAIL ─────────────────────────────────────── */
.right-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.06);
  min-width: 72px;
  margin-bottom: 4px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,154,.30);
  display: grid; place-items: center;
  font-size: 11px; letter-spacing: .18em;
  color: var(--accent);
  background: radial-gradient(circle at 35% 35%, rgba(200,184,154,.18), rgba(200,184,154,.04));
  font-weight: 600;
}
.rail-btn {
  background: none;
  border: 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform .14s;
}
.rail-btn:hover { transform: scale(1.10); }
.rail-btn.liked .rail-icon {
  background: rgba(229,80,80,.16);
  border-color: rgba(229,80,80,.28);
  color: #ff6b6b;
}
.rail-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line-strong);
  font-size: 16px;
  transition: background .18s, border-color .18s, color .18s;
}
.rail-count {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ─── NOW PLAYING ────────────────────────────────────── */
.now-playing {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 50;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--panel);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  max-width: calc(100vw - 220px);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .3s;
  font-weight: 400;
}

/* ─── ARTWORK TYPES ──────────────────────────────────── */
.art {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.6) 22%, rgba(0,0,0,.6) 78%, transparent);
}
.grain {
  position: absolute; inset: -8%;
  opacity: .22;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.32), transparent 14%),
    radial-gradient(circle at 75% 36%, rgba(255,255,255,.20), transparent 17%),
    radial-gradient(circle at 50% 78%, rgba(255,255,255,.16), transparent 22%);
}
.diag {
  position: absolute;
  width: 48vw; height: 48vw;
  border-radius: 28px;
  opacity: .80;
}
.diag-1 { left: -12vw; top: 6vh; transform: rotate(22deg); }
.diag-2 { right: -10vw; bottom: 14vh; transform: rotate(-19deg); }

.center-badge {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
}
.orb {
  width: min(32vw, 240px);
  height: min(32vw, 240px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: radial-gradient(circle at 34% 34%,
    rgba(255,255,255,.26),
    rgba(255,255,255,.08) 32%,
    rgba(255,255,255,.02) 62%,
    transparent 72%);
  box-shadow: 0 32px 100px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  font-size: 40px;
}
.center-title {
  margin-top: 22px;
  font-size: clamp(22px, 3.2vw, 44px);
  letter-spacing: -.04em;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}
.center-sub {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

/* ─── AD SECTION ─────────────────────────────────────── */
.ad-layout {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  padding: 8vw;
  z-index: 0;
}
.ad-card {
  width: min(70vw, 820px);
  padding: 36px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 40px 120px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.07);
}
.ad-kicker {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
  font-weight: 400;
}
.ad-title {
  margin-top: 18px;
  font-size: clamp(30px, 5vw, 66px);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 700;
  max-width: 10ch;
  font-family: 'DM Serif Display', serif;
}
.ad-body {
  margin-top: 16px;
  color: rgba(240,236,228,.76);
  line-height: 1.76;
  max-width: 52ch;
  font-size: 14px;
  font-weight: 300;
}
.ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: #070706;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: opacity .18s, transform .14s;
}
.ad-cta:hover { opacity: .88; transform: translateY(-1px); }
.sponsored-tag {
  position: absolute;
  top: 90px; right: 28px;
  z-index: 5;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── CAROUSEL SECTION ───────────────────────────────── */
.carousel-shell {
  position: absolute;
  inset: 18vh 7vw 26vh 7vw;
  z-index: 0;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.36);
}
.carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
  padding: 20px;
}
.slide-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
}
.slide-bg { position: absolute; inset: 0; }
.slide-content {
  position: absolute;
  left: 22px; right: 22px; bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.slide-title {
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -.04em;
  font-family: 'DM Serif Display', serif;
}
.slide-sub { margin-top: 6px; color: rgba(240,236,228,.70); font-size: 12px; letter-spacing: .04em; }
.slide-num {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 10px;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.carousel-arrows {
  position: absolute;
  left: 8vw; right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 6;
  pointer-events: none;
}
.c-arrow {
  pointer-events: auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.40);
  color: var(--text);
  font-size: 18px;
  transition: background .18s, transform .14s;
}
.c-arrow:hover { background: rgba(0,0,0,.60); transform: scale(1.06); }
.carousel-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14vh;
  z-index: 5;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── HERO SECTION ───────────────────────────────────── */
.hero-art {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0b09 0%, #181310 42%, #0a0c10 100%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,184,154,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,184,154,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.9) 30%, transparent 75%);
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 58% 28%, rgba(200,184,154,.18), transparent 38%),
    radial-gradient(ellipse at 18% 72%, rgba(100,120,160,.14), transparent 32%),
    radial-gradient(ellipse at 82% 68%, rgba(160,140,100,.10), transparent 28%);
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.70) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 3;
  width: min(960px, 90vw);
  animation: heroReveal .9s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 28px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(200,184,154,.28);
  display: grid; place-items: center;
  font-size: 16px; letter-spacing: .20em;
  color: var(--accent);
  background: radial-gradient(circle at 35% 35%, rgba(200,184,154,.16), rgba(200,184,154,.03));
  margin-bottom: 36px;
  font-weight: 600;
  box-shadow: 0 0 60px rgba(200,184,154,.08);
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-title {
  font-size: clamp(68px, 11vw, 160px);
  letter-spacing: -.055em;
  font-weight: 400;
  line-height: .88;
  font-family: 'DM Serif Display', serif;
  background: linear-gradient(175deg, #f0ece4 0%, rgba(200,184,154,.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-italic {
  font-style: italic;
  color: var(--accent);
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(200,184,154,.40), transparent);
  margin: 28px auto;
}
.hero-sub {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 46ch;
  line-height: 2.2;
  font-weight: 400;
}
.hero-scroll-hint {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(200,184,154,.50);
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  animation: float 2.6s ease-in-out infinite;
  font-weight: 400;
}
.scroll-arrow {
  font-size: 16px;
  opacity: .6;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-art {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0b0a08 0%, #101309 50%, #080b0e 100%);
}
.about-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  width: min(960px, 88vw);
  align-items: center;
}
.about-left .label {
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
  font-weight: 400;
}
.about-left h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -.048em;
  line-height: .94;
  font-weight: 400;
  font-family: 'DM Serif Display', serif;
}
.about-left p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.80;
  font-size: 14px;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.about-stat {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: border-color .22s, background .22s;
}
.about-stat:hover {
  border-color: rgba(200,184,154,.20);
  background: rgba(200,184,154,.04);
}
.about-stat .n {
  font-size: 30px;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--accent);
  font-family: 'DM Serif Display', serif;
}
.about-stat .l {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 4px;
  font-weight: 400;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .22s, background .22s, transform .18s;
}
.service-item:hover {
  border-color: rgba(200,184,154,.18);
  background: rgba(200,184,154,.04);
  transform: translateX(4px);
}
.service-icon {
  width: 38px; height: 38px;
  border-radius: 14px;
  background: rgba(200,184,154,.08);
  border: 1px solid rgba(200,184,154,.16);
  display: grid; place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.service-name { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.service-desc { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 300; }

/* ─── CONTACT SECTION ────────────────────────────────── */
.contact-art {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #080808 0%, #0e0c0a 50%, #090a0c 100%);
}
.contact-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: min(720px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-content .label {
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
  font-weight: 400;
}
.contact-content h2 {
  font-size: clamp(38px, 6vw, 80px);
  letter-spacing: -.052em;
  line-height: .92;
  font-weight: 400;
  font-family: 'DM Serif Display', serif;
}
.contact-content p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
  max-width: 44ch;
  font-weight: 300;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.contact-link {
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  transition: background .18s, border-color .18s, transform .14s;
  font-weight: 400;
}
.contact-link:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-2px);
}
.contact-link.primary {
  background: var(--text);
  color: #070706;
  border-color: transparent;
  font-weight: 600;
}
.contact-link.primary:hover { background: rgba(240,236,228,.90); transform: translateY(-2px); }

/* ─── COMMENTS OVERLAY ───────────────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 60;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.sheet {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%) translateY(106%);
  width: min(1000px, calc(100vw - 12px));
  height: 72vh;
  background: rgba(8,8,9,.98);
  border: 1px solid var(--line-strong);
  border-radius: 30px 30px 0 0;
  transition: transform .30s cubic-bezier(.32,.84,.44,1);
  display: flex;
  flex-direction: column;
  padding: 14px 18px 20px;
  box-shadow: 0 -20px 80px rgba(0,0,0,.60);
}
.overlay.open .sheet { transform: translateX(-50%) translateY(0); }
.grab {
  width: 48px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  margin: 0 auto 16px;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.sheet-eyebrow {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 400;
}
.sheet-title {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: -.03em;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}
.close-btn {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .18s;
  flex-shrink: 0;
  font-weight: 400;
}
.close-btn:hover { background: rgba(255,255,255,.11); }
.sheet-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  min-height: 0;
  flex: 1;
  margin-top: 14px;
}
.comments-list {
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.10) transparent;
}
.comment {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 20px;
  padding: 16px;
  transition: border-color .18s;
}
.comment:hover { border-color: rgba(200,184,154,.16); }
.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.comment-name { font-size: 13px; font-weight: 600; }
.comment-tag {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 400;
}
.comment-body {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.64;
  font-size: 14px;
  font-weight: 300;
}
.insight-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.018));
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insight-label {
  font-size: 9px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 400;
}
.insight-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.68;
  font-size: 14px;
  font-weight: 300;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.stat-cell {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 13px;
}
.stat-cell .n {
  font-size: 22px;
  letter-spacing: -.04em;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}
.stat-cell .l {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 3px;
  font-weight: 400;
}
.insight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .left-rail { display: none; }
  .storybar { top: 90px; }
  .about-content { grid-template-columns: 1fr; gap: 24px; }
  .about-right { display: none; }
  .sheet-body { grid-template-columns: 1fr; }
  .insight-panel { display: none; }
}
@media (max-width: 700px) {
  .topbar { left: 10px; right: 10px; top: 10px; }
  .brand { padding: 8px 12px 8px 8px; }
  .social-pill { padding: 9px 12px; font-size: 10px; }
  .storybar { left: 14px; right: 14px; top: 72px; }
  .frame { inset: 8px; border-radius: 22px; }
  .bottom { padding: 32px 16px 20px; }
  .title { font-size: clamp(28px, 9vw, 42px); }
  .right-rail { min-width: 60px; padding: 10px 8px; }
  .rail-icon { width: 38px; height: 38px; }
  .meta { max-width: calc(100vw - 88px); }
  .hero-title { font-size: clamp(52px, 16vw, 96px); }
  .carousel-shell { inset: 18vh 12px 28vh 12px; }
  .contact-content h2 { font-size: clamp(36px, 12vw, 60px); }
}
