:root {
  --announce-h: 44px;
  --bg: #120d10;
  --bg-deep: #090608;
  --surface: rgba(255, 248, 240, 0.045);
  --surface-strong: rgba(28, 16, 20, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text: #f7f0e8;
  --muted: #ccbcaf;
  --line: rgba(219, 198, 171, 0.18);
  --gold: #d4ae6c;
  --sand: #f0dabc;
  --coral: #b5704e;
  --wine: #5e3248;
  --emerald: #2e5a50;
  --plum: #4e3d5c;
  --champagne: #b89060;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(88px + var(--announce-h));
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 84% 4%, rgba(220, 178, 108, 0.32), transparent 26%),
    radial-gradient(circle at 16% 8%, rgba(185, 108, 74, 0.26), transparent 30%),
    radial-gradient(circle at left 65%, rgba(88, 58, 72, 0.22), transparent 38%),
    linear-gradient(180deg, #120d10 0%, #0f0a0d 44%, #090608 100%);
  color: var(--text);
  line-height: 1.6;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(240, 220, 188, 0.045), transparent),
    radial-gradient(circle at top, rgba(220, 178, 108, 0.16), transparent 36%);
  opacity: 0.92;
}

.container {
  width: min(1140px, calc(100% - 1.4rem));
  margin: 0 auto;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 42;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--announce-h);
  padding: 0 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 246, 226, 0.2), rgba(255, 246, 226, 0.02)) padding-box,
    linear-gradient(120deg, #fce1ad 0%, #e2ac60 45%, #c97f44 100%);
  color: #2c160d;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  border-bottom: 1px solid rgba(255, 232, 198, 0.36);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header {
  position: sticky;
  top: var(--announce-h);
  z-index: 30;
  background: rgba(18, 12, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-salsa {
  color: #f6efe8;
}

.brand-and {
  color: var(--sand);
}

.brand-bongo {
  color: var(--gold);
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0.7rem;
  left: 0.7rem;
  display: none;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(16, 11, 16, 0.96);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 0.85rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.12rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 206, 0.40);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.24), rgba(255, 248, 238, 0.01)) padding-box,
    linear-gradient(135deg, #fce4bc 0%, #d8ac70 44%, #c08450 100%);
  color: #2a160c;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
  white-space: nowrap;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(220, 175, 112, 0.26),
    inset 0 1px 0 rgba(255, 250, 244, 0.48);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.variant-link {
  color: var(--sand);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav .header-cta:hover,
.site-nav .header-cta:focus-visible {
  color: #170f0d;
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(220, 175, 112, 0.32),
    inset 0 1px 0 rgba(255, 250, 244, 0.56);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.4rem 0 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 75%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-34%, -46%);
  width: clamp(300px, 64vw, 660px);
  height: clamp(300px, 64vw, 660px);
  background: url('images/logo.png') center / contain no-repeat;
  opacity: 0.058;
  filter: blur(0.8px) saturate(0.2);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 10% -90px 10%;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 178, 108, 0.18), transparent 70%);
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.52;
}

.orb-one {
  top: 1rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(192, 120, 88, 0.38), transparent 70%);
}

.orb-two {
  left: -5rem;
  bottom: -4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(100, 70, 108, 0.34), transparent 72%);
}

.hero-grid,
.intro-grid,
.offer-grid,
.contact-layout,
.footer-inner {
  display: grid;
  gap: 1.2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.heading-accent {
  background: linear-gradient(135deg, #fce0a8, #d6aa64 46%, #bc8850 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 20px rgba(214, 170, 100, 0.26));
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 13vw, 6rem);
}

.hero-salsa {
  color: #f6efe8;
}

.hero-and {
  color: #e2ca9c;
}

.hero-bongo {
  background: linear-gradient(135deg, #fce0a8, #d4a46c 44%, #bc8450 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-academy {
  color: #f2e5d3;
}

.hero-tagline {
  margin: 0.75rem 0 0;
  width: fit-content;
  color: #f7e6c6;
  font-size: clamp(1.08rem, 2.8vw, 1.26rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffe4b5 6%, #e1af64 50%, #cd8349 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 16px rgba(240, 218, 188, 0.15);
}

.hero-tagline::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 228, 181, 0.9), rgba(205, 131, 73, 0.55));
}

.lead,
.section-heading p,
.offer-card p,
.team-card p,
.contact-panel p,
.schedule-note,
.form-note {
  color: var(--muted);
}

.lead {
  margin: 1rem 0 0;
  max-width: 41rem;
  font-size: 1.04rem;
}

.secondary-lead {
  max-width: 37rem;
  color: #d7c6b9;
}

.section-motto {
  margin: 0 0 0.72rem;
  width: fit-content;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2d9af;
  border-bottom: 2px solid rgba(224, 172, 96, 0.5);
  padding-bottom: 0.22rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-links {
  align-items: stretch;
}

.contact-links .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(170deg, #fce0a8 0%, #e0ac60 34%, #c47838 68%, #b06430 100%);
  color: #170f0d;
  font-weight: 800;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(224, 172, 96, 0.36),
    inset 0 1px 0 rgba(255, 252, 240, 0.44);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button:hover,
.button:focus-visible,
.floating-wa:hover {
  transform: translateY(-1px);
}

.button:hover,
.button:focus-visible {
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.40),
    0 0 42px rgba(224, 172, 96, 0.44),
    inset 0 1px 0 rgba(255, 252, 240, 0.56);
}

.hero-quote {
  margin: 1rem 0 0;
  color: var(--sand);
  font-weight: 600;
  text-shadow: 0 1px 18px rgba(227, 204, 176, 0.1);
}

.hero-panel,
.stats-card,
.style-card,
.offer-card,
.team-card,
.contact-panel,
.form-panel,
.mobile-day-card,
.desktop-schedule,
.schedule-toolbar,
.schedule-cell,
.schedule-legend {
  border: 1px solid var(--line);
  background: rgba(255, 244, 234, 0.038);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 248, 240, 0.07);
}

.hero-panel,
.stats-card,
.style-card,
.offer-card,
.team-card,
.contact-panel,
.form-panel,
.desktop-schedule,
.schedule-toolbar,
.mobile-day-card,
.schedule-legend {
  border-radius: var(--radius);
}

.hero-panel {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 244, 232, 0.072), rgba(24, 15, 22, 0.90));
  border-color: rgba(219, 198, 171, 0.22);
}

.logo-showcase-section {
  padding-top: 1rem;
}

.logo-showcase {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(199, 160, 106, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.035), rgba(255, 248, 240, 0.015));
  box-shadow: var(--shadow);
}

.logo-showcase-copy p {
  color: var(--muted);
}

.logo-showcase-copy h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 8vw, 3.3rem);
}

.logo-showcase-art {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.logo-showcase-art img {
  width: min(320px, 78vw);
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34));
}

.panel-label {
  margin: 0 0 0.8rem;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-highlights {
  display: grid;
  gap: 0.95rem;
}

.hero-signature-stage {
  position: relative;
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1rem;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(233, 208, 168, 0.16);
  background:
    radial-gradient(circle at top, rgba(224, 172, 96, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.hero-stage-glow {
  position: absolute;
  inset: -10% auto auto 55%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 172, 96, 0.26), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-signature-stage img {
  position: relative;
  z-index: 1;
  width: min(180px, 48vw);
  justify-self: center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.34));
}

.hero-stage-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  text-align: center;
}

.hero-stage-copy strong {
  color: #f7eee5;
  font-size: 0.98rem;
}

.hero-stage-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-stage-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-stage-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(233, 208, 168, 0.12);
  color: #f1dfc6;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-teachers-label {
  margin: 0.2rem 0 0;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-teachers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.hero-teacher-card {
  padding: 0.7rem 0.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(233, 208, 168, 0.12);
}

.hero-teacher-card strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #f4eadf;
  font-size: 0.92rem;
}

.hero-teacher-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  padding: 4rem 0;
}

.trust-strip-section {
  padding-top: 0;
}

.trust-strip {
  display: grid;
  gap: 1rem;
}

.trust-item,
.testimonial-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 244, 234, 0.028);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 248, 240, 0.08);
  backdrop-filter: blur(14px);
}

.trust-label,
.testimonial-meta {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  color: #f2e7db;
  font-size: 1.02rem;
  line-height: 1.45;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.section-heading.narrow {
  max-width: 38rem;
}

.section-heading h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
}

.stats-card div {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008));
}

.stats-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: var(--sand);
}

.stats-card span,
.offer-list,
.contact-points span,
.mobile-session p,
.desktop-entry small,
.team-card p {
  margin: 0;
  color: var(--muted);
}

.styles-grid,
.team-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  color: rgba(240, 218, 188, 0.14);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

.testimonial-quote {
  position: relative;
  margin: 0;
  padding-right: 2rem;
  color: #f0e6dc;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-meta {
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.style-card,
.team-card,
.offer-card,
.contact-panel,
.form-panel,
.mobile-day-card {
  padding: 1.3rem;
  backdrop-filter: blur(16px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 248, 240, 0.10);
}

.contact-panel,
.form-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 236, 206, 0.36), transparent 72%);
  pointer-events: none;
}

.style-number {
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #1b100d;
  background: linear-gradient(135deg, #f0dbc0, #c4965e);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(196, 150, 94, 0.32), inset 0 1px 0 rgba(255, 248, 240, 0.42);
}

.accent-coral .style-number {
  background: linear-gradient(135deg, #ead1c5, #a7684c);
}

.accent-gold .style-number {
  background: linear-gradient(135deg, #efe0c9, #c69a61);
}

.accent-wine .style-number {
  background: linear-gradient(135deg, #d8c7da, #624153);
}

.offer-list {
  padding-left: 1.05rem;
}

.offer-list li + li {
  margin-top: 0.55rem;
}

.schedule-section {
  position: relative;
}

.schedule-section::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(circle at center top, rgba(214, 166, 92, 0.2), transparent 72%);
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.09), rgba(255, 248, 234, 0.02)),
    rgba(255, 248, 240, 0.025);
  border: 1px solid rgba(233, 208, 168, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.2), 0 10px 26px rgba(0, 0, 0, 0.2);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e2d0be;
  font-size: 0.9rem;
  font-weight: 650;
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.level-0 {
  background: #a87a58;
}

.level-01 {
  background: #8d5f47;
}

.level-1 {
  background: #6c3443;
}

.level-12 {
  background: #5b425f;
}

.level-open {
  background: #3f6b61;
}

.schedule-toolbar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(110px, 1fr);
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.6rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.07), rgba(255, 248, 234, 0.02)),
    rgba(255, 248, 240, 0.025);
  border: 1px solid rgba(233, 208, 168, 0.22);
  border-radius: 20px;
}

.day-chip {
  min-height: 38px;
  justify-content: center;
  width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: #dcc5a4;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.day-chip.is-active {
  background: linear-gradient(130deg, rgba(255, 227, 175, 0.9), rgba(224, 164, 90, 0.88));
  color: #2a170f;
  border-color: rgba(255, 236, 208, 0.48);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.mobile-day-card {
  display: grid;
  gap: 0.9rem;
}

.mobile-day-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.mobile-session {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 18px;
}

.mobile-session.level-0,
.schedule-cell.level-0 {
  background: linear-gradient(180deg, rgba(168, 122, 88, 0.26), rgba(168, 122, 88, 0.12));
}

.mobile-session.level-01,
.schedule-cell.level-01 {
  background: linear-gradient(180deg, rgba(141, 95, 71, 0.28), rgba(141, 95, 71, 0.12));
}

.mobile-session.level-1,
.schedule-cell.level-1 {
  background: linear-gradient(180deg, rgba(108, 52, 67, 0.32), rgba(108, 52, 67, 0.12));
}

.mobile-session.level-12,
.schedule-cell.level-12 {
  background: linear-gradient(180deg, rgba(91, 66, 95, 0.3), rgba(91, 66, 95, 0.12));
}

.mobile-session.level-open,
.schedule-cell.level-open {
  background: linear-gradient(180deg, rgba(63, 107, 97, 0.3), rgba(63, 107, 97, 0.12));
}

.mobile-session.level-free,
.schedule-cell.level-free {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.schedule-time {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 228, 176, 0.26), rgba(218, 155, 82, 0.22));
  color: #f9e8ce;
  font-weight: 800;
  border: 1px solid rgba(255, 232, 198, 0.2);
}

.desktop-schedule-wrap {
  display: none;
}

.desktop-schedule {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.06), rgba(255, 248, 234, 0.02)),
    rgba(14, 10, 14, 0.76);
  border: 1px solid rgba(233, 208, 168, 0.22);
}

.desktop-grid {
  display: grid;
  grid-template-columns: 92px repeat(5, minmax(0, 1fr));
}

.schedule-head,
.schedule-cell,
.schedule-corner {
  padding: 1rem 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-corner,
.schedule-head {
  background: linear-gradient(180deg, rgba(255, 236, 198, 0.12), rgba(255, 236, 198, 0.04));
}

.schedule-head strong {
  display: block;
}

.schedule-head span {
  color: #dac4a8;
  font-size: 0.88rem;
}

.schedule-cell {
  min-height: 132px;
}

.schedule-cell.time-cell {
  min-height: auto;
  background: linear-gradient(180deg, rgba(255, 236, 198, 0.14), rgba(255, 236, 198, 0.04));
  font-weight: 800;
  color: #f4dfbf;
}

.desktop-entry {
  display: grid;
  gap: 0.25rem;
}

.desktop-entry strong,
.contact-points strong,
.style-card h3,
.team-card h3 {
  display: block;
  margin-bottom: 0.2rem;
}

.desktop-entry small {
  font-size: 0.82rem;
}

.schedule-note {
  margin: 1rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 248, 240, 0.03);
  border: 1px solid rgba(233, 208, 168, 0.14);
}

.schedule-note a,
.contact-points a,
.site-footer a {
  color: var(--sand);
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #eacda8, #aa7050);
  color: #1a100c;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(170, 112, 80, 0.36), inset 0 1px 0 rgba(255, 248, 240, 0.32);
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.map-embed-wrap {
  margin-top: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(233, 208, 168, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 248, 240, 0.08);
}

.map-embed-wrap iframe {
  display: block;
}

.contact-points div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-points span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-intro {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(233, 208, 168, 0.12);
}

.form-intro h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.45rem;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

.form-kicker {
  margin: 0;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-weight: 700;
  color: #f3e5d3;
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

.form-row-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(233, 208, 168, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 128px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(240, 218, 188, 0.9) 50%),
    linear-gradient(135deg, rgba(240, 218, 188, 0.9) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(233, 208, 168, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(233, 208, 168, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 0 0 4px rgba(224, 172, 96, 0.12),
    inset 0 1px 0 rgba(255, 248, 240, 0.1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a9968a;
}

.full-width {
  width: 100%;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: #d9c9bb;
}



.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.floating-wa:focus-visible,
.announcement-bar:focus-visible,
.variant-link:focus-visible,
.site-nav a:focus-visible,
.footer-ig-link:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(227, 204, 176, 0.6);
  outline-offset: 2px;
}

.wa-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  align-items: center;
}

.footer-meta {
  justify-self: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 200ms ease;
}

.footer-ig-link:hover {
  color: var(--sand);
}

.footer-credit {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: rgba(202, 186, 174, 0.38);
  letter-spacing: 0.05em;
  text-align: center;
}

.footer-credit span {
  color: rgba(202, 186, 174, 0.32);
}

.footer-credit a {
  color: rgba(240, 218, 188, 0.76);
  text-decoration: none;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.footer-credit a:hover {
  color: rgba(252, 228, 188, 0.94);
  text-shadow: 0 0 16px rgba(224, 172, 96, 0.18);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 720px) {
  .trust-strip,
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-showcase {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

  .hero-teachers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .button {
    width: auto;
  }

  .hero-actions,
  .contact-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-links .button {
    flex: 1 1 220px;
    min-width: 220px;
    justify-content: center;
  }

  .styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form .full-width {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta nav"
      "credit credit";
    justify-items: stretch;
    text-align: left;
    align-items: center;
    column-gap: 2rem;
    row-gap: 0.5rem;
  }

  .footer-meta {
    grid-area: meta;
    justify-self: start;
  }

  .footer-nav {
    grid-area: nav;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
  }

  .footer-credit {
    grid-area: credit;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .announcement-bar {
    font-size: 0.78rem;
    letter-spacing: 0.015em;
  }

  .form-row-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding-inline: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .header-cta {
    margin-left: 0.4rem;
  }

  .announcement-bar {
    font-size: 0.9rem;
  }

  .hero {
    padding: 5.8rem 0 4.2rem;
  }

  .hero::after {
    inset: auto 20% -100px 20%;
  }

  .hero-grid,
  .intro-grid,
  .offer-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .styles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile-schedule,
  .schedule-toolbar {
    display: none;
  }

  .desktop-schedule-wrap {
    display: block;
  }
}
