/* ============================================================
   BENTO SHOWCASE: homepage highlight module
   Frosted "liquid glass" caption card over a full-bleed photo,
   paired with a stack of placeholder tiles.

   Refined against the "Superpower" reference system:
   tight negative-tracking type, a floating dark pill nav,
   flat white/hairline surfaces, one accent rationed to CTAs.
   ============================================================ */

:root {
  --glow-x: 0;
  --glow-y: 0;
  --glow-xp: 0.5;
  --r-bento: 17px;
  --r-bento-sm: 12px;
  --carbon: #1b1b1b;
  --zinc: #727272;
  --ash: #a2a2a2;
  --mist: #e4e4e7;
  --fog: #f7f6f3;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
}

body { background: #ffffff; }

/* ---------- Floating pill nav (preview-only override) ---------- */
.site-nav::before {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-nav.is-scrolled { border-bottom-color: transparent; }

.site-nav .wrap { position: relative; }

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: calc(0.6em + 6px) 1.1em;
  border-radius: 9999px;
  background: rgba(42,23,16,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: -0.005em;
  text-transform: none;
  white-space: nowrap;
  transition: background 0.25s ease;
}
.brand span { color: inherit; }
.brand:hover { background: rgba(42,23,16,0.75); }
.site-nav.is-scrolled .brand {
  background: rgba(255,255,255,0.85);
  border-color: rgba(46,36,24,0.08);
  color: var(--ink, #252525);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.site-nav.is-scrolled .brand:hover { background: rgba(255,255,255,0.95); }

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  gap: 2px;
  background: rgba(42,23,16,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 6px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.nav-links a {
  padding: 0.6em 1.05em;
  border-radius: 9999px;
  color: rgba(255,255,255,0.62);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; }
.nav-links a.cta {
  background: #fff;
  color: var(--carbon);
  border: none;
  padding: 0.6em 1.2em;
}
.nav-links a.cta:hover { background: #fff; color: var(--carbon); opacity: 0.9; }

@media (max-width: 99999px) {
  .nav-links {
    position: fixed;
    left: 0; top: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: var(--carbon);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(.65,0,.35,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 0 clamp(1.5rem, 8vw, 3rem);
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links a {
    padding: 0.85rem 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    font-family: var(--font-sans);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.1;
    background: none;
  }
  .nav-links a:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-links a:hover, .nav-links a.active { color: #fff; background: none; }
  .nav-links a.cta {
    margin-top: 2rem;
    align-self: flex-start;
    border: none;
    border-radius: 9999px;
    padding: 0.85em 1.8em;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    background: #fff;
    color: var(--carbon);
  }
  .nav-links a.cta:hover { background: #fff; opacity: 0.9; }
}

.hero-banner-section {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 var(--section-gap);
}
.hero-banner-wrap {
  padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
}
.hero-banner {
  position: relative;
  border-radius: var(--r-bento);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(460px, 65vw, 760px);
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-banner .hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-banner .hero-slide.is-active {
  opacity: 1;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 42% at 50% 18%, rgba(10,8,4,0.55) 0%, rgba(10,8,4,0) 100%),
    linear-gradient(180deg, rgba(10,8,4,0.28) 0%, rgba(10,8,4,0.1) 30%, rgba(10,8,4,0.15) 42%, rgba(10,8,4,0.75) 100%);
  z-index: 1;
}
.hero-banner .bento-glass { z-index: 2; }
.hero-banner-title {
  position: absolute;
  top: calc(var(--nav-h) + clamp(1.25rem, 5vw, 3rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 96%;
  text-align: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 5.5rem);
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero-banner-title-line { white-space: nowrap; }
.hero-banner-title .dim { opacity: 0.7; margin: 0 0.15em; }

.class-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  text-align: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* ---------- Full-bleed hero variant (home page) ----------
   Edge-to-edge, no rounding/padding, bold centered overlaid headline.
   The bottom-left text uses the standard .bento-glass card (shared,
   already positioned/z-indexed by the .hero-banner .bento-glass rule
   above). Scoped to modifier classes so the framed .hero-banner
   treatment on other pages (our-people, youth-dance-school) is untouched. */
.hero-banner-section--bleed { padding: 0; overflow-anchor: none; }
.hero-banner--bleed {
  border-radius: 0;
  min-height: 100svh;
  height: 100svh;
  background: var(--carbon, #000);
}
.hero-bleed-bottom-left {
  display: contents;
}
.hero-bleed-title {
  position: absolute;
  top: calc(var(--nav-h) + clamp(1.25rem, 5vw, 3rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  text-align: center;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.hero-bleed-title span { opacity: 0.85; margin: 0 0.08em; }

.hero-bleed-text {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4rem);
  bottom: clamp(2rem, 7vw, 4.5rem);
  z-index: 2;
  max-width: 420px;
}
.hero-bleed-text p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-bleed-text p strong { color: #fff; }
.hero-bleed-text .btn { margin-top: 0.4rem; }

.hero-bleed-dates {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: clamp(2rem, 7vw, 4.5rem);
  z-index: 2;
  max-width: 340px;
  text-align: right;
  background: rgba(10,8,4,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-bento-sm, 14px);
  padding: 1.1rem 1.3rem;
}
.hero-bleed-dates p {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-bleed-dates p:last-child { margin-bottom: 0; }
.hero-bleed-dates p strong { color: #fff; }
.hero-bleed-dates-label {
  margin-top: 0.8rem !important;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
}
@media (max-width: 860px) {
  .hero-banner--bleed {
    height: 100svh;
    min-height: 100svh;
    overflow: visible;
  }
  .hero-banner--bleed::after {
    background: linear-gradient(180deg, rgba(10,8,4,0.35) 0%, rgba(10,8,4,0.55) 40%, rgba(10,8,4,0.88) 100%);
  }
  .hero-bleed-bottom-left {
    display: flow-root;
  }
  .hero-bleed-title {
    position: relative;
    top: auto; left: auto; transform: none;
    width: auto;
    text-align: center;
    margin: calc(var(--nav-h) + 2.5rem) clamp(1.5rem, 5vw, 2rem) 0;
  }
  .hero-bleed-text {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    text-align: center;
    margin: 1.5rem clamp(1.5rem, 5vw, 2rem) 0;
  }
  .hero-bleed-dates {
    position: absolute;
    top: calc(100% + 1.5rem);
    bottom: auto;
    left: clamp(1.5rem, 5vw, 2rem);
    right: clamp(1.5rem, 5vw, 2rem);
    margin: 0 0 2rem;
    text-align: left;
    max-width: none;
    background: var(--espresso);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
  }
  .hero-banner-section--bleed:has(.hero-bleed-dates) { margin-bottom: 29rem; }
}

/* Tighten the gap directly under the full-bleed hero: .cb-statement's
   default top padding (shared with youth-dance-school.html) reads as
   excess dead space coming straight off a striking full-bleed photo. */
.hero-banner-section--bleed + .cb-statement {
  padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
}

.bento-section {
  background: #ffffff;
  padding: 0 0 var(--section-gap);
}

.bento-grid-wrap {
  padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0.875rem;
  align-items: stretch;
}

/* ---------- Main tile ---------- */
.bento-main {
  position: relative;
  border-radius: var(--r-bento);
  overflow: hidden;
  min-height: clamp(420px, 62vw, 720px);
  isolation: isolate;
}
.bento-main img,
.bento-main video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.give-video-crossfade {
  position: absolute;
  inset: 0;
}
.give-video-crossfade video {
  opacity: 0;
  transition: opacity 0.6s linear;
}
.give-video-crossfade video.is-active {
  opacity: 1;
}
.bento-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,4,0.02) 0%, rgba(10,8,4,0.08) 42%, rgba(10,8,4,0.66) 100%);
  z-index: 1;
}

/* Frosted / liquid-glass caption card */
.bento-glass {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 400px;
  z-index: 2;
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-bento-sm);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 16px 32px -16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
}
.hero-banner .bento-glass {
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0;
  left: clamp(1.5rem, 5vw, 4rem);
  right: clamp(1.5rem, 5vw, 4rem);
  bottom: clamp(2rem, 6vw, 3.5rem);
}
.hero-banner .bento-glass .eyebrow,
.hero-banner .bento-glass h3,
.hero-banner .bento-glass p {
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.bento-glass .eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75);
}
.bento-glass .eyebrow::before { background: rgba(255,255,255,0.5); }
.bento-glass h1,
.bento-glass h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0.55rem 0 0.6rem;
}
.bento-glass p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0 0 1.1rem;
}
.bento-glass .btn {
  font-size: 0.76rem;
  padding: 0.75em 1.3em;
  letter-spacing: -0.005em;
}
.bento-glass .btn-accent {
  background: #6a6a6a;
  border-color: #6a6a6a;
  box-shadow: 0 8px 24px -10px rgba(0,122,255,0.5);
}
.bento-glass .btn-accent:hover {
  background: #555555;
  border-color: #555555;
}

/* ---------- Side placeholder tiles ---------- */
.bento-side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.bento-card {
  flex: 1;
  position: relative;
  border-radius: var(--r-bento);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
  background: var(--fog);
  border: 1px solid var(--mist);
}
.bento-card .eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: var(--ash);
  margin-bottom: 0.6rem;
}
.bento-card .eyebrow::before { background: var(--mist); }
.bento-card h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  color: var(--carbon);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.4rem;
}
.bento-card p {
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--zinc);
  margin: 0;
}

@media (max-width: 860px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main { min-height: 380px; }
  .bento-glass { max-width: none; }
  .bento-side { flex-direction: column; }
  .bento-card { min-height: 120px; }
}

/* ---------- Pointer-tracked glow border ----------
   Ported from the 21st.dev GlowCard React component into vanilla
   CSS/JS. --glow-x/--glow-y are set on :root by a single pointermove
   listener (see index.html); background-attachment:fixed means the
   same viewport-space coordinates line up correctly on every tile
   at once, no per-element math needed. Hue sweeps between the
   site's two existing accents (terracotta -> blue) instead of the
   component's default rainbow presets. */
[data-glow] {
  --glow-border: 2px;
  --glow-spot: 220px;
  --glow-hue: calc(12 + (var(--glow-xp) * 35));
  isolation: isolate;
}
/* Lives in ::before only: .bento-main already owns ::after for its
   image scrim, and an element can only have one of each pseudo. */
[data-glow]::before {
  content: "";
  position: absolute;
  inset: calc(var(--glow-border) * -1);
  border: var(--glow-border) solid transparent;
  border-radius: inherit;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(
      calc(var(--glow-spot) * 0.45) calc(var(--glow-spot) * 0.45) at
      calc(var(--glow-x) * 1px) calc(var(--glow-y) * 1px),
      hsl(0 0% 100% / 0.9), transparent 100%
    ),
    radial-gradient(
      calc(var(--glow-spot) * 0.9) calc(var(--glow-spot) * 0.9) at
      calc(var(--glow-x) * 1px) calc(var(--glow-y) * 1px),
      hsl(var(--glow-hue) 90% 55% / 1), transparent 70%
    );
  filter: brightness(1.4);
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
[data-glow]:hover::before { opacity: 1; }

/* ============================================================
   CLASS SCHEDULE TABLE
   ============================================================ */
.table-section {
  background: #ffffff;
  padding: 0 0 clamp(3.5rem, 9vw, 7.5rem);
}
.table-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}
.table-head .eyebrow {
  justify-content: center;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: #727272;
}
.table-head .eyebrow::before { background: #a2a2a2; }
.table-head h2, .table-head h1 {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--carbon);
}

.table-section .level-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.table-section .level-tab {
  padding: 0.55em 1.1em;
  border-radius: 9999px;
  border: 1px solid #e4e4e7;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: #727272;
  cursor: pointer;
  transition: all 0.2s ease;
}
.table-section .level-tab:hover { border-color: var(--carbon); color: var(--carbon); }
.table-section .level-tab.active { background: var(--carbon); border-color: var(--carbon); color: #fff; }

.level-body { display: none; }
.level-body.active { display: table-row-group; }

.table-wrap {
  border: 1px solid #e4e4e7;
  border-radius: 17px;
  overflow: hidden;
}
.class-table td small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: #a2a2a2;
  margin-top: 0.15rem;
}
.class-table {
  width: 100%;
  border-collapse: collapse;
}
.class-table th,
.class-table td {
  text-align: left;
  padding: 0.95rem 1.5rem;
}
.class-table thead th {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a2a2a2;
  background: #f7f6f3;
  border-bottom: 1px solid #e4e4e7;
}
.class-table tbody tr { border-bottom: 1px solid #e4e4e7; transition: background 0.2s ease; }
.class-table tbody tr:last-child { border-bottom: none; }
.class-table tbody tr:hover { background: #f7f6f3; }
.class-table tbody td {
  font-size: 0.92rem;
  color: #727272;
  letter-spacing: -0.005em;
}
.class-table tbody td:first-child {
  font-weight: 500;
  color: var(--carbon);
}

@media (max-width: 640px) {
  .class-table { font-size: 0.85rem; }
  .class-table th, .class-table td { padding: 0.75rem 0.9rem; }
  .class-table thead th:nth-child(3),
  .class-table tbody td:nth-child(3) { display: none; }
}

/* ============================================================
   YOUTH PROGRAM CLASSES
   Plain photo-left / text-right rows: full, untinted photo in a
   rounded frame (no dark overlay), bold uppercase heading, plain
   body copy, and a blue pill CTA.
   ============================================================ */
.classes-section { background: #ffffff; padding: 0 0 var(--section-gap); }

.adult-classes-disclaimer {
  max-width: 62ch;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  padding: 1rem 1.25rem;
  background: rgba(46,36,24,0.04);
  border: 1px solid rgba(46,36,24,0.08);
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--taupe);
  text-align: center;
}

.class-tiles-wrap {
  padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
}

.day-group {
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.day-group.day-group--first {
  padding-top: 0;
}
.day-group .table-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.class-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}
.class-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.class-row-item .frame { aspect-ratio: 1.9 / 1; }
@media (max-width: 860px) {
  .class-row-item { grid-template-columns: 1fr; }
}
.class-row-item h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--carbon);
  margin: 0 0 0.9rem;
}
.class-row-item p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--taupe);
  margin: 0 0 0.75rem;
  max-width: 46ch;
}
.eyebrow--plain::before { display: none; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: #ffffff; padding: 0 0 var(--section-gap); }

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
.price-card {
  flex: 1 1 150px;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--r-bento-sm);
  background: #ffffff;
  border: 1.5px solid rgba(20,15,10,0.14);
  box-shadow: 0 20px 36px -24px rgba(60,45,20,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -22px rgba(60,45,20,0.3); border-color: rgba(20,15,10,0.24); }
.price-card .label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--carbon);
  opacity: 0.65;
}
.price-card .amt {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--carbon);
}

.pricing-notes {
  border-radius: var(--r-bento-sm);
  background: linear-gradient(160deg, rgba(64,46,32,0.94), rgba(20,14,9,0.97));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}
.pricing-notes .eyebrow { justify-content: center; color: rgba(255,255,255,0.75); margin-bottom: 0.9rem; }
.pricing-notes .eyebrow::before { background: rgba(255,255,255,0.5); }
.pricing-notes p {
  margin: 0 0 0.6rem;
  font-size: 0.76rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.6);
}
.pricing-notes p:last-child { margin-bottom: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #ffffff; padding: var(--section-gap) 0; }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.faq-photo {
  position: relative;
  border-radius: var(--r-bento);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.faq-photo img,
.faq-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.faq-photo .give-video-crossfade { position: absolute; inset: 0; }

.faq-head .eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--terracotta);
}
.faq-head .eyebrow::before { background: var(--terracotta); }
.faq-head h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--carbon);
  margin: 0.5rem 0 0;
}
.faq-sub {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--zinc);
  max-width: 46ch;
}

.faq-list { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.faq-list .faq-item { border-bottom: 1px solid var(--mist); }
.faq-list .faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--carbon);
  letter-spacing: -0.005em;
  padding: 1.1rem 0.1rem;
}
.faq-list .faq-q .icon { width: 18px; height: 18px; }
.faq-list .faq-q .icon::before,
.faq-list .faq-q .icon::after { background: none; }
.faq-list .faq-q .icon {
  border-right: 2px solid var(--carbon);
  border-bottom: 2px solid var(--carbon);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}
.faq-list .faq-item.open .faq-q .icon { transform: rotate(-135deg); margin-top: 4px; }
.faq-list .faq-a p { color: var(--zinc); }

@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-photo { aspect-ratio: 16/9; }
}

/* ============================================================
   MAP
   Vanilla port of the 21st.dev "mapcn" marker-tooltip React
   component: MapLibre GL JS is a plain JS library (loaded via
   CDN below), so it runs directly with no React/build pipeline.
   ============================================================ */
.map-section { background: #ffffff; padding: 0 0 var(--section-gap); }

.map-card {
  position: relative;
  border-radius: var(--r-bento);
  overflow: hidden;
  height: clamp(360px, 46vw, 520px);
  border: 1px solid var(--mist);
  box-shadow: 0 24px 48px -28px rgba(20,15,10,0.25);
}
.map-card .map-canvas { position: absolute; inset: 0; }

.map-marker {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  cursor: pointer;
}
.map-marker::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(181,88,31,0.25);
  animation: mapPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.map-tooltip {
  background: var(--carbon);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
}
.map-tooltip small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.maplibregl-popup-content { background: transparent; box-shadow: none; padding: 0; }
.maplibregl-popup-tip { display: none; }
.maplibregl-ctrl-attrib { font-size: 10px; }
.maplibregl-ctrl-top-right { top: 0.75rem; right: 0.75rem; }

/* ============================================================
   SCOPE SCHOLARSHIP TILE
   ============================================================ */
.scope-section { background: #ffffff; padding: 0 0 var(--section-gap); }
.scope-tile { min-height: clamp(420px, 56vw, 680px); }

/* ---------- SCOPE section (photo + copy, plain white, matches youth-about) ---------- */
.scope-container { max-width: 1680px; }
.scope-grid { align-items: stretch; grid-template-columns: 1.8fr 1fr; }
@media (max-width: 860px) { .scope-grid { grid-template-columns: 1fr; } }
.scope-photo { height: 100%; min-height: 320px; }
.scope-photo img { object-position: 66% center; }
.scope-lede {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--carbon);
}

/* ---------- Reusable bar + big uppercase title (e.g. "| DONATE") ---------- */
.bar-title {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 1.5rem;
}
.bar-title::before {
  content: "";
  width: 4px;
  height: 0.85em;
  background: currentColor;
  flex-shrink: 0;
}

/* ---------- DONATE band (light photo, dark text, spread top-to-bottom) ---------- */
.donate-band { min-height: clamp(480px, 60vw, 700px); align-items: flex-start; padding: clamp(3rem, 8vw, 5rem) 0; }
.donate-band--light .hero-media::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 38%, rgba(255,255,255,0) 62%);
}
.donate-band-content { max-width: 480px; color: var(--ink); }
.donate-band-content .bar-title { color: var(--carbon); }
.donate-band-content p:not(.bar-title) {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.donate-band-content .btn { margin-top: 3.5rem; }

.donate-band--center { align-items: center; text-align: center; }
.donate-band--center .donate-band-content { margin: 0 auto; }
.donate-band--center .bar-title { justify-content: center; }
.donate-band .hero-media img { object-position: center 15%; }
.donate-cutout { text-align: center; }
.donate-cutout--hero { padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vw, 2.5rem)); }
.donate-cutout-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donate-cutout-inner .bar-title { justify-content: center; color: var(--carbon); }
.donate-cutout-img { width: min(520px, 85vw); height: auto; margin: 0.5rem 0 1.25rem; }
.donate-cutout-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.donate-bento-frame {
  aspect-ratio: 4 / 5;
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donate-bento-frame img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transform: none;
}
.donate-bento-frame:hover img { transform: none; }
.donate-band--center.donate-band--light .hero-media::after {
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 78%);
}

/* ============================================================
   CINEMATIC FOOTER
   Vanilla port of the 21st.dev "motion-footer" React/GSAP/Tailwind
   component (no build pipeline here to run React/shadcn/GSAP) -
   aurora glow, giant background wordmark, marquee strip, and a
   lightweight mousemove "magnetic" hover on pills, all in plain
   CSS/JS using the site's existing color tokens.
   ============================================================ */
.cinematic-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--carbon);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 8vw, 6rem);
}

.cf-aurora {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 55vh;
  background: radial-gradient(circle, rgba(181,88,31,0.28) 0%, rgba(222,141,54,0.22) 45%, transparent 72%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.cf-grid {
  position: absolute; inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 85%, transparent);
  pointer-events: none;
  z-index: 0;
}
.cf-giant-text {
  position: absolute;
  bottom: -4vw; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 15vw;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 65%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cf-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 0.85rem 0;
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  transform: rotate(-1deg) scale(1.04);
}
.cf-marquee-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  animation: cf-scroll 32s linear infinite;
}
.cf-marquee-track .dot { color: var(--terracotta); opacity: 0.7; }
@keyframes cf-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cf-main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.cf-heading {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  color: #fff;
  margin: 0 0 2rem;
}
.cf-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }
.cf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.cf-pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.cf-pill-primary { background: var(--terracotta); border-color: var(--terracotta); }
.cf-pill-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }

.cf-info {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cf-info-col h5 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 0.8rem;
}
.cf-info-col p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0 0 0.6rem; }
.cf-info-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; transition: color 0.2s ease; }
.cf-info-col a:hover { color: #fff; }

.cf-bottom {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cf-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.cf-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.6em 1.1em;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cf-heart { color: #686868; display: inline-block; animation: cf-heartbeat 1.8s ease-in-out infinite; }
@keyframes cf-heartbeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.25); }
  40% { transform: scale(1); }
}
.cf-top {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cf-top:hover { background: rgba(255,255,255,0.14); }

@media (max-width: 700px) {
  .cf-info { grid-template-columns: 1fr; gap: 1.75rem; }
  .cf-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   SUBSCRIBE FOOTER
   Minimal black footer: logo mark, newsletter signup, social
   links, and a small address line.
   ============================================================ */
.subscribe-footer {
  background: #000;
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.sf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.sf-mark img {
  width: clamp(220px, 24vw, 380px);
  height: auto;
  display: block;
}
.sf-subscribe {
  max-width: 420px;
  margin-left: auto;
  text-align: right;
}
.sf-subscribe-title {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  margin: 0 0 0.75rem;
}
.sf-subscribe-sub {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1.25rem;
}
.sf-subscribe-form { display: flex; flex-direction: column; gap: 0.6rem; }
.sf-subscribe-row { display: flex; gap: 0.6rem; }
.sf-subscribe-form input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.85em 1em;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #111;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}
.sf-subscribe-form input::placeholder { color: #8a8a8a; }
.sf-subscribe-form input:focus { outline: 2px solid #6a6a6a; outline-offset: 1px; }
.sf-subscribe-form button {
  padding: 0.85em 1.6em;
  border-radius: 8px;
  border: none;
  background: #6a6a6a;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sf-subscribe-form button:hover { background: #555555; }
.sf-subscribe-privacy {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.sf-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.sf-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.sf-social-link svg { width: 20px; height: 20px; }
.sf-social-link:hover { background: #fff; color: #000; }
.sf-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.sf-bottom p {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sf-bottom p:last-child { text-transform: none; letter-spacing: 0; }
@media (max-width: 760px) {
  .sf-inner { flex-direction: column; align-items: flex-start; }
  .sf-subscribe { text-align: left; margin-left: 0; max-width: 100%; }
  .sf-subscribe-form { flex-direction: column; }
}

/* ============================================================
   STUDIO RENTAL FORM
   ============================================================ */
.rental-form-main { background: #fff; padding: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem)) 0 var(--section-gap); }
.rental-form-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.rental-form-title {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--carbon);
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
}
.rental-form { display: flex; flex-direction: column; gap: 1.75rem; }
.rf-group { display: flex; flex-direction: column; gap: 0.5rem; }
.rf-label, .rental-form label {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.rf-required { font-weight: 400; color: var(--taupe); }
.rf-hint { margin: 0; font-size: 0.85rem; color: var(--taupe); }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rf-field { display: flex; flex-direction: column; gap: 0.4rem; }
@media (max-width: 560px) { .rf-row { grid-template-columns: 1fr; } }

.rental-form input[type="text"],
.rental-form input[type="email"],
.rental-form input[type="tel"],
.rental-form input[type="date"],
.rental-form select,
.rental-form textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: var(--mist);
  padding: 0.9em 1.1em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.rental-form input[type="date"] { color-scheme: light; }
.rental-form select { appearance: none; cursor: pointer; }
.rental-form textarea { resize: vertical; min-height: 120px; }
.rental-form input::placeholder { color: var(--taupe); }
.rental-form input:focus,
.rental-form select:focus,
.rental-form textarea:focus { outline: 2px solid #6a6a6a; outline-offset: 1px; }

.rf-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  width: fit-content;
}
.rf-checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rf-checkbox-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--stone);
  flex-shrink: 0;
}
.rf-checkbox input:checked + .rf-checkbox-mark { background: var(--carbon); border-color: var(--carbon); }

.rf-checkbox-mark--square { border-radius: 5px; }
.rf-checkbox input:checked + .rf-checkbox-mark--square { background: var(--carbon); border-color: var(--carbon); }
.rf-days-row { display: flex; flex-wrap: nowrap; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.25rem; }
.rf-days-row .rf-checkbox { font-size: 0.85rem; flex-shrink: 0; }

.rf-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rf-pills--rate { flex-direction: column; align-items: flex-start; }
.rf-pills--rate .rf-pill { width: 100%; text-align: left; }
.rf-pill {
  padding: 0.6em 1.4em;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--stone);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.rf-pill:hover { border-color: var(--carbon); }
.rf-pill.is-active { background: var(--carbon); border-color: var(--carbon); color: #fff; }

.rf-submit {
  margin: 0.5rem auto 0;
  display: block;
  width: fit-content;
  padding: 0.85em 2.4em;
  border: 1.5px solid #6a6a6a;
  border-radius: var(--r-pill);
  background: transparent;
  color: #6a6a6a;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.rf-submit.is-ready { background: #6a6a6a; border-color: #6a6a6a; color: #fff; }
.rf-submit.is-ready:hover { background: #555555; border-color: #555555; }
.rf-submit:disabled { opacity: 0.7; cursor: default; }
.rf-submit[hidden] { display: none; }

.rf-calendar {
  max-width: 320px;
  margin: 0.5rem auto 0;
  padding: 1.1rem 1.1rem 1rem;
  border: 1.5px solid var(--stone);
  border-radius: var(--r-card);
  background: #fff;
}
.rf-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.rf-cal-nav button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--stone); background: #fff; color: var(--ink); font-size: 1rem; line-height: 1; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease; }
.rf-cal-nav button:hover { border-color: var(--carbon); background: rgba(0,0,0,0.04); }
.rf-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 0.3rem; }
.rf-cal-weekdays span { text-align: center; font-size: 0.66rem; font-weight: 600; color: var(--taupe); text-transform: uppercase; letter-spacing: 0.03em; }
.rf-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.rf-cal-grid button { aspect-ratio: 1; border: none; border-radius: 6px; background: transparent; color: var(--ink); font-family: var(--font-sans); font-size: 0.82rem; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.rf-cal-grid button:hover { background: rgba(0,0,0,0.06); }
.rf-cal-grid button.is-today { box-shadow: inset 0 0 0 1px var(--stone); font-weight: 600; }
.rf-cal-grid button.active { background: #6a6a6a; color: #fff; font-weight: 600; }
.rf-cal-grid button:disabled { color: rgba(0,0,0,0.18); cursor: not-allowed; }

.rf-estimate {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-card);
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.25);
}
.rf-estimate[hidden] { display: none; }
.rf-estimate-label { margin: 0 0 0.15rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #6a6a6a; }
.rf-estimate-value { margin: 0 0 0.4rem; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.rf-estimate-hint { margin: 0; font-size: 0.8rem; color: var(--taupe); }

.rf-conflict {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-card);
  background: rgba(181,31,31,0.07);
  border: 1px solid rgba(181,31,31,0.25);
}
.rf-conflict[hidden] { display: none; }
.rf-conflict-label { margin: 0 0 0.3rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: #3f3f3f; }
.rf-conflict-text { margin: 0; font-size: 0.85rem; line-height: 1.5; color: var(--ink); }

.rf-success {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(52,199,89,0.12);
  border: 1px solid rgba(52,199,89,0.35);
  color: #616161;
  font-size: 0.95rem;
  text-align: center;
}
.rf-error {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255,59,48,0.08);
  border: 1px solid rgba(255,59,48,0.3);
  color: #434343;
  font-size: 0.95rem;
  text-align: center;
}
.rf-error a { text-decoration: underline; }

/* ============================================================
   CONCEPT-BARRE STYLE REWORK
   Ported look from a reference site (collage hero, editorial
   statement lines, id-tagged class cards, full-bleed community
   photo with expand button, locations header): rust/cream
   palette instead of blue/carbon-black, no new dependencies.
   ============================================================ */

/* ---------- Hero collage ---------- */
.cb-hero {
  position: relative;
  background: var(--carbon);
  min-height: clamp(520px, 78vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb-collage {
  position: absolute;
  inset: 0;
}
.cb-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(0.9) contrast(1.02);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.cb-collage .c1 { top: 6%; left: 2%; width: 24%; height: 46%; transform: rotate(-4deg); }
.cb-collage .c2 { top: 12%; right: 3%; width: 30%; height: 58%; transform: rotate(3deg); }
.cb-collage .c3 { bottom: 6%; left: 8%; width: 22%; height: 40%; transform: rotate(2deg); }
.cb-collage .c4 { bottom: 4%; right: 14%; width: 20%; height: 42%; transform: rotate(-3deg); }
.cb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42,23,16,0.4);
  z-index: 1;
}
.cb-hero-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 26ch;
  margin: 0;
  padding: 0 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

@media (max-width: 760px) {
  .cb-collage .c1 { width: 42%; height: 26%; left: -4%; top: 4%; }
  .cb-collage .c2 { width: 46%; height: 32%; right: -4%; top: 10%; }
  .cb-collage .c3 { width: 40%; height: 24%; left: 2%; bottom: 6%; }
  .cb-collage .c4 { width: 38%; height: 24%; right: 4%; bottom: 2%; }
}

/* ---------- Statement lines ---------- */
.cb-statement {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5.5rem) var(--gutter);
  text-align: center;
}
.cb-statement p {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--carbon);
}
.cb-statement a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Class cards ---------- */
.cb-cards-section { background: #ffffff; padding: 0 0 var(--section-gap); }
.cb-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
.cb-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--carbon);
  display: block;
  border-radius: var(--r-bento-sm);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.5);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.cb-card:hover { transform: translateY(-3px); box-shadow: 0 26px 48px -20px rgba(0,0,0,0.55); }
.cb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cb-card:hover img { transform: scale(1.05); }
.cb-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 32%, rgba(0,0,0,0.55) 100%);
}
.cb-id {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.cb-tag {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  z-index: 2;
  padding: 0.4em 0.8em;
  border-radius: 9999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cb-card:hover .cb-tag { opacity: 1; transform: translateY(0); }
.cb-card-cap {
  position: absolute;
  bottom: 0.6rem; left: 0.6rem; right: 0.6rem;
  z-index: 2;
  padding: 0.6rem 0.75rem;
  border-radius: calc(var(--r-bento-sm) - 4px);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

@media (max-width: 860px) {
  .cb-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Community photo ---------- */
.cb-community {
  position: relative;
  background: var(--carbon);
  min-height: clamp(360px, 55vh, 640px);
  overflow: hidden;
}
.cb-community img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.cb-plus {
  position: absolute;
  top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.2s ease;
}
.cb-plus:hover { background: rgba(0,0,0,0.9); }

.cb-community-cta {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
}
.cb-community-cta .eyebrow { justify-content: center; color: rgba(255,255,255,0.75); }
.cb-community-cta .eyebrow::before { background: rgba(255,255,255,0.5); }
.cb-community-cta h2 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0.6rem auto 1.3rem;
}

.cb-cards--compact { justify-content: center; }
.cb-cards--compact .cb-card { flex: 0 1 260px; max-width: 260px; }
@media (min-width: 761px) {
  .cb-cards--compact { display: flex; }
}

.cb-card-cap small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-top: 0.2rem;
}

/* ---------- Locations ---------- */
.cb-locations {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5.5rem) var(--gutter) var(--section-gap);
  text-align: center;
}
.cb-locations h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  letter-spacing: -0.01em;
  color: var(--carbon);
  margin: 0 0 2rem;
}
.cb-locations h2 sup {
  font-size: 0.5em;
  color: var(--ash);
  margin-left: 0.2em;
}
.cb-location-card {
  max-width: 360px;
  margin: 0 auto;
  padding: 1.75rem;
  border: 1px solid var(--mist);
  border-radius: var(--r-bento-sm);
  text-align: left;
}
.cb-location-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--carbon);
  margin: 0 0 0.6rem;
}
.cb-location-card p {
  font-size: 0.9rem;
  color: var(--zinc);
  line-height: 1.5;
  margin: 0 0 0.8rem;
}
.cb-location-card a {
  font-size: 0.88rem;
  color: var(--terracotta);
  font-weight: 500;
}

/* ============================================================
   GALLERY CAROUSEL
   Vanilla port of a Framer Motion drag-carousel + expanding
   thumbnail filmstrip. Dark, locked to the viewport, no scroll.
   ============================================================ */
.gc-main {
  height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.gc-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  padding: clamp(0.75rem, 2.5vw, 1.75rem);
  background: #fff;
}
.gc-stage:active { cursor: grabbing; }

.gc-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
}
.gc-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-bento);
  overflow: hidden;
}
.gc-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-bento);
  user-select: none;
  pointer-events: none;
}

.gc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(20,15,10,0.06);
  backdrop-filter: blur(10px);
  color: var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.gc-arrow svg { width: 22px; height: 22px; }
.gc-arrow:hover { background: rgba(20,15,10,0.12); }
.gc-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.gc-arrow-prev { left: clamp(0.75rem, 2vw, 1.5rem); }
.gc-arrow-next { right: clamp(0.75rem, 2vw, 1.5rem); }

.gc-thumbs {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.6rem clamp(0.75rem, 2vw, 1.5rem);
  background: #fff;
  border-top: 1px solid rgba(20,15,10,0.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.gc-thumbs::-webkit-scrollbar { display: none; }

.gc-thumb {
  flex: 0 0 34px;
  height: 64px;
  border-radius: var(--r-bento-sm);
  overflow: hidden;
  border: none;
  padding: 0;
  opacity: 0.45;
  cursor: pointer;
  transition: flex-basis 0.3s ease, opacity 0.3s ease;
}
.gc-thumb.active { flex-basis: 110px; opacity: 1; }
.gc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 700px) {
  .gc-thumb { flex-basis: 24px; height: 52px; }
  .gc-thumb.active { flex-basis: 80px; }
}

/* ============================================================
   RENTALS: two studio tiles, side by side
   ============================================================ */
.rentals-main {
  height: 100vh;
  padding: var(--nav-h) clamp(0.4rem, 1vw, 0.75rem) clamp(0.75rem, 2.5vw, 1.5rem);
  display: flex;
  background: #fff;
}
.rentals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  width: 100%;
  height: 100%;
}
.rentals-tile { height: 100%; min-height: 0; }

@media (max-width: 760px) {
  .rentals-grid { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
}

.rentals-tile .bento-glass {
  padding: 1.05rem 1.4rem;
}
.rentals-tile .bento-glass h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}
.rentals-tile .bento-glass p {
  margin: 0 0 0.75rem;
}
.rentals-price {
  position: absolute;
  right: 1.4rem;
  bottom: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: #fff;
}

/* ---------- Rentals hero video ---------- */
.rentals-hero {
  position: relative;
  height: 78vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(2.25rem, 5vw, 3.5rem);
}
.rentals-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.rentals-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,4,0.05) 0%, rgba(10,8,4,0.15) 40%, rgba(10,8,4,0.78) 100%);
  z-index: 1;
}
.rentals-hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

/* ---------- Plain info-list rentals layout ---------- */
.rentals-info-main { padding: clamp(3rem, 6vw, 4.5rem) 0 var(--section-gap); background: #fff; }
.rentals-info-grid {
  max-width: var(--container-w, 1280px);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 800px) {
  .rentals-info-grid { grid-template-columns: 1fr; }
}
.rentals-info-photo { aspect-ratio: 1.7 / 1; }
.rentals-info-title {
  margin: 1.25rem 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  color: var(--carbon);
}
.rentals-info-price { margin: 0 0 0.4rem; font-size: 0.95rem; color: var(--ink); }
.rentals-info-price strong { font-weight: 700; }
.rentals-price-range { margin: 0 0 0.35rem; font-size: 1.4rem; font-weight: 700; color: #6a6a6a; }
.rentals-price-note { margin: 0 0 1rem; font-size: 0.85rem; line-height: 1.5; color: var(--taupe); }
.rentals-info-specs { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.rentals-info-specs p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--ink); }
.rentals-info-actions { margin-top: 1.75rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.rentals-grid--single {
  grid-template-columns: 1fr;
  position: relative;
}
.rentals-back {
  position: absolute;
  top: -0.4rem;
  left: 0;
  z-index: 3;
  transform: translateY(-100%);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--carbon);
  padding: 0.3rem 0;
}
.rentals-back:hover { color: var(--terracotta); }

/* ============================================================
   STUDIO A: full-bleed photo + glass scheduler
   ============================================================ */
.studio-a-main {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
}
.studio-a-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(12px);
  transform: scale(1.1);
}
.studio-a-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,8,4,0.45);
  z-index: 1;
}
.rentals-back--onphoto {
  position: absolute;
  top: calc(var(--nav-h) + 0.75rem);
  left: clamp(1rem, 3vw, 2rem);
  transform: none;
  z-index: 3;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.rentals-back--onphoto:hover { color: rgba(255,255,255,0.75); }

.studio-a-main--split { align-items: stretch; }
.studio-a-split {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.studio-a-split--full {
  grid-template-columns: 1fr;
  max-width: 1400px;
}
.studio-a-split--wide {
  max-width: 1680px;
  grid-template-columns: 1fr 1fr;
}
.studio-a-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  height: 100%;
  min-height: 0;
}

.gallery-glass {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-bento);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}
.gallery-glass .gc-stage { background: transparent; padding: clamp(0.6rem, 1.5vw, 1rem); }
.gallery-glass .gc-thumbs { background: transparent; }
.gallery-glass .gc-slide { background: transparent; }
.gallery-glass .gc-arrow { background: rgba(255,255,255,0.16); color: #fff; }
.gallery-glass .gc-arrow:hover { background: rgba(255,255,255,0.28); }
.gallery-glass .gc-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.studio-a-booking {
  position: relative;
  height: 100%;
  min-height: 0;
}

.scheduler-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border-radius: var(--r-bento);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(28px) saturate(180%);
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
}
.scheduler-head { position: relative; text-align: center; }
.cal-today-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4em 0.9em;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cal-today-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.scheduler-head .eyebrow { justify-content: center; color: rgba(255,255,255,0.75); }
.scheduler-head .eyebrow::before { background: rgba(255,255,255,0.5); }
.scheduler-head h2 {
  margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
  color: #fff;
}

.scheduler-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}
@media (max-width: 620px) {
  .scheduler-body { grid-template-columns: 1fr; }
}

.scheduler-calendar,
.scheduler-times {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-bento-sm);
  padding: 0.9rem;
}
.scheduler-right-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-height: 0;
}
.scheduler-times-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-content: start;
}
.scheduler-times-field { display: flex; flex-direction: column; gap: 0.4rem; }

.price-box {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--r-bento-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
.price-label {
  margin: 0 0 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.price-amount {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.price-note {
  margin: 0.3rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.time-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.6em 2em 0.6em 0.8em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.24);
  background-color: rgba(255,255,255,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6em center;
  background-size: 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
}
.time-select:focus { outline: none; border-color: #6a6a6a; }
.time-select option { color: #18181b; }

.space-glass {
  flex: 0 0 auto;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--r-bento);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
}
.space-glass .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 0.6rem; }
.space-glass .eyebrow::before { background: rgba(255,255,255,0.5); }

.scheduler-project { display: flex; flex-direction: column; gap: 0.4rem; }
.required-mark { color: #8a8a8a; }
.project-input,
.project-textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.4;
}
.project-textarea { min-height: 44px; resize: none; }
.project-input::placeholder,
.project-textarea::placeholder { color: rgba(255,255,255,0.4); }
.project-input:focus,
.project-textarea:focus { outline: none; border-color: #6a6a6a; }
.project-textarea:invalid { box-shadow: none; }
.info-list { margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.info-list dt {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.15rem;
}
.info-list dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}
.info-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}
.info-list--inline > div { flex: 1 1 200px; }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
}
.cal-nav button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cal-nav button:hover { background: rgba(255,255,255,0.24); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.3rem;
}
.cal-weekdays span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-grid button {
  aspect-ratio: 1;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cal-grid button:hover { background: rgba(255,255,255,0.14); }
.cal-grid button.active {
  background: #6a6a6a;
  color: #fff;
  font-weight: 600;
}
.cal-grid button.is-today {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
}
.calendar-mini-grid button.active {
  background: rgba(20,15,10,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  color: #fff;
}
.cal-grid button.disabled,
.cal-grid button:disabled {
  color: rgba(255,255,255,0.22);
  cursor: not-allowed;
  pointer-events: none;
}

.scheduler-times-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 0.6rem;
}
.times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  max-height: 220px;
  overflow-y: auto;
}
.times-grid button {
  padding: 0.5em 0.4em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.times-grid button:hover { border-color: rgba(255,255,255,0.4); }
.times-grid button.active {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
  font-weight: 600;
}

.scheduler-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.scheduler-reset {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
}
.scheduler-reset:hover { color: #fff; }
.scheduler-footer .btn-accent {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.5);
  box-shadow: none;
  cursor: not-allowed;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.scheduler-footer .btn-accent.is-ready {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(0,122,255,0.5);
  cursor: pointer;
}
.scheduler-footer .btn-accent.is-ready:hover {
  background: #555555;
  border-color: #555555;
}

.scheduler-glass.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.payment-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--r-bento);
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.payment-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--r-bento);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}
.payment-glass-inner {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}
.payment-glass.is-visible { opacity: 1; }
.payment-glass[hidden] { display: none; }

@media (max-width: 860px) {
  html, body.rentals-locked { height: auto !important; overflow: visible !important; }
  .studio-a-main { height: auto; min-height: 100vh; overflow-y: visible; align-items: flex-start; }
  .studio-a-split { grid-template-columns: 1fr; height: auto; padding-bottom: 1.5rem; }
  .studio-a-left { height: auto; }
  .gallery-glass { flex: 0 0 auto; min-height: 320px; }
  .studio-a-booking { height: auto; min-height: 520px; }
  .scheduler-glass,
  .payment-glass { position: relative; }
}

.payment-back {
  align-self: flex-start;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
}
.payment-back:hover { color: #fff; }

.payment-summary {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: var(--r-bento-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
.payment-summary > div { display: flex; justify-content: space-between; gap: 1rem; }
.payment-summary dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.payment-summary dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #fff;
  text-align: right;
}

.paypal-container { min-height: 45px; flex-shrink: 0; }

.payment-note {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.payment-success {
  margin: auto;
  text-align: center;
}
.payment-success h2 {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
}
.payment-success p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ============================================================
   CALENDAR PAGE: key dates + weekly schedule
   ============================================================ */
.calendar-dates-glass { flex-shrink: 0; }
.calendar-cta-glass {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calendar-cta-glass h2 {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.15;
  color: #fff;
}
.calendar-cta-glass p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 42ch;
}
.calendar-cta-glass .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.schedule-panel { justify-content: flex-start; }

.calendar-month-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.calendar-month-title { text-align: center; }
.calendar-month-title h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #fff;
}
.month-nav-btn {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.month-nav-btn:hover { background: rgba(255,255,255,0.24); }

.month-weekdays {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.3rem;
}
.month-weekdays span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.month-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 3px;
}
.month-cell {
  min-width: 0;
  min-height: 0;
  border-radius: 8px;
  padding: 0.3rem 0.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  overflow: hidden;
}
.month-cell--muted { opacity: 0.35; }
.month-cell--has-events {
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  transition: background 0.15s ease;
}
.month-cell--has-events:hover { background: rgba(255,255,255,0.16); }
.month-cell-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
}
.month-cell-num--today {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  background: #6a6a6a;
  color: #fff;
  font-weight: 600;
}
.month-chips {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 0;
  overflow: hidden;
}
.month-chip {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  line-height: 1.3;
  padding: 0.08rem 0.35rem;
  border-radius: 4px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.month-chip--contemporary-jazz { background: rgba(99, 102, 241, 0.8); }
.month-chip--contemporary { background: rgba(147, 51, 234, 0.8); }
.month-chip--modern { background: rgba(20, 184, 166, 0.8); }
.month-chip--ballet { background: rgba(173, 74, 41, 0.8); }
.month-chip--pointe { background: rgba(236, 72, 153, 0.8); }
.month-chip--jazz { background: rgba(217, 119, 6, 0.85); }
.month-chip--hip-hop { background: rgba(220, 38, 38, 0.8); }
.month-chip--company { background: rgba(0, 122, 255, 0.8); }
.month-chip--creative { background: rgba(34, 197, 94, 0.8); }
.month-chip--other { background: rgba(148, 163, 184, 0.8); }
.month-chip-more {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
}

.month-legend {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.month-legend-item { display: flex; align-items: center; gap: 0.4rem; }
.month-dot { width: 8px; height: 8px; border-radius: 50%; }
.month-dot--contemporary-jazz { background: rgb(99, 102, 241); }
.month-dot--contemporary { background: rgb(147, 51, 234); }
.month-dot--modern { background: rgb(20, 184, 166); }
.month-dot--ballet { background: var(--terracotta); }
.month-dot--pointe { background: rgb(236, 72, 153); }
.month-dot--jazz { background: rgb(217, 119, 6); }
.month-dot--hip-hop { background: rgb(220, 38, 38); }
.month-dot--company { background: #6a6a6a; }
.month-dot--creative { background: rgb(34, 197, 94); }
.month-dot--other { background: rgb(148, 163, 184); }

@media (max-width: 640px) {
  .month-chip, .month-chip-more { display: none; }
  .month-cell--has-events::after {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    align-self: center;
  }
}

.schedule-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-right: 0.2rem;
}
.schedule-row {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.schedule-row-time {
  flex: 0 0 auto;
  width: 9.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.6);
}
.schedule-row-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.schedule-row-name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
}
.schedule-row-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.schedule-empty {
  margin: auto;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .schedule-row { flex-direction: column; gap: 0.15rem; }
  .schedule-row-time { width: auto; }
}

/* ============================================================
   GIVE PAGE: half-and-half photo + donate glass
   ============================================================ */
.give-info-glass {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.give-info-gif {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  border-radius: var(--r-bento-sm, 12px);
  margin-bottom: 1.25rem;
}
.give-info-glass h2 {
  margin: 0.5rem 0 0.9rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
}
.give-info-glass > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}
.give-stats {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.give-stats dt {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0.2rem;
}
.give-stats dd { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.give-glass { justify-content: flex-start; gap: 1.1rem; }

.give-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.give-amount {
  padding: 0.7em 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.give-amount:hover { border-color: rgba(255,255,255,0.5); }
.give-amount.active {
  background: #6a6a6a;
  border-color: #6a6a6a;
}

.give-donate-btn {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.5);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.give-donate-btn.is-ready {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(0,122,255,0.5);
  cursor: pointer;
  pointer-events: auto;
}
.give-donate-btn.is-ready:hover {
  background: #555555;
  border-color: #555555;
}
.give-note { margin-top: 0; }

.give-frequency {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.35s ease, margin-top 0.4s ease;
  margin-top: -1.1rem;
}
.give-frequency.is-visible {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0;
}
.give-freq-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.give-freq-btn {
  padding: 0.6em 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.give-freq-btn:hover { border-color: rgba(255,255,255,0.5); }
.give-freq-btn.active {
  background: #6a6a6a;
  border-color: #6a6a6a;
}

.give-amount-field { position: relative; }
.give-amount-prefix {
  position: absolute;
  left: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.give-amount-field .project-input { padding-left: 1.6em; }

.give-glass {
  position: relative;
  overflow: hidden;
}
.give-glass > * { position: relative; z-index: 1; }
.give-glass-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  opacity: 0.55;
  background: radial-gradient(circle,
    rgba(236,72,153,0.55) 0%,
    rgba(239,68,68,0.38) 35%,
    rgba(234,179,8,0.2) 60%,
    rgba(234,179,8,0) 78%);
  filter: blur(45px);
  animation: give-blob-move 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes give-blob-move {
  0%   { transform: translate(-100%, -100%); }
  25%  { transform: translate(0%, -100%); }
  50%  { transform: translate(0%, 0%); }
  75%  { transform: translate(-100%, 0%); }
  100% { transform: translate(-100%, -100%); }
}

.give-mission {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.give-mission p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

.give-photo-tile {
  height: 100%;
  min-height: 0;
}

.give-light-bg { background: #fff; }
.give-light-bg::after { content: none; }
.give-light-bg .studio-a-bg { display: none; }

/* Generic light-theme overrides for any glass card inside a .give-light-bg page */
.give-light-bg .rentals-back--onphoto { color: var(--carbon); text-shadow: none; }
.give-light-bg .rentals-back--onphoto:hover { color: var(--terracotta); }

.give-light-bg .gallery-glass,
.give-light-bg .space-glass,
.give-light-bg .scheduler-glass,
.give-light-bg .payment-glass {
  background: #ffffff;
  border: 1px solid var(--clay-2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 24px 48px -28px rgba(60,45,20,0.2);
  color: var(--carbon);
}
.give-light-bg .payment-glass::before { display: none; }

.give-light-bg .eyebrow.on-dark { color: var(--taupe); }
.give-light-bg .eyebrow.on-dark::before { background: var(--taupe); }
.give-light-bg .scheduler-head h2,
.give-light-bg .payment-success h2 { color: var(--carbon); }

.give-light-bg .info-list dt { color: var(--taupe); }
.give-light-bg .info-list dd { color: var(--carbon); }

.give-light-bg .cal-nav { color: var(--carbon); }
.give-light-bg .cal-nav button { background: rgba(20,15,10,0.06); color: var(--carbon); }
.give-light-bg .cal-nav button:hover { background: rgba(20,15,10,0.12); }
.give-light-bg .cal-weekdays span { color: var(--taupe); }
.give-light-bg .cal-grid button { color: var(--carbon); }
.give-light-bg .cal-grid button:hover { background: rgba(20,15,10,0.08); }
.give-light-bg .cal-grid button.active { background: #6a6a6a; color: #fff; }
.give-light-bg .cal-grid button.disabled,
.give-light-bg .cal-grid button:disabled { color: rgba(20,15,10,0.25); }

.give-light-bg .scheduler-times-label { color: var(--taupe); }
.give-light-bg .time-select,
.give-light-bg .project-input,
.give-light-bg .project-textarea {
  background: #fff;
  border-color: var(--clay-2);
  color: var(--carbon);
}
.give-light-bg .project-input::placeholder,
.give-light-bg .project-textarea::placeholder { color: var(--stone); }

.give-light-bg .price-box { background: rgba(20,15,10,0.04); border-color: var(--clay-2); }
.give-light-bg .price-label { color: var(--taupe); }
.give-light-bg .price-amount { color: var(--carbon); }
.give-light-bg .price-note { color: var(--taupe); }

.give-light-bg .scheduler-reset { color: var(--taupe); }
.give-light-bg .scheduler-reset:hover { color: var(--carbon); }

.give-light-bg .scheduler-footer .btn-accent {
  border-color: var(--clay-2);
  color: var(--stone);
}
.give-light-bg .scheduler-footer .btn-accent.is-ready {
  color: #fff;
}

.give-light-bg .payment-note,
.give-light-bg .payment-back { color: var(--taupe); }
.give-light-bg .payment-back:hover { color: var(--carbon); }
.give-light-bg .payment-summary { background: #fff; border-color: var(--clay-2); }
.give-light-bg .payment-summary dt { color: var(--taupe); }
.give-light-bg .payment-summary dd { color: var(--carbon); }

.give-light-bg .cal-today-btn {
  border-color: var(--clay-2);
  background: #fff;
  color: var(--carbon);
}
.give-light-bg .cal-today-btn:hover { background: rgba(20,15,10,0.06); border-color: var(--stone); }

.give-light-bg .schedule-row {
  background: var(--fog);
  border-color: var(--clay-2);
}
.give-light-bg .schedule-row-time { color: var(--taupe); }
.give-light-bg .schedule-row-name { color: var(--carbon); }
.give-light-bg .schedule-row-meta { color: var(--taupe); }

.give-glass--light {
  background: var(--sand);
  border: 1px solid var(--clay-2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 24px 48px -28px rgba(60,45,20,0.28);
  color: var(--carbon);
}
.give-glass--light .eyebrow.on-dark { color: var(--taupe); }
.give-glass--light .eyebrow.on-dark::before { background: var(--taupe); }
.give-glass--light .scheduler-head h2,
.give-glass--light .payment-success h2 { color: var(--carbon); }
.give-glass--light .scheduler-times-label { color: var(--taupe); }
.give-glass--light .give-amount {
  background: #fff;
  border-color: var(--clay-2);
  color: var(--carbon);
}
.give-glass--light .give-amount:hover { border-color: var(--stone); }
.give-glass--light .give-amount.active {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
}
.give-glass--light .give-amount-prefix { color: var(--taupe); }
.give-glass--light .project-input,
.give-glass--light .project-textarea {
  background: #fff;
  border-color: var(--clay-2);
  color: var(--carbon);
}
.give-glass--light .project-input::placeholder { color: var(--stone); }
.give-glass--light .give-freq-btn {
  background: #fff;
  border-color: var(--clay-2);
  color: var(--carbon);
}
.give-glass--light .give-freq-btn:hover { border-color: var(--stone); }
.give-glass--light .give-freq-btn.active {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
}
.give-glass--light .give-donate-btn {
  background: transparent;
  border-color: var(--clay-2);
  color: var(--stone);
}
.give-glass--light .give-donate-btn.is-ready {
  background: #6a6a6a;
  border-color: #6a6a6a;
  color: #fff;
}
.give-glass--light .payment-note,
.give-glass--light .give-mission p,
.give-glass--light .rating-subtitle { color: var(--taupe); }
.give-glass--light .give-mission { border-top-color: var(--clay-2); }
.give-glass--light .payment-summary {
  background: #fff;
  border-color: var(--clay-2);
}
.give-glass--light .payment-summary dt { color: var(--taupe); }
.give-glass--light .payment-summary dd { color: var(--carbon); }
.give-glass--light .payment-back { color: var(--taupe); }
.give-glass--light .payment-back:hover { color: var(--carbon); }
.give-glass--light .give-glass-blob { opacity: 0.35; }
.give-glass--light.payment-glass::before { display: none; }

.give-sheen {
  position: relative;
}
.give-sheen::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--sheen-angle, 0deg),
    transparent 0%,
    rgba(255,255,255,0.9) 8%,
    transparent 18%,
    transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: give-sheen-spin 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@property --sheen-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes give-sheen-spin {
  to { --sheen-angle: 360deg; }
}

/* ============================================================
   OUR PEOPLE: plain photo-above-text tiles
   ============================================================ */
.people-title {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--carbon);
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
}
.section + .section .people-title { margin-top: 0; }

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}
.people-grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}
.people-grid--single .people-tile { max-width: 460px; width: 100%; }
.people-title--center { text-align: center; }
.people-tile {
  display: flex;
  flex-direction: column;
}
.people-tile img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  border-radius: var(--r-bento-sm);
}
.people-tile img[src*="riley-butler"] { object-position: center 20%; }
.people-tile img[src*="tanya"] { object-position: center 12%; }
.people-tile img[src*="kelvin-nivens"] { object-position: center 15%; }
.people-tile img[src*="teacher-eddie"] { object-position: center 36%; }
.people-tile img[src*="mo-katzman"] { object-position: center 22%; }
.people-tile img[src*="nicolette-hernandez-kaempf"] { object-position: center 35%; }

/* ---------- Class detail page: full-width bottom photo ---------- */
.class-bottom-photo { width: 100%; line-height: 0; }
.class-bottom-photo img { width: 100%; height: auto; display: block; }

/* ---------- Class detail page: per-level descriptions ---------- */
.class-levels { padding: 0 0 clamp(2rem, 5vw, 3.5rem); }
.class-level {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  text-align: center;
  border-top: 1px solid rgba(20,15,10,0.1);
}
.class-level:first-child { border-top: none; }
.class-level-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--carbon);
}
.class-level-sub {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.95rem;
  color: var(--taupe);
}
.class-level-desc {
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.people-cap {
  margin-top: 1rem;
  color: var(--carbon);
}
.people-cap .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}
.people-cap .eyebrow::before { background: var(--stone); }
.people-cap h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 1rem;
  color: var(--carbon);
}
.people-cap p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
}

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

/* ============================================================
   STORY PAGE: frosted glass content cards
   ============================================================ */
.story-card {
  border-radius: var(--r-bento-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.55), rgba(255,255,255,0.26));
  border: 1px solid rgba(20,15,10,0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 24px 44px -28px rgba(60,45,20,0.28);
}
.story-card .eyebrow { margin-bottom: 0.5rem; }
.story-card p { margin: 0 0 1rem; line-height: 1.65; color: var(--zinc); }
.story-card p:last-child { margin-bottom: 0; }

.story-quote {
  border-radius: var(--r-bento-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.55), rgba(255,255,255,0.26));
  border: 1px solid rgba(20,15,10,0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 24px 44px -28px rgba(60,45,20,0.28);
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.45;
  color: var(--carbon);
  max-width: none;
}

.story-glass {
  border-radius: var(--r-bento-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 24px 44px -28px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.story-glass .eyebrow { color: rgba(247,240,227,0.7); }
.story-glass .eyebrow::before { background: rgba(247,240,227,0.5); }

.equity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}
.equity-card {
  border-radius: var(--r-bento-sm);
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.55), rgba(255,255,255,0.26));
  border: 1px solid rgba(20,15,10,0.1);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 20px 36px -24px rgba(60,45,20,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.equity-card:hover { transform: translateY(-3px); box-shadow: 0 26px 44px -22px rgba(60,45,20,0.3); }
.equity-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  font-weight: 600;
}
.equity-card p { margin-top: 0.75rem; font-size: 0.86rem; line-height: 1.55; color: var(--zinc); }

/* ---------- Cleaner Equity section (Our Story page) ---------- */
.equity-section { background: #ffffff; color: var(--ink); }
.equity-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) { .equity-top { grid-template-columns: 1fr; } }
.equity-title {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--carbon);
  margin: 0 0 1.25rem;
}
.equity-intro p { margin: 0; font-size: 0.95rem; line-height: 1.65; color: var(--ink); }
.equity-photo { aspect-ratio: 4 / 5; max-width: 420px; margin-left: auto; }
.equity-fulfill-title {
  margin: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--carbon);
}
.equity-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (max-width: 900px) { .equity-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equity-cols { grid-template-columns: 1fr; } }
.equity-col { text-align: center; }
.equity-col h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1rem;
  color: var(--carbon);
  margin: 0 0 0.85rem;
}
.equity-col p { margin: 0; font-size: 0.85rem; line-height: 1.6; color: var(--taupe); }

.equity-legal {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--stone);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--taupe);
}

/* ============================================================
   STORY PAGE: frosted glass footer
   ============================================================ */
.story-footer { position: relative; overflow: hidden; }
.story-footer-glow {
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 150vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,255,0.32) 0%, rgba(0,122,255,0.1) 42%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.story-footer > .container { position: relative; z-index: 1; }

.story-footer-cta {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.story-footer-cta .eyebrow { justify-content: center; color: rgba(247,240,227,0.7); }
.story-footer-cta .eyebrow::before { background: rgba(247,240,227,0.5); }
.story-footer-cta h2 {
  margin: 0.6rem 0 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--sand);
}

.story-footer-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.story-footer-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.6em 0;
  outline: none;
}
.story-footer-form input::placeholder { color: rgba(255,255,255,0.5); }
.story-footer-form button {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: #6a6a6a;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.story-footer-form button:hover { background: #555555; }
.story-footer-note { margin-top: 1rem; font-size: 0.78rem; color: rgba(247,240,227,0.5); }

.story-footer-top {
  border-radius: var(--r-bento);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ============================================================
   STORY PAGE: Founder section (plain editorial layout, white bg)
   ============================================================ */
.founder-section { background: #ffffff; padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vw, 2.5rem)); }
.founder-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) {
  .founder-top { grid-template-columns: 1fr; }
}
.founder-title {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--carbon);
  margin: 0 0 1.25rem;
}
.founder-intro p {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}
.founder-intro p:last-child { margin-bottom: 0; }
.founder-photo { aspect-ratio: 1.6 / 1; }
.founder-photo img[src*="riley-butler"] { object-position: center 20%; }
.founder-photo img[src*="tanya"] { object-position: center 12%; }
.founder-photo img[src*="kelvin-nivens"] { object-position: center 15%; }
.founder-more {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.founder-more p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
}
.founder-more p:last-child { font-style: italic; color: var(--taupe); }
.person-bio .founder-more p:last-child { font-style: normal; color: var(--ink); }
.person-bio .founder-top { align-items: start; }
.person-bio { padding-bottom: clamp(3rem, 8vw, 6rem); }

/* ============================================================
   STORY PAGE: Mission / Vision (plain centered text, white bg)
   ============================================================ */
.mission-vision-section { background: #ffffff; }
.mv-block { text-align: center; max-width: 900px; margin: 0 auto; }
.mv-block + .mv-block { margin-top: clamp(3rem, 7vw, 5rem); }
.mv-title {
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--carbon);
  margin: 0 0 1.25rem;
}
.mv-block p {
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   STORY PAGE: full-bleed hero + frosted video player
   ============================================================ */
.story-hero { z-index: auto; align-items: flex-end; justify-content: flex-start; padding-bottom: clamp(2.5rem, 7vw, 5rem); }
.story-hero .studio-a-bg { filter: none; transform: none; }
.story-hero::after { background: linear-gradient(180deg, rgba(10,8,4,0.05) 0%, rgba(10,8,4,0.15) 40%, rgba(10,8,4,0.78) 100%); }

.story-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.story-hero-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-align: left;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.story-hero--center { align-items: center; justify-content: center; text-align: center; }
.story-hero--center .story-hero-title { text-align: center; }

.story-video-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0.6rem;
  border-radius: var(--r-bento);
  background: linear-gradient(160deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--r-bento) - 8px);
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.video-player-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-player:hover .video-player-thumb,
.video-player:focus-visible .video-player-thumb { transform: scale(1.04); }
.video-player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 45%, rgba(0,0,0,0.65) 100%);
}
.video-player-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.video-player:hover .video-player-play,
.video-player:focus-visible .video-player-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255,255,255,0.32);
}
.video-player-play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-player-caption {
  position: absolute;
  left: 1.5rem; bottom: 1.25rem;
  z-index: 2;
}
.video-player-caption h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #fff;
}
.video-player-caption p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.video-modal[hidden] { display: none; }
.video-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.2); }
.video-modal-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  padding: 0 1.25rem;
}
.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--r-bento-sm);
  border: none;
}

/* ---------- Companies page ---------- */
.company-photos { display: flex; flex-direction: column; gap: 0.4rem; }
.company-photos img { width: 100%; height: auto; display: block; border-radius: var(--r-bento-sm); }
.company-heading {
  margin: 0 0 1.2rem;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--carbon);
}
.company-invite { font-weight: 700; color: var(--carbon); text-decoration: underline; text-underline-offset: 3px; }



/* ============================================================
   PHOTO MOSAIC: Gallery page grid
   ============================================================ */
.photo-mosaic-section { padding-top: var(--nav-h); background: #fff; }
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.photo-mosaic .pm-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
  cursor: zoom-in;
}
.photo-mosaic .pm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.photo-mosaic .pm-item:hover img { transform: scale(1.04); }
@media (max-width: 980px) {
  .photo-mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
}

.pm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,8,4,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.pm-lightbox.is-open { opacity: 1; pointer-events: auto; }
.pm-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.pm-lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ============================================================
   CATEGORY BOXES: homepage (Adult / Youth / Performance / Studios)
   ============================================================ */
.category-section { background: #ffffff; padding: 0; }
.category-section + .donate-bento { padding-top: clamp(1.5rem, 3.5vw, 2.5rem); }
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.category-box:not(:first-child) { margin-top: -1px; }
.category-box {
  background: var(--carbon);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: clamp(170px, 22vw, 240px);
}
.category-box-text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.category-box:nth-child(1) { background: var(--carbon); }
.category-box:nth-child(2) { background: var(--terracotta); }
.category-box:nth-child(3) { background: #434343; }
.category-box:nth-child(4) { background: #303030; }
.category-box--photo {
  position: relative;
  background-size: cover !important;
  background-position: center;
  isolation: isolate;
}
.category-box--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}
.category-box:nth-child(1).category-box--photo::before {
  background: linear-gradient(100deg, rgba(42,23,16,0.92) 0%, rgba(42,23,16,0.55) 55%, rgba(42,23,16,0.25) 100%);
}
.category-box:nth-child(2).category-box--photo::before {
  background: linear-gradient(100deg, rgba(181,88,31,0.92) 0%, rgba(181,88,31,0.55) 55%, rgba(181,88,31,0.25) 100%);
}
.category-box:nth-child(3).category-box--photo::before {
  background: linear-gradient(100deg, rgba(45,74,62,0.92) 0%, rgba(45,74,62,0.55) 55%, rgba(45,74,62,0.25) 100%);
}
.category-box:nth-child(4).category-box--photo::before {
  background: linear-gradient(100deg, rgba(107,31,42,0.92) 0%, rgba(107,31,42,0.55) 55%, rgba(107,31,42,0.25) 100%);
}
.category-box h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: #fff;
}
.category-box p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 640px;
}
.category-box .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .category-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .category-box h4 { flex: none; }
}

/* ============================================================
   SIGN UP MODAL: how-to-register overlay
   ============================================================ */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,8,4,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.signup-modal[hidden] { display: none; }
.signup-modal-inner {
  position: relative;
  background: #fff;
  border-radius: var(--r-bento, 17px);
  width: min(640px, 100%);
  max-height: min(85vh, 800px);
  overflow-y: auto;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
}
.signup-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: none;
  background: var(--mist, #e4e4e7);
  color: var(--carbon);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.signup-modal-close:hover { background: var(--stone); }
.signup-steps {
  margin: 0;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.signup-steps li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 0.3rem;
}
.signup-steps li::marker {
  font-weight: 800;
  color: var(--terracotta);
}
.signup-steps a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.signup-steps em { color: var(--taupe); font-style: italic; }
.signup-steps ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.signup-steps ul li { font-size: 0.95rem; }
.signup-steps-done {
  margin: 1.75rem 0 0;
  font-weight: 700;
  color: var(--carbon);
  font-size: 1.1rem;
}
