html {
  scroll-behavior: smooth;
}

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

:root {
  --primary: #3d8b3d; /* green */
  --secondary: #4a9ec4; /* blue */
  --sky: #7ec8e8;
  --sky-light: #b8e4f5;
  --sky-deep: var(--secondary);
  --grass: #5cb85c;
  --grass-dark: var(--primary);
  --grass-light: #8fd48f;
  --sun: #ffd54f;
  --sun-dark: #f5b800;
  --white: #ffffff;
  --cream: #fffdf7;
  --ink: #2c3e50;
  --ink-muted: #5a6c7d;
  --pink: #e879a8;
  --purple: #9b7fd4;
  --blue-accent: var(--secondary);
  --shadow: 0 4px 24px rgba(44, 62, 80, 0.1);
  --shadow-lg: 0 12px 40px rgba(44, 62, 80, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-display: "Quicksand", "Nunito", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--grass-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

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

a {
  color: var(--grass-dark);
  text-decoration: none;
}

a:hover {
  color: var(--grass);
}

/* Top bar + header */
.site-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  box-shadow: 0 2px 18px rgba(44, 62, 80, 0.08);
}

.contact-bar {
  display: none;
}

.contact-bar-inner {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0;
  gap: 1rem;
  margin: 0;
}

.contact-bar-details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact-bar-link,
.contact-bar-hours,
.contact-bar-license {
  white-space: nowrap;
}

.contact-bar-link {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-bar-link:hover {
  color: var(--sun);
}

.contact-bar-hours {
  opacity: 0.95;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-bar-license {
  color: var(--sun);
  font-weight: 800;
  font-size: 0.82rem;
}

.site-header {
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(126, 200, 232, 0.3);
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 0.5rem;
}

.logo-img {
  display: block;
  width: clamp(240px, 28vw, 340px);
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.7) contrast(1.05);
}

.header-cta {
  margin-left: auto;
}

.logo-sun {
  font-size: 1.6rem;
}

.logo-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--grass-dark);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--blue-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--grass-dark);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: var(--white);
  border: 1px solid rgba(126, 200, 232, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(184, 228, 245, 0.35);
  color: var(--grass-dark);
}

.site-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--grass-dark);
  position: relative;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grass-dark);
  border-radius: 2px;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-deep) 45%, rgba(255,255,255,0) 100%);
}

.hero-compact {
  min-height: auto;
  padding: 3rem 0 4rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--sky-light), rgba(74, 158, 196, 0.07));
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(74, 158, 196, 0.08);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--grass-dark);
  margin-bottom: 0.35rem;
}

.page-hero p {
  color: var(--ink-muted);
  max-width: 520px;
}

.page-hero-license {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.section-license {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sun-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-cta .btn {
  margin-top: 0.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  opacity: 0.85;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.cloud-1 {
  width: 120px;
  height: 40px;
  top: 12%;
  left: 8%;
}

.cloud-1::before { width: 50px; height: 50px; top: -25px; left: 15px; }
.cloud-1::after { width: 70px; height: 55px; top: -30px; left: 45px; }

.cloud-2 {
  width: 90px;
  height: 32px;
  top: 22%;
  right: 15%;
}

.cloud-2::before { width: 40px; height: 40px; top: -20px; left: 10px; }
.cloud-2::after { width: 55px; height: 45px; top: -22px; left: 30px; }

.cloud-3 {
  width: 70px;
  height: 26px;
  top: 8%;
  right: 38%;
  opacity: 0.6;
}

.cloud-3::before { width: 30px; height: 30px; top: -15px; left: 8px; }
.cloud-3::after { width: 42px; height: 35px; top: -18px; left: 22px; }

.grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, var(--grass-light) 0%, var(--grass) 40%, var(--grass-dark) 100%);
  border-radius: 50% 50% 0 0 / 8% 8% 0 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grass-dark);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-highlights li {
  white-space: normal;
}

.hero-highlights li::before {
  content: "✓ ";
  color: var(--grass-dark);
}

.hero-deco-rocket,
.hero-deco-crayons,
.hero-deco-pinwheel { display: none; }

.hero-ground { display: none; }

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.btn-primary {
  background: var(--grass-dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61, 139, 61, 0.35);
}

.btn-primary:hover {
  background: var(--grass);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--grass-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--ink-muted);
  max-width: 560px;
  margin-inline: auto;
}

.section-header-left p {
  margin-inline: 0;
}

.draft-note {
  font-size: 0.82rem !important;
  font-style: italic;
  color: var(--purple) !important;
  margin-top: 0.25rem !important;
}

/* Info strip */
.info-strip {
  background: var(--white);
  border-bottom: 1px solid rgba(126, 200, 232, 0.25);
  padding: 1.5rem 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid rgba(126, 200, 232, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  min-height: 3.5rem;
}

.info-strip-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--grass-dark);
  margin-bottom: 0.15rem;
}

.info-strip-item p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
}

.info-strip-item a {
  color: var(--ink);
  font-weight: 700;
}

.info-strip-item a:hover {
  color: var(--grass-dark);
}

/* Services */
.services {
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(126, 200, 232, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}

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

.card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, var(--sky-light) 0%, rgba(184, 228, 245, 0.5) 100%);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.focus-block {
  background: linear-gradient(135deg, var(--grass-dark), var(--grass));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.focus-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.focus-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.focus-list li {
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
}

.focus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.focus-list strong {
  font-weight: 700;
}

/* Day in life */
.day-in-life {
  background: linear-gradient(180deg, var(--white) 0%, rgba(184, 228, 245, 0.2) 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

.timeline-item {
  background: var(--white);
  border: 1px solid rgba(126, 200, 232, 0.25);
  border-radius: var(--radius);
  padding: 1.35rem;
  border-left: 4px solid var(--grass);
  box-shadow: var(--shadow);
}

.timeline-item time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sky-deep);
  background: var(--sky-light);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Why choose */
.why-choose {
  padding: 3.5rem 0;
  background: var(--grass-dark);
  color: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.65rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* About */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(184, 228, 245, 0.25) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--sky-light) 0%, rgba(184, 228, 245, 0.5) 100%);
}

.about-content p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.about-values {
  list-style: none;
  margin-top: 1.25rem;
}

.about-values li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-weight: 600;
  color: var(--ink);
}

.about-values li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--grass-dark);
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid rgba(126, 200, 232, 0.3);
  box-shadow: var(--shadow);
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  font-weight: 700;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}

.info-box address {
  font-style: normal;
  color: var(--ink-muted);
  line-height: 1.5;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.info-box-accent {
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  border-color: transparent;
}

.info-box-accent h3 {
  color: var(--ink);
}

.info-box-accent p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  margin: 0 -1rem;
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(44, 62, 80, 0.3);
  border-radius: 999px;
}

.gallery-item {
  flex: 0 0 min(80vw, 320px);
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(126, 200, 232, 0.25);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
}

.gallery-item figcaption {
  padding: 0.75rem 0.9rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.gallery-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, var(--sky-light), rgba(143, 212, 143, 0.3));
  border: 2px dashed rgba(74, 158, 196, 0.35);
}

.placeholder-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.placeholder-inner span {
  font-size: 2rem;
  opacity: 0.5;
}

.placeholder-inner figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(126, 200, 232, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--grass-dark);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* Pricing */
.pricing {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(143, 212, 143, 0.15) 100%);
}

.pricing-card {
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(92, 184, 92, 0.25);
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--grass-dark);
  margin-bottom: 0.75rem;
}

.pricing-card > p {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.pricing-options {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-options li {
  background: var(--sky-light);
  color: var(--sky-deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--sky-deep), var(--grass-dark));
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-banner p {
  opacity: 0.92;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-banner .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-methods,
.contact-methods-centered {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-methods-centered {
  max-width: 760px;
  margin: 0 auto;
}

.contact-method,
.contact-method-large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(126, 200, 232, 0.25);
  transition: box-shadow 0.2s;
  color: inherit;
}

.contact-method-large {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  white-space: normal;
}

a.contact-method:hover,
a.contact-method-large:hover {
  box-shadow: var(--shadow);
  color: inherit;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky-deep);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(0.82rem, 2vw, 0.92rem);
}

.contact-form {
  background: linear-gradient(145deg, var(--sky-light), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(126, 200, 232, 0.35);
}

.form-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--purple);
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.optional {
  font-weight: 400;
  color: var(--ink-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(74, 158, 196, 0.35);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--grass);
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.2);
}

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

/* Map */
.map-section {
  margin-top: 3rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(126, 200, 232, 0.35);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  max-width: 900px;
  margin-inline: auto;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--grass-dark);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--grass);
}

/* Footer */
.site-footer {
  background: var(--grass-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-license {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sun);
  letter-spacing: 0.04em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-main {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-brand .logo-sub {
  -webkit-text-fill-color: var(--sun);
  background: none;
  color: var(--sun);
  font-size: 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav strong,
.footer-contact strong {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sun);
  margin-bottom: 0.35rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  white-space: nowrap;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--sun);
}

.footer-contact p {
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  opacity: 0.8;
  margin-top: 0.25rem;
  white-space: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.65;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy a:hover {
  color: var(--sun);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .logo-img {
    width: 160px;
    max-width: 160px;
    height: auto;
  }

  .logo {
    margin-left: 0.5rem;
  }

  .contact-bar-inner {
    font-size: 0.72rem;
    gap: 0.35rem 0.85rem;
  }

  .contact-bar-hours {
    width: 100%;
    text-align: center;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(126, 200, 232, 0.3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    z-index: 99;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
  }

  .site-nav a:hover {
    background: rgba(184, 228, 245, 0.35);
    transform: translateX(4px);
  }

  .site-nav a.active {
    background: rgba(92, 184, 92, 0.15);
    color: var(--grass-dark);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 0.75rem;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-deco-rocket {
    right: 5%;
    top: 10%;
    font-size: 2rem;
    opacity: 0.7;
  }

  .hero-deco-pinwheel,
  .hero-deco-crayons {
    display: none;
  }

  .hero-ground {
    bottom: 10%;
    gap: 0.75rem;
  }

  .hero-kid,
  .hero-ball {
    font-size: 1.5rem;
  }

  .header-cta {
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .info-strip-item {
    padding: 0.85rem 1rem;
    min-height: auto;
  }
}

/* Print styles */
@media print {
  .contact-bar,
  .site-header,
  .back-to-top,
  .nav-toggle,
  .footer-bottom,
  .btn {
    display: none !important;
  }

  .site-footer {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
  }

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

  .policy-content {
    max-width: 100%;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  .page-hero {
    background: none;
    border-bottom: 1px solid #ccc;
  }

  .info-strip {
    margin-top: 0;
    padding: 0.75rem 0;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-strip-item {
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
  }

  .info-strip-icon {
    font-size: 1rem;
  }

  .info-strip-item strong {
    font-size: 0.75rem;
  }

  .info-strip-item p {
    font-size: 0.8rem;
  }

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

  .cta-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-contact {
    align-items: center;
  }

  .map-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }
}
