:root {
  --color-forest: #244538;
  --color-sage: #86a889;
  --color-mint: #dfeade;
  --color-cream: #f7f3ea;
  --color-paper: #fffdf7;
  --color-clay: #b9795d;
  --color-gold: #d9aa5b;
  --color-ink: #27312d;
  --color-muted: #65726c;
  --color-line: rgba(36, 69, 56, 0.14);
  --shadow-soft: 0 24px 70px rgba(40, 61, 49, 0.13);
  --radius-sm: 8px;
  --radius-lg: 28px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--color-forest);
  color: white;
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 12px 40px rgba(36, 69, 56, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-forest);
  font-weight: 800;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1rem;
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(223, 234, 222, 0.9);
  border: 1px solid rgba(134, 168, 137, 0.45);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--color-forest);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 253, 247, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(36, 69, 56, 0.08);
  backdrop-filter: blur(14px);
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-forest);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--color-forest);
  color: white;
  outline: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.header-cta {
  padding: 12px 18px;
  background: var(--color-forest);
  color: white;
  box-shadow: 0 16px 36px rgba(36, 69, 56, 0.2);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn {
  padding: 14px 22px;
  font-size: 0.96rem;
}

.btn svg,
.header-cta svg,
.nav-toggle svg,
.whatsapp-float svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.btn-primary {
  background: var(--color-forest);
  color: white;
  box-shadow: 0 20px 48px rgba(36, 69, 56, 0.22);
}

.btn-primary:hover {
  background: #18352a;
}

.btn-secondary {
  background: rgba(255, 253, 247, 0.82);
  color: var(--color-forest);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 42px rgba(24, 53, 42, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.84);
  color: var(--color-forest);
}

.hero-section {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding: 150px 0 118px;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1920&q=84");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.94) 0%, rgba(247, 243, 234, 0.76) 42%, rgba(247, 243, 234, 0.26) 100%),
    linear-gradient(0deg, rgba(36, 69, 56, 0.24), rgba(36, 69, 56, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.intro-copy h2,
.about-copy h2,
.booking-panel h2,
.contact-copy h2 {
  margin: 0;
  color: var(--color-forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

.hero-content h1 {
  max-width: 680px;
  font-size: 5.45rem;
}

.hero-tagline {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--color-forest);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: #516259;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  width: min(960px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-metrics div {
  min-height: 104px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--color-forest);
  font-size: 1rem;
}

.hero-metrics span {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.intro-band {
  padding: 68px 0;
  background: linear-gradient(90deg, var(--color-forest), #40664d);
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.intro-copy h2 {
  color: white;
  font-size: 3rem;
}

.intro-copy .section-kicker {
  color: #f0ca7c;
}

.intro-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.booking-panel h2 {
  font-size: 3.4rem;
}

.section-heading p,
.about-copy > p,
.contact-copy > p,
.booking-panel p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card,
.testimonial-card {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 20px 44px rgba(36, 69, 56, 0.07);
}

.highlight-card svg {
  width: 34px;
  height: 34px;
  color: var(--color-clay);
  stroke-width: 1.8;
}

.highlight-card h3,
.class-card h3,
.founder-list h3 {
  margin: 22px 0 10px;
  color: var(--color-forest);
  font-size: 1.24rem;
  line-height: 1.25;
}

.highlight-card p,
.class-card p,
.founder-list p,
.mission-grid p,
.testimonial-card p {
  margin: 0;
  color: var(--color-muted);
}

.about-section {
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-note {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: min(280px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 20px 52px rgba(36, 69, 56, 0.16);
  backdrop-filter: blur(14px);
}

.image-note span {
  display: block;
  color: var(--color-clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-note strong {
  display: block;
  margin-top: 6px;
  color: var(--color-forest);
  line-height: 1.35;
}

.founder-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.founder-list article,
.mission-grid div {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 247, 0.75);
}

.founder-photo {
  aspect-ratio: 4 / 5;
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(223, 234, 222, 0.9), rgba(247, 243, 234, 0.95)),
    var(--color-mint);
  box-shadow: 0 16px 36px rgba(36, 69, 56, 0.1);
}

.founder-list h3 {
  margin: 0 0 8px;
}

.founder-list .role {
  margin: 0 0 12px;
  color: var(--color-clay);
  font-size: 0.86rem;
  font-weight: 900;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.mission-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-forest);
  font-weight: 900;
}

.classes-section {
  background:
    linear-gradient(180deg, rgba(223, 234, 222, 0.4), rgba(247, 243, 234, 0.42) 48%, rgba(255, 253, 247, 0) 100%),
    var(--color-paper);
}

.class-explorer-root {
  margin-top: 10px;
}

.class-hero-bg {
  opacity: 0.52;
  filter: saturate(0.9) brightness(1.08);
  transform: scale(1.03);
  animation: classBgZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

.class-detail-panel {
  animation: classDetailIn 520ms ease both;
}

.class-explorer [data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@keyframes classBgZoom {
  from {
    transform: scale(1.03) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-8px);
  }
}

@keyframes classDetailIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.class-card {
  min-height: 415px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 18px 40px rgba(36, 69, 56, 0.07);
}

.class-card img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.class-card div {
  padding: 22px;
}

.class-card h3 {
  margin-top: 8px;
}

.level {
  margin: 0;
  color: var(--color-clay);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.format-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-forest);
  color: white;
  overflow: hidden;
}

.format-strip div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.format-strip div:last-child {
  border-right: 0;
}

.format-strip svg {
  width: 22px;
  height: 22px;
  color: #f0ca7c;
}

.gallery-section {
  background: var(--color-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #d5dfd2;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--color-forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: #4c5b54;
  font-size: 1rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 24px;
  color: var(--color-forest);
  font-style: normal;
  font-weight: 900;
}

.booking-section {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(36, 69, 56, 0.92), rgba(36, 69, 56, 0.76)),
    url("https://images.unsplash.com/photo-1476611338391-6f395a0ebc7b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  color: white;
}

.booking-panel h2 {
  max-width: 760px;
  color: white;
}

.booking-panel .section-kicker {
  color: #f0ca7c;
}

.booking-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.booking-panel .btn {
  background: #f4bf6f;
  color: #253327;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-list a,
.contact-item {
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 14px 32px rgba(36, 69, 56, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 121, 93, 0.4);
}

.contact-list a > svg,
.contact-item > svg,
.instagram-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.contact-list a > svg,
.contact-item > svg {
  padding: 11px;
  background: var(--color-mint);
  color: var(--color-forest);
}

.instagram-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 30%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(214, 41, 118, 0.2);
}

.instagram-badge.small {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  font-size: 0.62rem;
}

.contact-list strong {
  display: block;
  color: var(--color-forest);
  line-height: 1.3;
}

.contact-list span {
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-forest);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(36, 69, 56, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 247, 0.92);
  color: var(--color-ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 4px rgba(134, 168, 137, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.map-wrap {
  margin-top: 54px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-mint);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: white;
  border-top: 1px solid var(--color-line);
}

.map-card h3 {
  margin: 4px 0 8px;
  color: var(--color-forest);
  font-size: 1.35rem;
  line-height: 1.2;
}

.map-card p {
  margin: 0;
  color: var(--color-muted);
}

.map-label {
  color: var(--color-clay) !important;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 68px 0 0;
  background: #182e25;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.75fr;
  gap: 46px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-brand .brand-mark svg {
  stroke: white;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  max-width: 390px;
  margin: 20px 0 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 0.95rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
}

.footer-social {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.wellness-disclaimer {
  width: min(1160px, calc(100% - 40px));
  max-width: 1160px !important;
  margin: 44px auto 0 !important;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 52px;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f8f5c;
  color: white;
  box-shadow: 0 18px 44px rgba(31, 143, 92, 0.34);
}

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

body:not(.js-ready) .reveal {
  opacity: 1;
  transform: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .section-pad {
    padding: 82px 0;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-cta {
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 253, 247, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: var(--radius-sm);
  }

  .hero-content h1 {
    font-size: 4.4rem;
  }

  .hero-metrics,
  .highlight-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 52px auto 0;
    transform: none;
  }

  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-line);
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

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

  .format-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-strip div:nth-child(2) {
    border-right: 0;
  }

  .format-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 66px 0;
  }

  .nav-shell {
    width: min(100% - 24px, 1220px);
    gap: 10px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-lockup strong {
    font-size: 0.86rem;
  }

  .brand-lockup small {
    font-size: 0.65rem;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 118px 0 34px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.96) 0%, rgba(247, 243, 234, 0.88) 52%, rgba(247, 243, 234, 0.72) 100%),
      linear-gradient(0deg, rgba(36, 69, 56, 0.16), rgba(36, 69, 56, 0.08));
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 3.16rem;
    line-height: 1.02;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-actions,
  .booking-panel {
    align-items: stretch;
  }

  .hero-actions .btn,
  .booking-panel .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-metrics,
  .highlight-grid,
  .class-grid,
  .testimonial-grid,
  .founder-list,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    width: min(100% - 28px, 960px);
    border-radius: 20px;
  }

  .hero-metrics div,
  .hero-metrics div:nth-child(2),
  .hero-metrics div:last-child {
    min-height: 84px;
    border-right: 0;
    border-top: 1px solid var(--color-line);
  }

  .hero-metrics div:first-child {
    border-top: 0;
  }

  .intro-band {
    padding: 54px 0;
  }

  .intro-grid {
    gap: 24px;
  }

  .intro-copy h2,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .booking-panel h2 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .about-grid {
    gap: 34px;
  }

  .image-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .format-strip {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .format-strip div,
  .format-strip div:nth-child(2),
  .format-strip div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .format-strip div:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 20px;
  }

  .map-wrap iframe {
    height: 320px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 2.68rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .booking-panel h2 {
    font-size: 2.12rem;
  }

  .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
