/* =========================================================
   Studio 21 — bold modernist, editorial menu, animated entry
   Palette: cream / ink / chartreuse / coral
   ========================================================= */

:root {
  --cream: #F2EEE5;
  --cream-2: #E8E2D3;
  --ink: #0E0E0C;
  --ink-soft: #1A1A18;
  --chartreuse: #D6FF3D;
  --coral: #FF5A36;
  --rule: rgba(14,14,12,.14);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Fraunces", "Times New Roman", serif;

  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 22px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: .95; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 10px 14px; z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 500;
  font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover { background: var(--coral); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-pill { background: var(--chartreuse); color: var(--ink); }
.btn-pill:hover { background: var(--ink); color: var(--chartreuse); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  animation: nav-drop .8s var(--ease) both;
}
@keyframes nav-drop { from { transform: translateY(-100%); } to { transform: none; } }

.nav-left { display: flex; align-items: center; gap: 16px; }

.nav-logo { display: inline-flex; }
.nav-logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.05em;
  display: inline-flex; align-items: baseline;
}
.nav-logo-mark .slash {
  display: inline-block;
  color: var(--coral);
  transition: transform .5s var(--ease), color .25s var(--ease);
  transform-origin: 50% 60%;
}
.nav-logo:hover .slash { transform: rotate(360deg); color: var(--ink); }

/* live status pill */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6BFF7A;
  box-shadow: 0 0 0 0 rgba(107,255,122,.6);
  animation: status-pulse 2.2s infinite ease-in-out;
}
.status.closed { background: #2a0f0d; color: #ff8e74; }
.status.closed .status-dot { background: var(--coral); box-shadow: 0 0 0 0 rgba(255,90,54,.55); }
@keyframes status-pulse {
  0%,100% { box-shadow: 0 0 0 0 currentColor; opacity: .9; }
  50%     { box-shadow: 0 0 0 6px transparent; opacity: 1; }
}

/* nav links — number + letter-rise hover */
.nav-links {
  display: flex; gap: 6px; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.nav-links a {
  position: relative;
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .25s var(--ease);
}
.nav-links a::before {
  content: attr(data-num);
  font-family: var(--font-serif); font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 11px;
  color: var(--coral);
  transform: translateY(-1px);
  transition: color .25s var(--ease);
}
.nav-links a:hover { background: var(--ink); color: var(--cream); }
.nav-links a:hover::before { color: var(--chartreuse); }

/* letter-rise label */
.nav-links .rh {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.05em;
  line-height: 1.05;
}
.nav-links .rh-a,
.nav-links .rh-b {
  display: block;
  transition: transform .35s var(--ease);
}
.nav-links .rh-b {
  position: absolute; left: 0; top: 100%;
  font-weight: 700;
}
.nav-links a:hover .rh-a { transform: translateY(-105%); }
.nav-links a:hover .rh-b { transform: translateY(-100%); }

/* scroll-aware active state */
.nav-links a.active { background: color-mix(in srgb, var(--ink) 8%, transparent); }
.nav-links a.active::before { color: var(--ink); }

/* book button — animated arrow */
.btn-book { padding-right: 18px; gap: .5em; }
.btn-book .btn-arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn-book:hover .btn-arrow {
  transform: translate(4px, -4px) rotate(45deg);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 520px) {
  .status { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(40px, 7vw, 90px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}

/* ---- video hero variant ---- */
.hero--video {
  max-width: none;
  padding-left: var(--pad);
  padding-right: var(--pad);
  color: var(--cream);
  isolation: isolate;
  min-height: min(100svh, 900px);
  display: flex; align-items: stretch;
}
.hero--video .hero-grid {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* bright, slightly washed — gives black type a light backdrop */
  filter: brightness(1.25) contrast(.92) saturate(.9);
  animation: fade-in 1.4s var(--ease) both;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    /* cream wash, denser bottom-left where the headline sits */
    linear-gradient(115deg, rgba(242,238,229,.65) 0%, rgba(242,238,229,.40) 38%, rgba(242,238,229,.18) 62%, rgba(242,238,229,.35) 100%),
    /* whisper of cream over everything */
    linear-gradient(180deg, rgba(242,238,229,.18), rgba(242,238,229,.10));
  pointer-events: none;
}
/* hero stays ink-on-cream-wash even with video behind it */
.hero--video { color: var(--ink); }
.hero--video .hero-eyebrow { color: var(--ink-soft); }
.hero--video .hero-sub { color: var(--ink-soft); }
.hero--video .hero-big-num {
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}
.hero--video .hero-big-label { color: var(--ink-soft); }
/* buttons stay in original ink-on-cream treatment */

/* Reduced-motion fallback: poster only (accessibility — do not override) */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-bg {
    background:
      var(--ink)
      url("media/hero-poster.jpg") center/cover no-repeat;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  grid-template-rows: auto 1fr auto;
  gap: clamp(24px, 4vw, 56px) clamp(24px, 5vw, 80px);
  align-items: end;
}
.hero-eyebrow {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  animation: fade-up .9s .1s var(--ease) both;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--coral) 18%, transparent);
  animation: pulse 2.6s infinite ease-in-out;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--coral) 18%, transparent); }
  50% { box-shadow: 0 0 0 12px color-mix(in srgb, var(--coral) 0%, transparent); }
}

.hero-title {
  grid-column: 1 / 2;
  font-size: clamp(58px, 11.5vw, 188px);
  font-weight: 800;
  display: flex; flex-direction: column;
  letter-spacing: -.055em;
}
.hero-line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-line .reveal-word {
  display: inline-block;
  transform: translateY(110%) rotate(2deg);
  opacity: 0;
  animation: word-rise .9s var(--ease) forwards;
}
.hero-line:nth-child(1) .reveal-word { animation-delay: .15s; }
.hero-line:nth-child(2) .reveal-word { animation-delay: .28s; }
.hero-line:nth-child(3) .reveal-word { animation-delay: .42s; }
.hero-line:nth-child(4) .reveal-word { animation-delay: .56s; }
@keyframes word-rise {
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero-line--italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.015em;
  margin-left: .12em;
  font-variation-settings: "SOFT" 100;
}
.hero-line--accent .reveal-word {
  background: var(--chartreuse);
  padding: 0 .22em;
  transform: translateY(110%) rotate(-3.5deg);
}
.hero-line--accent .reveal-word { animation-name: word-rise-accent; }
@keyframes word-rise-accent {
  to { transform: translateY(0) rotate(-1.6deg); opacity: 1; }
}

.hero-meta {
  grid-column: 1 / 2;
  max-width: 560px;
  display: flex; flex-direction: column; gap: 22px;
  margin-top: 12px;
  animation: fade-up 1s .8s var(--ease) both;
}
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; margin: 0; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-big {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: flex-end;
  line-height: .8;
  animation: fade-in 1.2s .9s var(--ease) both;
}
.hero-big-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(180px, 26vw, 420px);
  letter-spacing: -.07em;
  color: var(--ink);
  position: relative;
}
.hero-big-num::after {
  content: "";
  position: absolute;
  inset: 18% -8% auto auto;
  width: 18%; height: 18%;
  border-radius: 50%;
  background: var(--coral);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-big-label {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.4vw, 36px);
  margin-top: 10px; margin-right: .5em;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 100;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title, .hero-meta { grid-column: 1 / -1; }
  .hero-big { grid-column: 1; grid-row: auto; align-items: flex-start; margin-top: 10px; }
  .hero-big-num { font-size: clamp(140px, 36vw, 260px); }
}

/* ---------- generic reveal ---------- */
@keyframes fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-line .reveal-word { transform: none; opacity: 1; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: inline-flex; gap: 28px;
  padding: 22px 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 50px);
  letter-spacing: -.04em;
  animation: scroll 36s linear infinite;
}
.marquee-track .ast { color: var(--chartreuse); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- section heads ---------- */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num   title"
    "lede  lede";
  gap: 6px 24px;
  align-items: end;
}
.section-head .num {
  grid-area: num;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px; letter-spacing: 0;
  color: var(--ink-soft);
  padding-bottom: 22px;
}
.section-head h2 {
  grid-area: title;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -.05em;
  font-weight: 800;
}
.section-head .section-lede {
  grid-area: lede;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  margin: 18px 0 0;
  color: var(--ink-soft);
}

/* ============================================================
   MENU — editorial rows, no cards
   ============================================================ */
.services { max-width: var(--maxw); margin: 0 auto; }
.menu {
  padding: 0 var(--pad) clamp(60px, 8vw, 110px);
  display: flex; flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(38px, 6vw, 72px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.row:first-child { border-top: 1px solid var(--ink); }
.row:last-of-type { border-bottom: 1px solid var(--rule); }

.row-head {
  display: flex; flex-direction: column; gap: 14px;
  position: sticky; top: 96px;
}
.row-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--coral);
  letter-spacing: -.01em;
  font-variation-settings: "SOFT" 100;
}
.row-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -.055em;
  line-height: .9;
}
.row-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 6px 0 0;
}
.row-flag {
  align-self: flex-start;
  margin-top: 6px;
  font-family: var(--font-serif); font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: 15px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
}

.row-list { list-style: none; padding: 0; margin: 0; }
.row-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  font-size: clamp(16px, 1.35vw, 19px);
}
.row-list li + li { border-top: 1px solid var(--rule); }
.row-list span {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -.005em;
}
.row-list i {
  display: block;
  height: 1px;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1.5px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  opacity: .35;
  transform: translateY(-4px);
}
.row-list b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

/* Feature row — dark background break */
.row--feature {
  background: var(--ink);
  color: var(--cream);
  border-top-color: var(--ink) !important;
  border-bottom: 1px solid var(--ink);
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
  margin: clamp(20px, 3vw, 36px) calc(var(--pad) * -1);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  border-radius: 0;
  position: relative;
}
.row--feature .row-title { color: var(--chartreuse); }
.row--feature .row-num { color: var(--chartreuse); opacity: .8; }
.row--feature .row-desc { color: color-mix(in srgb, var(--cream) 75%, transparent); }
.row--feature .row-list li + li { border-top-color: rgba(242,238,229,.18); }
.row--feature .row-list i { background-image: radial-gradient(circle, var(--cream) 1px, transparent 1.5px); opacity: .35; }
.row--feature .row-flag { border-bottom-color: var(--chartreuse); color: var(--chartreuse); }
/* keep the inner content within max width */
.row--feature {
  display: grid;
}
@media (min-width: 901px) {
  .row--feature {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 6vw, 96px);
    padding-left: max(var(--pad), calc((100vw - var(--maxw))/2 + var(--pad)));
    padding-right: max(var(--pad), calc((100vw - var(--maxw))/2 + var(--pad)));
  }
}

.menu-foot {
  margin: clamp(28px, 4vw, 48px) 0 0;
  font-family: var(--font-serif); font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
}

@media (max-width: 900px) {
  .row { grid-template-columns: 1fr; gap: 24px; }
  .row-head { position: static; }
  .row-title { font-size: clamp(38px, 11vw, 56px); }
  .row--feature { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); }
}

/* ---------- about ---------- */
.about { background: var(--cream-2); }
.about-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 80px);
}
.about-lede {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 12px;
  max-width: 22ch;
  font-weight: 400;
}
.about p { font-size: clamp(16px, 1.3vw, 18px); }

/* ---------- diptych break-out band ---------- */
.diptych {
  margin: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
  padding: 0;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 0;
  align-items: stretch;
  /* break out of the cream-2 wrap to full viewport width on the left */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /* but keep the right edge aligned to the page max-width's right gutter */
  padding-right: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
}
.diptych-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.diptych-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: contrast(1.05);
}
.diptych:hover .diptych-photo img { transform: scale(1.06); }

.diptych-card {
  background: var(--chartreuse);
  color: var(--ink);
  padding: clamp(24px, 3vw, 44px) clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease);
  overflow: hidden;
}
.diptych-card::before {
  /* big ghost numeral in the corner */
  content: "01";
  position: absolute;
  right: -.08em; bottom: -.22em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 18vw, 260px);
  line-height: 1;
  letter-spacing: -.08em;
  color: rgba(14,14,12,.08);
  pointer-events: none;
  transition: color .35s var(--ease);
}
.diptych-card:hover { background: var(--ink); color: var(--chartreuse); }
.diptych-card:hover::before { color: rgba(214,255,61,.10); }

.diptych-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.diptych-cap {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0;
  position: relative; z-index: 1;
}
.diptych-cap em {
  font-family: var(--font-serif); font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-weight: 400;
  letter-spacing: -.01em;
}
.diptych-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500; font-size: 14px;
  border-top: 1px solid currentColor;
  padding-top: 14px;
  position: relative; z-index: 1;
}
.diptych-arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.diptych-card:hover .diptych-arrow {
  transform: translate(4px, -4px) rotate(45deg);
}

.about-pillars-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

@media (max-width: 800px) {
  .diptych {
    grid-template-columns: 1fr;
    padding-right: 0;
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
  .diptych-photo { aspect-ratio: 4 / 3; }
}

.pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none; padding: 0; margin: 24px 0 0;
  border-top: 1px solid var(--rule);
}
.pillars li {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.pillars li:last-child { border-right: 0; }
.pillars b {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800; letter-spacing: -.035em;
}
.pillars span { color: var(--ink-soft); font-size: 15px; }

@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
  .pillars li { border-right: 0; border-bottom: 1px solid var(--rule); padding: 20px 0; }
  .pillars li:last-child { border-bottom: 0; }
}

/* ---------- team — interactive chairs stage ---------- */
.chairs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
}
.chairs-stage {
  position: relative;
  isolation: isolate;
}
.chairs-photo {
  position: relative;
  aspect-ratio: 1516 / 852;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(14,14,12,.18);
}
.chairs-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.chairs-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(14,14,12,.18) 100%);
  pointer-events: none;
}

/* Hotspot button */
.chair-spot {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: clamp(70px, 9vw, 120px);
  height: clamp(70px, 9vw, 120px);
  border-radius: 50%;
  background: var(--chartreuse);
  color: var(--ink);
  border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
  display: grid; place-items: center;
  overflow: hidden;
  z-index: 3;
  transition:
    width .45s var(--ease),
    height .45s var(--ease),
    background .35s var(--ease),
    box-shadow .35s var(--ease),
    color .35s var(--ease);
  box-shadow: 0 14px 30px rgba(14,14,12,.25);
  -webkit-tap-highlight-color: transparent;
}
.chair-spot:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

/* Pulsing ring — invitation to click */
.spot-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--chartreuse);
  animation: spot-pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes spot-pulse {
  0%   { transform: scale(.92); opacity: .9; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Number layer */
.spot-num {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  letter-spacing: -.05em;
  transition: opacity .3s var(--ease), transform .45s var(--ease);
}

/* Portrait layer — hidden until expand */
.spot-portrait {
  position: absolute; inset: 0;
  border-radius: 50%;
  background-size: cover; background-position: center 20%;
  background-color: var(--ink);
  background-clip: padding-box;
  border: 0 solid var(--chartreuse);
  box-sizing: border-box;
  opacity: 0;
  transform: scale(1.15);
  transition:
    opacity .4s var(--ease),
    transform .55s var(--ease),
    border-width .5s .1s var(--ease),
    border-color .35s var(--ease);
  z-index: 1;
}

/* "Meet X" tag under the circle */
.spot-label {
  position: absolute;
  left: 50%; bottom: -16px;
  transform: translate(-50%, 8px);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
  z-index: 4;
}

/* Hover (desktop) + Open (click) — same expanded state */
@media (hover: hover) {
  .chair-spot:hover {
    width: clamp(120px, 14vw, 200px);
    height: clamp(120px, 14vw, 200px);
  }
  .chair-spot:hover .spot-num    { opacity: 0; transform: scale(.5) rotate(-20deg); }
  .chair-spot:hover .spot-portrait { opacity: 1; transform: scale(1); border-width: 20px; }
  .chair-spot:hover .spot-label  { opacity: 1; transform: translate(-50%, 18px); }
  .chair-spot:hover .spot-ring   { animation: none; opacity: 0; }
}

.chair-spot.is-open {
  width: clamp(130px, 15vw, 220px);
  height: clamp(130px, 15vw, 220px);
  box-shadow: 0 18px 46px rgba(14,14,12,.35), 0 0 0 5px var(--coral);
}
.chair-spot.is-open .spot-num     { opacity: 0; transform: scale(.5) rotate(-20deg); }
.chair-spot.is-open .spot-portrait{ opacity: 1; transform: scale(1); border-width: 20px; border-color: var(--chartreuse); }
.chair-spot.is-open .spot-label   { opacity: 1; transform: translate(-50%, 18px); background: var(--coral); color: var(--ink); }
.chair-spot.is-open .spot-ring    { animation: none; opacity: 0; }

/* Panels — roll out */
.chairs-panels {
  display: flex; flex-direction: column;
}
.chair-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease), margin-top .4s var(--ease);
  overflow: hidden;
  margin-top: 0;
}
.chair-panel[hidden] { display: grid; }   /* keep visible for transition */
.chair-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 32px;
}
.panel-inner {
  min-height: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .45s .12s var(--ease), transform .55s .12s var(--ease);
}
.chair-panel.is-open .panel-inner {
  opacity: 1;
  transform: none;
}

/* notch connector pointing up at the photo */
.panel-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: calc(var(--panel-anchor, 50%));
  transform: translateX(-50%) rotate(45deg);
  width: 20px; height: 20px;
  background: var(--ink);
  border-radius: 4px;
  transition: left .5s var(--ease);
}

.panel-meta { display: flex; flex-direction: column; gap: 8px; }
.panel-role {
  font-family: var(--font-serif); font-style: italic; font-variation-settings: "SOFT" 100;
  color: var(--chartreuse);
  font-size: clamp(14px, 1.2vw, 17px);
}
.panel-meta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 78px);
  letter-spacing: -.05em;
  line-height: .9;
  color: var(--cream);
}
.panel-body { display: flex; flex-direction: column; gap: 16px; }
.panel-bio {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: color-mix(in srgb, var(--cream) 80%, transparent);
  max-width: 50ch;
}
.panel-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.panel-tags li {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(242,238,229,.25);
  border-radius: 999px;
  color: var(--cream);
}
.panel-book {
  background: var(--chartreuse); color: var(--ink);
  white-space: nowrap;
}
.panel-book:hover { background: var(--coral); }
.panel-book .btn-arrow { display: inline-block; transition: transform .35s var(--ease); }
.panel-book:hover .btn-arrow { transform: translate(4px, -4px) rotate(45deg); }

.panel-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(242,238,229,.25);
  color: var(--cream);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.panel-close:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); transform: rotate(90deg); }

@media (max-width: 800px) {
  .panel-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .panel-book { justify-self: stretch; text-align: center; justify-content: center; }
  .chair-spot { width: clamp(60px, 16vw, 90px); height: clamp(60px, 16vw, 90px); font-size: clamp(28px, 7vw, 40px); }
  .chair-spot.is-open { width: clamp(96px, 24vw, 130px); height: clamp(96px, 24vw, 130px); }
}

/* ---------- visit ---------- */
.visit { background: var(--ink); color: var(--cream); }
.visit .section-head h2,
.visit .section-head .num,
.visit .section-head .section-lede { color: var(--cream); }
.visit .section-head .num { opacity: .55; }

.visit-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.visit-block {
  background: var(--ink-soft);
  border: 1px solid rgba(242,238,229,.12);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .3s var(--ease);
}
.visit-block:hover { border-color: rgba(242,238,229,.28); }
.visit-block h3 {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-family: var(--font-sans); font-weight: 500;
  color: var(--chartreuse);
  margin-bottom: 18px;
}
.visit-address p {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2vw, 28px); line-height: 1.15;
  letter-spacing: -.04em; margin: 0 0 16px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(242,238,229,.4);
  padding-bottom: 4px;
  font-size: 14px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { color: var(--chartreuse); border-color: var(--chartreuse); }

.visit-hours dl { margin: 0; display: flex; flex-direction: column; gap: 0; }
.visit-hours dl > div {
  display: flex; justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(242,238,229,.1);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.visit-hours dl > div:last-child { border-bottom: 0; }
.visit-hours dt { font-weight: 700; }
.visit-hours dd { margin: 0; opacity: .85; }
.visit-hours .closed dd { color: var(--coral); opacity: 1; }

.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list span {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  opacity: .55; font-weight: 500;
}
.contact-list a {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 1.5vw, 22px); letter-spacing: -.035em;
  border-bottom: 1px solid transparent;
  width: max-content;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.contact-list a:hover { color: var(--chartreuse); border-color: var(--chartreuse); }

.visit-cta {
  grid-column: 1 / -1;
  background: var(--chartreuse); color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.visit-cta:hover { background: var(--coral); transform: translateY(-3px); }
.visit-cta-eyebrow {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.visit-cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 88px); letter-spacing: -.05em; line-height: .9;
}

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

/* ---------- footer ---------- */
.foot {
  background: var(--ink); color: var(--cream);
  border-top: 1px solid rgba(242,238,229,.12);
  padding: 26px var(--pad);
}
.foot-row {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.foot-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -.05em;
}
.foot-credit { font-family: var(--font-serif); font-style: italic; font-variation-settings: "SOFT" 100; opacity: .75; margin: 0; font-size: 14px; }
.foot p { margin: 0; }

/* selection */
::selection { background: var(--chartreuse); color: var(--ink); }
