/* =========================================================
   DanceAway — public site · CHARCOAL & CREAM
   Warm dark canvas. Cream body, amber accents, brand green
   reserved for small signals. Refined but alive.
   ========================================================= */
:root {
  /* ---- canvas ---- */
  --bg:        #14161A;   /* warm charcoal */
  --bg-2:      #1A1D22;   /* alternating surface */
  --bg-3:      #22262D;   /* card / inset */
  --bg-4:      #2A2F37;   /* deeper inset */

  /* ---- text ---- */
  --ink:       #F5F1E8;   /* warm cream — headline / primary */
  --ink-soft:  #DDD7C7;   /* body */
  --mute:      #908B7E;   /* secondary */
  --mute-2:    #5F5C53;   /* tertiary, captions */

  /* ---- hairlines (low alpha for dark) ---- */
  --line:      rgba(245, 241, 232, 0.08);
  --line-2:    rgba(245, 241, 232, 0.18);

  /* ---- warm accent (does the work the green can't, quietly) ---- */
  --cream:     #E8DFC9;
  --amber:     #D9A55A;
  --amber-soft:#E8C28C;
  --amber-deep:#A87A2E;
  --amber-glow:rgba(217, 165, 90, 0.18);

  /* ---- brand green — QUIET SIGNAL only ---- */
  --hy:        #73CF40;
  --hy-deep:   #4F9A25;
  --hy-glow:   rgba(115, 207, 64, 0.16);

  /* ---- semantic ---- */
  --danger:    #E07C5C;
  --warn:      #D9B546;
  --ok:        #73CF40;

  /* ---- type ---- */
  --font-serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:  ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  /* ---- motion ---- */
  --t-fast: 160ms cubic-bezier(.2,.7,.2,1);
  --t-med:  320ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 640ms cubic-bezier(.2,.7,.2,1);

  /* ---- radii ---- */
  --r-pill: 999px;
  --r-sm:   2px;
  --r-md:   4px;
  --r-lg:   10px;

  /* ---- layout ---- */
  --container: 1240px;
  --gutter-x:  40px;

  /* ---- backwards-compat aliases (inline styles in public.js) ---- */
  --text:       var(--ink);
  --text-dim:   var(--ink-soft);
  --muted:      var(--mute);
  --gold:       var(--amber);
  --gold-soft:  var(--amber-glow);
  --accent:     var(--amber);
  --bg-elev:    var(--bg-2);
  --surface:    var(--bg-3);
  --surface-2:  var(--bg-4);
  --hy-bright:  #94E060;
  --hy-dim:     var(--hy-deep);
}

@media (max-width: 640px) { :root { --gutter-x: 22px; } }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Never let a grid/card row produce a whole-page horizontal scrollbar on
   narrow screens (QA L2). The inline grid templates use minmax(0,1fr) so
   columns shrink; this is the belt-and-suspenders guard. */
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--bg); }

/* Soft, warm grain — adds the "studio" feeling without becoming texture-heavy */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(217, 165, 90, 0.06), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(115, 207, 64, 0.04), transparent 50%);
}
#app { position: relative; z-index: 1; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 .4em;
}
h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.028em;
}
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
h4 { font-size: .92rem; font-weight: 500; letter-spacing: 0; color: var(--ink); }
p  { margin: 0 0 1em; }

.serif       { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.serif-em    { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--cream); }
.tabular     { font-variant-numeric: tabular-nums; }
.muted       { color: var(--mute); }
.dim         { color: var(--mute-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--amber);
}
.eyebrow.gold { color: var(--amber); }
.eyebrow.gold::before { background: var(--amber); }
.eyebrow.green { color: var(--hy); }
.eyebrow.green::before { background: var(--hy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(20, 22, 26, 0.94), rgba(20, 22, 26, 0.7) 65%, transparent);
  backdrop-filter: blur(10px);
  transition: background var(--t-med), border-color var(--t-med), padding var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 22, 26, 0.95);
  border-bottom-color: var(--line);
  padding: 14px 0;
}

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

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
}
.brand-mark svg { width: 100%; height: 100%; }
/* When the brand link carries only the logo (no text), let the mark itself
   do the work — scale up and drop the gap. Falls back gracefully on narrow
   viewports so it never crowds the nav. */
.brand.brand-logo-only { gap: 0; }
.brand.brand-logo-only .brand-mark {
  width: 168px; height: 168px;
  transition: width var(--t-med), height var(--t-med);
}
.site-header.scrolled .brand.brand-logo-only .brand-mark { width: 96px; height: 96px; }
@media (max-width: 980px) {
  .brand.brand-logo-only .brand-mark { width: 120px; height: 120px; }
  .site-header.scrolled .brand.brand-logo-only .brand-mark { width: 80px; height: 80px; }
}
@media (max-width: 720px) {
  .brand.brand-logo-only .brand-mark { width: 88px; height: 88px; }
  .site-header.scrolled .brand.brand-logo-only .brand-mark { width: 64px; height: 64px; }
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}

.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--mute);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px; background: var(--hy);
}
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-sm  { padding: 8px 16px; font-size: .82rem; }
.btn-lg  { padding: 16px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--cream); color: var(--bg);
  border-color: var(--cream);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--ink); border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 241, 232, 0.10);
}

.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

.btn-gold { border-color: var(--amber); color: var(--amber); }
.btn-gold:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }

.btn-green { border-color: var(--hy); color: var(--hy); }
.btn-green:hover { background: var(--hy); color: var(--bg); border-color: var(--hy); }

/* WhatsApp CTA — filled brand-green. This is one of the few places the green
   reads as a primary action rather than a quiet signal. The button doubles as
   a brand cue (WhatsApp green ≈ our HY green) so the affordance is unmistakable. */
.btn-wa {
  background: var(--hy);
  color: var(--bg);
  border-color: var(--hy);
  font-weight: 500;
}
.btn-wa:hover {
  background: var(--hy-bright);
  border-color: var(--hy-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(115, 207, 64, 0.22);
}
.btn-wa svg { width: 18px; height: 18px; }

/* Contact-page "primary path" callout */
.wa-callout {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(115, 207, 64, 0.08), transparent 60%), var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 0 0 50px;
  position: relative;
  overflow: hidden;
}
.wa-callout::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--hy);
}
.wa-callout h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.wa-callout p { margin: 0; color: var(--mute); font-size: .92rem; }
.wa-callout .wa-body { flex: 1 1 320px; }
.wa-callout .wa-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Header social glyphs — IG / FB / YT in the top-right.
   Default monotone so they don't shout against the dark canvas; on hover each
   one flashes its brand color so it still reads as "real" brand link. */
.nav-socials {
  display: flex; gap: 4px; align-items: center;
}
.nav-socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: var(--t-fast);
}
.nav-socials a svg { width: 18px; height: 18px; display: block; }
.nav-socials a:hover { background: var(--bg-2); }
.nav-socials a.s-ig:hover  { color: #E1306C; }
.nav-socials a.s-fb:hover  { color: #1877F2; }
.nav-socials a.s-yt:hover  { color: #FF0000; }
/* Google Maps pin red on hover — same convention as the social glyphs. */
.nav-socials a.s-map:hover { color: #EA4335; }

@media (max-width: 720px) {
  .nav-socials { display: none; } /* Reachable in the footer; keeps mobile nav clean */
}

.btn-link {
  background: none; border: none; padding: 0 0 3px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  font-weight: 500;
  font-size: .92rem;
}
.btn-link:hover { color: var(--amber); border-bottom-color: var(--amber); }
.btn-link::after { content: ' →'; transition: var(--t-fast); }
.btn-link:hover::after { margin-left: 6px; }

.btn-block { width: 100%; justify-content: center; }
.btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ===== Hero ===== */
.hero {
  min-height: 92vh;
  padding: 230px 0 90px;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -20%; top: 10%;
  width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(217, 165, 90, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero h1 { margin: 0; color: var(--ink); }
.hero h1 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.005em;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--cream);
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 30px 0 38px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 36px;
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta > div b {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--amber);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta > div span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

/* Hero info card — replaces the old silhouette panel */
.hero-art {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(217, 165, 90, 0.04), transparent 40%),
    var(--bg-2);
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 380px;
}
.hero-art .ha-eyebrow {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 10px;
}
.hero-art .ha-eyebrow::before {
  content: ''; width: 8px; height: 8px;
  background: var(--hy);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--hy-glow);
  animation: livedot 2.4s ease-in-out infinite;
}
@keyframes livedot {
  0%,100% { box-shadow: 0 0 0 4px var(--hy-glow); }
  50%     { box-shadow: 0 0 0 8px rgba(115, 207, 64, 0.04); }
}
.hero-art .ha-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--cream);
  line-height: 1.2;
  margin: 0;
}
.hero-art ul { list-style: none; padding: 0; margin: 0; }
.hero-art li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: .94rem;
}
.hero-art li:first-of-type { border-top: 0; padding-top: 4px; }
.hero-art li .time {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 500;
}
.hero-art li .name { color: var(--ink-soft); text-align: right; flex: 1; }
.hero-art .ha-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--mute);
}
.hero-art .ha-foot b { color: var(--amber); font-weight: 500; }
.hero-art .ha-foot a { color: var(--ink); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.hero-art .ha-foot a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ===== Section base ===== */
section { padding: 130px 0; position: relative; }
.section-divider { border: none; height: 1px; background: var(--line); margin: 0; }

.section-head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.section-head h2 { margin-bottom: 18px; color: var(--ink); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; }

/* Alternating surfaces — subtle, doesn't shout */
section:nth-of-type(odd):not(.hero):not(.cta-strip) { background: var(--bg-2); }

/* ===== Styles grid ===== */
.styles-section { }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.style-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 36px 30px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
  color: var(--ink-soft);
  overflow: hidden;
}
.style-cell::before {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.style-cell:hover {
  background: rgba(217, 165, 90, 0.04);
}
.style-cell:hover::before { transform: scaleX(1); }
.style-cell .ic {
  font-size: 1.9rem; opacity: .85;
  margin-bottom: 4px;
  transition: var(--t-med);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  filter: grayscale(.3);
}
.style-cell:hover .ic { opacity: 1; filter: none; transform: translateY(-3px); }

/* Workshop flyer thumbnail inside the workshop card. Vertical aspect because
   most studio flyers (Canva exports, instructor-supplied artwork) are
   portrait. object-fit: cover keeps the composition tight; landscape flyers
   crop instead of letterboxing. */
.style-cell.has-flyer { padding-top: 0; }
.style-cell .wk-flyer {
  margin: 0 -30px 18px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.style-cell .wk-flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}
.style-cell.has-flyer:hover .wk-flyer img { transform: scale(1.03); }

/* Big flyer on the workshop detail hero. Click opens the original-resolution
   image in a new tab so visitors can save / share it. The "Tap to zoom" cue
   only appears on touch / on hover. */
.wk-flyer-hero {
  display: block;
  position: relative;
  margin: 18px 0 28px;
  max-width: 520px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wk-flyer-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}
.wk-flyer-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.wk-flyer-zoom {
  position: absolute;
  right: 12px; bottom: 12px;
  padding: 6px 12px;
  background: rgba(20, 22, 26, .82);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
}
@media (hover: none) {
  .wk-flyer-zoom { opacity: 1; }
}
@media (max-width: 720px) {
  .style-cell .wk-flyer { margin: 0 -22px 16px; }
  .wk-flyer-hero { max-width: 100%; margin: 14px 0 22px; }
  .wk-flyer-hero img { max-height: 65vh; }
}

/* When the flyer is wrapped in a <button> (lightbox trigger) the default
   browser button styling needs to be neutralized. */
button.wk-flyer-hero {
  appearance: none;
  border: 1px solid var(--line);
  cursor: zoom-in;
  padding: 0;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}

/* Flyer lightbox — separate from .modal so it isn't constrained by the
   modal's max-width / padding. Full-viewport dark overlay; the image
   scales to fit at up to 92vw / 92vh. */
.flyer-lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 9, 11, 0.92);
  z-index: 120;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.flyer-lightbox.open { display: flex; }
.flyer-lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.flyer-lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(20, 22, 26, 0.7);
  color: var(--ink);
  border: 1px solid var(--line-2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.flyer-lightbox-close:hover {
  background: rgba(40, 45, 52, 0.9);
  transform: scale(1.05);
}
@media (max-width: 720px) {
  .flyer-lightbox { padding: 12px; }
  .flyer-lightbox-img { max-width: 96vw; max-height: 88vh; }
  .flyer-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}
.style-cell h3 {
  font-size: 1.55rem;
  margin: 14px 0 6px;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
}
.style-cell .meta {
  font-size: .82rem;
  color: var(--mute);
  letter-spacing: 0;
  text-transform: none;
}
.style-cell .arrow {
  position: absolute; top: 28px; right: 24px;
  color: var(--amber); opacity: 0;
  transition: var(--t-med);
  font-size: 1.1rem;
}
.style-cell:hover .arrow { opacity: 1; transform: translate(3px, -3px); }

/* ===== Schedule ===== */
.schedule-section { }
.schedule-bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.schedule-band > header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px; margin-bottom: 20px;
}
.schedule-band h3 {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--amber);
  margin: 0;
}
.schedule-band .sub { font-size: .82rem; color: var(--mute); margin-top: 4px; }
.schedule-band ul { list-style: none; padding: 0; margin: 0; }
.schedule-band li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  transition: padding-left var(--t-fast);
}
.schedule-band li:last-child { border-bottom: none; }
.schedule-band li:hover { padding-left: 6px; }
.schedule-band li .time {
  font-variant-numeric: tabular-nums;
  font-size: .85rem; color: var(--mute);
  flex: 0 0 96px;
}
.schedule-band li .name { flex: 1; color: var(--ink); }
.schedule-band li .dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; margin-right: 10px;
  vertical-align: middle;
  background: var(--hy);
}

/* ===== Packages ===== */
.packages-section { }
.pkg-tabs {
  display: flex; gap: 4px; justify-content: center;
  margin-bottom: 56px;
  padding: 4px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  width: max-content;
  margin-left: auto; margin-right: auto;
}
.pkg-tabs button {
  background: transparent; border: none;
  color: var(--mute);
  padding: 8px 24px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer; transition: var(--t-fast);
  border-radius: var(--r-pill);
}
.pkg-tabs button:hover { color: var(--ink); }
.pkg-tabs button.active {
  background: var(--cream);
  color: var(--bg);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.pkg-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.pkg-card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
}
.pkg-card.featured {
  border-color: var(--amber);
  background:
    linear-gradient(180deg, var(--amber-glow), transparent 60%),
    var(--bg-2);
}
.pkg-card .badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--amber); color: var(--bg);
  padding: 4px 14px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.pkg-card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}
.pkg-card .desc {
  color: var(--mute);
  font-size: .88rem;
  margin: 0 0 28px;
  min-height: 34px;
  line-height: 1.5;
}
.pkg-card .price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.pkg-card.featured .price { color: var(--amber); }
.pkg-card .price small {
  font-size: .88rem;
  color: var(--mute);
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0;
  margin-left: 4px;
}
.pkg-card ul {
  list-style: none; padding: 0;
  margin: 24px 0 28px;
  flex: 1;
}
.pkg-card li {
  padding: 10px 0 10px 22px;
  font-size: .9rem;
  color: var(--ink-soft);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pkg-card li:last-child { border-bottom: none; }
.pkg-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 12px; height: 1px;
  background: var(--amber);
}

/* ===== Instructors ===== */
.instructors-section { }
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.instructor {
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 30px;
  text-align: left;
  transition: background var(--t-fast);
}
.instructor:hover { background: rgba(217, 165, 90, 0.04); }
.instructor .photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 0 22px;
  border: 1px solid var(--amber);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--amber);
  background: var(--bg-3);
  overflow: hidden;
}
/* When a real photo is uploaded, scale the avatar up so the face actually
   reads — initials fallback stays the smaller 80px size since type at 80px
   is already fine. The image is object-fit: cover so portraits/landscapes
   both crop sensibly. */
.instructor .photo-has-image {
  width: 132px; height: 132px;
  border-color: var(--line-2);
  background: transparent;
}
.instructor .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.instructor h3 {
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--ink);
}
.instructor .role {
  font-size: .76rem;
  color: var(--hy);
  margin: 6px 0 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.instructor p {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.instructor .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.instructor .tag {
  font-size: .7rem;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  color: var(--mute);
  border-radius: var(--r-pill);
  letter-spacing: 0;
  text-transform: none;
}

/* ===== Gallery ===== */
.gallery-section { }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.gallery div:nth-child(7n+1) { grid-row: span 2; }
.gallery div:nth-child(7n+5) { grid-column: span 2; }
.gallery-tile {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-size: 2.6rem;
  color: var(--mute);
  transition: var(--t-med);
  position: relative; overflow: hidden;
}
.gallery-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, var(--amber-glow) 100%);
  opacity: 0; transition: var(--t-med);
}
.gallery-tile:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: scale(1.02);
}
.gallery-tile:hover::after { opacity: 1; }

/* ===== Testimonials ===== */
.testimonials-section { }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.testimonial {
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
}
.testimonial::before { content: none; }
.testimonial .stars {
  color: var(--amber);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 26px;
  letter-spacing: -0.005em;
}
.testimonial blockquote::before { content: '“'; color: var(--amber); margin-right: 2px; }
.testimonial blockquote::after  { content: '”'; color: var(--amber); margin-left: 2px; }
.testimonial .who {
  display: flex; align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial .who b {
  font-size: .94rem;
  font-family: var(--font-sans);
  display: block;
  color: var(--ink);
  font-weight: 500;
}
.testimonial .who span,
.testimonial .who .who-text span {
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-top: 3px;
}
.testimonial .who .avatar {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  background: var(--bg-3);
  color: var(--amber);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
.reviews-attrib {
  text-align: center;
  margin: 56px auto 0;
  font-size: .85rem;
  color: var(--mute);
  max-width: 520px;
}
.reviews-attrib a {
  color: var(--amber);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: border-color var(--t-fast);
}
.reviews-attrib a:hover { border-bottom-color: var(--amber); }

/* The home-page reviews section starts hidden and is shown by loadGoogleReviews()
   only when at least one review qualifies. `hidden` keeps the section out of the
   accessibility tree until then. */
#reviewsSection[hidden] { display: none; }

/* ===== CTA strip ===== */
.cta-strip {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 165, 90, 0.10), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip h2 { margin-bottom: 16px; color: var(--ink); }
.cta-strip .serif { color: var(--amber); }
.cta-strip p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.06rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-grid h2 { margin-bottom: 24px; color: var(--ink); }
.about-grid p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}
.about-grid ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.about-grid li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  color: var(--ink);
  position: relative;
}
.about-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--amber);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info > h2 { margin-bottom: 22px; color: var(--ink); }
.contact-info p { color: var(--ink-soft); }
.contact-info .info-row {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.contact-info .info-row:last-child { border-bottom: 1px solid var(--line); }
.contact-info .info-row label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}
.contact-info .info-row a,
.contact-info .info-row .val {
  color: var(--ink);
  font-size: 1rem;
}
.contact-info .info-row a:hover { color: var(--amber); }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 500;
  transition: var(--t-fast);
}
.socials a svg { width: 16px; height: 16px; display: block; }
.socials a:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--bg);
}

/* ===== Form ===== */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 40px;
}
.form-card h3 { margin: 0 0 22px; font-size: 1.25rem; font-weight: 500; color: var(--ink); }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: var(--t-fast);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--mute-2); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row select {
  appearance: none; -webkit-appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--mute) 50%),
    linear-gradient(135deg, var(--mute) 50%, transparent 50%);
  background-position: calc(100% - 16px) center, calc(100% - 12px) center;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.form-row select option { background: var(--bg-3); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ===== Modal ===== */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(10, 12, 10, 0.7);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.modal h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 8px;
  letter-spacing: -0.018em;
  color: var(--cream);
}
.modal .close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: var(--mute);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: var(--t-fast);
}
.modal .close:hover { background: var(--bg-3); color: var(--ink); }
.modal-sub { color: var(--mute); font-size: .92rem; margin-top: -2px; }
.modal-actions {
  display: flex; justify-content: flex-end;
  gap: 10px; margin-top: 22px;
}

.qr-display {
  text-align: center;
  padding: 26px 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 20px 0;
}
.qr-display svg { margin: 0 auto; max-width: 220px; }
.qr-display .token {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: var(--amber);
  margin-top: 14px;
  user-select: all;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-3);
  color: var(--ink);
  border: 1px solid var(--amber);
  padding: 12px 24px;
  font-size: .88rem;
  border-radius: var(--r-pill);
  z-index: 200;
  opacity: 0;
  transition: var(--t-med);
  pointer-events: none;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { border-color: var(--danger); }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg);
  padding: 90px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-grid h4 {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: var(--t-fast);
}
.footer-grid a:hover { color: var(--amber); }
.footer-brand {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-tag {
  color: var(--mute);
  font-size: .92rem;
  max-width: 300px;
  line-height: 1.65;
}
.footer-bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: .78rem;
  color: var(--mute);
}

/* ===== Scroll reveal — refined, not loud =====
   JS adds .revealed when an element enters the viewport. */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.revealed { opacity: 1; transform: none; transition: none; }
  .hero-art .ha-eyebrow::before { animation: none; }
}

/* ===== Map link ===== */
.map-link {
  display: inline-flex; gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
  color: var(--ink);
  line-height: 1.55;
  border-radius: var(--r-md);
  transition: color var(--t-fast);
}
.map-link .map-pin {
  flex: 0 0 22px; width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--amber);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  margin-top: 2px;
  transition: var(--t-fast);
}
.map-link .map-pin svg { width: 12px; height: 12px; }
.map-link .map-text  { display: flex; flex-direction: column; gap: 4px; }
.map-link .map-addr  { color: var(--ink); font-size: 1rem; }
.map-link .map-cue   { color: var(--amber); font-size: .78rem; letter-spacing: .04em; transition: var(--t-fast); }
.map-link:hover .map-pin { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.map-link:hover .map-cue { text-decoration: underline; }
.map-link-compact {
  display: flex; flex-direction: column; gap: 4px;
  font-size: .92rem; line-height: 1.6;
  color: var(--ink-soft);
  padding: 0;
}
.map-link-compact .map-addr { color: var(--ink-soft); font-size: .92rem; }
.map-link-compact .map-cue  { color: var(--amber); font-size: .78rem; }
.map-link-compact:hover .map-cue { text-decoration: underline; }

/* ===== Hamburger toggle (hidden on desktop, shown on mobile) ===== */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink);
  transition: var(--t-fast);
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle:hover { border-color: var(--cream); color: var(--cream); }
.nav-toggle:active { transform: scale(0.96); }

/* ===== Mobile menu overlay ===== */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 80;
  background: rgba(10, 12, 10, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--t-med);
}
.mobile-menu.open { opacity: 1; }
.mobile-menu .mm-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 22px var(--gutter-x) max(28px, env(safe-area-inset-bottom));
  padding-top: max(22px, env(safe-area-inset-top));
  transform: translateX(12%);
  transition: transform var(--t-med);
  overflow: auto;
}
.mobile-menu.open .mm-panel { transform: translateX(0); }
.mm-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mm-close {
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink);
  display: grid; place-items: center;
  transition: var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.mm-close svg { width: 18px; height: 18px; }
.mm-close:active { transform: scale(0.96); }
.mm-links { display: flex; flex-direction: column; padding: 4px 0; }
.mm-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--t-fast), color var(--t-fast);
}
.mm-links a span { color: var(--mute); font-size: 1.1rem; transition: var(--t-fast); }
.mm-links a:active { padding-left: 8px; color: var(--amber); }
.mm-links a.active { color: var(--amber); }
.mm-links a.active span { color: var(--amber); }
.mm-foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.mm-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.mm-socials a {
  flex: 1 1 100px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  transition: var(--t-fast);
}
.mm-socials a svg { width: 16px; height: 16px; }
.mm-socials a.s-ig:active  { color: #E1306C; border-color: #E1306C; }
.mm-socials a.s-fb:active  { color: #1877F2; border-color: #1877F2; }
.mm-socials a.s-yt:active  { color: #FF0000; border-color: #FF0000; }
.mm-socials a.s-map:active { color: #EA4335; border-color: #EA4335; }

body.mm-open, body.modal-open { overflow: hidden; }

/* Touch devices: disable hover-triggered motion that never resolves on tap */
@media (hover: none) {
  .schedule-band li:hover { padding-left: 0; }
  .style-cell .arrow { opacity: 1; transform: translate(0, 0); }
  .pkg-card:hover { transform: none; box-shadow: none; }
  .gallery-tile:hover { transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  section { padding: 90px 0; }
  .hero { padding: 184px 0 70px; min-height: auto; }
  .nav-links, .nav-socials { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-art { min-height: 300px; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-bands { grid-template-columns: 1fr; gap: 40px; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery div:nth-child(7n+5) { grid-column: auto; }
  .gallery div:nth-child(7n+1) { grid-row: auto; }
  .testimonials { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .wa-callout { padding: 24px; }
  .wa-callout .wa-actions, .wa-callout .wa-actions .btn-wa { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  :root { --gutter-x: 22px; }
  section { padding: 64px 0; }
  .hero { padding: 150px 0 44px; }
  h1 { font-size: clamp(2.1rem, 9.5vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
  .hero .lede { font-size: 1.02rem; margin: 22px 0 28px; }
  .hero-meta { margin-top: 48px; padding-top: 22px; gap: 18px 16px; }
  .hero-meta > div b { font-size: 2rem; }
  .hero-art { padding: 22px; min-height: 0; gap: 14px; }
  .hero-art .ha-headline { font-size: 1.4rem; }
  .styles-grid, .pkg-grid, .instructors-grid { grid-template-columns: 1fr; }
  .style-cell { min-height: 0; padding: 26px 22px; }
  .style-cell .arrow { opacity: 1; top: 22px; right: 18px; } /* always-visible cue on touch */
  .pkg-card { padding: 30px 22px; }
  .pkg-card .price { font-size: 2.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 24px 20px; }
  .modal { padding: 28px 20px; }
  .modal h2 { font-size: 1.6rem; }
  .nav-cta .btn-primary.btn-sm { padding: 9px 14px; font-size: .78rem; } /* tighter on small */
  .wa-callout { padding: 22px; }
  .wa-callout h3 { font-size: 1.35rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery div:nth-child(7n+1) { grid-row: auto; }
  .schedule-band li .time { flex: 0 0 84px; font-size: .82rem; }
  .testimonial blockquote { font-size: 1.25rem; }
  /* Trim the contact-info row a touch */
  .contact-info .info-row { padding: 18px 0; }
  /* Iframe-safe touch target on the brand mark */
  .brand small { font-size: .58rem; letter-spacing: .2em; }
}

/* Prevent iOS auto-zoom on focusing inputs (16px floor) and respect notch */
@supports (padding: max(0px)) {
  .site-header { padding-top: max(22px, env(safe-area-inset-top)); }
  .site-footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
}
.form-row input,
.form-row select,
.form-row textarea { font-size: 16px; } /* unconditional 16px to block zoom */

