/* ============================================
   LITTLE BUNNIES MONTESSORI SCHOOL
   Single-page application with 5 pages
   Color palette: warm pastels
   ============================================ */

:root {
  --pink: #FCD8DD;
  --pink-deep: #E89BA5;
  --mint: #C6E8D5;
  --mint-deep: #88C9A6;
  --peach: #FFE0CC;
  --peach-deep: #F0B084;
  --lavender: #E5D9F2;
  --lavender-deep: #B79DD9;
  --yellow: #FFF1B5;
  --yellow-deep: #E8C547;
  --cream: #FFFAF3;
  --cream-deep: #F5EDD8;
  --text-dark: #3D332B;
  --text-mid: #6B5D4F;
  --text-light: #9B8D7F;
  --terracotta: #C97B5C;
  --terracotta-dark: #A85F44;
  --white: #FFFFFF;

  --display-font: 'Fraunces', Georgia, serif;
  --body-font: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(61, 51, 43, 0.06);
  --shadow-md: 0 4px 20px rgba(61, 51, 43, 0.08);
  --shadow-lg: 0 12px 40px rgba(61, 51, 43, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 51, 43, 0.06);
  z-index: 1000;
  padding: 18px 0;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 24px;
  font-style: italic;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  display: block;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--text-dark); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  border-radius: 999px;
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 14px rgba(201, 123, 92, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 123, 92, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: white;
}

.btn-large {
  padding: 15px 32px;
  font-size: 16px;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ============================================
   PAGE SYSTEM
   ============================================ */
.page { display: none; animation: fadeIn 0.5s ease; }
.page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 70px 0; }

.section-bg-cream { background: var(--cream); }
.section-bg-pink { background: var(--pink); }
.section-bg-mint { background: var(--mint); }
.section-bg-peach { background: var(--peach); }
.section-bg-lavender { background: var(--lavender); }
.section-bg-yellow { background: var(--yellow); }
.section-bg-cream-deep { background: var(--cream-deep); }

h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }
h4 { font-size: 20px; }

.eyebrow {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: inline-block;
}

.text-center { text-align: center; }
.text-lead { font-size: 19px; color: var(--text-mid); line-height: 1.7; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-home {
  background:
    radial-gradient(circle at 80% 20%, var(--peach) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, var(--pink) 0%, transparent 45%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-style: italic;
  margin-bottom: 24px;
}

.hero-content .text-lead {
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-mid);
  flex-wrap: wrap;
}

.hero-meta span { display: flex; align-items: center; gap: 8px; }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--mint) 0%, var(--lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.image-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--text-dark);
}

.image-placeholder-icon {
  font-size: 80px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.image-placeholder-label {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 18px;
  opacity: 0.7;
  line-height: 1.4;
}

/* Decorative floating elements */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.deco-1 {
  top: 12%; right: 6%;
  width: 80px; height: 80px;
  background: var(--yellow);
  animation: float 7s ease-in-out infinite;
}

.deco-2 {
  bottom: 18%; left: 4%;
  width: 50px; height: 50px;
  background: var(--lavender);
  animation: float 9s ease-in-out infinite reverse;
}

.deco-3 {
  top: 50%; right: 45%;
  width: 24px; height: 24px;
  background: var(--terracotta);
  opacity: 0.3;
  animation: float 11s ease-in-out infinite;
}

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

/* Sub-page hero (smaller) */
.hero-sub {
  padding: 80px 0 60px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--peach) 0%, transparent 50%),
    var(--cream);
}

.hero-sub h1 {
  font-style: italic;
  margin-bottom: 20px;
}

.hero-sub .text-lead { max-width: 680px; margin: 0 auto 32px; }

/* ============================================
   CARDS & FEATURES
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card.bg-mint { background: var(--mint); }
.feature-card.bg-peach { background: var(--peach); }
.feature-card.bg-lavender { background: var(--lavender); }
.feature-card.bg-pink { background: var(--pink); }
.feature-card.bg-yellow { background: var(--yellow); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p {
  font-size: 16px;
  color: var(--text-mid);
}

/* Program cards (used on home + programs) */
.program-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.program-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.program-card-image.toddler { background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%); }
.program-card-image.preschool { background: linear-gradient(135deg, var(--mint) 0%, var(--lavender) 100%); }
.program-card-image.kindergarten { background: linear-gradient(135deg, var(--yellow) 0%, var(--peach) 100%); }
.program-card-image.summer { background: linear-gradient(135deg, var(--yellow) 0%, var(--mint) 100%); }

.program-card-body { padding: 28px; }

.age-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.program-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.program-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 51, 43, 0.08);
}

.price {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  font-weight: 600;
}

.price small {
  font-family: var(--body-font);
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
  font-weight: 400;
}

.learn-more {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: gap 0.2s ease;
  display: inline-flex;
  gap: 4px;
}

.learn-more:hover { gap: 10px; }

/* ============================================
   TWO-COLUMN SECTIONS
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-col-reverse .two-col-content { order: 2; }
.two-col-reverse .two-col-image { order: 1; }

.two-col-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.two-col-image.mint { background: linear-gradient(135deg, var(--mint) 0%, var(--cream) 100%); }
.two-col-image.lavender { background: linear-gradient(135deg, var(--lavender) 0%, var(--pink) 100%); }

.two-col-content h2 { margin-bottom: 24px; }
.two-col-content p { color: var(--text-mid); margin-bottom: 18px; font-size: 17px; }
.two-col-content p:last-of-type { margin-bottom: 28px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.testimonial {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  position: relative;
  background: white;
  box-shadow: var(--shadow-sm);
}

.testimonial.bg-pink-soft { background: var(--pink); }
.testimonial.bg-mint-soft { background: var(--mint); }
.testimonial.bg-yellow-soft { background: var(--yellow); }

.testimonial-quote {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 18px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  position: absolute;
  top: -30px;
  left: -8px;
  opacity: 0.18;
  font-weight: 700;
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer h4 {
  color: white;
  font-family: var(--display-font);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer p, .footer a { color: rgba(255, 250, 243, 0.75); font-size: 14px; line-height: 1.8; }
.footer a { text-decoration: none; cursor: pointer; transition: color 0.2s ease; display: block; }
.footer a:hover { color: var(--pink); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease;
}

.footer-social a:hover { background: var(--terracotta); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 250, 243, 0.5);
}

.license-info {
  font-size: 12px;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   TUITION TABLE
   ============================================ */
.tuition-section {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.tuition-section h3 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tuition-section h3 .age {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tuition-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.tuition-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
  border-bottom: 1px solid rgba(61, 51, 43, 0.08);
}

.tuition-table th:last-child { text-align: right; }

.tuition-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(61, 51, 43, 0.06);
  font-size: 16px;
  color: var(--text-dark);
}

.tuition-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-family: var(--display-font);
  font-size: 22px;
  color: var(--terracotta);
}

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

.tuition-note {
  background: var(--cream);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
}

/* Fee cards */
.fee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.fee-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.fee-card-icon { font-size: 40px; margin-bottom: 14px; }
.fee-card h4 { font-size: 18px; margin-bottom: 8px; }
.fee-card .fee-amount {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 36px;
  color: var(--terracotta);
  font-weight: 600;
  margin: 12px 0;
}
.fee-card p { color: var(--text-mid); font-size: 14px; }

/* Checklist */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-mid);
  padding: 12px 0;
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--mint);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 50px 0;
}

.contact-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-card .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.contact-card .value {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-card .value a {
  color: var(--text-dark);
  text-decoration: none;
}
.contact-card .value a:hover { color: var(--terracotta); }

.contact-card .note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

/* Form */
.contact-form {
  background: white;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(61, 51, 43, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: white;
}

textarea { min-height: 120px; resize: vertical; }

/* FAQ */
.faq {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-mid);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* Schedule timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.timeline-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terracotta);
}

.timeline-item .time {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item .activity {
  font-size: 15px;
  color: var(--text-dark);
}

/* Enrichments */
.enrichments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.enrichment {
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

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

.enrichment-icon { font-size: 40px; margin-bottom: 12px; }
.enrichment-name { font-family: var(--display-font); font-style: italic; font-size: 18px; color: var(--text-dark); }

/* Celebrations grid */
.celebrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.celebration {
  background: white;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.celebration-icon { font-size: 28px; }

/* Credentials badges */
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.credential {
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.credential-icon { font-size: 32px; margin-bottom: 10px; }
.credential h4 { font-size: 17px; margin-bottom: 4px; }
.credential p { font-size: 13px; color: var(--text-mid); }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { font-style: italic; margin-bottom: 18px; }
.cta-section p { max-width: 640px; margin: 0 auto 32px; color: var(--text-mid); font-size: 18px; }
.cta-section .hero-actions { justify-content: center; }

/* Map placeholder */
.map-section {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 40px 0;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.map-info {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.map-info .address {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
}

.neighborhood-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.pill {
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .nav-inner.mobile-open { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-inner.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
  }
  .nav-inner.mobile-open .nav-cta { display: flex; flex-direction: column; align-items: stretch; width: 100%; }

  .hero-grid, .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-reverse .two-col-content { order: 1; }
  .two-col-reverse .two-col-image { order: 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .container { padding: 0 22px; }
  .contact-form { padding: 32px 24px; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav, .footer, .cta-section { display: none; }
  .page { display: block !important; page-break-after: always; }
}

/* Animation utilities */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up:nth-child(1) { animation-delay: 0.05s; }
.fade-in-up:nth-child(2) { animation-delay: 0.15s; }
.fade-in-up:nth-child(3) { animation-delay: 0.25s; }
.fade-in-up:nth-child(4) { animation-delay: 0.35s; }
/* Updates to support multi-page navigation */

/* Override single-page-app behavior — every page is visible by default */
.page { display: block !important; animation: none; }
