:root {
  --ink: #172126;
  --muted: #64716e;
  --paper: #fff4df;
  --white: #ffffff;
  --coral: #ff5a4d;
  --sun: #ffc247;
  --teal: #00a9a0;
  --leaf: #2f7a52;
  --plum: #7b356c;
  --sky: #75c9dc;
  --civic: #eadcc3;
  --clay: #c65035;
  --lime: #becf54;
  --line: rgba(30, 38, 48, 0.14);
  --shadow: 0 24px 64px rgba(23, 33, 38, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(23, 33, 38, 0.026) 47% 47.2%, transparent 47.2% 52.8%, rgba(23, 33, 38, 0.026) 52.8% 53%, transparent 53%),
    linear-gradient(180deg, #fff8eb 0%, #f6eddc 100%);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1240px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 6px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 33, 38, 0.96) 0 31%, rgba(255, 250, 240, 0.92) 31% 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(23, 33, 38, 0.2);
  backdrop-filter: blur(22px) saturate(1.25);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 4px;
  width: auto;
  background:
    linear-gradient(90deg, var(--sun), var(--coral), var(--teal), var(--plum), var(--sun));
  background-size: 220% 100%;
  clip-path: none;
  animation: headerColorRun 8s linear infinite;
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(260px, 31vw, 430px);
  top: 10px;
  z-index: -1;
  width: 110px;
  height: 52px;
  border: 2px solid rgba(255, 90, 77, 0.22);
  border-bottom: 0;
  border-radius: 110px 110px 0 0;
  transform: skewX(-7deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 330px;
  padding: 8px 14px 8px 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 194, 71, 0.15), transparent 44%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.brand-logo {
  width: 172px;
  height: 50px;
  object-fit: contain;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(23, 33, 38, 0.08);
}
.brand strong, .brand small { display: block; }
.brand strong {
  color: var(--white);
  line-height: 1.05;
  font-size: 1.12rem;
}
.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  color: #263237;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 232, 0.72));
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.08);
}

.nav a {
  padding: 9px 12px;
  border-radius: 7px;
}

.nav a:hover {
  color: var(--white);
  background: var(--ink);
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px 0 36px;
  color: var(--white);
  background:
    linear-gradient(135deg, #0f7f71, #14945a 48%, #ff5a4d);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(20, 148, 90, 0.28);
}

.header-cta::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 11px;
  height: 11px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.18);
  transform: translateY(-50%);
}

.section-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.02fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  min-height: calc(100svh - 88px);
  padding: 62px 0 42px;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: 84px;
  z-index: -1;
  width: 140px;
  height: 12px;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--teal));
  border-radius: 999px;
  transform: rotate(-4deg);
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 37%;
  width: 190px;
  height: 96px;
  border: 2px solid rgba(111, 60, 111, 0.18);
  border-bottom: 0;
  border-radius: 190px 190px 0 0;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: #008f88;
  background: rgba(0, 169, 160, 0.11);
  border: 1px solid rgba(0, 169, 160, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 0.98; }
h1 { max-width: 660px; margin-bottom: 22px; font-size: clamp(3rem, 5.35vw, 5.1rem); text-wrap: balance; }
h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4.5vw, 4.4rem); }
h3 { margin-bottom: 12px; font-size: 1.42rem; line-height: 1.1; }

.hero-lede { max-width: 680px; color: #3d494d; font-size: clamp(1.08rem, 1.8vw, 1.32rem); }
.hero-actions, .footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 22px;
}

.hero-service-line span {
  padding: 8px 10px;
  color: #334246;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 33, 38, 0.09);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.button, .card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}
.button.primary, .card-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--clay));
  box-shadow: 0 14px 34px rgba(255, 90, 77, 0.3);
}
.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 33, 38, 0.13);
  box-shadow: 0 10px 24px rgba(23, 33, 38, 0.07);
}
.button.full { width: 100%; }

.proof-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 32px; border-top: 1px solid rgba(30, 38, 48, 0.16); border-bottom: 1px solid rgba(30, 38, 48, 0.12); }
.proof-strip span {
  min-height: 92px;
  padding: 16px 14px 16px 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(30, 38, 48, 0.12);
  border-radius: 0;
  color: #4c575a;
  font-size: 0.88rem;
}
.proof-strip span + span { padding-left: 14px; }
.proof-strip span:last-child { border-right: 0; }
.proof-strip strong { display: block; color: var(--ink); font-size: 1.1rem; }

.brasilia-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.brasilia-signature span {
  position: relative;
  padding: 8px 12px 8px 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 38, 48, 0.1);
  border-radius: 999px;
  color: #435052;
  font-size: 0.78rem;
  font-weight: 900;
}

.brasilia-signature span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--sun);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-visual { position: relative; min-height: 610px; margin-top: 34px; }
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-visual::before {
  inset: -26px -22px auto auto;
  width: 52%;
  height: 130px;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(30, 38, 48, 0.16) 13% 14%, transparent 14% 29%, rgba(30, 38, 48, 0.16) 29% 30%, transparent 30% 45%, rgba(30, 38, 48, 0.16) 45% 46%, transparent 46%),
    linear-gradient(135deg, var(--sky), rgba(0, 169, 160, 0.56));
  border-radius: 8px;
  opacity: 0.55;
}

.hero-visual::after {
  left: -34px;
  bottom: 56px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 194, 71, 0.68);
  border-right-color: transparent;
  border-radius: 50%;
}

.motion-clip {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 91%);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(23, 33, 38, 0.24), 0 0 0 12px rgba(255, 255, 255, 0.18);
}

.motion-clip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(110deg, rgba(255, 194, 71, 0.2), transparent 34%),
    linear-gradient(32deg, transparent 0 62%, rgba(0, 169, 160, 0.26) 62% 73%, transparent 73%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.motion-clip::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  clip-path: polygon(0 0, 62% 0, 52% 100%, 0 100%);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  animation: heroFocus 16s ease-in-out infinite alternate;
}

.motion-slice {
  position: absolute;
  z-index: 4;
  width: 34%;
  height: 42%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(23, 33, 38, 0.24);
  filter: saturate(1.12) contrast(1.02);
  pointer-events: none;
}

.slice-one {
  right: 2%;
  top: 8%;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  animation: sliceFloatOne 9s ease-in-out infinite alternate;
}

.slice-two {
  left: 2%;
  bottom: 7%;
  width: 38%;
  height: 34%;
  clip-path: polygon(0 0, 100% 12%, 82% 100%, 8% 90%);
  animation: sliceFloatTwo 10s ease-in-out infinite alternate;
}

.motion-axis {
  position: absolute;
  inset: auto 6% 9% auto;
  z-index: 5;
  width: 42%;
  height: 34%;
  border: 2px solid rgba(255, 194, 71, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 120px 0 0;
  transform: rotate(-2deg);
  pointer-events: none;
}

.motion-axis::before,
.motion-axis::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 0;
  width: 3px;
  height: 76%;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.motion-axis::after {
  right: 36%;
  height: 58%;
  background: rgba(0, 169, 160, 0.72);
}

.hero-location-tag {
  position: absolute;
  left: -20px;
  top: 42px;
  display: grid;
  gap: 2px;
  min-width: 156px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(23, 33, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(30, 38, 48, 0.18);
}

.hero-location-tag span {
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.hero-location-tag strong {
  font-size: 0.92rem;
}

.hero-card {
  position: absolute;
  right: -10px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(350px, calc(100% - 24px));
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(23, 33, 38, 0.22);
  backdrop-filter: blur(16px);
}
.teacher-mark {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--coral), var(--sun));
  border-radius: 8px;
  font-weight: 900;
}
.hero-card strong, .hero-card div span { display: block; }
.hero-card div span { color: var(--muted); font-size: 0.9rem; }

.intro-band, .authority-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  margin: 16px 0;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 77, 0.18), transparent 38%),
    linear-gradient(90deg, var(--ink), #22342e 58%, #143f42);
}
.intro-band h2 { max-width: 900px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 4rem); }
.intro-band p:last-child { margin-bottom: 0; color: rgba(255, 255, 255, 0.76); font-size: 1.08rem; }

.audience-section {
  padding: clamp(54px, 8vw, 92px) 0 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 232, 0.74));
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 38, 0.08);
}

.audience-grid article:nth-child(2) { border-top-color: var(--teal); }
.audience-grid article:nth-child(3) { border-top-color: var(--sun); }
.audience-grid article:nth-child(4) { border-top-color: var(--plum); }
.audience-grid strong { font-size: 1.12rem; }
.audience-grid span { color: #4c5958; }

.city-rhythm {
  position: relative;
  display: grid;
  grid-template-columns: 0.56fr 0.86fr 0.58fr;
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(34px, 7vw, 76px) clamp(18px, 6vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(117, 201, 220, 0.54), rgba(255, 255, 255, 0.72) 42%, rgba(255, 194, 71, 0.28)),
    var(--civic);
}

.city-rhythm h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.city-rhythm > p {
  margin-bottom: 0;
  color: #465356;
  font-size: 1.06rem;
}

.monument-lines {
  position: relative;
  min-height: 220px;
}

.monument-lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(240px, 78vw);
  height: 132px;
  border: 12px solid var(--ink);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
  transform: translateX(-50%);
}

.monument-lines::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(300px, 88vw);
  height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
}

.monument-lines span {
  position: absolute;
  bottom: 28px;
  width: 10px;
  height: 94px;
  background: var(--ink);
  border-radius: 999px 999px 0 0;
}

.monument-lines span:nth-child(1) { left: calc(50% - 72px); height: 66px; }
.monument-lines span:nth-child(2) { left: calc(50% - 25px); height: 104px; }
.monument-lines span:nth-child(3) { left: calc(50% + 22px); height: 104px; }
.monument-lines span:nth-child(4) { left: calc(50% + 69px); height: 66px; }

.insta-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  padding: clamp(48px, 7vw, 86px) 0 0;
}

.insta-mosaic figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-0.6deg);
}

.insta-mosaic figure:nth-child(2) { transform: rotate(0.8deg); }
.insta-mosaic figure:nth-child(3) { transform: rotate(-0.2deg); }

.insta-mosaic .mosaic-large {
  min-height: 480px;
}

.insta-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.insta-mosaic figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(30, 38, 48, 0.72);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.class-gallery {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 0;
}

.gallery-copy {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 223, 0.56)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 33, 38, 0.1);
}

.gallery-copy h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.gallery-copy p:not(.eyebrow) {
  color: #4c5958;
}

.gallery-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 33, 38, 0.16);
  filter: saturate(1.08) contrast(1.03);
}

.gallery-rail img:first-child {
  grid-row: span 2;
}

.services, .experience, .booking { padding: clamp(58px, 9vw, 108px) 0; }
.section-heading { display: grid; grid-template-columns: 0.9fr 1fr; gap: 28px; align-items: end; margin-bottom: 28px; }
.section-heading p:last-child, .service-card p, .experience-copy p, .booking-copy p, .schedule-copy p { color: var(--muted); font-size: 1.04rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.76));
  border: 1px solid rgba(30, 38, 48, 0.1);
  border-radius: 8px;
}
.service-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 194, 71, 0.96), rgba(255, 226, 151, 0.86));
}
.service-card:nth-child(2) { border-top: 5px solid var(--teal); }
.service-card:nth-child(3) { border-top: 5px solid var(--plum); }
.service-card:nth-child(4) { border-top: 5px solid var(--leaf); }
.service-kicker {
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.service-card ul { display: grid; gap: 9px; margin: 10px 0 24px; padding: 0; list-style: none; color: #3f4d4e; }
.service-card li { padding-left: 18px; background: linear-gradient(var(--teal), var(--teal)) left 0.62em / 7px 7px no-repeat; }
.service-card .card-cta { margin-top: auto; }

.commercial-section {
  padding: clamp(56px, 8vw, 92px) 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(255, 90, 77, 0.22), transparent 38%),
    linear-gradient(135deg, #13282c, #173b37 48%, #5c315a);
}

.commercial-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 6vw, 68px);
  align-items: center;
}

.commercial-layout h2 {
  max-width: 680px;
}

.commercial-layout p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.commercial-grid article {
  display: grid;
  gap: 9px;
  min-height: 175px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.commercial-grid strong {
  color: var(--sun);
  font-size: 1.1rem;
}

.commercial-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.schedule-section {
  background:
    linear-gradient(90deg, rgba(30, 38, 48, 0.05) 1px, transparent 1px) 0 0 / 58px 100%,
    linear-gradient(135deg, rgba(255, 194, 71, 0.18), rgba(117, 201, 220, 0.15)),
    #f6ead8;
}
.schedule-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 34px; align-items: center; padding: clamp(52px, 8vw, 92px) 0; }
.schedule-list { display: grid; gap: 12px; }
.schedule-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(30, 38, 48, 0.09);
  border-radius: 8px;
  cursor: pointer;
}
.schedule-row:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(23, 33, 38, 0.1); }
.schedule-row span { color: var(--muted); }

.experience { position: relative; display: grid; grid-template-columns: 0.78fr 1fr; gap: clamp(28px, 6vw, 70px); align-items: center; }
.experience::before {
  content: "BSB";
  position: absolute;
  right: 0;
  top: 42px;
  z-index: -1;
  color: rgba(30, 38, 48, 0.06);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.experience-media img { width: 100%; max-height: 640px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); filter: saturate(1.08); }
.place-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.place-cloud span { padding: 9px 12px; background: rgba(10, 166, 166, 0.12); border: 1px solid rgba(10, 166, 166, 0.24); border-radius: 8px; font-weight: 800; }

.authority-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  margin: 0;
  background:
    linear-gradient(110deg, var(--teal), var(--leaf) 45%, var(--plum)),
    var(--ink);
}
.big-number { display: block; margin-bottom: 8px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.7rem); font-weight: 800; line-height: 1; }
.authority-band p { max-width: 320px; margin: 0; color: rgba(255, 255, 255, 0.82); }

.booking-steps {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0 0;
}

.booking-steps h2 {
  max-width: 520px;
}

.booking-steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-step;
}

.booking-steps li {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 72px 20px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 33, 38, 0.09);
  counter-increment: booking-step;
}

.booking-steps li::before {
  content: counter(booking-step);
  position: absolute;
  left: 20px;
  top: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--plum));
  border-radius: 8px;
  font-weight: 900;
}

.booking-steps strong { font-size: 1.08rem; }
.booking-steps span { color: #4c5958; }

.booking { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(28px, 6vw, 70px); align-items: start; }
.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 232, 0.94));
  border: 1px solid rgba(30, 38, 48, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.booking-form label { display: grid; gap: 8px; color: #354043; font-weight: 800; }
.booking-form input, .booking-form select {
  min-height: 52px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: #f8f3ea;
  border: 1px solid rgba(30, 38, 48, 0.14);
  border-radius: 8px;
}
.form-note { margin: 0; color: var(--muted); text-align: center; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px) 92px;
  background: var(--ink);
  color: var(--white);
}
.footer strong, .footer span { display: block; }
.footer span, .footer a { color: rgba(255, 255, 255, 0.76); }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  min-width: 172px;
  padding: 13px 18px;
  color: var(--white);
  background: #1f8f55;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(31, 143, 85, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-scrolled .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-whatsapp span { font-size: 0.74rem; font-weight: 700; opacity: 0.78; }
.floating-whatsapp strong { line-height: 1.1; }

@keyframes headerColorRun {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes heroFocus {
  0% { object-position: 48% 40%; filter: saturate(1.03) contrast(1); }
  100% { object-position: 56% 46%; filter: saturate(1.16) contrast(1.04); }
}

@keyframes sliceFloatOne {
  0% { transform: translate3d(0, 0, 0) rotate(1deg); }
  100% { transform: translate3d(-18px, 18px, 0) rotate(-2deg); }
}

@keyframes sliceFloatTwo {
  0% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  100% { transform: translate3d(22px, -16px, 0) rotate(1deg); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .section-heading, .schedule-layout, .experience, .booking, .intro-band, .city-rhythm, .class-gallery, .booking-steps, .commercial-layout { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 40px; }
  .hero-visual { min-height: 0; }
  .motion-clip { min-height: 620px; }
  .hero-location-tag { left: 10px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-steps ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .insta-mosaic { grid-template-columns: 1fr; }
  .insta-mosaic figure,
  .insta-mosaic .mosaic-large { min-height: 430px; }
  .gallery-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .monument-lines { min-height: 180px; }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px;
    background: linear-gradient(90deg, rgba(23, 33, 38, 0.96), rgba(255, 250, 240, 0.82));
  }
  .site-header::after { left: 58%; top: 13px; }
  .brand { min-width: 0; }
  .brand-logo { width: 146px; height: 42px; }
  .brand strong,
  .brand small,
  .header-cta { display: none; }
  .section-shell { width: min(100% - 28px, 1180px); }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy { display: contents; }
  .hero-copy > .eyebrow { order: 1; }
  .hero-copy > h1 { order: 2; }
  .hero-copy > .hero-lede { order: 3; }
  .hero-copy > .hero-service-line { order: 4; }
  .hero-copy > .hero-actions { order: 5; }
  .hero-visual { order: 6; width: 100%; margin-top: 10px; }
  .hero-copy > .proof-strip { order: 7; }
  .hero-copy > .brasilia-signature { order: 8; }
  h1 { font-size: clamp(2.38rem, 12vw, 3.2rem); }
  .hero-lede { font-size: 1rem; }
  .motion-clip {
    min-height: 520px;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }
  .motion-slice { width: 42%; height: 30%; }
  .slice-one { right: 2%; top: 7%; }
  .slice-two { left: 2%; bottom: 16%; }
  .motion-axis { width: 52%; height: 28%; right: 8%; bottom: 13%; }
  .hero-location-tag { left: 10px; top: 18px; }
  .hero-card { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .proof-strip, .service-grid, .schedule-row, .authority-band, .audience-grid, .booking-steps ol, .commercial-grid { grid-template-columns: 1fr; }
  .audience-grid article,
  .booking-steps li,
  .commercial-grid article { min-height: 0; }
  .insta-mosaic figure,
  .insta-mosaic .mosaic-large { min-height: 340px; }
  .gallery-rail {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-rail img:first-child { grid-row: auto; }
  .service-card { min-height: 0; }
  .brasilia-signature span { font-size: 0.74rem; }
  .monument-lines { min-height: 150px; }
  .monument-lines::before {
    width: 184px;
    height: 96px;
    border-width: 9px;
  }
  .monument-lines::after { width: 230px; }
  .monument-lines span { width: 8px; height: 70px; }
  .monument-lines span:nth-child(1) { left: calc(50% - 52px); height: 48px; }
  .monument-lines span:nth-child(2) { left: calc(50% - 18px); height: 78px; }
  .monument-lines span:nth-child(3) { left: calc(50% + 16px); height: 78px; }
  .monument-lines span:nth-child(4) { left: calc(50% + 50px); height: 48px; }
  .footer { display: grid; }
  .floating-whatsapp { display: none; }
}

/* New editorial hero direction */
.site-header-editorial {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(23, 33, 38, 0.12);
  box-shadow: 0 18px 54px rgba(23, 33, 38, 0.12);
  backdrop-filter: blur(22px) saturate(1.04);
  transform: translateX(-50%);
}

.site-header-editorial::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 33, 38, 0.72), rgba(0, 169, 160, 0.62), rgba(255, 194, 71, 0.72));
  opacity: 0.74;
}

.site-header-editorial::after {
  display: none;
}

.site-header-editorial .brand {
  min-width: 250px;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-header-editorial .brand-logo {
  width: 154px;
  height: 44px;
  background: rgba(255, 248, 234, 0.96);
}

.site-header-editorial .brand strong {
  color: var(--white);
  font-size: 0.96rem;
}

.site-header-editorial .brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-header-editorial .nav {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header-editorial .nav a {
  color: rgba(23, 33, 38, 0.76);
}

.site-header-editorial .nav a:hover {
  color: var(--ink);
  background: rgba(23, 33, 38, 0.06);
}

.site-header-editorial .header-cta {
  min-height: 44px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 90, 77, 0.22);
}

.hero-fullbleed {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: var(--ink);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(1.08) contrast(1.06);
  animation: none;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.88) 0 34%, rgba(10, 16, 18, 0.46) 58%, rgba(10, 16, 18, 0.14)),
    linear-gradient(180deg, rgba(10, 16, 18, 0.36), rgba(10, 16, 18, 0.08) 42%, rgba(10, 16, 18, 0.76)),
    linear-gradient(125deg, rgba(255, 90, 77, 0.18) 0 18%, transparent 18% 100%);
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  right: -4vw;
  top: 16vh;
  z-index: 2;
  width: 46vw;
  height: 46vw;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: 46vw 46vw 0 0;
  pointer-events: none;
}

.hero-fullbleed::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: 0;
  z-index: 2;
  width: min(520px, 42vw);
  height: 68vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 54px 100%,
    linear-gradient(180deg, rgba(0, 169, 160, 0.15), transparent);
  clip-path: polygon(30% 0, 100% 0, 72% 100%, 0 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  padding: clamp(132px, 17vh, 190px) 0 clamp(36px, 8vh, 76px);
}

.hero-fullbleed .hero-copy {
  max-width: 790px;
}

.hero-fullbleed .hero-copy::after {
  display: none;
}

.hero-fullbleed .eyebrow {
  color: var(--sun);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-fullbleed h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(4rem, 8.4vw, 8.2rem);
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.hero-fullbleed .hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

.hero-fullbleed .hero-service-line span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-fullbleed .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-proof-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 4px;
}

.hero-proof-panel span {
  display: block;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(14, 23, 25, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-proof-panel strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
}

@keyframes fullHeroBreath {
  0% { object-position: 48% 54%; filter: saturate(1.02) contrast(1.02); }
  100% { object-position: 54% 50%; filter: saturate(1.14) contrast(1.06); }
}

@media (max-width: 980px) {
  .site-header-editorial .nav { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .hero-proof-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header-editorial {
    top: 12px;
    width: min(100% - 24px, 1180px);
    padding: 8px;
    background: rgba(255, 250, 240, 0.78);
  }

  .site-header-editorial .header-cta {
    display: none;
  }

  .site-header-editorial .nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-fullbleed {
    display: block;
    min-height: 100svh;
  }

  .hero-bg img {
    object-position: 53% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 16, 18, 0.44), rgba(10, 16, 18, 0.2) 34%, rgba(10, 16, 18, 0.86)),
      linear-gradient(90deg, rgba(10, 16, 18, 0.58), rgba(10, 16, 18, 0.08));
  }

  .hero-inner {
    display: grid;
    min-height: 100svh;
    padding: 108px 0 32px;
  }

  .hero-fullbleed .hero-copy {
    display: block;
  }

  .hero-fullbleed h1 {
    font-size: clamp(3.4rem, 16vw, 4.85rem);
  }

  .hero-fullbleed .hero-lede {
    font-size: 1rem;
  }

  .hero-proof-panel {
    grid-template-columns: 1fr;
  }
}

/* Contained teacher portrait hero */
.hero-portrait {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(23, 33, 38, 0.03) 47% 47.25%, transparent 47.25% 52.75%, rgba(23, 33, 38, 0.03) 52.75% 53%, transparent 53%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.58) 0 38%, transparent 38% 100%),
    linear-gradient(180deg, #fff6e7, #f3ead9);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  right: 9vw;
  top: 20vh;
  width: min(380px, 35vw);
  height: min(190px, 18vw);
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-bottom: 0;
  border-radius: 380px 380px 0 0;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(620px, 46vw);
  height: 72vh;
  background: rgba(23, 33, 38, 0.035);
  clip-path: polygon(30% 0, 100% 0, 72% 100%, 0 100%);
}

.hero-portrait .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(116px, 16vh, 164px) 0 clamp(52px, 8vh, 86px);
}

.hero-portrait .hero-copy {
  max-width: 760px;
}

.hero-portrait .hero-copy::after {
  display: none;
}

.hero-portrait .eyebrow {
  color: #008f88;
  background: rgba(0, 169, 160, 0.11);
  border-color: rgba(0, 169, 160, 0.2);
}

.hero-portrait h1 {
  max-width: 730px;
  color: var(--ink);
  font-size: clamp(3.75rem, 6.65vw, 6.35rem);
  text-shadow: none;
}

.hero-portrait .hero-lede {
  max-width: 650px;
  color: #344246;
}

.hero-portrait .hero-service-line span {
  color: #334246;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(23, 33, 38, 0.09);
  backdrop-filter: none;
}

.hero-portrait .button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 33, 38, 0.13);
}

.hero-portrait-panel {
  position: relative;
  align-self: center;
}

.hero-portrait-panel::before {
  content: "";
  position: absolute;
  inset: -28px -20px auto auto;
  z-index: -1;
  width: 62%;
  height: 128px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(23, 33, 38, 0.1) 18% 19%, transparent 19% 38%, rgba(23, 33, 38, 0.1) 38% 39%, transparent 39%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(0, 169, 160, 0.16));
  border-radius: 8px;
}

.hero-portrait-panel img {
  width: 100%;
  max-height: min(68svh, 680px);
  object-fit: cover;
  object-position: 50% 42%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(23, 33, 38, 0.2), 0 0 0 12px rgba(255, 255, 255, 0.32);
}

.hero-portrait .hero-proof-panel {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-portrait .hero-proof-panel span {
  padding: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(23, 33, 38, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-portrait .hero-proof-panel strong {
  color: var(--white);
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .hero-portrait .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-portrait-panel img {
    max-height: 620px;
  }

  .hero-portrait .hero-proof-panel {
    position: static;
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  .hero-portrait {
    min-height: 0;
  }

  .hero-portrait::before {
    right: -14vw;
    top: 18vh;
    width: 260px;
    height: 130px;
  }

  .hero-portrait::after {
    width: 78vw;
    height: 56vh;
  }

  .hero-portrait .hero-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 144px 0 48px;
  }

  .hero-portrait .hero-copy {
    display: block;
    order: 1;
  }

  .hero-portrait-panel {
    order: 2;
    width: 100%;
  }

  .hero-portrait h1 {
    font-size: clamp(3rem, 14vw, 4.05rem);
  }

  .hero-portrait-panel img {
    max-height: 500px;
    object-position: 50% 34%;
  }

  .hero-portrait .hero-proof-panel {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
}

/* Premium restraint pass */
.intro-band {
  margin: 0;
  background: #162124;
}

.city-rhythm {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(234, 220, 195, 0.72)),
    var(--civic);
}

.audience-grid article,
.gallery-copy,
.service-card,
.booking-steps li,
.booking-form {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 33, 38, 0.1);
  box-shadow: 0 18px 42px rgba(23, 33, 38, 0.08);
}

.audience-grid article,
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4) {
  border-top-color: rgba(23, 33, 38, 0.22);
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 234, 0.78));
  border-top: 5px solid rgba(198, 80, 53, 0.54);
}

.service-kicker,
.commercial-grid strong {
  color: #86513f;
}

.commercial-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 44%),
    #162124;
}

.commercial-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.schedule-section {
  background:
    linear-gradient(90deg, rgba(30, 38, 48, 0.035) 1px, transparent 1px) 0 0 / 58px 100%,
    #f2eadb;
}

.authority-band {
  background: linear-gradient(110deg, #162124, #243b35 58%, #5a4058);
}

.button.primary,
.card-cta {
  background: linear-gradient(135deg, #cc5744, #9d4638);
  box-shadow: 0 14px 34px rgba(157, 70, 56, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
