/* Homepage skin — "a warm musician you already know".
   Night-burgundy for hero / stage / footer, warm paper for the body, brass for lines and buttons.
   Type: Frank Ruhl Libre headlines, Rubik body, Amatic SC for the handwritten touches only.
   Self-contained: the homepage loads this instead of the Freeway-era inline styles. */
:root {
  --night: #2b0c16; --night2: #3a0f1c; --wine: #7a1330; --brand: rgb(128,0,32);
  --paper: #f6f1e6; --paper2: #efe7d6; --card: #fffdf8; --ink: #241a14; --ink2: #4a3f36; --muted: #7d6e5f;
  --brass: #c8a35b; --brass2: #a8843f; --cream: #f3e6c8; --wa: #25D366;
  --shadow: 0 10px 30px rgba(43,12,22,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink2); font-family: Rubik, Heebo, Arial, sans-serif; font-size: 17px; line-height: 1.65; }
h1, h2, h3 { font-family: 'Frank Ruhl Libre', Rubik, serif; font-weight: 700; line-height: 1.2; color: var(--ink); margin: 0; }
p { margin: 0 0 1em; }
a { color: var(--brand); text-decoration: underline; text-decoration-color: var(--brass); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--brand); }
img { max-width: 100%; height: auto; }
.hand { font-family: 'Amatic SC', 'Frank Ruhl Libre', cursive; font-weight: 700; letter-spacing: .02em; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 5%; }
.band { padding: 72px 0; }
.band-dark { background: var(--night); color: var(--cream); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark a { color: var(--cream); }
.band-paper2 { background: var(--paper2); }
.band h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 10px; }
.band .lead { font-size: 1.12em; color: var(--muted); max-width: 720px; margin-bottom: 36px; }
.band-dark .lead { color: #d8c8ac; }
.eyebrow { display: block; font-size: 2em; color: var(--brass2); margin-bottom: 4px; line-height: 1; }
.band-dark .eyebrow { color: var(--brass); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px; font-weight: 600; text-decoration: none !important; border: 0; cursor: pointer; font-family: inherit; font-size: 1em; transition: transform .2s, box-shadow .2s, background .2s; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(43,12,22,.25); }
.btn-wa { background: var(--wa); color: #fff !important; }
.btn-brass { background: var(--brass); color: var(--night) !important; }
.btn-wine { background: var(--brand); color: #fff !important; }
.btn-ghost { background: transparent; color: var(--cream) !important; border: 1.5px solid rgba(243,230,200,.55); }
.btn-ghost:hover { border-color: var(--brass); }

/* top bar */
.top { position: sticky; top: 0; z-index: 900; background: rgba(246,241,230,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 2px solid var(--brass); }
.top .wrap { display: flex; align-items: center; gap: 22px; height: 64px; }
.top .brand { font-family: 'Frank Ruhl Libre', serif; font-weight: 700; font-size: 1.35em; color: var(--brand); text-decoration: none; margin-inline-end: auto; white-space: nowrap; }
.top .brand span { color: var(--brass2); }
.top nav { display: flex; gap: 20px; }
.top nav a { color: var(--ink); text-decoration: none; font-size: .98em; position: relative; padding: 4px 0; }
.top nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px; background: var(--brass); transform: scaleX(0); transition: transform .25s; }
.top nav a:hover::after { transform: scaleX(1); }
.top .lang { color: var(--ink2); text-decoration: none; font-size: .9em; opacity: .85; }
.top .lang:hover { opacity: 1; }
.top .top-cta { padding: 9px 16px; font-size: .95em; }
.top .burger { display: none; width: 42px; height: 42px; color: var(--brand); cursor: pointer; padding: 8px; }
.top .burger svg { width: 100%; height: 100%; }
#menu-state { display: none; }
@media (max-width: 900px) {
  .top nav { display: none; position: absolute; top: 64px; inset-inline: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 2px solid var(--brass); padding: 8px 0 12px; }
  .top nav a { padding: 12px 6%; font-size: 1.1em; }
  .top nav a::after { display: none; }
  #menu-state:checked ~ .wrap nav { display: flex; }
  .top .burger { display: block; }
  .top .top-cta { display: none; }
}

/* hero */
.hero { position: relative; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; background: var(--night); }
#headerphoto { position: absolute; inset: 0; background: url(../resources/jazz_trio2.jpg) center / cover no-repeat; }
#headerphoto::before { content: ""; position: absolute; inset: 0; background: inherit; animation: kenburns 28s ease-in-out infinite alternate; }
#headerphoto.has-video::before { animation: none; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
#headerphoto video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s; }
#headerphoto.has-video video { opacity: 1; }
#headerphoto .hero-pause { position: absolute; z-index: 3; inset-inline-end: 16px; top: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(243,230,200,.6); background: rgba(43,12,22,.5); color: #fff; font-size: 12px; cursor: pointer; opacity: .75; display: flex; align-items: center; justify-content: center; }
#headerphoto .hero-pause:hover { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(43,12,22,.10) 0%, rgba(43,12,22,.25) 40%, rgba(43,12,22,.88) 100%); }
.hero-text { position: relative; z-index: 2; width: 100%; padding-top: 60px; padding-bottom: 52px; color: #fff; }
.hero .hello { font-size: clamp(34px, 4.4vw, 56px); color: var(--brass); line-height: 1; margin-bottom: 10px; display: block; }
.hero h1 { font-size: clamp(24px, 3.2vw, 40px); color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.5); max-width: 900px; margin-bottom: 10px; }
.hero h2 { font-family: Rubik, sans-serif; font-weight: 400; font-size: clamp(17px, 1.7vw, 21px); color: var(--cream); text-shadow: 0 1px 10px rgba(0,0,0,.5); margin-bottom: 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) { .hero { min-height: 520px; } .hero-text { padding-top: 40px; padding-bottom: 36px; } }

/* letter */
.letter .wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 52px; align-items: center; }
.letter figure { margin: 0; position: relative; }
.letter figure img { width: 100%; border-radius: 20px; box-shadow: 0 24px 50px rgba(43,12,22,.25); display: block; }
.letter figure::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--brass); border-radius: 22px; z-index: -1; }
.letter .text { font-size: 1.12em; }
.letter .text p { margin-bottom: 1.1em; }
.letter .text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.letter .sig { font-size: 44px; color: var(--brand); line-height: 1; margin-top: 8px; }
.letter .ps { color: var(--muted); font-size: .95em; }
mark { background: none; color: inherit; background-image: linear-gradient(transparent 62%, rgba(200,163,91,.55) 62%); }
@media (max-width: 800px) { .letter .wrap { grid-template-columns: 1fr; gap: 34px; } .letter figure { max-width: 440px; } }

/* doors */
.doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .doors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .doors { grid-template-columns: 1fr; } }
.door { background: var(--card); border-radius: 18px; padding: 28px 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); transition: transform .3s, box-shadow .3s; position: relative; }
.door:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(43,12,22,.18); }
.door .icon { width: 50px; height: 50px; margin-bottom: 16px; color: var(--brand); }
.door .icon svg { width: 100%; height: 100%; display: block; }
.door h3 { font-size: 1.28em; margin-bottom: 8px; }
.door p { margin-bottom: 20px; }
.door .more { margin-top: auto; font-weight: 600; }
/* each door hints at its own world — one tint, one icon colour, nothing louder */
.door-stage { background: linear-gradient(180deg, #fbf3f2, var(--card) 55%); }
.door-stage .icon { color: var(--brand); }
.door-arr { background: linear-gradient(180deg, #fbf5e6, var(--card) 55%); }
.door-arr .icon { color: var(--brass2); }
.door-not { background: repeating-linear-gradient(180deg, transparent 0 13px, rgba(36,26,20,.06) 13px 14px) top / 100% 100px no-repeat, var(--card); }
.door-not .icon { color: var(--ink); }
.door-edu { background: linear-gradient(180deg, #eef3ec, var(--card) 55%); }
.door-edu .icon { color: #3f6b4f; }
.door .more::after { content: "\00a0\2190"; }
[dir="ltr"] .door .more::after { content: "\00a0\2192"; }

/* stage */
#stage .notation-video-module { margin: 0 auto; max-width: 920px; box-shadow: 0 30px 70px rgba(0,0,0,.55); border: 1px solid rgba(200,163,91,.25); }
.stage-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin: 28px 0 0; }
.stage-links a { display: inline-flex; align-items: center; gap: 8px; text-decoration-color: rgba(200,163,91,.6); }
.stage-links svg { width: 20px; height: 20px; color: var(--brass); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 26px 26px 22px; background: var(--card); border-radius: 18px; box-shadow: var(--shadow); }
.step .num { font-family: 'Amatic SC', cursive; font-weight: 700; font-size: 54px; line-height: 1; color: var(--brass); margin-bottom: 6px; }
.step h3 { font-size: 1.2em; margin-bottom: 8px; }
.step p { margin: 0; }
.steps-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.steps-cta .hand { font-size: 30px; color: var(--brand); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* planner band */
#planner #evening-planner { max-width: none; padding: 0; }
#planner #evening-planner .ep { max-width: none; border-radius: 18px; box-shadow: var(--shadow); }

/* tip strip */
#tip { padding: 40px 0; }
#tip .tip-row { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
#tip .tip-icon { width: 46px; height: 46px; color: var(--brass2); }
#tip .tip-icon svg { width: 100%; height: 100%; }
#tip #ofir-academy-today { margin: 0; padding: 0; }
#tip #ofir-academy-today .ota-tip { background: var(--card) !important; border-radius: 14px !important; border: 1px solid rgba(200,163,91,.4) !important; padding: 16px 22px !important; font-size: 1rem !important; margin: 0 !important; color: var(--ink2) !important; }
#tip .tip-link { white-space: nowrap; font-weight: 600; }
@media (max-width: 700px) { #tip .tip-row { grid-template-columns: 1fr; gap: 14px; justify-items: center; text-align: center; } #tip .tip-icon { display: none; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-direct .big { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(30px, 3.2vw, 44px); margin: 0 0 4px; }
.contact-direct .big a { color: var(--ink); text-decoration: none; }
.contact-direct .ways { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 24px; }
.contact-direct .note { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.contact-direct .note .hand { font-size: 28px; color: var(--brand); line-height: 1.1; white-space: nowrap; }
.form-card { background: var(--card); border-radius: 18px; padding: 26px 26px 22px; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); }
.form-card label { display: block; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.form-card input, .form-card textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid rgba(200,163,91,.6); border-radius: 12px; background: #fff; color: var(--ink); margin-bottom: 16px; }
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass); }
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card button { width: 100%; justify-content: center; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* footer */
footer.site { background: var(--paper); color: var(--ink2); padding: 48px 0 40px; border-top: 2px solid var(--brass); }
footer.site .wrap { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
footer.site .name { font-family: 'Frank Ruhl Libre', serif; color: var(--brand); font-size: 1.4em; margin: 0 0 8px; }
footer.site nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
footer.site nav a { color: var(--ink); text-decoration: none; font-size: .95em; }
footer.site nav a:hover { color: var(--brand); }
footer.site .small { font-size: .9em; margin: 14px 0 0; color: var(--muted); }
footer.site .small .hand { font-size: 26px; color: var(--brand); }
footer.site .social { display: flex; gap: 10px; }
footer.site .social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--brass); display: flex; align-items: center; justify-content: center; color: var(--brand); transition: background .2s, transform .2s; }
footer.site .social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
footer.site .social svg { width: 20px; height: 20px; }
@media (max-width: 700px) { footer.site { padding-bottom: 100px; } footer.site .wrap { grid-template-columns: 1fr; } }

/* sticky phone bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; bottom: 0; inset-inline: 0; z-index: 950; padding: 10px 4% calc(10px + env(safe-area-inset-bottom)); background: rgba(43,12,22,.94); backdrop-filter: blur(8px); border-top: 1px solid rgba(200,163,91,.3); }
  .mobile-bar .btn { justify-content: center; padding: 12px 10px; }
}

/* scroll reveal (class added by scripts/motion.js; no JS = nothing hidden) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } #headerphoto::before { animation: none; } }

/* ---- band page (kabalat-panim-band / jazz-band-for-events) ---- */
.hero-still #headerphoto::before { animation: none; }
.hero-still .hero-text { padding-top: 110px; }
.hero-still .hello { text-shadow: 0 2px 16px rgba(0,0,0,.7); }
.hand-line { text-align: center; }
.hand-line .hand { display: block; font-size: clamp(40px, 5.2vw, 66px); color: var(--brand); line-height: 1; margin-bottom: 12px; }
.hand-line .lead { margin: 0 auto 30px; max-width: 760px; }
.intro-lines { max-width: 820px; margin: 0 auto; font-size: 1.08em; }
.intro-lines p { margin-bottom: .5em; }
/* scenes */
.scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
@media (max-width: 1000px) { .scenes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .scenes { grid-template-columns: 1fr; } }
.scene { background: var(--card); border-radius: 18px; padding: 24px 22px 20px; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); }
.scene .icon { width: 44px; height: 44px; color: var(--brand); margin-bottom: 12px; }
.scene .icon svg { width: 100%; height: 100%; display: block; }
.scene h3 { font-size: 1.08em; margin-bottom: 8px; }
.scene p { margin: 0; font-size: .97em; }
.scenes-close { text-align: center; margin: 30px 0 0; font-size: 1.15em; }
/* stage */
#stage .jazz-video-module { max-width: 920px; margin: 0 auto; box-shadow: 0 30px 70px rgba(0,0,0,.55); border: 1px solid rgba(200,163,91,.25); }
#stage .stage-line { text-align: center; font-size: 1.15em; color: #d8c8ac; margin: 26px 0 0; }
#stage .stage-line .hand { font-size: 1.9em; color: var(--brass); line-height: 1; }
#stage .listen { max-width: 920px; margin: 44px auto 0; }
#stage .listen iframe { display: block; border-radius: 16px; border: 1px solid rgba(200,163,91,.25); }
#stage .listen .credit { font-size: .8em; opacity: .55; margin: 8px 4px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 900px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .quotes { grid-template-columns: 1fr; } }
.quote { margin: 0; background: var(--card); border-radius: 18px; padding: 34px 26px 22px; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); position: relative; display: flex; flex-direction: column; }
.quote::before { content: "\201D"; position: absolute; top: 4px; inset-inline-start: 18px; font-family: 'Frank Ruhl Libre', serif; font-size: 74px; line-height: 1; color: var(--brass); opacity: .5; }
.quote p { margin: 0 0 14px; font-size: 1.02em; color: var(--ink); }
.quote .who { margin-top: auto; color: var(--muted); font-size: .92em; }
.quote .who::before { content: "\2014\00a0"; color: var(--brass2); }
.quotes-more { margin-top: 20px; }
.quotes-more > summary { cursor: pointer; list-style: none; text-align: center; font-weight: 600; color: var(--brand); padding: 12px; }
.quotes-more > summary::-webkit-details-marker { display: none; }
.quotes-more[open] > summary { display: none; }
.quotes-more .quotes { margin-top: 0; }
/* lineups */
.lineups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
@media (max-width: 1000px) { .lineups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lineups { grid-template-columns: 1fr; } }
.lineup { background: var(--card); border-radius: 18px; padding: 26px 24px 22px; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); }
.lineup .num { font-family: 'Amatic SC', cursive; font-weight: 700; font-size: 50px; line-height: 1; color: var(--brass); margin-bottom: 4px; }
.lineup h3 { font-size: 1.22em; margin-bottom: 6px; }
.lineup .inst { color: var(--brand); font-weight: 600; margin-bottom: 12px; }
.lineup .lbl { display: block; font-size: .82em; color: var(--muted); letter-spacing: .02em; }
.lineup .best { margin: 0; font-size: .97em; }
.lineups-note { margin: 30px auto 0; font-size: 1.1em; text-align: center; max-width: 760px; }
#lineups .planner-head { margin-top: 44px; text-align: center; }
#lineups #evening-planner { max-width: none; padding: 0; }
#lineups #evening-planner .ep { max-width: none; border-radius: 18px; box-shadow: var(--shadow); }
/* about / why */
.about-lead { max-width: 820px; margin: 0 auto 44px; text-align: center; font-size: 1.1em; }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 800px) { .why { grid-template-columns: 1fr; } }
.why h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.prose p { margin-bottom: .9em; }
.prose strong { color: var(--ink); }
.prose details { margin-top: 4px; }
.prose summary { cursor: pointer; color: var(--brand); font-weight: 600; list-style: none; }
.prose summary::-webkit-details-marker { display: none; }
.prose summary::before { content: "+ "; color: var(--brass2); }
.prose details[open] summary::before { content: "\2013 "; }
.prose details > div, .prose details > p { margin-top: 12px; }
/* faq */
.faq { max-width: 860px; margin: 34px auto 0; }
.faq details { background: var(--card); border: 1px solid rgba(200,163,91,.35); border-radius: 14px; margin-bottom: 10px; padding: 0 22px; }
.faq summary { cursor: pointer; padding: 15px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary strong { font-weight: 600; }
.faq summary::after { content: "+"; font-family: 'Amatic SC', cursive; font-weight: 700; font-size: 32px; color: var(--brass2); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 18px; }
.contact-lines { text-align: center; max-width: 820px; margin: 0 auto 36px; }
.contact-lines h2 { font-size: clamp(24px, 2.8vw, 34px); }

/* ---- service pages (notation / arranging / education) ---- */
.hero-service { min-height: 560px; }
.hero-service h2 .style6 { font-weight: 400; color: var(--cream); }
.band.pull { padding: 56px 0; background: var(--night); color: var(--cream); }
.pullquote { position: relative; max-width: 820px; margin: 0 auto; padding: 0 26px; font-family: 'Frank Ruhl Libre', serif; font-size: clamp(21px, 2.3vw, 28px); line-height: 1.5; text-align: center; }
.pullquote::before { content: "\201C"; display: block; font-family: 'Amatic SC', cursive; font-weight: 700; font-size: 72px; line-height: .6; color: var(--brass); margin-bottom: 14px; }
.band.pull .pullquote::before { color: var(--brass); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 26px; }
.check { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; background: var(--card); border-radius: 16px; box-shadow: var(--shadow); font-size: 1.08em; }
.check svg { width: 26px; height: 26px; flex: none; color: var(--brass2); margin-top: 2px; }
.check p { margin: 0; }
.band .checklist-close { margin-bottom: 0; color: var(--ink); font-weight: 500; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.service { position: relative; padding: 28px 26px 24px; background: var(--card); border-radius: 18px; box-shadow: var(--shadow); }
.service .num { font-family: 'Amatic SC', cursive; font-weight: 700; font-size: 54px; line-height: 1; color: var(--brass); margin-bottom: 6px; }
.band .service h2 { font-size: clamp(22px, 2.2vw, 27px); margin-bottom: 14px; }
.service p { margin-bottom: .8em; }
.service .lbl { margin: 14px 0 6px; color: var(--ink); }
.service ul, .why ul { margin: 0 0 14px; padding-inline-start: 1.2em; }
.service li, .why li { margin-bottom: 5px; }
.why .lbl { margin: 16px 0 6px; }
.pricing { max-width: 760px; margin: 44px auto 0; text-align: center; font-size: 1.08em; }
.pricing .eyebrow { margin-bottom: 10px; }
.pricing p { margin-bottom: .5em; }
.letter-plain .wrap { max-width: 860px; font-size: 1.12em; }
.letter-plain p { margin-bottom: 1.1em; }
.letter-plain .pullquote { margin: 34px auto; color: var(--brand); }
.contact-solo { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.contact-solo .ways { justify-content: center; }
.contact-solo .note { justify-content: center; }
#academy-subjects { margin-top: 30px; }
#academy-subjects h2 { font-size: clamp(24px, 2.6vw, 32px); }
#academy-subjects .as-intro { font-size: 1.12em; color: var(--muted); max-width: 760px; margin: 0 0 26px; }
#academy-subjects .as-group { padding: 22px 24px 18px; background: var(--card); border-radius: 16px; box-shadow: var(--shadow); margin-bottom: 16px; }
#academy-subjects h3 { font-size: 1.15em; margin: 0 0 4px; }
#academy-subjects .as-gloss { color: var(--muted); font-size: .95em; margin: 0 0 12px; }
#academy-subjects ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px 24px; }
#academy-subjects a { color: var(--brand); text-decoration: underline; text-decoration-color: var(--brass); text-decoration-thickness: 2px; text-underline-offset: 3px; }
#academy-subjects a:hover { text-decoration-color: var(--brand); }
#academy-subjects .as-open { font-size: .75em; color: var(--muted); border: 1px solid var(--brass); border-radius: 10px; padding: 0 7px; vertical-align: middle; }
#academy-subjects .as-item-gloss { color: var(--muted); font-size: .9em; }
#academy-subjects .as-open-line { margin: 22px 0 6px; font-weight: 700; }
#academy-subjects .as-doors a { margin: 0 2px; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } .why { grid-template-columns: 1fr; } }

/* ---- hammond trio page ---- */
.band .members-h { font-size: clamp(22px, 2.4vw, 30px); margin: 10px 0 16px; }
.members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.member { background: var(--card); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); }
.member .inst { display: block; color: var(--brand); font-weight: 600; margin-bottom: 4px; }
.member strong { font-family: 'Frank Ruhl Libre', serif; font-size: 1.35em; font-weight: 700; }
.story { max-width: 760px; font-size: 1.08em; margin: 0; }
.video-frame { position: relative; max-width: 900px; margin: 24px auto 0; aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 1px solid rgba(200,163,91,.25); border-radius: 16px; }
.playlist { text-align: center; margin: 22px 0 0; }
.band-dark .btn-ghost { color: var(--cream); border-color: rgba(243,230,200,.5); }
@media (max-width: 700px) { .members { grid-template-columns: 1fr; } }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 4px 0 30px; }
.gallery img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
footer.site .rights { margin-top: 6px; opacity: .75; }

/* ---- bands pages (gate / piano trio / nascimento) ---- */
.bandcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.bandcard { background: var(--card); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(200,163,91,.35); display: flex; flex-direction: column; }
.bandcard img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.bandcard .in { padding: 20px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.band .bandcard h2 { font-size: 1.3em; margin-bottom: 4px; }
.bandcard h2 a { color: var(--ink); text-decoration: none; }
.bandcard h2 a:hover { color: var(--brand); }
.bandcard .who { color: var(--brand); font-weight: 600; font-size: .92em; margin-bottom: 10px; }
.bandcard p { margin-bottom: .6em; font-size: .97em; }
.bandcard .more { margin: auto 0 0; padding-top: 8px; font-weight: 600; }
.also { margin: 22px 0 0; font-size: 1.05em; }
.also + .also { margin-top: 6px; }
.members.five { grid-template-columns: repeat(5, 1fr); }
.members.five .member { padding: 18px 18px 14px; }
.members.five .member strong { font-size: 1.2em; display: block; margin-bottom: 8px; }
.member p { margin: 0 0 8px; font-size: .93em; }
.member details { margin-top: 4px; }
.member summary { cursor: pointer; color: var(--brand); font-weight: 600; font-size: .9em; list-style: none; }
.member summary::-webkit-details-marker { display: none; }
.member summary::before { content: "+ "; color: var(--brass2); }
.member details[open] summary::before { content: "\2013 "; }
.member details p { margin-top: 10px; }
.story + .story { margin-top: .9em; }
.name-line .hand { font-size: 1.9em; color: var(--brand); line-height: 1.05; }
.band-dark .name-line .hand { color: var(--brass); }
.members-h { margin-top: 40px !important; }
.tracks { list-style: none; margin: 24px auto 0; padding: 0; max-width: 760px; }
.track { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(200,163,91,.25); }
.track .title { font-family: 'Frank Ruhl Libre', serif; font-size: 1.15em; font-weight: 700; color: #fff; }
.track audio, .work audio { width: 100%; display: block; }
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.work .video-frame { margin: 0 0 12px; max-width: none; }
.work h3 { font-size: 1.1em; margin-bottom: 8px; }
.small-note { margin: 18px 0 0; font-size: .9em; color: var(--muted); }
@media (max-width: 1000px) { .members.five { grid-template-columns: repeat(2, 1fr); } .works { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .bandcards { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .members.five { grid-template-columns: 1fr; } .track { grid-template-columns: 1fr; gap: 6px; } }
.lineup .trio-row { margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(200,163,91,.5); font-size: .93em; }
