@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/PlayfairDisplay-Variable.woff2) format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/PlayfairDisplay-Italic.woff2) format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/NunitoSans-Variable.woff2) format("woff2");
}
:root {
  --cream: #F6F0E6;
  --cream-elev: #EFE7D8;
  --paper: #FFFFFF;
  --ink: #1E3A5F;
  --ink-soft: #4C6584;
  --ink-soft-dk: #B9C6D6;
  --coral: #E2604F;
  --coral-deep: #B93A29;
  --coral-light: #EF8878;
  --line: rgba(30, 58, 95, 0.14);
  --line-dk: rgba(255, 255, 255, 0.16);
  --space-3xs: clamp(0.375rem, 0.35rem + 0.11vw, 0.4375rem);
  --space-2xs: clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem);
  --space-xs: clamp(0.75rem, 0.69rem + 0.33vw, 0.9375rem);
  --space-s: clamp(1rem, 0.91rem + 0.43vw, 1.25rem);
  --space-m: clamp(1.5rem, 1.37rem + 0.65vw, 1.875rem);
  --space-l: clamp(2rem, 1.83rem + 0.87vw, 2.5rem);
  --space-xl: clamp(3rem, 2.74rem + 1.3vw, 3.75rem);
  --space-2xl: clamp(4rem, 3.65rem + 1.74vw, 5rem);
  --space-3xl: clamp(6rem, 5.48rem + 2.61vw, 7.5rem);
  --text-h1: clamp(2.75rem, 2.1rem + 3vw, 4.5rem);
  --text-h2: clamp(2rem, 1.7rem + 1.6vw, 3rem);
  --text-h3: clamp(1.5rem, 1.35rem + 0.8vw, 1.875rem);
  --text-h4: clamp(1.15rem, 1.08rem + 0.35vw, 1.3rem);
  --text-lead: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-body: 1.0625rem;
  --text-caption: 0.875rem;
  --text-eyebrow: 0.8125rem;
  --text-stat: clamp(2.25rem, 1.9rem + 1.75vw, 3.25rem);
  --font-display:
    "Playfair Display",
    Georgia,
    serif;
  --font-body:
    "Nunito Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-s: 0 1px 3px rgba(30, 58, 95, 0.08), 0 1px 2px rgba(30, 58, 95, 0.06);
  --shadow-m: 0 10px 28px rgba(30, 58, 95, 0.12), 0 2px 8px rgba(30, 58, 95, 0.07);
  --shadow-l: 0 24px 56px rgba(30, 58, 95, 0.16);
  --ease-settle: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-menu: cubic-bezier(0.6, 0.14, 0, 1);
  --dur: 0.5s;
  --container: 1180px;
  --scroll-progress: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-feature-settings: "onum" 1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-s);
  text-wrap: balance;
  color: var(--ink);
}
h1 {
  font-size: var(--text-h1);
  line-height: 1.08;
}
h2 {
  font-size: var(--text-h2);
}
h3 {
  font-size: var(--text-h3);
  font-weight: 600;
}
h4 {
  font-size: var(--text-h4);
  font-weight: 600;
}
p {
  margin: 0 0 var(--space-s);
  max-width: 65ch;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--coral-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--coral-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--coral-light);
  color: var(--ink);
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section {
  padding-block: var(--space-2xl);
  position: relative;
}
section.tight {
  padding-block: var(--space-xl);
}
section.alt {
  background: var(--cream-elev);
}
section.dark {
  background: var(--ink);
  color: var(--cream);
}
section.dark h2,
section.dark h3 {
  color: var(--cream);
}
section.dark .lead,
section.dark p {
  color: var(--ink-soft-dk);
}
section.dark a {
  color: var(--coral-light);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--coral-deep);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-deep);
  margin-bottom: var(--space-s);
}
section.dark .eyebrow {
  color: var(--coral-light);
}
.lead {
  font-size: var(--text-lead);
  color: var(--ink-soft);
  font-weight: 400;
}
em.accent,
.accent {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--coral-deep);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--coral-deep);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--coral-deep);
  color: var(--coral-deep);
}
section.dark .btn-ghost {
  color: var(--cream);
  border-color: var(--line-dk);
}
section.dark .btn-ghost:hover {
  border-color: var(--coral-light);
  color: var(--coral-light);
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: var(--text-caption);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(246, 240, 230, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-s);
}
.staff-progress {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px clamp(1.25rem, 4vw, 2.5rem) 0;
  max-width: var(--container);
  margin-inline: auto;
}
.staff-progress-line {
  position: relative;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.staff-progress-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
}
.js .staff-progress-line::after {
  transition: transform 0.05s linear;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark path {
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s var(--ease-menu);
}
.is-scrolled .brand-mark path {
  stroke-dashoffset: 10;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: var(--space-m);
  align-items: center;
}
.nav-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav-list a:hover,
.nav-list a[aria-current=page] {
  color: var(--coral-deep);
}
.nav-list.open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--space-m) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-m);
}
.nav-list.open a {
  display: block;
  padding: 0.65rem 0;
}
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  .nav-list {
    display: flex;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2xl) var(--space-3xl);
}
.hero.tight {
  padding-block: var(--space-xl);
  overflow: visible;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.hero-lead {
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-l);
}
.hero-staff {
  position: absolute;
  left: 0;
  top: clamp(4.5rem, 5vw + 3rem, 8.5rem);
  width: min(64%, 720px);
  z-index: 1;
  pointer-events: none;
}
.hero-staff line {
  stroke: var(--ink);
  stroke-opacity: 0.16;
  stroke-width: 1;
}
.js .hero-staff line {
  stroke-dasharray: 720;
  animation: staff-draw 1.1s var(--ease-out) forwards;
}
.js .hero-staff line:nth-child(1) {
  animation-delay: 0.05s;
}
.js .hero-staff line:nth-child(2) {
  animation-delay: 0.15s;
}
.js .hero-staff line:nth-child(3) {
  animation-delay: 0.25s;
}
.js .hero-staff line:nth-child(4) {
  animation-delay: 0.35s;
}
.js .hero-staff line:nth-child(5) {
  animation-delay: 0.45s;
}
.hero-staff circle {
  fill: var(--coral);
  opacity: 0.85;
  transform-origin: center;
}
.js .hero-staff circle {
  animation: note-step 0.5s var(--ease-settle) forwards;
}
.js .hero-staff circle:nth-of-type(1) {
  animation-delay: 0.7s;
}
.js .hero-staff circle:nth-of-type(2) {
  animation-delay: 0.85s;
}
.js .hero-staff circle:nth-of-type(3) {
  animation-delay: 1s;
}
.js .hero-staff circle:nth-of-type(4) {
  animation-delay: 1.15s;
}
@keyframes staff-draw {
  from {
    stroke-dashoffset: 720;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes note-step {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 0.85;
    transform: scale(1);
  }
}
.hero-title {
  position: relative;
  z-index: 2;
  margin-inline: 0;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
}
.js .hero-title .line-inner {
  animation: line-rise 0.85s var(--ease-settle) forwards;
}
.js .hero-title .line:nth-child(1) .line-inner {
  animation-delay: 0.15s;
}
.js .hero-title .line:nth-child(2) .line-inner {
  animation-delay: 0.3s;
}
@keyframes line-rise {
  from {
    transform: translateY(115%);
  }
  to {
    transform: translateY(0);
  }
}
.hero-art {
  position: absolute;
  right: clamp(-2rem, -1vw, 1rem);
  top: 10%;
  width: min(38%, 380px);
  z-index: 1;
  opacity: 0.9;
}
.js .hero-art {
  will-change: transform;
}
.melody-wrap {
  position: relative;
}
.melody-line {
  position: absolute;
  top: 0;
  right: clamp(0.5rem, 3vw, 3rem);
  height: 100%;
  width: 40px;
  z-index: 1;
  pointer-events: none;
  display: none;
}
.melody-line path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.55;
}
@media (min-width: 960px) {
  .melody-line {
    display: block;
  }
}
.ms-divider {
  width: 48px;
  height: 1px;
  background: var(--line);
  margin: 0 auto var(--space-2xl);
  position: relative;
}
.ms-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  transform: translate(-50%, -50%);
}
section.dark .ms-divider {
  background: var(--line-dk);
}
.stats {
  display: grid;
  gap: var(--space-l);
  text-align: center;
}
@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 700;
  font-feature-settings: "lnum" 1;
  color: var(--ink);
  line-height: 1;
}
.stat-num .unit {
  color: var(--coral-deep);
}
.stat-label {
  color: var(--ink-soft);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
.grid {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-l) var(--space-m);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-m);
  border-color: rgba(30, 58, 95, 0.22);
}
.card p {
  color: var(--ink-soft);
  font-size: var(--text-body);
}
.card-link {
  display: inline-block;
  font-weight: 700;
  font-size: var(--text-caption);
  color: var(--coral-deep);
  text-decoration: none;
  margin-top: var(--space-2xs);
}
.card-link::after {
  content: " →";
}
.card-link:hover {
  color: var(--ink);
}
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.instrument-card {
  text-align: left;
}
.instrument-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  margin-bottom: var(--space-xs);
}
.instrument-tag {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-2xs);
}
.play-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.25s var(--ease-out),
    border-color 0.25s,
    transform 0.2s var(--ease-settle);
}
.play-btn:hover {
  border-color: var(--coral-deep);
  transform: scale(1.05);
}
.play-btn[aria-pressed=true] {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: #fff;
}
.play-btn svg {
  pointer-events: none;
}
.play-icon-pause {
  display: none;
}
.play-btn[aria-pressed=true] .play-icon-play {
  display: none;
}
.play-btn[aria-pressed=true] .play-icon-pause {
  display: block;
}
.eq {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  margin-top: var(--space-2xs);
}
.play-btn[aria-pressed=true] ~ .eq {
  display: flex;
}
.eq span {
  width: 3px;
  background: var(--coral-deep);
  border-radius: 2px;
  animation: eq-bounce 0.9s ease-in-out infinite;
}
.eq span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.eq span:nth-child(2) {
  height: 100%;
  animation-delay: 0.15s;
}
.eq span:nth-child(3) {
  height: 60%;
  animation-delay: 0.3s;
}
.eq span:nth-child(4) {
  height: 85%;
  animation-delay: 0.45s;
}
@keyframes eq-bounce {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}
.demo-note {
  font-size: var(--text-caption);
  color: var(--ink-soft);
  margin-top: var(--space-2xs);
  font-style: italic;
}
.pull-note-grid {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 900px) {
  .pull-note-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
  .pull-note-main {
    grid-column: 1 / 8;
  }
  .pull-note-aside {
    grid-column: 9 / -1;
  }
}
.pull-note-aside {
  background: var(--paper);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-l);
  box-shadow: var(--shadow-s);
}
.pull-note-label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: var(--space-s);
}
.pull-note-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.25rem + 0.7vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 var(--space-s);
}
.pull-note-attr {
  font-size: var(--text-caption);
  color: var(--ink-soft);
  font-weight: 700;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}
.timeline li {
  counter-increment: step;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-m);
}
.timeline li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--coral-deep);
  margin-bottom: 0.4rem;
}
.timeline h3 {
  font-size: var(--text-h4);
}
.timeline p {
  color: var(--ink-soft);
  font-size: var(--text-caption);
  margin: 0;
}
.faq {
  max-width: 760px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  margin-bottom: var(--space-xs);
}
.faq summary {
  cursor: pointer;
  padding: var(--space-s) var(--space-m);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "-";
}
.faq details > div {
  padding: 0 var(--space-m) var(--space-m);
  color: var(--ink-soft);
}
.cta-banner {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-l);
  text-align: center;
}
.cta-banner h2,
.cta-banner p {
  color: var(--cream);
}
.cta-banner .lead {
  color: var(--ink-soft-dk);
}
.cta-banner .hero-actions {
  justify-content: center;
}
.form-grid {
  display: grid;
  gap: var(--space-s);
}
@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}
label {
  display: block;
  font-weight: 700;
  font-size: var(--text-caption);
  margin-bottom: 0.35rem;
}
input,
select,
textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 1rem;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--coral-deep);
  outline-offset: 1px;
  border-color: var(--coral-deep);
}
.form-success {
  background: rgba(226, 96, 79, 0.08);
  border: 1px solid var(--coral);
  border-radius: var(--radius-md);
  padding: var(--space-m);
  color: var(--ink);
}
.hint {
  color: var(--ink-soft);
  font-size: var(--text-caption);
}
.info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-m);
}
.info-box dt {
  font-weight: 700;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral-deep);
  margin-top: var(--space-s);
}
.info-box dt:first-child {
  margin-top: 0;
}
.info-box dd {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}
.portrait {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--ink);
  background: var(--cream-elev);
  border: 2px solid var(--line);
  margin-bottom: var(--space-s);
  object-fit: cover;
  object-position: center 22%;
}
.portrait-lg {
  width: 148px;
  height: 148px;
  font-size: 2.6rem;
}
.room-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
}
.person-role {
  color: var(--coral-deep);
  font-size: var(--text-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.table-wrap {
  overflow-x: auto;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.table-wrap th,
.table-wrap td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-wrap thead th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: var(--cream-elev);
}
.table-wrap td {
  color: var(--ink-soft);
}
.table-wrap tbody tr:last-child th,
.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}
.breadcrumb {
  background: var(--cream-elev);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-caption);
  color: var(--ink-soft);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb a:hover {
  color: var(--coral-deep);
}
.prose {
  max-width: 760px;
}
.prose h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-l);
}
.prose h3 {
  font-size: var(--text-h4);
  margin-top: var(--space-m);
}
.prose li {
  margin-bottom: 0.35rem;
}
.notice {
  background: var(--cream-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-s) var(--space-m);
  margin-bottom: var(--space-l);
  font-size: var(--text-caption);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream-elev);
  padding-block: var(--space-xl) var(--space-l);
  color: var(--ink-soft);
  font-size: var(--text-caption);
}
.footer-grid {
  display: grid;
  gap: var(--space-l);
  margin-bottom: var(--space-l);
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.site-footer h3 {
  color: var(--ink);
  font-size: var(--text-body);
  font-family: var(--font-display);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.45rem;
}
.site-footer a {
  color: var(--ink-soft);
}
.site-footer a:hover {
  color: var(--coral-deep);
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: var(--space-m);
}
.footer-demo-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-deep);
  border: 1px solid var(--coral);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.5rem;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-staff line {
    stroke-dashoffset: 0;
  }
  .hero-staff circle {
    opacity: 0.85;
    transform: scale(1);
  }
  .hero-title .line-inner {
    transform: translateY(0);
  }
  .hero-art {
    transform: none !important;
  }
  .melody-line path {
    stroke-dashoffset: 0 !important;
  }
  .eq span {
    animation: none;
    transform: scaleY(0.7);
  }
  .tilt-card {
    transform: none !important;
  }
}
