:root {
  --primary: #3BB4C1;
  --primary-dark: #2A8E99;
  --primary-light: #CDEBEF;
  --accent: #FF6B6B;
  --accent-dark: #E84A4A;
  --yellow: #FFD93D;
  --green: #6BCB77;
  --purple: #9D6BFF;
  --pink: #FF9AC1;
  --text: #2A3B4D;
  --text-light: #5A6B7D;
  --bg: #F6F5F5;
  --bg-light: #FFFFFF;
  --bg-alt: #E5F4F6;
  --border: #E0E5E7;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 16px rgba(59,180,193,0.10);
  --shadow-lg: 0 10px 32px rgba(59,180,193,0.18);
  --shadow-pop: 0 6px 0 rgba(0,0,0,0.06);
  --max-width: 1140px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(59,180,193,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 7px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 14px 28px 14px 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
  flex-wrap: nowrap;
}

.main-nav a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
}

.main-nav a.active {
  background: var(--primary);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #3BB4C1 0%, #5DC8D4 50%, #2A8E99 100%);
  color: #fff;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: var(--yellow);
  top: -80px;
  left: -60px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  width: 200px;
  height: 200px;
  background: var(--pink);
  bottom: -50px;
  right: -40px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

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

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 28px;
  opacity: 0.97;
}

.hero .price-badge {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 26px;
  box-shadow: 0 6px 0 rgba(0,0,0,0.08), 0 12px 24px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 0 var(--accent-dark);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 0 var(--accent-dark), 0 10px 24px rgba(232,74,74,0.3);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Wave divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

/* Section */
.section {
  padding: 70px 20px;
  position: relative;
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 38px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 0 rgba(0,0,0,0.05);
}

.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFB8B8 100%);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #FFF3C4 0%, #FFD93D 100%);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #D9F5DD 0%, #6BCB77 100%);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.97rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 56px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.15;
  top: -60px;
  right: 10%;
}

.page-header::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.18;
  bottom: -40px;
  left: 8%;
}

.page-header h1 {
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Team */
.team-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto 50px;
}

.team-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary);
  transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-card:nth-child(2) { border-top-color: var(--accent); }

.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(46,163,219,0.2);
}

.team-card:nth-child(2) .team-photo {
  box-shadow: 0 4px 16px rgba(255,107,107,0.25);
}

.team-card h3 {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.team-card .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card:nth-child(2) .role { color: var(--primary); }

.team-card p {
  color: var(--text-light);
  font-size: 0.97rem;
}

.staff-section {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.staff-section h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.staff-badge {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 3px 0 var(--primary-light);
  border: 2px solid var(--primary-light);
}

/* Schedule */
.schedule-note {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
}

.schedule-table {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 26px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background var(--transition);
}

.schedule-row:hover { background: var(--bg-light); }
.schedule-row:last-child { border-bottom: none; }

.schedule-row .time {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
  min-width: 180px;
  font-size: 0.95rem;
  background: var(--bg-alt);
  padding: 4px 14px;
  border-radius: 50px;
  text-align: center;
}

.schedule-row .activity {
  flex: 1;
  font-size: 0.97rem;
  margin-left: 16px;
}

/* Booking info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.info-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.info-card h3 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 7px 0;
  padding-left: 26px;
  position: relative;
  color: var(--text-light);
  font-size: 0.97rem;
}

.info-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  text-align: center;
  line-height: 18px;
  font-weight: 700;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.97rem;
  margin-bottom: 8px;
}

.price-highlight {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,107,107,0.25);
  transform: rotate(-1deg);
}

.price-highlight .amount {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-highlight .per {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Activities */
.activities-intro {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 40px auto 0;
}

.activity-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.activity-card:nth-child(1) .activity-day { background: linear-gradient(135deg, var(--accent) 0%, #FF9AC1 100%); }
.activity-card:nth-child(2) .activity-day { background: linear-gradient(135deg, var(--yellow) 0%, #FFB347 100%); }
.activity-card:nth-child(3) .activity-day { background: linear-gradient(135deg, var(--green) 0%, #4FC3A1 100%); }
.activity-card:nth-child(4) .activity-day { background: linear-gradient(135deg, var(--purple) 0%, var(--primary) 100%); }

.activity-day {
  color: #fff;
  padding: 16px 22px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.activity-content {
  padding: 18px 22px 22px;
}

.activity-content .cooking,
.activity-content .craft {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.97rem;
  color: var(--text-light);
}

.activity-content .label {
  font-weight: 700;
  color: var(--text);
  min-width: 70px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition);
  aspect-ratio: 1/1;
  background: var(--bg-light);
}

.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-placeholder {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  border: 2px dashed var(--primary-light);
}

.gallery-placeholder .emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.gallery-placeholder p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.gallery-placeholder p:first-of-type {
  color: var(--text);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Policies */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.policy-card {
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
  color: var(--text);
  text-decoration: none;
}

.policy-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.policy-card .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.policy-card .download-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.registration-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 0 auto 60px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(59,180,193,0.25);
  position: relative;
  overflow: hidden;
}

.registration-cta::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.18;
  top: -50px;
  right: -30px;
}

.registration-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
}

.registration-cta p {
  margin-bottom: 24px;
  position: relative;
  opacity: 0.95;
}

.registration-cta .btn {
  background: #fff;
  color: var(--primary-dark);
  position: relative;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}

/* Ofsted */
.ofsted-content { max-width: 820px; margin: 0 auto; }

.ofsted-badge { text-align: center; margin-bottom: 36px; }

.ofsted-number {
  display: inline-block;
  background: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary-light);
}

.ofsted-quotes { display: grid; gap: 22px; }

.ofsted-quote {
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  font-style: italic;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
  position: relative;
}

.ofsted-quote::before {
  content: "\201C";
  font-family: 'Fredoka', serif;
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
}

.ofsted-quote .source {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-info-card h3,
.contact-form-card h3 {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail .icon {
  font-size: 1.3rem;
  min-width: 38px;
  height: 38px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail .label {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail .value { font-size: 0.97rem; font-weight: 600; }
.contact-detail .value a { color: var(--primary-dark); }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59,180,193,0.15);
}

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

.form-status {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-status.success { background: #D9F5DD; color: #1F7A3F; display: block; }
.form-status.error { background: #FFE5E5; color: #B92E2E; display: block; }

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1F3447 0%, #2A3B4D 100%);
  color: #B8C5D2;
  padding: 56px 20px 24px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.10;
  top: -100px;
  right: -80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: var(--max-width);
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: #B8C5D2;
  font-size: 0.92rem;
  line-height: 1.9;
}

.footer-col a:hover { color: #fff; }

.footer-col ul { list-style: none; }
.footer-col li a { display: block; padding: 2px 0; }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #8A9AAA;
  position: relative;
  z-index: 2;
}

/* COVID Banner */
.covid-banner {
  background: linear-gradient(135deg, #FFF3C4 0%, #FFE08A 100%);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.95rem;
  color: #6B5817;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}

.covid-banner .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.covid-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #5C4A12;
}

/* Scroll-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .main-nav a { padding: 7px 11px; font-size: 0.85rem; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 12px;
  }

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

  .main-nav ul { flex-direction: column; gap: 0; }

  .main-nav a {
    padding: 14px 18px;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }

  .hero { padding: 50px 16px 70px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 1rem; }
  .hero .price-badge { font-size: 1.15rem; padding: 10px 24px; }

  .features-grid,
  .team-grid,
  .info-grid,
  .activities-grid,
  .contact-grid,
  .policies-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }

  .schedule-row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    align-items: flex-start;
  }

  .schedule-row .time { min-width: auto; }
  .schedule-row .activity { margin-left: 0; }

  .section { padding: 50px 16px; }
  .section-title { font-size: 1.7rem; }
  .page-header h1 { font-size: 1.9rem; }

  .covid-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .price-badge { font-size: 1.05rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-main { padding: 12px 16px; }
  .logo img { height: 52px; }
  .price-highlight .amount { font-size: 2.4rem; }
}
