/* =========================================
   FIRM FOUNDATION MEDIA — Editorial Cinematic
   ========================================= */

:root {
  --bg: #0a0908;
  --bg-2: #111110;
  --bg-3: #1a1917;
  --ink: #f4f1ec;
  --ink-dim: #b8b2a7;
  --ink-mute: #6e6a62;
  --line: #2a2824;
  --accent: #c9b48a; /* champagne */
  --accent-2: #8a7a5c;

  --serif: "Cormorant Garamond", "Cormorant", "Bodoni Moda", "Times New Roman", serif;
  --display: "Italiana", "Cormorant Garamond", "Bodoni Moda", serif;
  --sans: "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* hide native cursor when custom cursor is on */
body.custom-cursor, body.custom-cursor * { cursor: none !important; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* film grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================
   TYPEWRITER
   ========================================= */
.typewriter {
  position: relative;
  display: inline-block;
  white-space: pre;
  text-align: center;
  vertical-align: baseline;
}
.typewriter-ghost {
  visibility: hidden;
  pointer-events: none;
  display: inline-block;
}
.typewriter-inner {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: pre;
}
.typewriter-text {
  display: inline-block;
}
.typewriter-cursor {
  display: inline-block;
  width: 0.045em;
  height: 0.78em;
  margin-left: 0.04em;
  align-self: center;
  background: currentColor;
  animation: tw-blink 0.9s steps(2, end) infinite;
}
@keyframes tw-blink {
  50% { opacity: 0; }
}

/* =========================================
   NAV
   ========================================= */
:root { --nav-h: 72px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: var(--nav-h);
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--ink);
}

.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(1);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 38px;
  justify-self: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 0.6; }

.nav-meta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-meta .ig { font-style: italic; font-family: var(--display); letter-spacing: 0.05em; text-transform: none; font-size: 14px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  overflow: hidden;
  background: var(--bg);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  filter: saturate(0.9) contrast(1.03) brightness(0.82);
}
.hero-video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(10,9,8,0) 40%, rgba(10,9,8,0.30) 85%, rgba(10,9,8,0.55) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.30) 0%, rgba(10,9,8,0.05) 30%, rgba(10,9,8,0.10) 70%, rgba(10,9,8,0.55) 100%);
}

.hero.has-video > *:not(.hero-video-wrap) {
  position: relative;
  z-index: 1;
}

.hero.has-video .hero-title,
.hero.has-video .hero-sub,
.hero.has-video .hero-estd,
.hero.has-video .hero-corner-l,
.hero.has-video .hero-corner-r,
.hero.has-video .hero-scroll {
  text-shadow: 0 1px 30px rgba(0,0,0,0.35);
}

.hero-estd {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero-estd .mono {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  text-align: center;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: clamp(64px, 12vw, 200px);
  margin: 0;
  padding: 0 0.12em;
  max-width: 100%;
  word-break: keep-all;
}

.hero-title .row {
  display: block;
  position: relative;
  min-height: 1em;
}

.hero-title .row em {
  font-style: italic;
  font-family: "Italiana", var(--display);
  padding-right: 0.12em;
}

.hero-sub {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-sub .dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; display: inline-block; }
.hero-sub em { font-family: var(--display); font-style: italic; text-transform: none; letter-spacing: 0.02em; font-size: 14px; color: var(--ink); }

.hero-mono {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  opacity: 0.85;
}

.hero-corner-l, .hero-corner-r {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.7;
}
.hero-corner-r { text-align: right; }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-bottom {
  margin-top: auto;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  z-index: 2;
  padding-top: 60px;
}
.hero-bottom .hero-corner-r { justify-self: end; }
.hero-bottom .hero-scroll { justify-self: center; }

/* =========================================
   SECTIONS
   ========================================= */
section { padding: 140px 40px; position: relative; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ink-mute);
}

.section-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
  max-width: 1100px;
}
.section-h em { font-style: italic; }

/* =========================================
   MARQUEE
   ========================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 80s linear infinite;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  width: max-content;
}
.marquee-track .star {
  color: var(--accent);
  font-style: normal;
  font-size: 0.42em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.marquee-track .word { line-height: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   FEATURED WORK
   ========================================= */
.work {
  display: grid;
  gap: 120px;
}
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.work-row.flip { grid-template-columns: 1fr 1fr; }
.work-row.flip .work-meta { order: 2; }
.work-row.flip .work-img { order: 1; }

.work-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, #1f1d1a 0%, #2a2824 50%, #15140f 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  color: inherit;
  text-decoration: none;
}
.work-img.tall { aspect-ratio: 3 / 4; }
.work-img.wide { aspect-ratio: 16 / 10; }
.work-img.full { aspect-ratio: 21 / 9; }

.work-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02) brightness(0.92);
  z-index: 1;
}

.work-img:has(.work-video) .work-img-label {
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10,9,8,0) 0%, rgba(10,9,8,0.6) 100%);
}
.work-img:has(.work-video):hover .work-img-label { opacity: 1; }

.work-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.work-img-label::before {
  content: '+';
  position: absolute;
  top: 16px;
  left: 16px;
  font-style: normal;
  font-size: 14px;
  font-family: var(--sans);
}
.work-img-label::after {
  content: '+';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-style: normal;
  font-size: 14px;
  font-family: var(--sans);
}

.work-meta { padding-bottom: 8px; }
.work-meta .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.work-meta h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.work-meta h3 em { font-style: italic; }
.work-meta .specs {
  display: flex;
  gap: 28px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.work-meta p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 18px;
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: gap 0.3s, border-color 0.3s;
}
.work-link:hover { gap: 22px; border-bottom-color: var(--accent); }
.work-link .arr { font-family: var(--display); font-style: italic; font-size: 14px; }

/* =========================================
   SERVICES
   ========================================= */
.services-list {
  border-top: 1px solid var(--line);
}
.svc {
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  transition: padding 0.5s ease;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.svc:hover { padding: 56px 0; }
.svc:hover .svc-bg { opacity: 0.08; }

.svc-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.svc-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.svc-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.svc-title em { font-style: italic; }
.svc-desc {
  color: var(--ink-dim);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  max-width: 420px;
}
a.svc {
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.svc-arr {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  transition: transform 0.4s;
}
.svc:hover .svc-arr { transform: translateX(8px); }

/* =========================================
   ABOUT / SPLIT
   ========================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, #1f1d1a 0%, #2a2824 50%, #15140f 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.split-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  display: block;
  filter: saturate(0.95) contrast(1.02) brightness(0.96);
  transition: filter 0.6s ease, transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.split-img.shimmer:hover .split-img-photo {
  filter: saturate(1.08) contrast(1.06) brightness(1.06);
  transform: scale(1.015);
}

/* slow ambient diagonal sheen — always running, more visible on hover */
.shimmer-sheen {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 240, 210, 0.0) 45%,
    rgba(255, 240, 210, 0.10) 50%,
    rgba(201, 180, 138, 0.18) 52%,
    rgba(255, 240, 210, 0.10) 54%,
    transparent 65%
  );
  background-size: 240% 240%;
  background-position: 100% 0%;
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: shimmerSheen 7s linear infinite;
}
@keyframes shimmerSheen {
  0%   { background-position: 200% -50%; }
  100% { background-position: -100% 150%; }
}
.split-img.shimmer:hover .shimmer-sheen {
  opacity: 1;
  animation-duration: 3.5s;
}

/* cursor-following warm spotlight */
.shimmer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(
    circle 320px at var(--mx) var(--my),
    rgba(255, 232, 190, 0.22) 0%,
    rgba(201, 180, 138, 0.14) 25%,
    rgba(255, 232, 190, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
}
.split-img.shimmer:hover .shimmer-glow { opacity: 1; }

/* fine sparkle highlight near cursor */
.split-img.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle 1.5px at var(--mx) calc(var(--my) - 18px), rgba(255,245,220,.95) 0 60%, transparent 70%),
    radial-gradient(circle 1px   at calc(var(--mx) + 22px) calc(var(--my) + 10px), rgba(255,245,220,.85) 0 60%, transparent 70%),
    radial-gradient(circle 0.8px at calc(var(--mx) - 28px) calc(var(--my) + 22px), rgba(255,245,220,.75) 0 60%, transparent 70%),
    radial-gradient(circle 1.2px at calc(var(--mx) + 8px) calc(var(--my) - 30px), rgba(255,245,220,.9) 0 60%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  filter: blur(0.3px);
}
.split-img.shimmer:hover::after { opacity: 1; animation: sparkleFlicker 1.6s ease-in-out infinite; }
@keyframes sparkleFlicker {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

.split-img .work-img-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  top: auto;
  left: auto;
  inset: auto;
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--sans);
  font-style: normal;
  background: rgba(10,9,8,0.6);
  padding: 8px 12px;
}
.split-img .work-img-label::before,
.split-img .work-img-label::after { display: none; }
.split-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.split-text h2 em { font-style: italic; }
.split-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 24px;
  max-width: 520px;
}
.impact-word {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
  opacity: 0;
  transform: scale(2.2);
  filter: blur(8px);
  transition: none;
  transform-origin: center 60%;
}
.impact-word.in {
  animation: impactThud 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes impactThud {
  0%   { opacity: 0;   transform: scale(2.4); filter: blur(10px); letter-spacing: 0.08em; }
  55%  { opacity: 1;   transform: scale(0.92); filter: blur(0); letter-spacing: -0.01em; }
  72%  { transform: scale(1.06); }
  100% { opacity: 1;   transform: scale(1);    filter: blur(0); letter-spacing: 0.005em; }
}
.signature {
  font-family: "Italiana", var(--display);
  font-style: italic;
  font-size: 38px;
  color: var(--ink);
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--bg-2);
}

.reviews-avg {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: -8px 0 56px;
  font-family: var(--sans);
  flex-wrap: wrap;
}
.reviews-avg .ra-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-family: var(--display);
}
.reviews-avg .ra-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(
    100deg,
    #b8923d 0%,
    #d4b061 25%,
    #fff5d0 45%,
    #d4b061 65%,
    #b8923d 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(245, 210, 130, 0.4),
    0 0 38px rgba(220, 170, 80, 0.25);
  filter: drop-shadow(0 0 10px rgba(245, 210, 130, 0.35));
  animation: goldSweep 5.5s linear infinite;
}
.reviews-avg .ra-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.t-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.t-item {
  border-bottom: 1px solid var(--line);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  transition: background 0.5s ease;
}
.t-item.shimmer:hover { background: rgba(201, 180, 138, 0.025); }

.t-item .t-meta,
.t-item .t-quote,
.t-item .t-stars { position: relative; z-index: 2; }

/* slow ambient diagonal sheen — intensifies on hover */
.t-sheen {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(201, 180, 138, 0.06) 50%,
    rgba(255, 240, 210, 0.10) 52%,
    rgba(201, 180, 138, 0.06) 54%,
    transparent 66%
  );
  background-size: 240% 240%;
  background-position: 200% -50%;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: shimmerSheen 6s linear infinite;
  animation-play-state: paused;
}
.t-item.shimmer:hover .t-sheen {
  opacity: 1;
  animation-play-state: running;
}

/* cursor-following warm glow */
.t-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle 380px at var(--mx) var(--my),
    rgba(201, 180, 138, 0.14) 0%,
    rgba(201, 180, 138, 0.06) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.t-item.shimmer:hover .t-glow { opacity: 1; }

/* subtle text + stars accent on hover */
.t-item.shimmer:hover .t-quote { color: #fffaf0; }
.t-item.shimmer .t-quote { transition: color 0.5s ease; }
.t-item.shimmer:hover .t-stars { color: #e6d4a8; }
.t-item.shimmer .t-stars { transition: color 0.5s ease; }
.t-meta {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.t-meta .who {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 8px;
  display: block;
}
.t-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.t-quote em { font-style: italic; }
.t-stars {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-align: right;
}

/* =========================================
   PATH CHOOSER
   ========================================= */
.path-chooser {
  padding-top: 60px;
  padding-bottom: 80px;
}
.path-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-align: center;
}
.path-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 64px;
}
.path-h em { font-style: italic; }

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.path-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 56px 48px 48px;
  min-height: 360px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s;
  isolation: isolate;
}
.path-card:hover {
  transform: translateY(-4px);
}
.path-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
}

.path-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.path-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.path-title em { font-style: italic; }

.path-sub {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0;
}
.path-cta {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  align-self: flex-start;
  transition: gap 0.4s, border-color 0.4s;
}
.path-cta .arr { font-family: var(--display); font-style: italic; font-size: 14px; letter-spacing: 0; text-transform: none; }
.path-card:hover .path-cta { gap: 22px; border-bottom-color: var(--ink); }

/* PERSONAL — quiet champagne */
.path-personal {
  background: linear-gradient(165deg, #1f1d1a 0%, #15140f 100%);
}
.path-personal .path-card-glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px circle at 20% 0%, rgba(201, 180, 138, 0.08), transparent 60%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s;
}
.path-personal:hover .path-card-glow { opacity: 1; }
.path-personal:hover { border-color: rgba(201, 180, 138, 0.4); }

/* COMMERCIAL — shimmering gold */
.path-commercial {
  background:
    radial-gradient(circle at 30% 0%, rgba(240, 200, 110, 0.10), transparent 55%),
    linear-gradient(165deg, #1a1612 0%, #0f0d0a 100%);
  border-color: rgba(212, 176, 97, 0.35);
}
.path-commercial:hover {
  border-color: rgba(245, 210, 130, 0.7);
}
.path-tag-gold {
  color: #d4b061;
  letter-spacing: 0.34em;
}
.path-title-gold {
  color: #f3e7c4;
}
.gold-shine {
  background: linear-gradient(
    100deg,
    #b8923d 0%,
    #d4b061 25%,
    #fff5d0 45%,
    #d4b061 65%,
    #b8923d 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 24px rgba(245, 210, 130, 0.35),
    0 0 60px rgba(220, 170, 80, 0.25);
  filter: drop-shadow(0 0 14px rgba(245, 210, 130, 0.35));
  animation: goldSweep 5.5s linear infinite;
}
.silver-shine {
  background: linear-gradient(
    100deg,
    #8a857c 0%,
    #cfc9bd 25%,
    #ffffff 45%,
    #cfc9bd 65%,
    #8a857c 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 22px rgba(255, 255, 255, 0.20),
    0 0 52px rgba(220, 220, 220, 0.12);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  animation: goldSweep 5.5s linear infinite;
}
@keyframes goldSweep {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.path-cta-gold {
  background: linear-gradient(180deg, #f7e6a8 0%, #d4b061 55%, #b8923d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: rgba(212, 176, 97, 0.45);
  text-shadow: 0 0 18px rgba(240, 200, 110, 0.4);
  filter: drop-shadow(0 0 10px rgba(240, 200, 110, 0.3));
}
.path-commercial:hover .path-cta-gold {
  border-bottom-color: #f0d68a;
  filter: drop-shadow(0 0 20px rgba(245, 210, 130, 0.6));
}

.path-card-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(245, 210, 130, 0.0) 20%,
    rgba(245, 210, 130, 0.18) 50%,
    rgba(245, 210, 130, 0.0) 80%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
  animation: cardShine 6s ease-in-out infinite;
}
.path-card-shine-silver {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 20%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.0) 80%,
    transparent 100%
  );
}
@keyframes cardShine {
  0%, 18%   { left: -120%; }
  55%       { left: 160%; }
  100%      { left: 160%; }
}

.path-card-aura {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 210, 130, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: auraDrift 7s ease-in-out infinite;
}
.path-card-aura-silver {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 55%);
}
@keyframes auraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50%      { transform: translate(6%, -3%) scale(1.08); opacity: 1; }
}

@media (max-width: 800px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-card { padding: 44px 32px 36px; min-height: auto; }
}

/* =========================================
   INVESTMENT
   ========================================= */
.invest-divider {
  display: flex;
  justify-content: center;
  margin: 120px 0 90px;
}
.invest-divider-mark {
  font-family: var(--display);
  color: var(--accent);
  letter-spacing: 0.6em;
  font-size: 22px;
}
.section-label-sub { margin-top: 0; }
.invest-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 640px;
  margin: -8px 0 56px;
}
.invest-card .price-type {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
}
.invest-card .price-terms {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 6px;
  margin-bottom: 6px;
}
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.invest-card {
  background: var(--bg);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.4s, border-color 0.4s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.invest-card:hover {
  background: var(--bg-3);
  transform: translateY(-3px);
}
.invest-card.feature {
  background: var(--bg);
  border: 1px solid rgba(212, 176, 97, 0.4);
}
.invest-card.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(245, 210, 130, 0.0) 20%,
    rgba(245, 210, 130, 0.14) 50%,
    rgba(245, 210, 130, 0.0) 80%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 0;
  animation: cardShine 6s ease-in-out infinite;
}
.invest-card.feature::after {
  content: 'Recommended';
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 12px 6px;
  border: 1px solid rgba(212, 176, 97, 0.5);
  background: linear-gradient(180deg, #f7e6a8 0%, #d4b061 55%, #b8923d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(240, 200, 110, 0.4);
  filter: drop-shadow(0 0 8px rgba(240, 200, 110, 0.25));
  z-index: 3;
}
.invest-card.feature:hover {
  border-color: rgba(245, 210, 130, 0.7);
}
.invest-card > *:not(::before):not(::after) {
  position: relative;
  z-index: 1;
}
.invest-card .tier,
.invest-card h4,
.invest-card .price-type,
.invest-card .price,
.invest-card .price-terms,
.invest-card ul,
.invest-card .work-link {
  position: relative;
  z-index: 1;
}
.invest-card .tier {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
}
.invest-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  margin: 0 0 16px;
}
.invest-card h4 em { font-style: italic; }
.invest-card .price {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 32px;
}
.invest-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.invest-card li {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
}
.invest-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: var(--bg);
  padding: 200px 40px;
  text-align: center;
}
.contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.contact h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 11vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 60px;
}
.contact h2 em { font-style: italic; }
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212, 176, 97, 0.55);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s, border-color 0.3s, text-shadow 0.3s;
  background: linear-gradient(180deg, #f7e6a8 0%, #d4b061 55%, #b8923d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 16px rgba(240, 200, 110, 0.45),
    0 0 38px rgba(220, 170, 80, 0.28);
  filter: drop-shadow(0 0 10px rgba(240, 200, 110, 0.28));
  animation: inquiryGoldPulse 3.6s ease-in-out infinite;
}
.contact-cta:hover { gap: 28px; border-bottom-color: #f0d68a; filter: drop-shadow(0 0 18px rgba(245, 210, 130, 0.55)); }

.contact-meta {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 100px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-meta .v {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 6px;
  display: block;
}

/* =========================================
   INQUIRY FORM
   ========================================= */
.inquiry {
  margin-top: 140px;
  padding-top: 100px;
  border-top: 1px solid var(--line);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.inquiry-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.inquiry-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.inquiry-h em { font-style: italic; }
.inquiry-glow {
  color: #f0d68a;
  background: linear-gradient(180deg, #f7e6a8 0%, #d4b061 55%, #b8923d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(240, 200, 110, 0.55),
    0 0 42px rgba(220, 170, 80, 0.35),
    0 0 80px rgba(200, 150, 60, 0.18);
  filter: drop-shadow(0 0 14px rgba(240, 200, 110, 0.35));
  animation: inquiryGoldPulse 3.6s ease-in-out infinite;
}
@keyframes inquiryGoldPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(240, 200, 110, 0.28));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(245, 210, 130, 0.55));
  }
}

.inquiry-sub {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 0 60px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.if-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.if-row:nth-child(odd) { padding-right: 40px; }
.if-row:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line); }
.if-row-full { grid-column: 1 / -1; padding-right: 0 !important; padding-left: 0 !important; border-left: none !important; }

.if-label {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.if-row input,
.if-row select,
.if-row textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  padding: 4px 0;
  width: 100%;
  resize: vertical;
}
.if-row input::placeholder,
.if-row textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
  opacity: 0.6;
}
.if-row select { font-style: italic; appearance: none; }
.if-row select option { background: var(--bg); color: var(--ink); font-style: normal; }
.if-row input:focus,
.if-row select:focus,
.if-row textarea:focus {
  color: var(--accent);
}

.if-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 36px 0 0;
}
.if-note {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 360px;
  line-height: 1.5;
}
.if-note em { color: var(--ink); font-style: italic; }

.if-submit {
  position: relative;
  background: linear-gradient(135deg, #f0d68a 0%, #c9b48a 45%, #a88f5a 100%);
  border: none;
  color: #1a1408;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(240, 214, 138, 0.4),
    0 0 24px rgba(240, 214, 138, 0.35),
    0 0 60px rgba(240, 214, 138, 0.25),
    inset 0 1px 0 rgba(255, 245, 210, 0.6);
  transition: gap 0.3s ease, box-shadow 0.4s ease, transform 0.3s ease;
  animation: ifSubmitPulse 2.4s ease-in-out infinite;
  z-index: 1;
}
.if-submit::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(240, 214, 138, 0.55), rgba(240, 214, 138, 0) 70%);
  filter: blur(14px);
  z-index: -1;
  opacity: 0.85;
  animation: ifSubmitGlow 2.4s ease-in-out infinite;
}
.if-submit:hover {
  gap: 24px;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 234, 170, 0.7),
    0 0 36px rgba(255, 220, 130, 0.6),
    0 0 100px rgba(255, 215, 120, 0.45),
    inset 0 1px 0 rgba(255, 250, 220, 0.8);
}
.if-submit .arr {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: #1a1408;
  transition: transform 0.3s ease;
}
.if-submit:hover .arr { transform: translateX(4px); }

@keyframes ifSubmitPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(240, 214, 138, 0.4),
      0 0 24px rgba(240, 214, 138, 0.35),
      0 0 60px rgba(240, 214, 138, 0.25),
      inset 0 1px 0 rgba(255, 245, 210, 0.6);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 230, 160, 0.6),
      0 0 36px rgba(255, 220, 140, 0.55),
      0 0 90px rgba(255, 210, 110, 0.4),
      inset 0 1px 0 rgba(255, 250, 220, 0.8);
  }
}
@keyframes ifSubmitGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

@media (max-width: 800px) {
  .inquiry-form { grid-template-columns: 1fr; }
  .if-row:nth-child(odd) { padding-right: 0; }
  .if-row:nth-child(even) { padding-left: 0; border-left: none; }
  .if-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
}
.foot {
  border-top: 1px solid var(--line);
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.foot-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
}
.foot-mid {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot-right {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.foot-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot-creed {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
  flex: 1;
  background: linear-gradient(
    100deg,
    #b8923d 0%,
    #d4b061 25%,
    #fff5d0 45%,
    #d4b061 65%,
    #b8923d 100%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(245, 210, 130, 0.35),
    0 0 42px rgba(220, 170, 80, 0.22);
  filter: drop-shadow(0 0 10px rgba(245, 210, 130, 0.3));
  animation: goldSweep 5.5s linear infinite;
}

/* huge wordmark */
.foot-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(520px, 78vh, 880px);
  background: #000;
}
.foot-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(0.85) contrast(1.04) brightness(0.6);
}
.foot-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.55) 100%);
}
.foot-word {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(60px, 14vw, 240px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 140px 40px 80px;
  color: var(--ink);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.55);
}
.foot-word em { font-style: italic; }

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.15s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.cursor-ring.label {
  width: 88px; height: 88px;
  background: rgba(201, 180, 138, 0.12);
  backdrop-filter: blur(2px);
  border-color: var(--accent);
  color: var(--accent);
}
.cursor-ring.link {
  width: 56px; height: 56px;
}
.cursor-ring.reticle {
  width: 56px; height: 56px;
  border: none;
  background: none;
}
.cursor-ring.reticle::before, .cursor-ring.reticle::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.cursor-ring.reticle::before {
  width: 100%; height: 1px;
  top: 50%; left: 0;
}
.cursor-ring.reticle::after {
  width: 1px; height: 100%;
  left: 50%; top: 0;
}
.cursor-dot.hidden, .cursor-ring.hidden { opacity: 0; }

/* reticle corners */
.cursor-corners {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  width: 56px; height: 56px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s, width 0.25s, height 0.25s;
}
.cursor-corners.on { opacity: 1; }
.cursor-corners span {
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--accent);
}
.cursor-corners span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.cursor-corners span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.cursor-corners span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.cursor-corners span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-mask {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.04em 0.12em 0.04em 0.04em;
  margin: -0.04em -0.12em -0.04em -0.04em;
}
.reveal-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.reveal-mask.in::after { transform: translateX(101%); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  section { padding: 80px 20px; }
  .work-row, .work-row.flip { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .invest-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 40px 1fr auto; }
  .svc-desc { grid-column: 1 / -1; }
  .t-item { grid-template-columns: 1fr; gap: 20px; }
  .t-stars { text-align: left; }
  .foot { grid-template-columns: 1fr; text-align: center; }
  .foot-mid, .foot-right { text-align: center; }
  .hero-corner-l, .hero-corner-r, .hero-scroll { display: none; }
}
