:root {
    --ink: #211c18;
    --ink-soft: #5c554e;
    --paper: #faf6f0;
    --paper-deep: #f1e9de;
    --accent: #d0532c;
    --accent-deep: #b34423;
    --gold: #c99a3f;
    --dim: rgba(33, 28, 24, 0.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(250, 246, 240, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(33, 28, 24, 0.07);
}

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; max-width: 1120px; margin: 0 auto;
}

.brand {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: 1.25rem; color: var(--ink); text-decoration: none;
}

.brand em { color: var(--accent); font-style: normal; }

/* tiny "voice" equalizer next to the brand */
.eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 16px; }

.eq i {
    width: 3px; background: var(--accent); border-radius: 2px;
    height: 60%;
}

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a:not(.btn) {
    color: var(--ink-soft); text-decoration: none;
    font-size: 0.9rem; font-weight: 600;
}

.nav-links a:not(.btn):hover { color: var(--ink); }

/* hamburger toggle: hidden on desktop, shown at the same breakpoint that
   hides .nav-links so there's always a way to reach every page */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 38px; height: 38px; border: 0; background: none; cursor: pointer;
    padding: 0; flex-shrink: 0;
}

.nav-toggle span {
    display: block; height: 2px; width: 100%; background: var(--ink);
    border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Base state is flex (not display:none) so GSAP can animate height/opacity;
   the `hidden` attribute is what fully conceals it while closed. GSAP owns
   height, padding-top/bottom, border-top-width and opacity together in one
   tween — mixing that with a CSS class transition would cause a visible snap. */
.mobile-nav {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding: 0 24px;
    border-top: 0 solid rgba(33, 28, 24, 0.08);
}

.mobile-nav a:not(.btn) {
    padding: 13px 0; color: var(--ink-soft); text-decoration: none;
    font-weight: 600; font-size: 1rem;
    border-bottom: 1px solid rgba(33, 28, 24, 0.06);
}

.mobile-nav a.on { color: var(--accent); }

.btn {
    display: inline-block; border: 0; cursor: pointer;
    background: var(--accent); color: #fff !important;
    font-weight: 700; font-size: 0.95rem;
    padding: 12px 24px; border-radius: 999px; text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn.ghost {
    background: transparent; color: var(--ink) !important;
    box-shadow: inset 0 0 0 1.5px rgba(33, 28, 24, 0.25);
}

.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: transparent; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 72px 0 30px; overflow: hidden; }

.float-note {
    position: absolute; pointer-events: none; z-index: 0;
    color: var(--accent); font-size: 1.4rem;
}

.hero-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: 48px; align-items: center; position: relative; z-index: 1;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 18px;
}

.eyebrow:before { content: ""; width: 32px; height: 1.5px; background: var(--accent); }

.hero h1 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(2.6rem, 5.8vw, 4.2rem);
    line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px;
}

.hero h1 .line {
    display: block; overflow: visible;
    padding-bottom: 0.14em; margin-bottom: -0.14em;
}

.hero h1 .line > span { display: block; }

.hero h1 em { font-style: italic; color: var(--accent); }

.hero p.lead { font-size: 1.1rem; color: var(--dim); max-width: 47ch; margin-bottom: 30px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-note { font-size: 0.85rem; color: var(--dim); margin-top: 14px; }

.portrait-stage { position: relative; justify-self: end; width: min(380px, 90%); }

.portrait-arch {
    position: absolute; inset: 18px -18px -18px 18px;
    background: var(--paper-deep);
    border-radius: 999px 999px 24px 24px; z-index: 0;
}

.portrait {
    position: relative; z-index: 1; width: 100%; height: auto; display: block;
    border-radius: 999px 999px 24px 24px;
    box-shadow: 0 24px 60px rgba(33, 28, 24, 0.18);
}

.portrait-badge {
    position: absolute; z-index: 2; left: -26px; bottom: 34px;
    background: #fff; border-radius: 16px; padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(33, 28, 24, 0.14);
    font-size: 0.8rem; line-height: 1.35;
}

.portrait-badge strong { display: block; font-size: 0.86rem; }

.portrait-badge .n { color: var(--accent); font-weight: 700; }

/* ---------- vocal underline scope ---------- */
.voiceword {
    position: relative; display: inline-block;
    padding-bottom: 0.26em;
}

.voiceword .scope {
    position: absolute; left: 0; bottom: 0.02em;
    width: 100%; height: 0.24em; overflow: visible;
}

.voiceword .scope path {
    fill: none; stroke: var(--accent);
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.voiceword .scope .ghostwave {
    stroke: var(--gold); opacity: 0.5; stroke-width: 1.6;
}

/* ---------- ticker ---------- */
.ticker-section {
    padding: 30px 0;
    border-top: 1px solid rgba(33, 28, 24, 0.08);
    border-bottom: 1px solid rgba(33, 28, 24, 0.08);
    background: #fff;
}

.ticker-label {
    text-align: center; font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
    margin-bottom: 16px;
}

.ticker { overflow: hidden; white-space: nowrap; }

.ticker-track { display: inline-flex; will-change: transform; }

.ticker span {
    font-family: 'Fraunces', serif; font-size: 1.3rem;
    color: var(--ink); padding: 0 16px;
    display: inline-flex; align-items: center; gap: 32px;
}

.ticker .star { color: var(--accent); font-size: 0.95rem; }

/* ---------- movements ---------- */
.program-note { text-align: center; padding: 60px 0 0; }

.program-note .serif {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.program-note p { color: var(--dim); margin-top: 8px; font-size: 0.95rem; }

section.movement { padding: 84px 0; position: relative; overflow: hidden; }

.mv-mark {
    position: absolute; top: 6px; right: -10px; z-index: 0;
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
    font-size: clamp(9rem, 22vw, 16rem); line-height: 1;
    color: rgba(208, 83, 44, 0.06); pointer-events: none; user-select: none;
}

.mv-eyebrow {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}

.mv-eyebrow .roman { font-family: 'Fraunces', serif; font-style: italic; font-size: 0.95rem; letter-spacing: 0.04em; }

h2.section-title {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.12;
    letter-spacing: -0.015em; margin-bottom: 18px; max-width: 24ch;
    position: relative; z-index: 1;
}

h2.section-title em { font-style: italic; color: var(--accent); }

.section-lead { color: var(--dim); max-width: 62ch; font-size: 1.04rem; position: relative; z-index: 1; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; position: relative; z-index: 1; }

.stat {
    background: #fff; border-radius: 20px; padding: 26px 22px;
    box-shadow: 0 6px 24px rgba(33, 28, 24, 0.06);
}

.stat .num {
    font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 600;
    color: var(--accent); line-height: 1;
}

.stat .num sup { font-size: 1.25rem; }

.stat .label { font-size: 0.88rem; color: var(--ink-soft); margin-top: 8px; }

/* credential band */
.cred-band {
    background: var(--ink); color: var(--paper);
    border-radius: 28px; padding: 54px 48px; margin-top: 48px;
    position: relative; z-index: 1;
}

.cred-band .mv-eyebrow { color: var(--gold); }

.cred-band h3 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 22px;
}

.cred-band h3 em { font-style: italic; color: var(--gold); }

.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }

.cred {
    display: flex; gap: 13px; align-items: flex-start;
    padding: 13px 0; border-bottom: 1px solid rgba(250, 246, 240, 0.12);
    font-size: 0.96rem;
}

.cred .dot { color: var(--gold); }

.cred strong { color: #fff; display: block; }

.cred span { color: rgba(250, 246, 240, 0.72); font-size: 0.9rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; position: relative; z-index: 1; }

.step {
    background: #fff; border-radius: 24px; padding: 32px 28px;
    box-shadow: 0 6px 24px rgba(33, 28, 24, 0.06); position: relative;
}

.step .step-num {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
    font-size: 3rem; color: var(--paper-deep);
    position: absolute; top: 16px; right: 24px;
}

.step h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.35rem; margin-bottom: 10px; }

.step p { color: var(--dim); font-size: 0.95rem; }

/* audiences */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; position: relative; z-index: 1; }

.aud {
    border-radius: 24px; padding: 34px 30px; background: #fff;
    box-shadow: 0 6px 24px rgba(33, 28, 24, 0.06);
}

.aud.warm { background: var(--paper-deep); box-shadow: none; }

.aud h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.45rem; margin-bottom: 6px; }

.aud p.sub { color: var(--dim); font-size: 0.93rem; margin-bottom: 16px; }

.aud ul { list-style: none; }

.aud li {
    padding: 9px 0 9px 28px; position: relative; font-size: 0.96rem;
    border-bottom: 1px solid rgba(33, 28, 24, 0.06);
}

.aud li:last-child { border-bottom: 0; }

.aud li:before { content: "\2713"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

/* results */
.pill-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; position: relative; z-index: 1; }

.pill {
    background: #fff; border: 1px solid rgba(33, 28, 24, 0.1);
    padding: 9px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
}

.pill.hot { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.encore { margin-top: 26px; color: var(--dim); font-size: 0.95rem; max-width: 78ch; position: relative; z-index: 1; }

.encore strong {
    color: var(--accent); font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; font-size: 0.78rem;
}

/* rates */
.rate-card {
    background: #fff; border-radius: 28px; padding: 44px 48px;
    box-shadow: 0 16px 48px rgba(33, 28, 24, 0.1);
    display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center;
    margin-top: 44px; position: relative; z-index: 1;
}

.rate-price .amount {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: 3.8rem; line-height: 1; color: var(--ink);
}

.rate-price .amount sup { font-size: 1.7rem; color: var(--accent); }

.rate-price .per { color: var(--dim); font-size: 0.92rem; margin-top: 6px; }

.rate-notes { color: var(--dim); font-size: 0.96rem; list-style: none; }

.rate-notes li { margin-bottom: 8px; padding-left: 26px; position: relative; }

.rate-notes li:before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.rate-notes a { color: var(--accent); font-weight: 600; }

/* faq */
.faq { max-width: 760px; margin: 44px auto 0; position: relative; z-index: 1; }

details {
    background: #fff; border-radius: 16px; margin-bottom: 12px;
    box-shadow: 0 4px 18px rgba(33, 28, 24, 0.05); overflow: hidden;
}

summary {
    cursor: pointer; list-style: none; padding: 19px 48px 19px 24px;
    font-weight: 600; font-size: 0.99rem; position: relative;
}

summary::-webkit-details-marker { display: none; }

summary:after {
    content: "+"; position: absolute; right: 22px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--accent);
    transition: transform 0.2s ease;
}

details[open] summary:after { transform: translateY(-50%) rotate(45deg); }

details .a { padding: 0 24px 20px; color: var(--dim); font-size: 0.95rem; }

/* finale */
.finale { text-align: center; padding: 96px 0 60px; position: relative; overflow: hidden; }

.finale h2 {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
    max-width: 20ch; margin: 0 auto 16px; position: relative; z-index: 1;
}

.finale h2 em { font-style: italic; color: var(--accent); }

.finale p { color: var(--dim); margin-bottom: 28px; position: relative; z-index: 1; }

.finale .btn { position: relative; z-index: 1; }

.mini-footer {
    border-top: 1px solid rgba(33, 28, 24, 0.08);
    padding: 24px 0; font-size: 0.84rem; color: var(--ink-soft);
}

.mini-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.mini-footer a { color: var(--ink-soft); }

.foot-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .portrait-stage { justify-self: center; margin-top: 10px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .cred-grid { grid-template-columns: 1fr; }
    .cred-band { padding: 40px 26px; }
    .steps { grid-template-columns: 1fr; }
    .aud-grid { grid-template-columns: 1fr; }
    .rate-card { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
    .rate-notes li { text-align: left; }
    .nav-links a:not(.btn) { display: none; }
    .nav-toggle { display: flex; }
    .mv-mark { font-size: 8rem; opacity: 0.8; }
}

@media (max-width: 560px) {
    .nav-inner { padding: 11px 18px; }
    .brand { font-size: 1.05rem; gap: 9px; }
    .eq { height: 13px; }

    .nav-links .btn { font-size: 0.8rem; padding: 9px 15px; }

    .wrap { padding: 0 18px; }

    /* stack the hero CTAs full width so neither is cramped */
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-ctas .btn { text-align: center; }

    .finale .btn { font-size: 0.95rem !important; padding: 14px 24px !important; }
}

/* ---------- reduced motion: a designed static experience ----------
   Not "animations off" — elements that only work in motion are either
   replaced with a static equivalent or removed. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    /* Floating notes are ambient motion only. Frozen, they just sit on
       top of the words and hurt readability. */
    .float-note { display: none; }

    /* The ticker can't scroll, so stop cropping it: let the names wrap
       and show the whole list at once. */
    .ticker { white-space: normal; overflow: visible; }

    .ticker-track {
        display: flex; flex-wrap: wrap;
        justify-content: center; gap: 2px 0;
    }

    .ticker span { padding: 0 14px; font-size: 1.12rem; }

    /* Equalizer bars read as a static mark rather than a dead meter. */
    .eq i:nth-child(1) { height: 45%; }
    .eq i:nth-child(2) { height: 80%; }
    .eq i:nth-child(3) { height: 100%; }
    .eq i:nth-child(4) { height: 65%; }
    .eq i:nth-child(5) { height: 35%; }
}

/* ============ shared page furniture (inner pages) ============ */
.skip {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.nav-links a.on { color: var(--accent); }

.page-head { padding: 64px 0 8px; }

.page-title {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08;
    letter-spacing: -0.02em; max-width: 20ch;
}

.page-title em { font-style: italic; color: var(--accent); }

.page-lead { color: var(--dim); font-size: 1.08rem; max-width: 58ch; margin-top: 16px; }

.movement.alt { background: #fff; }

.sub-head {
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink);
    margin: 34px 0 12px;
}

.section-lead + .section-lead { margin-top: 14px; }

.plain-link, .plain-link:visited { color: var(--accent); font-weight: 600; text-decoration: none; }
.plain-link:hover { text-decoration: underline; }

.tick-list { list-style: none; }
.tick-list li { padding: 8px 0 8px 26px; position: relative; color: var(--dim); }
.tick-list li:before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.policy-list { counter-reset: p; list-style: none; max-width: 74ch; }
.policy-list li {
    counter-increment: p; position: relative; padding: 12px 0 12px 42px;
    border-bottom: 1px solid rgba(33,28,24,0.08); color: var(--dim);
}
.policy-list li:before {
    content: counter(p) "."; position: absolute; left: 0; top: 12px;
    font-family: 'Fraunces', serif; font-weight: 600; color: var(--accent);
}
.policy-list strong, .policy-list b { color: var(--ink); }

/* resume vitals */
.vitals { border-top: 1px solid rgba(33,28,24,0.12); border-bottom: 1px solid rgba(33,28,24,0.12); padding: 12px 0; }
.vrow { display: grid; grid-template-columns: 150px 1fr; gap: 0 20px; padding: 7px 0; }
.vrow span {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #8a8178; padding-top: 3px;
}

/* resume education */
.edu-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 22px; }
.edu-logo { width: 48px; height: 44px; object-fit: contain; object-position: left center; flex-shrink: 0; margin-top: 3px; }
.edu-school { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; }
.edu-degree { color: var(--ink); }
.edu-loc { color: #8a8178; font-size: 0.88rem; margin-top: 2px; }

/* resume credit tables */
.roles-table { width: 100%; border-collapse: collapse; margin: 10px 0 6px; table-layout: fixed; }
.roles-table th {
    text-align: left; font-size: 0.74rem; font-weight: 700; color: #8a8178;
    text-transform: uppercase; letter-spacing: 0.07em;
    padding: 8px 10px; border-bottom: 2px solid var(--ink);
}
.roles-table td { padding: 10px; border-bottom: 1px solid rgba(33,28,24,0.08); vertical-align: top; font-size: 0.95rem; word-wrap: break-word; }
.roles-table tr:nth-child(even) { background: rgba(33,28,24,0.02); }
.roles-table td:first-child { font-weight: 600; }
.note { font-size: 0.78rem; font-weight: 400; color: #8a8178; text-transform: none; letter-spacing: 0; }

/* memberships */
.member-list { list-style: none; }
.member-list li { padding: 6px 0 6px 18px; position: relative; }
.member-list li:before { content: "\2022"; position: absolute; left: 0; color: var(--accent); }
.member-list .when { color: #8a8178; font-size: 0.84rem; white-space: nowrap; }
.member-list .when:before { content: "("; }
.member-list .when:after { content: ")"; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.shot {
    border: 0; padding: 0; cursor: zoom-in; background: none; border-radius: 14px;
    overflow: hidden; box-shadow: 0 6px 24px rgba(33,28,24,0.08); line-height: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(33,28,24,0.16); }
.shot img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(20, 16, 13, 0.94);
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-img { max-width: 88vw; max-height: 82vh; width: auto; height: auto; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(250,246,240,0.85); font-size: 0.88rem; padding: 0 20px; }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: none; border: 0; cursor: pointer;
    color: rgba(250,246,240,0.8); line-height: 1;
}
.lb-close { top: 18px; right: 24px; font-size: 2.4rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 10px 18px; }
.lb-prev { left: 8px; } .lb-next { right: 8px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #fff; }

.social-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.social-row a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 999px;
    background: rgba(33, 28, 24, 0.06); color: var(--ink);
    font-weight: 600; font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

.foot-social { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.foot-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    color: var(--ink-soft); background: rgba(33, 28, 24, 0.06);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.foot-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

@media (max-width: 880px) {
    .vrow { grid-template-columns: 1fr; gap: 0; }
    .vrow span { padding-top: 8px; }
    .roles-table { display: block; overflow-x: auto; }
    .shot img { height: 150px; }
    .lb-prev, .lb-next { font-size: 2.4rem; padding: 8px 10px; }
}

/* booking */
.booking-frame { background: #fff; border-radius: 20px; padding: 10px; box-shadow: 0 10px 40px rgba(33,28,24,0.08); }
.booking-frame iframe { display: block; border: 0; border-radius: 14px; }

.booking-soon {
    background: #fff; border-radius: 22px; padding: 44px 40px;
    box-shadow: 0 10px 40px rgba(33,28,24,0.08); max-width: 720px;
}
.booking-soon h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.6rem; margin-bottom: 12px; }
.booking-soon p { color: var(--dim); margin-bottom: 14px; }
.booking-soon .booking-what { font-size: 0.94rem; padding-left: 16px; border-left: 2px solid var(--accent); }
.booking-soon .btn { margin-top: 8px; }

@media (max-width: 560px) { .booking-soon { padding: 30px 24px; } }

/* floating notes: container spans the section; notes are positioned inside it */
.float-notes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
