/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img, picture, video { display: block; max-width: 100%; }

/* =============================================
   TOKENS
   ============================================= */
:root {
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;

  --color-primary:    #C4845A;
  --color-primary-d:  #A86B43;
  --color-primary-l:  #F0DDD0;
  --color-accent:     #7A5C3E;
  --color-bg:         #FDFAF7;
  --color-tinted:     #F5EDE4;
  --color-surface:    #FFFFFF;
  --color-text:       #2D1F14;
  --color-text-muted: #7A6555;
  --color-border:     #E8D9CC;
  --color-white:      #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(100,60,20,0.08);
  --shadow-md: 0 4px 24px rgba(100,60,20,0.12);
  --shadow-lg: 0 8px 48px rgba(100,60,20,0.16);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --header-h: 72px;
  --transition: 0.25s ease;
}

/* =============================================
   BASE TYPOGRAPHY
   ============================================= */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section {
  padding: var(--s-16) 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s-12);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-2);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-text);
  margin-bottom: var(--s-4);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  padding: var(--s-3) var(--s-6);
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-d);
  border-color: var(--color-primary-d);
  box-shadow: 0 4px 16px rgba(196,132,90,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-l);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-primary-l);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-lg { padding: var(--s-4) var(--s-8); font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: var(--s-2) var(--s-4); font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.logo-amp {
  color: var(--color-primary);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-l);
}

.header-cta {
  flex-shrink: 0;
  margin-left: var(--s-4);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-2);
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,15,5,0.72) 0%,
    rgba(80,40,15,0.45) 60%,
    rgba(196,132,90,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--s-16);
  padding-bottom: var(--s-16);
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-l);
  margin-bottom: var(--s-4);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: var(--s-6);
  max-width: 640px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--s-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-16);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.hero-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.about-visual {
  position: relative;
}

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

.about-badge {
  position: absolute;
  bottom: calc(-1 * var(--s-6));
  right: calc(-1 * var(--s-6));
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--s-4) var(--s-6);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge__text {
  font-size: 0.8125rem;
  opacity: 0.9;
  line-height: 1.3;
}

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }

.about-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--s-4);
  line-height: 1.7;
}

.about-body {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-8);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   CARDS (SHARED)
   ============================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  align-items: stretch;
}

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

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card__body {
  flex: 1 1 auto;
  padding: var(--s-6);
}

.card__footer {
  margin-top: auto;
  padding: 0 var(--s-6) var(--s-6);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card__image {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--radius-sm);
}

.card-badge--accent {
  background: var(--color-accent);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-l);
  padding: var(--s-1) var(--s-3);
  border-radius: 100px;
}

.card__title {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: var(--s-3);
}

.card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card-duration {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* =============================================
   TEACHERS
   ============================================= */
.card-teacher .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s-8) var(--s-6) var(--s-4);
}

.teacher-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--s-4);
  border: 3px solid var(--color-primary-l);
  flex-shrink: 0;
}

.teacher-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.teacher-name {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: var(--s-1);
}

.teacher-role {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--s-4);
}

.card-teacher .card__text {
  text-align: center;
  -webkit-line-clamp: 4;
}

.card-teacher .card__footer {
  padding: var(--s-4) var(--s-6) var(--s-6);
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
}

/* =============================================
   SCHEDULE TABLE
   ============================================= */
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 0.9375rem;
}

.schedule-table thead {
  background: var(--color-tinted);
}

.schedule-table th {
  padding: var(--s-4) var(--s-6);
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.schedule-table td {
  padding: var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover {
  background: var(--color-tinted);
}

.time {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.seats {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: var(--s-1) var(--s-3);
  border-radius: 100px;
}

.seats-ok    { background: #E8F5E9; color: #2E7D32; }
.seats-few   { background: #FFF3E0; color: #E65100; }
.seats-full  { background: #FFEBEE; color: #C62828; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s-4);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

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

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item--wide .gallery-img {
  aspect-ratio: 16/9;
}

.gallery-item--tall .gallery-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 300px;
}

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

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--s-8) var(--s-6);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: calc(-1 * var(--s-3));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s-1) var(--s-4);
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: var(--s-4);
}

.pricing-name {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: var(--s-3);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--s-6);
}

.pricing-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.pricing-list li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-left: var(--s-6);
  position: relative;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  padding: var(--s-16) 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  flex-wrap: wrap;
}

.cta-strip-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-white);
  margin-bottom: var(--s-2);
}

.cta-strip-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
}

/* =============================================
   CONTACTS
   ============================================= */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.contacts-info .section-eyebrow { text-align: left; }
.contacts-info .section-title { text-align: left; margin-bottom: var(--s-8); }

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.contacts-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contacts-item strong { color: var(--color-text); }
.contacts-item a { color: var(--color-primary); }
.contacts-item a:hover { text-decoration: underline; }

.contacts-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* FORM */
.contacts-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.375rem;
  color: var(--color-text);
  margin-bottom: var(--s-6);
}

.form-group {
  margin-bottom: var(--s-4);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--s-2);
}

.form-input {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196,132,90,0.15);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--s-3);
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-8);
  padding-top: var(--s-12);
  padding-bottom: var(--s-12);
}

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

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--s-1);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-6);
  justify-content: center;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--color-primary-l);
}

.footer-social {
  display: flex;
  gap: var(--s-3);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition);
}

.social-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--s-4) 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   RESPONSIVE — 640-1024px (2 columns)
   ============================================= */
@media (max-width: 1024px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }

  .about-badge {
    right: var(--s-4);
    bottom: calc(-1 * var(--s-4));
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-nav {
    grid-column: 1 / -1;
    order: 3;
  }

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

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

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--tall .gallery-img {
    aspect-ratio: 4/3;
    height: auto;
    min-height: unset;
  }
}

/* =============================================
   RESPONSIVE — <640px (1 column)
   ============================================= */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .section { padding: var(--s-12) 0; }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: var(--s-8) var(--s-6);
    overflow-y: auto;
    z-index: 99;
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-2);
  }

  .nav-link {
    font-size: 1.125rem;
    padding: var(--s-4);
    border-radius: var(--radius-sm);
  }

  .header-cta { display: none; }
  .burger { display: flex; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: var(--s-6);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item--tall .gallery-img {
    aspect-ratio: 4/3;
    height: auto;
    min-height: unset;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-6);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .schedule-table th:nth-child(3),
  .schedule-table td:nth-child(3) {
    display: none;
  }

  .about-badge {
    right: var(--s-4);
    bottom: var(--s-4);
  }
}