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

/* ===========================
   CSS VARIABLES
=========================== */
: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-dark: #A86A42;
  --color-primary-light: #F0D9C8;
  --color-primary-pale: #FBF4EE;
  --color-text: #2C1F14;
  --color-text-muted: #7A6455;
  --color-bg: #FDFAF7;
  --color-bg-tinted: #F5EDE3;
  --color-border: #E8D9CC;
  --color-white: #FFFFFF;
  --color-success: #5A8A6A;
  --color-warning: #C4845A;
  --color-danger: #C45A5A;

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

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(44,31,20,0.08);
  --shadow-md: 0 4px 16px rgba(44,31,20,0.10);
  --shadow-lg: 0 8px 32px rgba(44,31,20,0.12);

  --header-h: 72px;
  --container-max: 1200px;
}

/* ===========================
   BASE TYPOGRAPHY
=========================== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0;
}
p { margin: 0; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }

/* ===========================
   CONTAINER
=========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--s-6);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; 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-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  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-light);
  border-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
  cursor: default;
}
.btn-ghost:hover { transform: none; }

.btn-sm {
  padding: var(--s-2) var(--s-4);
  font-size: 0.82rem;
}
.btn-lg {
  padding: var(--s-4) var(--s-8);
  font-size: 1rem;
}
.btn-full { 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.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}
.logo-text span { color: var(--color-primary); }
.logo-icon { display: flex; align-items: center; }

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--color-primary); text-decoration: none; }
.nav-link:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.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);
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open 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;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,31,20,0.72) 0%,
    rgba(44,31,20,0.45) 60%,
    rgba(196,132,90,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--s-16);
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--s-4);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--s-6);
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-8);
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-12);
}
.hero-stats {
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--s-1);
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding-block: var(--s-16);
}
.section-tinted {
  background: var(--color-bg-tinted);
}
.section-header {
  text-align: center;
  margin-bottom: var(--s-12);
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-3);
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-text);
  margin-bottom: var(--s-4);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 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-lg);
}
.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.8rem;
  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.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--s-4);
  line-height: 1.65;
}
.about-body {
  color: var(--color-text-muted);
  margin-bottom: var(--s-6);
  line-height: 1.7;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.about-features li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--color-text);
}
.feature-icon { flex-shrink: 0; display: flex; }

/* ===========================
   CARDS (GRID)
=========================== */
.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-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-image-wrap { flex-shrink: 0; }
.card__image {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  display: block;
}
.card__image--square {
  aspect-ratio: 1/1;
}
.card__body {
  flex: 1 1 auto;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.card__footer {
  margin-top: auto;
  padding: var(--s-4) var(--s-6) var(--s-6);
  border-top: 1px solid var(--color-border);
}
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-pale);
  border-radius: var(--radius-sm);
  padding: 2px var(--s-2);
  align-self: flex-start;
}
.card-tag--green { color: var(--color-success); background: #EAF4EE; }
.card-tag--blue { color: #3A6EA8; background: #EAF0F8; }
.card-tag--purple { color: #7A4AA8; background: #F0EAF8; }
.card-tag--amber { color: #A87A2A; background: #F8F0E0; }

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.card__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.card-meta {
  display: flex;
  gap: var(--s-4);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--s-4);
}
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Teacher card specifics */
.card-teacher .card__body { gap: var(--s-2); }
.teacher-role {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
}
.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.tag {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: var(--color-bg-tinted);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 2px var(--s-3);
}

/* ===========================
   SCHEDULE
=========================== */
.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;
  font-size: 0.9rem;
  background: var(--color-white);
}
.schedule-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}
.schedule-table th {
  padding: var(--s-4) var(--s-4);
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.schedule-table td {
  padding: var(--s-4) var(--s-4);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  white-space: nowrap;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--color-primary-pale); }

.seats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.82rem;
}
.seats-ok { background: #EAF4EE; color: var(--color-success); }
.seats-few { background: #FFF3E0; color: #C47A2A; }
.seats-full { background: #FDEAEA; color: var(--color-danger); }

.schedule-note {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: var(--color-primary-pale);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: var(--s-4) var(--s-6);
}
.schedule-note a { color: var(--color-primary); font-weight: 500; }

/* ===========================
   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--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* ===========================
   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-white);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  border: 2px solid var(--color-border);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  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: 600;
  letter-spacing: 0.06em;
  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-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--s-3);
}
.pricing-price {
  font-family: var(--font-heading);
  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.9rem;
  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 BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding-block: var(--s-16);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: var(--s-3);
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===========================
   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);
  margin-bottom: var(--s-8);
}
.contacts-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contacts-list strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--s-1);
}
.contacts-list p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}
.contacts-list a { color: var(--color-text); }
.contacts-list a:hover { color: var(--color-primary); }

.social-links {
  display: flex;
  gap: var(--s-3);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--color-primary-pale);
  border-color: var(--color-primary-light);
}

/* FORM */
.contacts-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: var(--s-6);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--s-3);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-8);
  padding-block: var(--s-12);
  align-items: start;
}
.logo-footer .logo-text { color: var(--color-white); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--s-2);
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-primary-light); }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-contacts p { font-size: 0.9rem; }
.footer-contacts a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--color-primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--s-4);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===========================
   RESPONSIVE — 640-1024px
=========================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .about-badge {
    right: var(--s-6);
  }
  .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-inline: auto;
    width: 100%;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .header-cta { display: none; }
  .main-nav { display: none; }
  .burger { display: flex; }
}

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

  .hero-content { padding-block: var(--s-12); }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: var(--s-6); }

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

  .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: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions { justify-content: center; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

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

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

/* ===========================
   MOBILE NAV OPEN STATE
=========================== */
@media (max-width: 1024px) {
  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 99;
    padding: var(--s-8) var(--s-6);
    overflow-y: auto;
  }
  .main-nav.open .nav-list {
    flex-direction: column;
    gap: var(--s-4);
    width: 100%;
  }
  .main-nav.open .nav-link {
    font-size: 1.2rem;
    padding-block: var(--s-3);
    border-bottom: 1px solid var(--color-border);
    display: block;
    width: 100%;
  }
}