:root {
  --forest: #123d2f;
  --forest-2: #0c2a22;
  --leaf: #5f8f55;
  --sage: #d8e5d1;
  --sage-2: #eef4ea;
  --cream: #fbf6ea;
  --cream-2: #f2ead9;
  --gold: #d9b76f;
  --white: #ffffff;
  --ink: #26352f;
  --muted: #6d7c72;
  --shadow: 0 24px 70px rgba(18, 61, 47, 0.16);
  --soft-shadow: 0 14px 35px rgba(18, 61, 47, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.72;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(217, 183, 111, 0.18), transparent 28%),
    linear-gradient(145deg, #0b251e, #123d2f);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 98px;
  height: 98px;
  border: 1px solid rgba(217, 183, 111, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: breathe 1.8s ease-in-out infinite;
  box-shadow: 0 0 34px rgba(217, 183, 111, 0.25);
}

.loader-mark i {
  color: var(--gold);
  font-size: 2rem;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.75; }
  50% { transform: scale(1.05); opacity: 1; }
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 18%, rgba(95, 143, 85, 0.13), transparent 26%),
    radial-gradient(circle at 91% 20%, rgba(217, 183, 111, 0.13), transparent 24%),
    var(--sage-2);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 183, 111, 0.13), transparent 25%),
    linear-gradient(145deg, var(--forest-2), var(--forest));
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest);
  line-height: 1.05;
  font-weight: 700;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.lead {
  font-size: 1.08rem;
  max-width: 760px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--forest);
  background: linear-gradient(135deg, #f6e2a3, var(--gold));
  box-shadow: 0 18px 38px rgba(217, 183, 111, 0.28);
}

.btn-outline {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(18, 61, 47, 0.16);
  backdrop-filter: blur(16px);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}

.btn-whatsapp {
  color: var(--white);
  background: #1f8f55;
  box-shadow: 0 16px 34px rgba(31, 143, 85, 0.28);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.inner-header {
  padding: 10px 0;
  background: rgba(251, 246, 234, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 38px rgba(18, 61, 47, 0.1);
}

.site-header:not(.scrolled):not(.inner-header) .brand-title,
.site-header:not(.scrolled):not(.inner-header) .nav-menu a {
  color: var(--white);
}

.site-header:not(.scrolled):not(.inner-header) .brand-subtitle {
  color: var(--sage);
}

.nav-wrap {
  width: min(calc(100% - 34px), 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
}

.brand-symbol {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  filter: drop-shadow(0 0 18px rgba(217, 183, 111, 0.24));
}

.brand-title {
  display: block;
  font-size: 1.55rem;
  color: var(--forest);
}

.brand-subtitle {
  display: block;
  margin-top: -3px;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-menu a {
  position: relative;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

.nav-actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 132px 0 76px;
  background-image:
    linear-gradient(90deg, rgba(5, 28, 22, 0.77), rgba(18, 61, 47, 0.42), rgba(18, 61, 47, 0.1)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 35%, rgba(217, 183, 111, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero .eyebrow,
.hero p,
.hero h1 {
  color: var(--white);
}

.hero h1 span {
  display: block;
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  color: var(--gold);
  margin-top: 10px;
}

.hero p {
  max-width: 720px;
  font-size: 1.14rem;
  margin: 22px 0 32px;
}

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

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.metric-pill {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.floating-leaf {
  position: absolute;
  z-index: 1;
  color: rgba(216, 229, 209, 0.55);
  font-size: 2rem;
  animation: floatLeaf 8s ease-in-out infinite;
}

.leaf-one { top: 22%; right: 18%; animation-delay: 0s; }
.leaf-two { top: 62%; right: 8%; animation-delay: 1.5s; }
.leaf-three { bottom: 12%; left: 46%; animation-delay: 3s; }

@keyframes floatLeaf {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.4; }
  50% { transform: translate3d(18px, -28px, 0) rotate(12deg); opacity: 0.9; }
}

.image-strip {
  margin-top: -50px;
  position: relative;
  z-index: 4;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strip-card,
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.strip-card {
  min-height: 210px;
  background: var(--forest);
}

.strip-card img,
.image-card img,
.service-card img,
.why-card img,
.gallery-item img,
.about-image img,
.class-visual img,
.contact-hero-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.strip-card::after,
.image-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(4, 26, 20, 0.76));
  z-index: 1;
}

.strip-card h3,
.image-card h3,
.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
}

.strip-card:hover img,
.image-card:hover img,
.service-card:hover img,
.why-card:hover img,
.gallery-item:hover img,
.about-image:hover img {
  transform: scale(1.08);
}

.strip-card:hover,
.service-card:hover,
.why-card:hover,
.class-card:hover,
.contact-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(18, 61, 47, 0.2);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.about-image {
  height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  z-index: 2;
  pointer-events: none;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  border-radius: var(--radius);
  background: rgba(216, 229, 209, 0.54);
  color: var(--forest);
  font-weight: 800;
}

.feature-item i {
  color: var(--gold);
}

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

.service-card,
.why-card,
.class-card,
.contact-card,
.testimonial-card,
.certificate-card {
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card .media {
  height: 230px;
  overflow: hidden;
}

.service-body {
  padding: 26px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(217, 183, 111, 0.18);
  color: var(--gold);
  font-size: 1.35rem;
}

.classes-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

.class-visual {
  min-height: 570px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.class-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 31, 24, 0.72));
}

.class-visual-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.class-visual-content h3,
.class-visual-content p {
  color: var(--white);
}

.class-stack {
  display: grid;
  gap: 18px;
}

.class-card,
.certificate-card {
  background: var(--white);
  border: 1px solid rgba(18, 61, 47, 0.1);
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.class-card i {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.certificate-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(251, 246, 234, 0.86)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(217, 183, 111, 0.08) 10px, rgba(217, 183, 111, 0.08) 11px);
  border: 1px solid rgba(217, 183, 111, 0.42);
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  height: 290px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--soft-shadow);
}

.gallery-item.tall {
  height: 390px;
}

.gallery-item span {
  font-weight: 800;
}

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

.why-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.why-card .media {
  height: 260px;
  overflow: hidden;
}

.why-card .content {
  padding: 26px;
}

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

.counter-card {
  text-align: center;
  padding: 34px 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.counter {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--forest);
  font-weight: 700;
}

.testimonials-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  animation: testimonialSlide 16s ease-in-out infinite;
}

.testimonial-card {
  min-width: calc(50% - 11px);
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
}

.quote-icon {
  color: rgba(217, 183, 111, 0.54);
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.client {
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
}

@keyframes testimonialSlide {
  0%, 42% { transform: translateX(0); }
  50%, 92% { transform: translateX(calc(-50% - 11px)); }
  100% { transform: translateX(0); }
}

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

.contact-card {
  padding: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(18, 61, 47, 0.08);
}

.contact-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.contact-card h3,
.info-panel h2,
.info-panel h3,
.course-card h3,
.counter-card h3 {
  color: var(--forest);
}

.contact-card p,
.info-panel p,
.course-card p,
.counter-card p {
  color: var(--muted);
}

.enquiry {
  background-image:
    linear-gradient(90deg, rgba(7, 31, 24, 0.77), rgba(18, 61, 47, 0.58)),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2000&q=85");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.enquiry h2,
.enquiry p {
  color: var(--white);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.form-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  padding: 14px 15px;
  outline: none;
}

.form-panel textarea {
  min-height: 128px;
  resize: vertical;
}

.form-panel button {
  width: 100%;
  border: 0;
}

.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: 150px 0 76px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 23, 0.78), rgba(18, 61, 47, 0.36));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.about-page-hero { background-image: url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=2100&q=85"); }
.classes-page-hero { background-image: url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=2100&q=85"); }
.contact-page-hero { background-image: url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=2100&q=85"); }

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-no {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-weight: 900;
}

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

.course-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.course-card img {
  height: 240px;
  object-fit: cover;
}

.course-card .content {
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
}

.detail-row {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(216, 229, 209, 0.54);
}

.detail-row i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 5px;
}

.map-frame {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  background: #08211a;
  color: var(--white);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.1fr;
  gap: 34px;
}

.footer-logo .brand-title {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--gold);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  inset: auto 0 24px 0;
  z-index: 999;
  pointer-events: none;
}

.float-call,
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.45rem;
  pointer-events: auto;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.float-call {
  left: 24px;
  background: var(--forest);
  box-shadow: 0 0 0 10px rgba(18, 61, 47, 0.12);
}

.float-whatsapp {
  right: 24px;
  background: #1f8f55;
  box-shadow: 0 0 0 10px rgba(31, 143, 85, 0.12);
}

@keyframes pulseGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 17px;
  }

  .nav-actions .btn span {
    display: none;
  }

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

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

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

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 74px 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(251, 246, 234, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: 0.28s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    color: var(--forest);
    padding: 12px 10px;
  }

  .site-header:not(.scrolled):not(.inner-header) .nav-menu a {
    color: var(--forest);
  }

  .nav-actions {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-symbol {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-title {
    font-size: 1.28rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .section-head,
  .two-col,
  .classes-showcase,
  .enquiry-grid,
  .split-panel,
  .contact-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
  }

  .about-image,
  .class-visual {
    min-height: auto;
    height: 440px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  @keyframes testimonialSlide {
    0%, 42% { transform: translateX(0); }
    50%, 92% { transform: translateX(calc(-100% - 22px)); }
    100% { transform: translateX(0); }
  }
}

@media (max-width: 620px) {
  .strip-grid,
  .services-grid,
  .why-grid,
  .course-grid,
  .contact-grid,
  .counter-grid,
  .feature-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .strip-card {
    min-height: 230px;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-item,
  .gallery-item.tall {
    height: 310px;
  }

  .page-hero {
    min-height: 54vh;
    padding-bottom: 54px;
  }

  .class-visual,
  .about-image {
    height: 360px;
  }

  .form-panel,
  .testimonial-card {
    padding: 22px;
  }

  .float-call,
  .float-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 18px;
  }

  .float-call {
    left: 16px;
  }

  .float-whatsapp {
    right: 16px;
  }
}
