/* =============================================================
   Family Improv — "Yes, And!" design system
   Playbill cream · curtain plum · spotlight gold · applause coral
   · youth teal. Theatrical, warm, playful, family-trustworthy.
   ============================================================= */

:root {
  --paper:    #fdf6ea;   /* warm playbill cream */
  --paper-2:  #f5edf7;   /* soft lilac alt section */
  --paper-3:  #efe3d2;   /* deep warm (image backings) */
  --card:     #ffffff;

  --plum:     #2a1f3d;   /* curtain dark */
  --plum-2:   #3a2b54;
  --plum-3:   #4a3a66;

  --ink:      #261b33;
  --ink-2:    #564a66;
  --ink-3:    #87798f;
  --muted:    #a99fb5;
  --line:     #ebdfcf;
  --line-2:   #e0d0bb;
  --line-cool:#e6dcee;

  --gold:      #ffb020;  /* primary — spotlight */
  --gold-deep: #f59311;
  --gold-ink:  #b9740a;  /* readable amber on cream */
  --gold-soft: rgba(255,176,32,0.14);
  --gold-faint:rgba(255,176,32,0.08);

  --coral:     #ff5d73;  /* applause pop */
  --coral-deep:#ec4459;
  --coral-ink: #d62f48;
  --coral-soft:rgba(255,93,115,0.12);

  --teal:      #1fb6a6;  /* youth fresh */
  --teal-deep: #129b8c;
  --teal-ink:  #0d8779;
  --teal-soft: rgba(31,182,166,0.13);

  --font-display: 'Bricolage Grotesque', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-label:   'Inter', system-ui, sans-serif;
  --font-hand:    'Caveat', 'Comic Sans MS', cursive;

  --radius-1: 12px;
  --radius-2: 20px;
  --radius-3: 30px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --transition: 260ms var(--ease);
  --container: 1180px;
  --measure: 700px;
  --shadow-1: 0 2px 12px rgba(42,31,61,0.06);
  --shadow-2: 0 16px 44px rgba(42,31,61,0.14);
  --shadow-gold: 0 10px 24px rgba(245,147,17,0.30);
  --shadow-plum: 0 18px 44px rgba(42,31,61,0.30);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink-2);
  font-family: var(--font-body); font-size: 17px; line-height: 1.68;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-ink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink);
  letter-spacing: -0.018em; line-height: 1.1; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.55rem, 5.6vw, 4.3rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.95rem, 3.7vw, 2.95rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); font-weight: 700; }
em { color: var(--ink); }
.muted { color: var(--muted); }
.lede { font-size: 1.24rem; line-height: 1.6; color: var(--ink-2); }
::selection { background: var(--gold); color: var(--plum); }

/* layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.container--narrow { max-width: var(--measure); }
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--alt { background: var(--paper-2); }
.section--plum { background: var(--plum); color: #e7ddf2; }
.section--plum h1, .section--plum h2, .section--plum h3 { color: #fff; }
.section__header { max-width: var(--measure); margin-bottom: clamp(34px,5vw,52px); }
.section__header.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header p { color: var(--ink-3); font-size: 1.1rem; margin-bottom: 0; }
.section--plum .section__header p { color: #b7a9cc; }

/* eyebrow */
.eyebrow { font-family: var(--font-label); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-ink); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 3px; background: var(--gold); }
.is-center .eyebrow { justify-content: center; }
.eyebrow--coral { color: var(--coral-ink); } .eyebrow--coral::before { background: var(--coral); }
.eyebrow--teal  { color: var(--teal-ink); }  .eyebrow--teal::before  { background: var(--teal); }
.eyebrow--on-dark { color: var(--gold); } .eyebrow--on-dark::before { background: var(--gold); }

/* sticker chip (playful tilt) */
.sticker { display: inline-block; font-family: var(--font-label); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.02em; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
  background: var(--gold); color: var(--plum); transform: rotate(-2deg);
  box-shadow: 0 3px 0 rgba(42,31,61,0.14), 0 8px 18px rgba(245,147,17,0.22); }
.sticker--coral { background: var(--coral); color: #fff; transform: rotate(2deg); box-shadow: 0 3px 0 rgba(42,31,61,0.14), 0 8px 18px rgba(236,68,89,0.24); }
.sticker--teal  { background: var(--teal);  color: #fff; transform: rotate(-1.5deg); box-shadow: 0 3px 0 rgba(42,31,61,0.14), 0 8px 18px rgba(18,155,140,0.24); }
.sticker--plum  { background: var(--plum);  color: #fff; }

.visually-hidden, .skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; z-index: 9999; background: var(--gold); color: var(--plum); padding: 10px 16px; font-family: var(--font-label); font-weight: 800; border-radius: var(--radius-1); }

/* ── marquee bulb strip (signature) ── */
.marquee { height: 16px; background:
  radial-gradient(circle at 12px 8px, var(--gold) 3.2px, transparent 3.6px) 0 0/24px 16px;
  opacity: 0.9; }
.marquee--dim { background:
  radial-gradient(circle at 12px 8px, rgba(255,176,32,0.5) 3.2px, transparent 3.6px) 0 0/24px 16px; }

/* ── ribbon ── */
.ribbon { background: var(--plum); color: #cdbfe0; font-size: 0.82rem; }
.ribbon__inner { display: flex; align-items: center; gap: 12px; padding: 8px 0; flex-wrap: wrap; font-family: var(--font-label); font-weight: 600; }
.ribbon__spacer { flex: 1 1 auto; }
.ribbon__item { color: #cdbfe0; display: inline-flex; align-items: center; gap: 6px; }
.ribbon__item--tag { background: var(--gold); color: var(--plum); padding: 3px 13px; border-radius: 999px; font-weight: 800; transform: rotate(-1.2deg); }
a.ribbon__item:hover { color: #fff; }
@media (max-width: 620px) { .ribbon__inner { justify-content: center; } .ribbon__spacer { flex-basis: 100%; height: 0; } }

/* ── header ── */
.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 0 2px; background: linear-gradient(var(--paper) 62%, transparent); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--card); border: 1.5px solid var(--line-2); border-radius: 999px;
  padding: 9px 12px 9px 16px; box-shadow: 0 10px 30px rgba(42,31,61,0.10); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { display: inline-flex; color: var(--gold-deep); transform: rotate(-4deg); transition: transform var(--transition); }
.brand:hover .brand__mark { transform: rotate(3deg) scale(1.06); }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.26rem; letter-spacing: -0.02em; line-height: 1.02; }
.brand__word b { font-weight: 800; color: var(--coral-ink); }
.brand__sub { display: block; font-family: var(--font-label); font-weight: 700; font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }

.site-nav__pill { display: flex; align-items: center; gap: 4px; background: var(--paper-2); border: 1.5px solid var(--line-cool); border-radius: 999px; padding: 5px 6px; }
.site-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav__list > li > a { color: var(--ink-2); font-family: var(--font-label); font-size: 0.93rem; font-weight: 700; padding: 8px 16px; border-radius: 999px; display: block; transition: background var(--transition), color var(--transition); }
.site-nav__list > li > a:hover { color: var(--coral-ink); background: var(--card); }
.site-nav__list > li > a.is-active { color: #fff; background: var(--plum); }
.site-nav__cta { margin-left: 4px; } .site-nav__cta > a { color: var(--plum); }
.site-nav__toggle { display: none; width: 46px; height: 46px; background: var(--card); border: 1.5px solid var(--line-2); border-radius: 50%; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.site-nav__toggle-bar { width: 18px; height: 2px; border-radius: 2px; background: var(--plum); }
@media (max-width: 900px) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__pill { position: fixed; inset: 0; background: var(--paper); border: 0; border-radius: 0; padding: 100px 26px 40px; display: block; transform: translateY(-110%); visibility: hidden; transition: transform var(--transition), visibility var(--transition); overflow-y: auto; }
  .site-nav.is-open .site-nav__pill { transform: translateY(0); visibility: visible; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 6px; }
  .site-nav__list > li { width: 100%; }
  .site-nav__list > li > a { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; padding: 14px 18px; border-radius: var(--radius-2); background: var(--card); border: 1.5px solid var(--line); }
  .site-nav__cta { margin: 14px 0 0; } .site-nav__cta > a { font-size: 1.05rem; width: 100%; justify-content: center; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; font-family: var(--font-label); font-size: 0.98rem; font-weight: 700; background: transparent; color: var(--ink); border: 2px solid var(--line-2); border-radius: 999px; cursor: pointer; transition: all var(--transition); }
.btn--primary { background: var(--gold); border-color: var(--gold); color: var(--plum); box-shadow: var(--shadow-gold); font-weight: 800; }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--plum); transform: translateY(-2px); }
.btn--plum { background: var(--plum); border-color: var(--plum); color: #fff; }
.btn--plum:hover { background: var(--plum-2); border-color: var(--plum-2); color: #fff; transform: translateY(-2px); }
.btn--coral { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(236,68,89,0.26); }
.btn--coral:hover { background: var(--coral-deep); border-color: var(--coral-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── hero ── */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(58% 50% at 84% 14%, var(--gold-faint), transparent 70%),
  radial-gradient(50% 44% at 4% 92%, var(--teal-soft), transparent 70%), var(--paper); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,4vw,64px); align-items: center;
  padding: clamp(40px,6vw,86px) 0 clamp(54px,8vw,100px); }
.hero__copy { max-width: 600px; }
.hero h1 { margin-bottom: 0; }
.hero h1 .squiggle { position: relative; color: var(--coral-ink); white-space: nowrap; }
.hero h1 .squiggle::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.14em; height: 0.24em;
  background: no-repeat center/100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 8C22 2 42 2 60 7s40 5 58-1' fill='none' stroke='%23ffb020' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.hero__lede { margin-top: 22px; font-size: 1.22rem; color: var(--ink-2); }
.hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-3); font-family: var(--font-label); font-weight: 600; }
.hero__trust strong { color: var(--gold-ink); }

/* hero "stage" frame */
.stage { position: relative; }
.stage__frame { position: relative; border-radius: var(--radius-3); overflow: hidden; background: var(--plum);
  border: 3px solid var(--plum); box-shadow: var(--shadow-plum); }
.stage__bulbs { height: 18px; background:
  radial-gradient(circle at 13px 9px, var(--gold) 3.4px, transparent 3.8px) 0 0/26px 18px; }
.stage__frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.stage__chip { position: absolute; z-index: 3; background: var(--card); border-radius: 14px; padding: 11px 15px;
  box-shadow: var(--shadow-2); display: flex; align-items: center; gap: 10px; max-width: 220px; }
.stage__chip b { color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.stage__chip p { margin: 0; font-size: 0.8rem; color: var(--ink-2); line-height: 1.35; }
.stage__chip--enroll { left: -10px; bottom: 30px; transform: rotate(-3deg); }
.stage__chip--ticket { right: -8px; top: 26px; transform: rotate(3deg); background: var(--coral); }
.stage__chip--ticket b, .stage__chip--ticket p { color: #fff; }
.stage__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); flex: none; }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .stage { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ── stat strip ── */
.stat-band { background: var(--plum); border-radius: var(--radius-3); padding: 6px; box-shadow: var(--shadow-plum); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2px; }
.stat-cell { padding: 26px 24px; text-align: center; }
.stat-cell__num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.7rem); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.stat-cell__label { margin-top: 10px; font-size: 1rem; color: #fff; font-weight: 700; font-family: var(--font-label); }
.stat-cell__sub { margin-top: 5px; font-size: 0.86rem; color: #b3a4c9; }

/* ── cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: 22px; }
.card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-3); padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-1); transition: transform var(--transition), box-shadow var(--transition); }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); color: var(--ink-2); }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold-soft); color: var(--gold-deep); margin-bottom: 16px; font-size: 1.5rem; }
.card__icon svg { width: 28px; height: 28px; }
.card--teal .card__icon { background: var(--teal-soft); color: var(--teal-deep); }
.card--coral .card__icon { background: var(--coral-soft); color: var(--coral-deep); }
.card__kicker { font-family: var(--font-label); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 10px; }
.card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.card p { color: var(--ink-3); font-size: 0.98rem; margin-bottom: 0; }
.card__more { margin-top: 16px; font-weight: 700; font-size: 0.92rem; color: var(--coral-ink); display: inline-flex; gap: 6px; font-family: var(--font-label); }
.card__more::after { content: '→'; transition: transform var(--transition); }
a.card:hover .card__more::after { transform: translateX(4px); }

/* ── benefits grid ── */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.benefit { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 26px 26px; box-shadow: var(--shadow-1); }
.benefit__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-soft); color: var(--gold-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.benefit__icon svg { width: 25px; height: 25px; }
.benefit:nth-child(3n+2) .benefit__icon { background: var(--teal-soft); color: var(--teal-deep); }
.benefit:nth-child(3n+3) .benefit__icon { background: var(--coral-soft); color: var(--coral-deep); }
.benefit h3 { font-size: 1.18rem; margin-bottom: 6px; }
.benefit p { color: var(--ink-3); font-size: 0.96rem; margin: 0; }

/* ── class cards (playbill) ── */
.class-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 26px; }
.class-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-3); overflow: hidden; box-shadow: var(--shadow-1); display: flex; flex-direction: column; scroll-margin-top: 100px; transition: transform var(--transition), box-shadow var(--transition); }
.class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.class-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); }
.class-card__media img { width: 100%; height: 100%; object-fit: cover; }
.class-card__badge { position: absolute; top: 13px; left: 13px; font-family: var(--font-label); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--gold); color: var(--plum); box-shadow: var(--shadow-1); }
.class-card__badge--waitlist { background: var(--card); color: var(--coral-ink); }
.class-card__ages { position: absolute; bottom: 13px; left: 13px; font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: #fff; padding: 5px 13px; border-radius: 999px; background: rgba(42,31,61,0.74); backdrop-filter: blur(3px); }
.class-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.class-card__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.class-card__tagline { color: var(--coral-ink); font-weight: 600; font-size: 0.98rem; margin: 6px 0 0; }
.class-card__blurb { color: var(--ink-3); font-size: 0.95rem; margin: 12px 0 0; }
.class-card__sched { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 0; }
.chip { font-family: var(--font-label); font-weight: 700; font-size: 0.76rem; padding: 5px 11px; border-radius: 8px; background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line-cool); display: inline-flex; align-items: center; gap: 5px; }
.chip--price { background: var(--teal-soft); color: var(--teal-ink); border-color: rgba(31,182,166,0.3); font-weight: 800; }
.class-card__learn { list-style: none; padding: 0; margin: 16px 0 0; }
.class-card__learn li { position: relative; padding-left: 26px; margin-bottom: 7px; color: var(--ink-2); font-size: 0.92rem; }
.class-card__learn li::before { content: '★'; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 0.9rem; }
.class-card__foot { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line-2); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── shows ── */
.show-feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(26px,4vw,52px); align-items: center;
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-3); overflow: hidden; box-shadow: var(--shadow-2); }
.show-feature__media { position: relative; min-height: 280px; }
.show-feature__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.show-feature__body { padding: clamp(28px,4vw,46px) clamp(28px,4vw,46px) clamp(28px,4vw,46px) 0; }
@media (max-width: 800px) { .show-feature { grid-template-columns: 1fr; } .show-feature__media { min-height: 0; aspect-ratio: 16/10; } .show-feature__media img { position: static; } .show-feature__body { padding: 6px 26px 32px; } }

.show-list { display: flex; flex-direction: column; gap: 16px; }
.show { display: grid; grid-template-columns: 150px 1fr auto; gap: 26px; align-items: center; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 24px 28px; box-shadow: var(--shadow-1); position: relative; }
.show::before { content: ''; position: absolute; left: 132px; top: 16px; bottom: 16px; border-left: 2px dashed var(--line-2); }
.show__when { font-family: var(--font-display); }
.show__day { font-size: 1.05rem; color: var(--ink); font-weight: 800; line-height: 1.15; }
.show__time { font-family: var(--font-label); font-weight: 700; font-size: 0.84rem; color: var(--gold-ink); margin-top: 4px; }
.show__tag { font-family: var(--font-label); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-ink); margin-bottom: 6px; }
.show__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--ink); margin: 0 0 4px; letter-spacing: -0.02em; }
.show__where { font-size: 0.92rem; color: var(--ink-3); margin: 0 0 6px; }
.show__note { color: var(--ink-2); font-size: 0.94rem; margin: 0; }
.show__price { font-family: var(--font-label); font-weight: 800; color: var(--teal-ink); font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 760px) { .show { grid-template-columns: 1fr; gap: 10px; } .show::before { display: none; } .show__price { justify-self: start; } }

/* ── speech-bubble testimonials ── */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px 26px; }
.quote { display: flex; flex-direction: column; }
.quote__bubble { position: relative; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 22px 24px; box-shadow: var(--shadow-1); }
.quote__bubble::after { content: ''; position: absolute; left: 30px; bottom: -13px; width: 24px; height: 24px; background: var(--card); border-right: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); transform: rotate(45deg); border-bottom-right-radius: 4px; }
.quote__text { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); line-height: 1.45; margin: 0; letter-spacing: -0.01em; }
.quote__who { display: flex; align-items: center; gap: 11px; margin: 24px 0 0 14px; }
.quote__pip { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--plum); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; flex: none; }
.quote:nth-child(3n+2) .quote__pip { background: var(--teal); color: #fff; }
.quote:nth-child(3n+3) .quote__pip { background: var(--coral); color: #fff; }
.quote__name { font-family: var(--font-label); font-weight: 800; color: var(--ink); font-size: 0.92rem; }
.quote__role { font-size: 0.82rem; color: var(--ink-3); }

/* ── team monograms ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px; }
.team-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 28px 26px; box-shadow: var(--shadow-1); text-align: center; }
.team-card__avatar { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; }
.avatar--gold { background: var(--gold-soft); color: var(--gold-deep); }
.avatar--teal { background: var(--teal-soft); color: var(--teal-deep); }
.avatar--coral { background: var(--coral-soft); color: var(--coral-deep); }
.team-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.team-card__role { font-family: var(--font-label); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--coral-ink); margin: 4px 0 12px; }
.team-card__bio { color: var(--ink-3); font-size: 0.94rem; margin: 0; }

/* ── numbered steps ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; counter-reset: step; }
.step { counter-increment: step; background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 26px 24px; box-shadow: var(--shadow-1); }
.step::before { content: counter(step); font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--plum); background: var(--gold); width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 1.16rem; margin-bottom: 6px; }
.step p { color: var(--ink-3); font-size: 0.95rem; margin: 0; }

/* ── split feature ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,60px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-2); box-shadow: var(--shadow-2); }
.split__body { max-width: 520px; }
.split + .split { margin-top: clamp(48px,7vw,90px); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 26px; } .split--flip .split__media { order: -1; } }

/* ── page head ── */
.page-head { padding: clamp(40px,5vw,72px) 0 clamp(24px,3vw,36px); }
.page-head--alt { background: var(--paper-2); }
.page-head__inner { max-width: 760px; }
.page-head__lede { font-size: 1.2rem; color: var(--ink-2); margin: 16px 0 0; }
.crumbs { font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--ink-3); } .crumbs a:hover { color: var(--gold-ink); } .crumbs span { color: var(--ink); }

/* ── prose ── */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin-top: 1.5em; margin-bottom: 0.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.3em; margin-bottom: 0.3em; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { text-decoration: underline; text-decoration-color: rgba(255,176,32,0.5); text-underline-offset: 2px; }
.prose ul { list-style: none; padding-left: 0; margin: 0 0 1.1em; }
.prose ul > li { position: relative; padding-left: 1.7em; margin-bottom: 0.5em; }
.prose ul > li::before { content: '★'; position: absolute; left: 0; top: 0.05em; color: var(--gold); }

/* ── FAQ ── */
.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; color: var(--ink); }
.faq__q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.6rem; color: var(--gold-deep); transition: transform var(--transition); }
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 340ms var(--ease); }
.faq__a-inner { padding: 0 0 22px; color: var(--ink-2); }
.faq__a-inner p { margin: 0; }

/* ── forms ── */
.form-wrap { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-3); padding: clamp(26px,4vw,42px); box-shadow: var(--shadow-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-label); font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.field label .req { color: var(--coral-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-2); border-radius: var(--radius-1); padding: 12px 14px; transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px var(--gold-soft); }
.field__hint { font-size: 0.8rem; color: var(--ink-3); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.86rem; color: var(--ink-3); margin: 4px 0 0; }
.form-status { padding: 14px 18px; border-radius: var(--radius-1); font-weight: 600; margin-bottom: 18px; display: none; }
.form-status.is-show { display: block; }
.form-status--ok { background: var(--teal-soft); color: var(--teal-ink); border: 1px solid rgba(31,182,166,0.4); }
.form-status--err { background: var(--coral-soft); color: var(--coral-deep); border: 1px solid var(--coral); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* contact cards */
.contact-card { background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-2); padding: 24px; box-shadow: var(--shadow-1); }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-card a { font-family: var(--font-label); font-weight: 700; }

/* ── CTA band ── */
.cta-band { background: var(--plum); color: #e7ddf2; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,176,32,0.42), transparent 68%); top: -130px; right: -70px; filter: blur(16px); }
.cta-band::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 16px; background: radial-gradient(circle at 13px 9px, rgba(255,176,32,0.55) 3.2px, transparent 3.6px) 0 0/26px 16px; }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(46px,6vw,76px) 0 clamp(44px,6vw,72px); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #bdb0d2; margin: 0; max-width: 470px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* panel */
.panel { background: var(--paper-2); border: 1.5px solid var(--line-cool); border-radius: var(--radius-3); padding: clamp(28px,4vw,48px); }
.panel--gold { background: var(--gold-faint); border-color: rgba(255,176,32,0.3); }

/* ── footer ── */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding-top: 56px; }
.site-footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__tag { color: var(--ink-3); margin-top: 12px; font-size: 0.94rem; max-width: 360px; }
.site-footer__contact { margin-top: 12px; font-family: var(--font-label); font-weight: 700; font-size: 0.95rem; }
.site-footer h3 { font-family: var(--font-label); font-weight: 800; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: 5px 0; }
.link-list a { color: var(--ink-2); font-size: 0.95rem; }
.link-list a:hover { color: var(--gold-ink); }
.site-footer__base { border-top: 1px solid var(--line); padding: 22px 0; }
.site-footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--font-label); font-weight: 600; font-size: 0.84rem; color: var(--ink-3); }
.site-footer__base p { margin: 0; }
.site-footer__base p:last-child { font-family: var(--font-hand); font-size: 1.15rem; color: var(--gold-ink); }

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.hand { font-family: var(--font-hand); color: var(--gold-ink); font-size: 1.5rem; line-height: 1; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

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