@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #1a4a4a;
  --teal-light: #2a6b6b;
  --amber: #e8a44a;
  --amber-dark: #c4883a;
  --cream: #f8f5f0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --border: #ddd8d0;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26, 74, 74, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--amber);
  color: var(--teal);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 164, 74, 0.35);
}
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
}
.btn-white:hover {
  background: var(--cream);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

section {
  padding: 72px 0;
}

.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  max-width: 640px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  font-size: 0.85rem;
  opacity: 1;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-popup p {
  flex: 1;
  line-height: 1.5;
}
.cookie-popup a {
  color: var(--amber);
  text-decoration: underline;
}
.cookie-popup button {
  background: var(--amber);
  color: var(--teal);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: rgba(26, 74, 74, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.scrolled .header-bar {
  background: var(--teal);
  box-shadow: var(--shadow);
}
.site-header.hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-cta {
  margin-left: 12px;
  padding: 8px 20px !important;
  background: var(--amber) !important;
  color: var(--teal) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--amber-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--white);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--teal);
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  opacity: 0;
}
.mobile-nav.open {
  max-height: 400px;
  padding: 16px 20px 24px;
  opacity: 1;
}
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.mobile-nav .mob-cta {
  background: var(--amber);
  color: var(--teal) !important;
  font-weight: 600;
  margin-top: 8px;
  justify-content: center;
  border-radius: 50px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--teal);
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2f2f 0%, #1a4a4a 45%, #245c5c 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--amber) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--amber) 2px, transparent 2px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-eyebrow-line {
  width: 30px;
  height: 2px;
  background: var(--amber);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 28px;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--amber);
}
.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--teal);
}
.hero-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}
.hero-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.hero-shape {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(232, 164, 74, 0.3);
  border-radius: 50%;
}
.hero-shape-2 {
  position: absolute;
  bottom: -12px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(232, 164, 74, 0.15);
  border-radius: 50%;
}

.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 74, 74, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-section {
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-col {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  background: var(--amber);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(232, 164, 74, 0.4);
}
.about-accent strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}
.about-accent span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.about-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
}
.about-list li i {
  color: var(--amber);
  margin-top: 2px;
  font-size: 0.8rem;
}

.classes-preview {
  background: var(--white);
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.class-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.class-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.class-card-head {
  padding: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  gap: 14px;
}
.class-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}
.class-card-head h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
}
.class-card-head span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}
.class-card-body {
  padding: 18px 20px;
}
.class-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.class-tag {
  display: inline-block;
  background: rgba(26, 74, 74, 0.07);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.testimonials {
  background: var(--teal);
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.testimonials .section-tag {
  color: var(--amber);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.testimonial-stars {
  color: var(--amber);
  font-size: 0.8rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-head);
}
.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.cta-band {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--teal);
}
.cta-band p {
  font-size: 0.9rem;
  color: rgba(26, 74, 74, 0.8);
  margin-top: 6px;
}

.page-hero {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb a:hover {
  color: var(--amber);
}
.breadcrumb i {
  font-size: 0.6rem;
}

.classes-page {
  background: var(--cream);
}
.classes-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.class-full-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.class-full-card:hover {
  box-shadow: var(--shadow);
}
.class-full-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 74, 74, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
}
.class-full-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 6px;
}
.class-full-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.class-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.class-meta span {
  font-size: 0.72rem;
  color: var(--teal);
  background: rgba(26, 74, 74, 0.07);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.schedule-section {
  background: var(--white);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 0.85rem;
}
.schedule-table th {
  background: var(--teal);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.schedule-table tr:hover td {
  background: rgba(26, 74, 74, 0.03);
}
.badge-level {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.badge-level.beginner {
  background: #e8f5e9;
  color: #2e7d32;
}
.badge-level.intermediate {
  background: #fff3e0;
  color: #e65100;
}
.badge-level.all-levels {
  background: #e8eaf6;
  color: #283593;
}

.instructors-section {
  background: var(--cream);
}
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.instructor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.instructor-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.instructor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
}
.instructor-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.instructor-card .role {
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.instructor-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-page {
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(232, 164, 74, 0.2);
}
.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 14px;
  right: -22px;
  background: var(--amber);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pricing-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 6px;
}
.pricing-price sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 6px;
}
.pricing-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text);
}
.pricing-features li i {
  color: var(--amber);
  font-size: 0.75rem;
}
.pricing-features li.off {
  color: var(--text-muted);
}
.pricing-features li.off i {
  color: var(--border);
}

.faq-section {
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--teal);
  background: var(--white);
  transition: var(--transition);
  gap: 12px;
  text-align: left;
}
.faq-question:hover {
  background: rgba(26, 74, 74, 0.03);
}
.faq-question i {
  color: var(--amber);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

.about-page-values {
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-story {
  background: var(--white);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.team-section {
  background: var(--cream);
}

.milestones {
  background: var(--teal);
  padding: 56px 0;
}
.milestones .section-title {
  color: var(--white);
}
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}
.milestone {
  padding: 20px;
}
.milestone strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 4px;
}
.milestone span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page {
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-header {
  margin-bottom: 28px;
}
.contact-info-header h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.contact-info-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type {
  border-bottom: none;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(26, 74, 74, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-detail p {
  font-size: 0.88rem;
  color: var(--text);
}
.contact-detail a {
  color: var(--teal);
}
.contact-detail a:hover {
  color: var(--amber);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-header {
  margin-bottom: 28px;
}
.form-header h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 6px;
}
.form-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 74, 74, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check a {
  color: var(--teal);
  text-decoration: underline;
}
.form-submit {
  margin-top: 20px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  font-size: 0.92rem;
}

.map-section {
  background: var(--white);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

.thankyou-main,
.notfound-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.thankyou-inner,
.notfound-inner {
  text-align: center;
  max-width: 500px;
  padding: 40px 20px;
}
.thankyou-icon,
.notfound-icon {
  font-size: 3rem;
  color: var(--amber);
  margin-bottom: 20px;
}
.thankyou-inner h1,
.notfound-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--teal);
  margin-bottom: 12px;
}
.thankyou-inner p,
.notfound-inner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.policy-page {
  background: var(--cream);
}
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow);
}
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--teal);
  margin: 28px 0 10px;
}
.policy-content h2:first-child {
  margin-top: 0;
}
.policy-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.policy-content ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 12px;
}
.policy-content ul li {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}
.policy-content a {
  color: var(--teal);
  text-decoration: underline;
}
.policy-updated {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.75);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
}
.footer-copy span {
  color: var(--amber);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--amber);
}
.footer-links span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .about-inner,
  .story-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-col,
  .story-img-wrap {
    display: none;
  }
  .features-grid,
  .classes-grid,
  .testimonials-grid,
  .values-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .classes-full-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  section {
    padding: 48px 0;
  }
  .features-grid,
  .testimonials-grid,
  .values-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .classes-grid,
  .instructors-grid {
    grid-template-columns: 1fr;
  }
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .header-bar {
    padding: 0 20px;
  }
  .policy-content {
    padding: 28px 20px;
  }
  .schedule-table {
    font-size: 0.78rem;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 8px 10px;
  }
  .hero-stats {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .hero {
    padding: 90px 0 48px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .logo-text span {
    display: none;
  }
  .hero-stat strong {
    font-size: 1.2rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}
