/* =========================================================================
   Centre Pointe Performing Arts
   Black & gold, photo-led. The studio's own photography (warm peach seamless,
   dancers in black, B&W faculty portraits) carries the warmth; gold is used
   for action and accent only, never as decoration for its own sake.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0a0a0c;
  --ink-1:      #121215;
  --ink-2:      #191920;
  --ink-3:      #22222b;
  --ink-4:      #2e2e39;

  --gold:       #d4af37;
  --gold-lt:    #f2dd9e;
  --gold-dp:    #8f7218;
  --gold-grad:  linear-gradient(135deg, #f7ecc4 0%, #d4af37 46%, #ab8420 100%);

  /* Pulled from the studio's photography so type sits with the images */
  --peach:      #e6c1a4;
  --peach-dim:  rgba(230, 193, 164, .14);

  --cream:      #f7f4ef;
  --text:       #d9d4cc;
  --muted:      #9c968d;
  --faint:      #6b665f;

  --line:       rgba(212, 175, 55, .22);
  --line-soft:  rgba(247, 244, 239, .10);

  --font-display: "Outfit", ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-sign:    "Marcellus", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 780px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --section-y: clamp(3.75rem, 7.5vw, 7rem);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 74px;
  --announce-h: 42px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0; background: var(--ink); color: var(--text);
  font-family: var(--font-sans); font-size: 1.0625rem; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  line-height: 1.08; letter-spacing: -.022em; color: var(--cream);
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
hr { border: 0; height: 1px; background: var(--line-soft); margin: 2.25rem 0; }
strong, b { font-weight: 600; color: var(--cream); }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--ink-1); }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--gold); color: var(--ink); padding: .65rem 1.3rem;
  border-radius: 0 0 8px 8px; font-weight: 600; z-index: 300; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Type scale ---------- */
.display { font-size: clamp(2.6rem, 6.4vw, 4.8rem); line-height: 1.02; font-weight: 700; letter-spacing: -.03em; }
.h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -.028em; }
.h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); font-weight: 600; }
.h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); font-weight: 600; }
.h4 { font-size: clamp(1.08rem, 1.5vw, 1.22rem); font-weight: 600; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.6; color: var(--text); }
.small { font-size: .875rem; }
.muted { color: var(--muted); }

/* Card label — names a card's contents. Not a section eyebrow: no chapter
   rule, and never stacked above a section heading. */
.card-label {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 .85rem;
}

/* Ordinal numeral inside a track heading */
.track-num {
  display: inline-block; margin-right: .6rem;
  font-size: .5em; font-weight: 600; letter-spacing: .1em;
  color: var(--gold); vertical-align: .45em; font-variant-numeric: tabular-nums;
}

.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .9rem; --pad-x: 1.65rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold { background: var(--gold-grad); color: #17120400; color: #1a1405; box-shadow: 0 4px 18px -6px rgba(212,175,55,.5); }
.btn--gold:hover { box-shadow: 0 10px 28px -8px rgba(212,175,55,.6); }
.btn--ghost { border-color: rgba(247,244,239,.22); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lt); background: rgba(212,175,55,.08); }
.btn--solid { background: var(--cream); color: var(--ink); }
.btn--solid:hover { background: #fff; }
.btn--sm { --pad-y: .62rem; --pad-x: 1.2rem; font-size: .72rem; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); position: relative; padding-bottom: 2px;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Announcement bar ---------- */
.announce {
  position: relative; z-index: 120;
  background: var(--gold-grad); color: #1a1405;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
}
.announce-inner {
  max-width: var(--wrap); margin-inline: auto; padding: .6rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: .5rem 1rem;
  flex-wrap: wrap; text-align: center; min-height: var(--announce-h);
}
.announce a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.announce a:hover { opacity: .75; }

/* ---------- Header · N6 Newspaper masthead ----------
   Centred wordmark over an inline link row, closed by a double rule.
   Deliberately NOT sticky: wordmark-left + links-right + CTA-right + sticky
   is the single most-recognised generated-nav fingerprint. Real studio sites
   (Broadway Dance Center, Backstage) centre the mark the same way. */
.site-header { position: relative; z-index: 90; background: var(--ink); }
.masthead {
  max-width: var(--wrap); margin-inline: auto; padding: clamp(1.1rem, 2.4vw, 1.9rem) var(--gutter) 0;
  display: grid; justify-items: center; gap: .55rem; text-align: center;
}
.mast-line {
  font-size: .68rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.brand { display: block; }

/* ---------- Wordmark · cut-letter sign ----------
   Mirrors the physical CNC sign in the studio: Marcellus caps, two lines,
   line 2 at 0.46x the cap height and tracked out so both lines are flush to
   the same width (make_cnc.py: SIGN_CAP 18.0, L2R 0.46, GAPR 0.33).
   Line 2 uses space-between across per-letter spans, which is exactly how the
   real letters are spread on the wall — no magic letter-spacing value. */
.brand-sign {
  display: inline-block;
  font-family: var(--font-sign);
  font-weight: 400;
  line-height: .92;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transition: filter .3s var(--ease);
}
.brand:hover .brand-sign { filter: brightness(1.12); }

.sign-l1 {
  display: block;
  font-size: clamp(1.6rem, 4.4vw, 3.1rem);
  letter-spacing: .06em;
  /* trailing letter-space would break the flush edge line 2 measures against */
  margin-right: -.06em;
}
.sign-l2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: clamp(.736rem, 2.02vw, 1.426rem);   /* 0.46 x line 1 */
  margin-top: .33em;                              /* GAPR, in line-1 cap units */
}
.sign-l2 i { font-style: normal; }
.sign-l2 .sp { width: .7em; }


.brand-mark {
  display: block; width: clamp(230px, 42vw, 430px); height: clamp(34px, 6vw, 60px);
  background: var(--gold-grad);
  -webkit-mask: url("../img/wordmark.png") no-repeat center / contain;
          mask: url("../img/wordmark.png") no-repeat center / contain;
}
.brand:hover .brand-mark { filter: brightness(1.12); }

.mast-rule {
  border: 0; height: 4px; width: 100%; margin: clamp(.85rem, 1.8vw, 1.15rem) 0 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.nav { display: flex; align-items: center; justify-content: center; gap: clamp(.9rem, 2.2vw, 1.9rem); flex-wrap: wrap; }
.nav-list { display: flex; align-items: center; justify-content: center; gap: clamp(.85rem, 2vw, 1.7rem); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a {
  position: relative; display: block; padding: .3rem 0;
  font-size: .78rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text); transition: color .2s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease);
}
.nav-list a:hover { color: var(--gold-lt); }
.nav-list a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-list a[aria-current="page"] { color: var(--gold); }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none; position: absolute; right: var(--gutter); top: clamp(1.1rem, 2.4vw, 1.9rem);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--line); border-radius: 50%; cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.nav-toggle span { display: block; width: 17px; height: 2px; background: var(--gold); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--gold); border-radius: 2px;
  transition: transform .3s var(--ease), top .18s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .masthead { justify-items: start; text-align: left; padding-right: calc(var(--gutter) + 56px); }
  .brand-mark { width: min(260px, 58vw); }
  .nav {
    position: fixed; inset: 0; z-index: 200;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: rgba(10,10,12,.985); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 5.5rem var(--gutter) 2rem; overflow-y: auto;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .4s var(--ease), opacity .25s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-list li { margin: 0; border-bottom: 1px solid var(--line-soft); }
  .nav-list a { padding: 1rem 0; font-size: .95rem; }
  .nav-list a::after { display: none; }
}
body.nav-open { overflow: hidden; }

/* ---------- Photo hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.35) 32%, rgba(10,10,12,.78) 78%, var(--ink) 100%),
    linear-gradient(90deg, rgba(10,10,12,.80) 0%, rgba(10,10,12,.25) 55%, rgba(10,10,12,.55) 100%);
}
.hero-body {
  position: relative;
  padding-block: clamp(4rem, 11vw, 9rem) clamp(3.5rem, 8vw, 6.5rem);
  max-width: 44rem;
}
.hero--tall .hero-body { padding-block: clamp(6rem, 15vw, 12rem) clamp(5rem, 11vw, 9rem); }
.hero .display, .hero .h1 { margin-bottom: 1.05rem; text-wrap: balance; }
.hero .lede { max-width: 36rem; margin-bottom: 1.9rem; color: #ece7df; }

.hero-tag {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.15rem;
  padding: .4rem .9rem .4rem .5rem; border-radius: 999px;
  background: rgba(10,10,12,.55); border: 1px solid var(--line);
  font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-lt);
  backdrop-filter: blur(6px);
}
.hero-tag i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none;
  box-shadow: 0 0 0 4px rgba(212,175,55,.2);
}

/* ---------- Utility row (the four things parents actually want) ---------- */
.utility {
  position: relative; z-index: 2; margin-top: -1px;
  background: var(--ink-1); border-block: 1px solid var(--line-soft);
}
.utility-grid {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50%, 210px), 1fr));
}
.utility-item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.35rem clamp(1rem, 2.2vw, 1.75rem);
  border-right: 1px solid var(--line-soft);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.utility-item:last-child { border-right: 0; }
.utility-item:hover { background: rgba(212,175,55,.07); }
.utility-item svg { width: 21px; height: 21px; flex: none; color: var(--gold); }
.utility-item b { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--cream); letter-spacing: -.01em; }
.utility-item span { display: block; font-size: .78rem; color: var(--muted); }
@media (max-width: 640px) {
  .utility-item:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .utility-item:nth-child(even) { border-right: 0; }
  .utility-item { border-bottom: 1px solid var(--line-soft); }
}

/* ---------- Accolades strip ----------
   Credibility signal, kept restrained: a quiet line, not a shout. */
.accolades { background: var(--ink); border-bottom: 1px solid var(--line-soft); }
.accolades-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 1rem var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .55rem clamp(1.25rem, 4vw, 3rem);
}
.accolade {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--cream); white-space: nowrap;
}
.accolade svg { width: 15px; height: 15px; flex: none; color: var(--gold); }

/* Larger treatment for the competition section */
.accolade-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.accolade-list li { display: flex; align-items: center; gap: .8rem; margin: 0; }
.accolade-list svg { width: 20px; height: 20px; flex: none; color: var(--gold); }
.accolade-list b { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--cream); letter-spacing: -.01em; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--ink); padding-block: .85rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 1.5rem; padding-right: 1.5rem;
  font-family: var(--font-display); font-size: clamp(.95rem, 1.7vw, 1.25rem); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--cream); white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: .75em; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Photo cards (styles / tracks) ---------- */
.photo-grid { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.photo-card {
  position: relative; isolation: isolate; display: block; overflow: hidden; max-width: 100%;
  border-radius: var(--radius); background: var(--ink-2);
  aspect-ratio: 3 / 4; min-height: 300px;
}
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.05) 30%, rgba(10,10,12,.72) 68%, rgba(10,10,12,.94) 100%);
  transition: background .4s var(--ease);
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card:hover::after { background: linear-gradient(180deg, rgba(10,10,12,.15) 22%, rgba(10,10,12,.78) 62%, rgba(10,10,12,.96) 100%); }
.photo-card-body { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.1rem, 2vw, 1.5rem); }
.photo-card-body h3 { margin-bottom: .35rem; }
.photo-card-body p { font-size: .92rem; color: #cfc9c0; margin-bottom: .7rem; }
.photo-card .chip { align-self: flex-start; }
/* min-height + aspect-ratio makes the browser derive WIDTH from height
   (300 x 1.6 = 480px), which overflows a narrow grid track on a phone.
   Clearing min-height lets width come from the track, as intended. */
.photo-card--wide { aspect-ratio: 16 / 10; min-height: 0; }
.photo-card--short { aspect-ratio: 4 / 3; min-height: 240px; }

.chip {
  display: inline-block; padding: .3rem .75rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(10,10,12,.5);
  font-size: .69rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-lt);
}
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ---------- Plain cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.split { display: grid; gap: clamp(1.75rem, 4.5vw, 4rem); align-items: center; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); }
.split--top { align-items: start; }

.card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--line); background: var(--ink-3); }
.card h3 { margin-bottom: .6rem; }
:where(.card) p { color: var(--muted); font-size: .96rem; }
.card > hr { align-self: stretch; margin: 1.3rem 0; }
.card > .chip-row, .card > .link-arrow, .card > .btn { align-self: flex-start; }
.card .chip-row { margin-top: auto; padding-top: 1.1rem; }
.card .link-arrow { margin-top: 1.15rem; }
.card--gold { border-color: var(--line); background: linear-gradient(160deg, rgba(212,175,55,.09), var(--ink-2) 55%); }

/* ---------- People ---------- */
.people { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); grid-template-columns: repeat(auto-fit, minmax(min(50%, 175px), 1fr)); }
.person { text-align: left; }
.person-photo {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; margin-bottom: .8rem;
  background: var(--ink-2); border: 1px solid var(--line-soft);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); transition: filter .45s var(--ease), transform .6s var(--ease); }
.person:hover .person-photo img { filter: grayscale(0) contrast(1); transform: scale(1.04); }
.person-name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--cream); line-height: 1.25; margin-bottom: .15rem; }
.person-role { font-size: .74rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); line-height: 1.4; }
.person--memorial .person-photo img { filter: grayscale(1) brightness(.85); }

/* ---------- Faculty bios (native <details>, works without JS) ---------- */
.bio-list { border-top: 1px solid var(--line-soft); }
.bio { border-bottom: 1px solid var(--line-soft); }
.bio > summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 2.5rem 1rem 0;
  transition: background-color .2s var(--ease);
}
.bio > summary::-webkit-details-marker { display: none; }
.bio > summary:hover .bio-name { color: var(--gold-lt); }
.bio > summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .28s var(--ease);
}
.bio[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }

.bio-photo {
  width: 66px; height: 66px; flex: none; border-radius: 12px; object-fit: cover;
  filter: grayscale(1); border: 1px solid var(--line-soft);
  transition: filter .4s var(--ease);
}
.bio[open] .bio-photo, .bio > summary:hover .bio-photo { filter: grayscale(0); }
.bio-name { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--cream); letter-spacing: -.015em; transition: color .2s var(--ease); }
.bio-name .muted { font-weight: 400; }
.bio-role { display: block; font-size: .73rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); margin-top: .15rem; }
.bio-body { padding: .25rem 2.5rem 1.6rem calc(66px + 1.1rem); color: var(--muted); font-size: .97rem; }
.bio-body p { margin-bottom: .9rem; }
.bio-body p:last-child { margin-bottom: 0; }
.bio--plain > summary { cursor: default; }
.bio--plain > summary::after { display: none; }
@media (max-width: 560px) {
  .bio-body { padding-left: 0; }
}

/* ---------- Stats ---------- */
.stat-row { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(50%, 165px), 1fr)); }
.stat { padding: 1.25rem 0; border-top: 2px solid var(--gold); }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); line-height: 1; color: var(--cream);
  letter-spacing: -.03em; margin-bottom: .35rem;
  font-variant-numeric: lining-nums;
}
.stat span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Media frames ---------- */
.frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--square { aspect-ratio: 1; }

.figure-caption { margin-top: .75rem; font-size: .8rem; color: var(--faint); }

/* Full-bleed photo band */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band-media { position: absolute; inset: 0; z-index: -2; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,.94) 0%, rgba(10,10,12,.78) 42%, rgba(10,10,12,.5) 100%),
    linear-gradient(180deg, var(--ink) 0%, transparent 14%, transparent 82%, var(--ink) 100%);
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--ink-1); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: .9rem 1.35rem; text-align: left; vertical-align: top; font-size: .94rem; border-bottom: 1px solid var(--line-soft); }
thead th {
  font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); background: rgba(212,175,55,.05); white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(212,175,55,.035); }
td:first-child { color: var(--cream); font-weight: 500; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 1.75rem 2.35rem; margin: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--gold);
}
.timeline li:last-child { padding-bottom: 0; }
.t-date { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.t-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--cream); margin-bottom: .25rem; }
.timeline p { color: var(--muted); font-size: .94rem; }

/* ---------- Price / lists ---------- */
.price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3rem); line-height: 1; color: var(--gold-lt); letter-spacing: -.03em; font-variant-numeric: lining-nums; }
.price small { display: block; margin-top: .5rem; font-family: var(--font-sans); font-size: .8rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 6px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}

/* ---------- Long Document (news) ----------
   Continuous single column, generous leading, heads emerging from the flow.
   No hero image, no cards, no reveal — the page is just there. */
.doc { max-width: 64ch; margin-inline: auto; }
.doc-head { max-width: 64ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.doc-dateline {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1rem;
}
.doc-head h1 { margin-bottom: 1rem; }
.doc-head p { color: var(--text); font-size: 1.1rem; line-height: 1.65; }

.doc-year {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 0; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.doc-entry { margin-top: 2.1rem; }
.doc-entry:first-of-type { margin-top: 1.6rem; }
.doc-when {
  font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .3rem;
}
.doc-entry h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.35rem); font-weight: 600; line-height: 1.25;
  margin-bottom: .45rem;
}
.doc-entry p { color: var(--text); line-height: 1.7; margin: 0; }
.doc-close {
  max-width: 64ch; margin: clamp(3rem, 6vw, 4.5rem) auto 0; padding-top: 1.6rem;
  border-top: 1px solid var(--line); color: var(--muted);
}
.doc-close a { color: var(--gold-lt); border-bottom: 1px solid rgba(212,175,55,.4); }
.doc-close a:hover { color: #fff6d8; border-color: var(--gold); }

/* ---------- Catalogue index (programs) ----------
   An inventory of what is taught, ruled like a price list. */
.cat-head { display: grid; gap: .6rem; padding-bottom: clamp(1.5rem, 3vw, 2.25rem); border-bottom: 2px solid var(--line); }
.cat-count {
  font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0; font-variant-numeric: tabular-nums;
}
.cat-head h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cat-head p { margin: 0; color: var(--muted); max-width: 52ch; }

.index-row {
  display: grid; gap: .4rem 2rem; align-items: baseline;
  grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
  padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft);
}
.index-row:last-child { border-bottom: 0; }
.index-track {
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--cream);
  margin: 0; letter-spacing: -.01em;
}
.index-track a { color: var(--cream); border-bottom: 0; transition: color .2s var(--ease); }
.index-track a:hover { color: var(--gold-lt); }
.index-track span { display: block; font-family: var(--font-sans); font-size: .74rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
.index-styles { margin: 0; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.index-styles span {
  font-size: .86rem; color: var(--text);
  padding: .18rem .6rem; border: 1px solid var(--line-soft); border-radius: 999px;
}
@media (max-width: 620px) { .index-row { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.rating { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; }
.rating-stars { display: inline-flex; gap: .18rem; }
.rating-stars svg { width: 22px; height: 22px; color: var(--gold); }
.rating-meta { font-size: .92rem; color: var(--muted); }
.rating-meta a { color: var(--gold-lt); border-bottom: 1px solid rgba(212,175,55,.4); }
.rating-meta a:hover { color: #fff6d8; border-color: var(--gold); }

/* Masonry-ish columns so quotes of different lengths pack without gaps */
.quote-columns { columns: 3; column-gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 940px) { .quote-columns { columns: 2; } }
@media (max-width: 620px) { .quote-columns { columns: 1; } }
.quote-columns .quote-card {
  display: block; break-inside: avoid; -webkit-column-break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.quote-columns .quote-card figcaption { margin-top: 0; }

.quote-card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.quote-card:hover { border-color: var(--line); transform: translateY(-3px); }
.quote-card .rating-stars { margin-bottom: .9rem; }
.quote-card .rating-stars svg { width: 15px; height: 15px; }
.quote-card blockquote { margin: 0 0 1.1rem; font-size: 1rem; line-height: 1.6; color: var(--text); }
.quote-card figcaption { margin-top: auto; font-size: .8rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); }
.quote-card figcaption span { display: block; margin-top: .2rem; font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--faint); }

/* ---------- News ---------- */
.post {
  display: flex; flex-direction: column; padding: 1.5rem 0; border-bottom: 1px solid var(--line-soft);
  transition: border-color .25s var(--ease);
}
.post:last-child { border-bottom: 0; }
.post:hover { border-color: var(--line); }
.post-date { font-size: .73rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.post h3 { margin-bottom: .5rem; }
.post p { color: var(--muted); font-size: .96rem; max-width: 60ch; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1rem; }
.field .req { color: var(--gold-lt); }
.field label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
.input, .textarea, .select {
  width: 100%; padding: .85rem 1.05rem; background: var(--ink-2); color: var(--cream);
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm); font-size: 1rem;
  transition: border-color .22s var(--ease), background-color .22s var(--ease), box-shadow .22s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--gold); background: var(--ink-3); box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}
.textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--muted); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin: .25rem 0 0; accent-color: var(--gold); flex: none; }
.form-note { font-size: .84rem; color: var(--faint); }
.subscribe { display: flex; gap: .6rem; flex-wrap: wrap; }
.subscribe .input { flex: 1 1 240px; }
.form-status { margin-top: .85rem; font-size: .92rem; color: var(--gold-lt); min-height: 1.4em; }

/* ---------- Contact details ---------- */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft); margin: 0; }
.detail-list li:last-child { border-bottom: 0; }
.detail-icon { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(212,175,55,.07); color: var(--gold); }
.detail-icon svg { width: 18px; height: 18px; }
.detail-label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.detail-value { color: var(--cream); font-size: 1rem; }
a.detail-value:hover { color: var(--gold-lt); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--ink-1); min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.85) hue-rotate(180deg); }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line-soft); }
.acc details { border-bottom: 1px solid var(--line-soft); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.2rem 2.4rem 1.2rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 600; color: var(--cream);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--gold-lt); }
.acc summary::after {
  content: ""; position: absolute; right: .35rem; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .28s var(--ease);
}
.acc details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.acc .acc-body { padding: 0 2.4rem 1.4rem 0; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(150deg, var(--ink-2), var(--ink));
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.35rem, 4vw, 3.5rem); text-align: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(65% 110% at 50% 0%, rgba(212,175,55,.15), transparent 65%); }
.cta-band .lede { max-width: 34rem; margin: 0 auto 1.9rem; }

/* ---------- Inline prose links ---------- */
main p a:not(.btn):not(.link-arrow):not(.detail-value):not(.index-track a),
main li a:not(.btn):not(.link-arrow):not(.detail-value),
.acc-body a {
  color: var(--gold-lt); border-bottom: 1px solid rgba(212,175,55,.4);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
main p a:not(.btn):not(.link-arrow):not(.detail-value):not(.index-track a):hover,
main li a:not(.btn):not(.link-arrow):not(.detail-value):hover,
.acc-body a:hover { color: #fff6d8; border-color: var(--gold); }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-hidden] { color: var(--gold); opacity: .55; }

/* ---------- Footer · Ft1 Mast-headed ----------
   One quiet horizontal band: wordmark, the studio's own tagline, then contact
   and links inline. Replaces the 4-column link grid + social row + copyright
   tail, which is the generated-footer fingerprint. */
.site-footer {
  background: var(--ink-1); border-top: 1px solid var(--line);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}
.foot-mast { display: grid; justify-items: center; gap: 1rem; text-align: center; }
.foot-mast .brand-sign--foot .sign-l1 { font-size: clamp(1.25rem, 3.1vw, 2rem); }
.foot-mast .brand-sign--foot .sign-l2 { font-size: clamp(.575rem, 1.43vw, .92rem); }
.foot-tagline {
  margin: 0; font-family: var(--font-display); font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 500; color: var(--cream); letter-spacing: -.01em;
}
.foot-meta {
  margin: 0; font-size: .93rem; color: var(--muted);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .35rem 1.1rem;
}
.foot-meta a { color: var(--muted); transition: color .2s var(--ease); }
.foot-meta a:hover { color: var(--gold-lt); }
.foot-meta .sep { color: var(--gold); opacity: .5; }
.foot-links {
  margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem 1.1rem;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
.foot-links a { color: var(--text); transition: color .2s var(--ease); }
.foot-links a:hover { color: var(--gold); }
/* Shared social row — used by the footer and the contact page. Sizing the
   svg here is load-bearing: without it the icons expand to their container. */
.social-row { display: inline-flex; flex-wrap: wrap; gap: .55rem; }
.social-row a {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.social-row a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; flex: none; }
.foot-social { display: inline-flex; gap: .55rem; }
.foot-social a {
  width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.foot-social a:hover { background: var(--gold); color: var(--ink); }
.foot-social svg { width: 15px; height: 15px; flex: none; }
.foot-fine { margin: .35rem 0 0; font-size: .8rem; color: var(--faint); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: .7rem; } .mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.1rem; } .mt-4 { margin-top: 2.8rem; }
.mb-2 { margin-bottom: 1.4rem; } .mb-3 { margin-bottom: 2.1rem; }
.stack > * + * { margin-top: 1.05rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
