/* ============================================================
   BEN ALLGEYER — PERSONAL BRAND SITE
   Aesthetic: Dark editorial. Serif display + tight sans body.
   Inspired by FIND-style cinematic real-estate sites with
   bold word reveals and large image strips.
============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }

/* ---------- Tokens ---------- */
:root {
  /* Palette — deep obsidian + bone + brass + oxblood */
  --bg:        #0b0b0d;
  --bg-2:      #0f0f12;
  --bg-3:      #14141a;
  --ink:       #ece9e0;
  --ink-dim:   #8a8579;
  --ink-fade:  #5a564d;
  --line:      rgba(236, 233, 224, 0.10);
  --line-2:    rgba(236, 233, 224, 0.06);
  --brass:     #c8a96a;
  --brass-2:   #b8975a;
  --oxblood:   #7a2030;
  --bone:      #f3efe3;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1320px;
  --pad-x:     clamp(20px, 4vw, 56px);

  /* Motion */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.65, 0, .35, 1);
}

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x); padding-right: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; letter-spacing: 0.08em; }
.nav__brand-mark {
  height: 32px;
  width: auto;
  max-width: 40px;
  display: block;
  object-fit: contain;
}
.nav__brand-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1px solid var(--line);
  padding: 10px 18px !important;
  border-radius: 999px;
  color: var(--ink) !important;
  transition: background .3s var(--ease), border-color .3s var(--ease) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--brass); border-color: var(--brass); color: var(--bg) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }

@media (max-width: 880px) {
  .nav__links { display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; flex-direction: column; align-items: flex-start; padding: 40px var(--pad-x); background: var(--bg); gap: 12px; }
  .nav__links a { font-size: 28px; font-family: var(--font-display); letter-spacing: 0; }
  .nav.is-open .nav__links { display: flex; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px var(--pad-x) 40px;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.62);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.15) 35%, rgba(11,11,13,0.7) 75%, rgba(11,11,13,0.95) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(11,11,13,0) 0%, rgba(11,11,13,0.55) 70%);
}
.hero__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.42 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.hero__loc { display: flex; align-items: center; gap: 10px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(200, 169, 106, 0); }
}

.hero__content { position: relative; z-index: 2; max-width: 1200px; }
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brass); display: inline-block; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 9.2vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero__line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__line:nth-child(3) > span { animation-delay: 0.24s; }
.hero__line--accent > span {
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
}
.hero__line--accent > span::after {
  content: ''; display: inline-block;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brass);
  margin-left: 14px;
  vertical-align: 0.18em;
  animation: pulse-dot 2.6s var(--ease) infinite;
  animation-delay: 1.4s;
}
@keyframes rise {
  to { transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.65; }
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-in 1.2s var(--ease) forwards;
  animation-delay: 0.6s;
}
@keyframes fade-in { to { opacity: 1; } }

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 1.2s var(--ease) forwards;
  animation-delay: 0.8s;
}

.hero__bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--brass), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute;
  width: 1px; height: 16px;
  background: var(--bone);
  top: -16px; left: 0;
  animation: scroll-tick 1.8s var(--ease) infinite;
}
@keyframes scroll-tick {
  to { top: 48px; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--bone);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--brass);
  color: var(--bg);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--ink); }
.btn--big { padding: 20px 36px; font-size: 14px; }

/* ============================================================
   TICKER (hero bottom)
============================================================ */
.ticker {
  flex: 1;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-dim);
  width: max-content;
}
.ticker__track span { letter-spacing: 0.01em; }
.ticker__track i { color: var(--brass); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HELPERS
============================================================ */
.section__header { margin-bottom: 72px; max-width: 1100px; }
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  margin-bottom: 24px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brass); }
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.8vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title em { color: var(--brass); font-style: italic; font-weight: 400; }
.section__lede {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.55;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STATS BAR
============================================================ */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 12px 24px;
  border-left: 1px solid var(--line-2);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .stat { border-left: none; padding: 0 12px; }
  .stat:nth-child(odd) { padding-left: 0; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { padding: 140px 0 120px; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.about__photos {
  position: relative;
  height: 720px;
}
.about__photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: saturate(0.9) contrast(1.05);
}
.about__photo--1 {
  width: 75%; height: 60%;
  top: 0; left: 0;
  filter: saturate(0.85) contrast(1.06);
}
.about__photo--2 {
  width: 60%; height: 55%;
  bottom: 0; right: 0;
  background-position: center 20%;
  border: 1px solid var(--brass);
  outline: 8px solid var(--bg);
}
.about__sticker {
  position: absolute;
  bottom: 20px; left: 8%;
  background: var(--brass);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  z-index: 2;
  transform: rotate(-3deg);
}
.about__copy { padding-top: 12px; }
.about__copy .section__title { margin-bottom: 36px; }
.about__body p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.about__body p:last-child { color: var(--ink-dim); font-style: italic; }
.about__signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--brass);
}
.sig-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__photos { height: 520px; max-width: 580px; }
}

/* ============================================================
   WORK — FIND-style massive rows
============================================================ */
.work { padding: 140px 0 80px; }
.work__list {
  border-top: 1px solid var(--line);
}
.work__row {
  display: block;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.work__row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200,169,106,0.05) 0%, rgba(200,169,106,0) 60%);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.work__row:hover::before { opacity: 1; }
.work__row-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  display: grid;
  grid-template-columns: 80px 1fr 220px 60px;
  align-items: center;
  gap: 40px;
  transition: padding .4s var(--ease);
}
.work__row:hover .work__row-inner { padding-left: calc(var(--pad-x) + 12px); }

.work__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-fade);
}
.work__name h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color .4s var(--ease);
}
.work__row:hover .work__name h3 { color: var(--bone); }
.work__name p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  max-width: 580px;
  font-weight: 300;
}
.work__logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 70px;
}
.work__logo img {
  max-height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.work__row:hover .work__logo img { opacity: 1; transform: scale(1.04); }
.work__logo--text { display: flex; align-items: center; justify-content: flex-end; }
.text-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--brass);
  text-align: right;
  line-height: 1;
}
.text-logo i {
  font-style: normal;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
}
.work__arrow {
  color: var(--ink-dim);
  display: flex; justify-content: flex-end;
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.work__row:hover .work__arrow { color: var(--brass); transform: translateX(8px); }

@media (max-width: 880px) {
  .work__row-inner { grid-template-columns: 1fr; gap: 20px; padding: 36px var(--pad-x); }
  .work__row:hover .work__row-inner { padding-left: var(--pad-x); }
  .work__num { font-size: 11px; }
  .work__logo { justify-content: flex-start; height: 50px; }
  .work__logo img { max-height: 40px; }
  .work__arrow { display: none; }
}

/* ============================================================
   BUILDING — what's in progress
============================================================ */
.building {
  padding: 140px 0 120px;
  background: var(--bg-2);
  position: relative;
}
.building::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.4;
}
.building__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.building__live {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #62d96b;
  box-shadow: 0 0 0 4px rgba(98, 217, 107, 0.2);
  animation: pulse-green 2.4s var(--ease) infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 4px rgba(98, 217, 107, 0.2); }
  50%      { box-shadow: 0 0 0 9px rgba(98, 217, 107, 0); }
}

.building__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.build-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.build-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}
.build-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(200,169,106,0.16), transparent 70%);
  pointer-events: none;
}
.build-card--accent {
  border-color: rgba(200, 169, 106, 0.35);
  background: linear-gradient(180deg, var(--bg-3), #161214);
}
.build-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.build-card__tag { color: var(--brass); }
.build-card__status {
  color: var(--ink-dim);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.build-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.build-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
  flex: 1;
}
.build-card__progress {
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.build-card__progress span {
  display: block;
  height: 100%;
  background: var(--brass);
  border-radius: 999px;
  width: 0;
  transition: width 1.5s var(--ease);
}
.build-card.is-in .build-card__progress span { width: var(--target-width); }
.build-card__progress-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-fade);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .building__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOW — Beyond the Deal
============================================================ */
.show { padding: 140px 0 120px; }
.show__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.show__title {
  font-size: clamp(80px, 14vw, 220px) !important;
  line-height: 0.85 !important;
  letter-spacing: -0.04em !important;
  display: flex; flex-direction: column;
  margin: 28px 0 36px;
}
.show__title span:nth-child(2) {
  align-self: center;
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}
.show__title span:last-child { align-self: flex-end; }
.show__sub {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.show__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.show__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.show__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  filter: saturate(0.85) contrast(1.06);
}
.show__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,13,0.6));
  border-radius: 4px;
}
.show__badge {
  position: absolute;
  bottom: -28px; right: -16px;
  background: var(--bone);
  color: var(--bg);
  padding: 22px 26px;
  border-radius: 4px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  z-index: 2;
  transform: rotate(3deg);
}
.show__badge span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bg);
  text-transform: uppercase;
}
.show__badge strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 700;
  color: var(--oxblood);
  line-height: 1;
}

@media (max-width: 980px) {
  .show__inner { grid-template-columns: 1fr; gap: 60px; }
  .show__visual { max-width: 480px; }
}

/* ============================================================
   QUOTES
============================================================ */
.quotes { padding: 140px 0; background: var(--bg-2); }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  border-top: 1px solid var(--brass);
  padding-top: 28px;
}
.quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.quote figcaption {
  display: flex; flex-direction: column;
  gap: 4px;
}
.quote__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brass);
  text-transform: uppercase;
}
.quote__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.quotes__disclaimer {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-fade);
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 980px) {
  .quotes__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TOOLS
============================================================ */
.tools { padding: 140px 0; }
.tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.tool {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .45s var(--ease);
}
.tool::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.tool:hover { background: rgba(200,169,106,0.04); }
.tool:hover::after { transform: scaleX(1); }
.tool__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.tool__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brass);
  text-transform: uppercase;
}
.tool__arrow {
  font-size: 22px;
  color: var(--ink-dim);
  transition: color .35s var(--ease), transform .4s var(--ease);
}
.tool:hover .tool__arrow {
  color: var(--brass);
  transform: translate(4px, -4px);
}
.tool__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.tool__desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 32px;
  font-weight: 300;
  flex: 1;
}
.tool__url {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass);
}

@media (max-width: 720px) {
  .tools__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRESS
============================================================ */
.press {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.press__row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.press__row span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.press__row i {
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   LEAD MAGNET
============================================================ */
.lead { padding: 140px 0; }
.lead__inner {
  background: linear-gradient(135deg, var(--bg-3) 0%, #1a1418 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lead__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,106,0.08), transparent 60%);
  pointer-events: none;
}
.lead__copy { position: relative; z-index: 1; }
.lead__sub {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-top: 24px;
  font-weight: 300;
}
.lead__form {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.lead__form input {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.lead__form input::placeholder { color: var(--ink-fade); }
.lead__form input:focus { outline: none; border-color: var(--brass); background: rgba(0,0,0,0.5); }
.lead__form button {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--bone);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.lead__form button:hover { background: var(--brass); }
.lead__form button:hover svg { transform: translateX(4px); }
.lead__form button svg { transition: transform .4s var(--ease); }
.lead__msg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.04em;
  min-height: 18px;
  padding-left: 8px;
}

@media (max-width: 880px) {
  .lead__inner { grid-template-columns: 1fr; padding: 56px 32px; gap: 36px; }
}

/* ============================================================
   BOOK / CTA
============================================================ */
.book {
  padding: 140px 0;
  text-align: center;
  position: relative;
}
.book__inner { max-width: 1100px; margin: 0 auto; }
.book__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 32px 0 32px;
  display: flex; flex-direction: column; align-items: center;
}
.book__title span:nth-child(2) em {
  color: var(--brass);
  font-style: italic;
  font-weight: 400;
}
.book__sub {
  color: var(--ink-dim);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.6;
  font-weight: 300;
}
.book__ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer__inner { position: relative; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer__brand {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer__mark {
  height: 72px;
  width: auto;
  max-width: 90px;
  display: block;
  object-fit: contain;
}
.footer__name {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink);
  font-weight: 600;
}
.footer__loc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 10px;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-fade);
  text-transform: uppercase;
}
.footer__giant {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(80px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  text-stroke: 1px var(--line);
  text-align: center;
  margin-top: 32px;
  margin-bottom: -28px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================================
   ASTERISK BURST (recurring brand element)
============================================================ */
.hero__burst {
  position: absolute;
  top: 200px; right: var(--pad-x);
  z-index: 3;
  color: #e07b6a; /* coral spark */
  animation: spin 12s linear infinite;
  filter: drop-shadow(0 0 18px rgba(224, 123, 106, 0.4));
  opacity: 0.85;
}
.show__burst {
  display: block;
  color: #e07b6a;
  margin-bottom: 18px;
  animation: spin 14s linear infinite;
  filter: drop-shadow(0 0 12px rgba(224, 123, 106, 0.35));
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .hero__burst { width: 56px; height: 56px; top: 72px; }
}

/* ============================================================
   VERBS SECTION (FIND-style word + image strip)
============================================================ */
.verbs {
  padding: 120px 0 40px;
  background: var(--bg);
  position: relative;
}
.verbs__header {
  margin-bottom: 64px;
  max-width: 1100px;
}
.verbs__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.verbs__title em { color: var(--brass); font-style: italic; font-weight: 400; }

.verb-row {
  display: block;
  position: relative;
  border-top: 1px solid var(--line);
  height: clamp(160px, 18vw, 240px);
  overflow: hidden;
  cursor: pointer;
}
.verb-row:last-of-type { border-bottom: 1px solid var(--line); }

/* Image strip layer — sits BEHIND the row, animates on hover */
.verb-row__strip {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
}
.verb-row:hover .verb-row__strip { opacity: 1; }

.verb-row__strip-track {
  display: flex;
  height: 100%;
  width: max-content;
  transform: translateX(0);
  transition: transform 1.4s var(--ease);
  gap: 18px;
  padding: 0 60px;
}
.verb-row:hover .verb-row__strip-track {
  transform: translateX(calc(-25% - 18px));
}
.verb-row__img {
  height: 100%;
  width: clamp(280px, 28vw, 400px);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  filter: saturate(0.85) contrast(1.05) brightness(0.62);
  border-radius: 4px;
}

/* Main content layer — sits OVER the strip */
.verb-row__main {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 80px 1fr auto 60px;
  gap: 40px;
  align-items: center;
  transition: padding-left .5s var(--ease);
}
.verb-row:hover .verb-row__main { padding-left: calc(var(--pad-x) + 16px); }

.verb-row__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-fade);
  transition: color .4s var(--ease);
}
.verb-row:hover .verb-row__num { color: var(--brass); }

.verb-row__copy p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 460px;
  font-weight: 300;
  transition: color .4s var(--ease), opacity .4s var(--ease);
}
.verb-row:hover .verb-row__copy p { color: var(--ink); opacity: 0.9; }

.verb-row__word {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.verb-row__word span {
  display: inline-block;
  position: relative;
  transition: transform .6s var(--ease);
}
.verb-row:hover .verb-row__word span {
  transform: translateX(-12px);
}
/* Underline that grows on hover */
.verb-row__word::after {
  content: '';
  position: absolute;
  left: 0; right: 8%;
  bottom: 0.18em;
  height: 4px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease);
}
.verb-row:hover .verb-row__word::after { transform: scaleX(1); }

.verb-row__arrow {
  display: flex; justify-content: flex-end;
  color: var(--ink-dim);
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.verb-row:hover .verb-row__arrow {
  color: var(--brass);
  transform: translateX(10px);
}

@media (max-width: 880px) {
  .verb-row { height: auto; padding: 36px 0; }
  .verb-row__main {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .verb-row__copy p { max-width: none; }
  .verb-row__word { font-size: clamp(56px, 14vw, 84px); }
  .verb-row__arrow { display: none; }
  /* Mobile: always show strip subtly behind content */
  .verb-row__strip { opacity: 0.18; }
  .verb-row:hover .verb-row__strip { opacity: 0.35; }
}

/* ============================================================
   PROCESS SECTION (numbered steps with parallax bg)
============================================================ */
.process {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  background: var(--bg-2);
}
.process__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process__bg-img {
  position: absolute;
  top: -10%; right: -8%;
  width: 60%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.65) contrast(1.05) brightness(0.32);
  mask-image: linear-gradient(90deg, transparent 0%, #000 50%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 50%, #000 100%);
}
.process__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,18,0.95) 0%, rgba(15,15,18,0.6) 50%, rgba(15,15,18,0.7) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(15,15,18,0.3) 100%);
}
.process__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.process__head {
  position: sticky;
  top: 120px;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7.6vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 24px;
}
.process__title span { display: block; }
.process__title em {
  color: var(--brass);
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.process__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 6px;
  background: var(--brass);
  opacity: 0.35;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 28px;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--brass);
  padding-top: 6px;
}
.process-step__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 460px;
}

@media (max-width: 980px) {
  .process__inner { grid-template-columns: 1fr; gap: 56px; }
  .process__head { position: static; }
  .process__bg-img { width: 90%; opacity: 0.4; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
