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

:root {
  --teal: #00BCD4;
  --teal-dark: #00838F;
  --teal-light: #E0F7FA;
  --green: #4CAF50;
  --green-dark: #2E7D32;
  --green-light: #E8F5E9;
  --purple: #9C27B0;
  --purple-dark: #6A1B9A;
  --purple-light: #F3E5F5;
  --orange: #FF7043;
  --orange-light: #FBE9E7;
  --brown: #795548;
  --brown-light: #EFEBE9;
  --yellow: #FFC107;
  --white: #FFFFFF;
  --off-white: #FAFDF8;
  --text-dark: #2C3E2D;
  --text-mid: #4A5C4B;
  --text-light: #718172;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--teal-light);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,188,212,0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; display: block; }
.nav-logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal-dark);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  display: block;
}
.nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-links a.active { background: var(--teal); color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--teal-light); }
.nav-hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 75px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--teal-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 199;
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-drawer a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-drawer a.active { background: var(--teal); color: var(--white); }
.nav-drawer .drawer-cta {
  margin-top: 0.5rem;
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 1rem;
}
.nav-drawer .drawer-cta:hover { background: var(--purple-dark); }

/* ===================== LAYOUT ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,188,212,0.3); }
.btn-secondary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { background: var(--purple-light); transform: translateY(-2px); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
  text-align: center;
}
footer img { height: 60px; margin-bottom: 1.25rem; opacity: 0.9; max-width: 240px; }
footer p { font-size: 0.9rem; margin-bottom: 0.4rem; line-height: 1.6; }
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem auto; max-width: 400px; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }
.footer-version { font-size: 0.75rem; opacity: 0.35; margin-top: 0.25rem; }

/* ===================== HOME — HERO ===================== */
.hero {
  background: linear-gradient(160deg, #E0F7FA 0%, #E8F5E9 40%, #F3E5F5 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,188,212,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(156,39,176,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.hero-text h1 span.teal { color: var(--teal-dark); }
.hero-text h1 span.green { color: var(--green-dark); }
.hero-text h1 span.purple { color: var(--purple); }
.hero-text p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-logo-wrap { display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.08));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===================== HOME — WELCOME ===================== */
.welcome { background: var(--white); }
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.welcome-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.welcome-text p strong { color: var(--green-dark); }
.welcome-visual {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.icon-row { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.icon-pill { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.icon-pill span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: center;
}

/* ===================== HOME — BRAND MESSAGE ===================== */
.brand-message {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-message::before { content: '🌱'; position: absolute; font-size: 8rem; opacity: 0.08; top: -1rem; left: 2rem; }
.brand-message::after  { content: '🌸'; position: absolute; font-size: 8rem; opacity: 0.08; bottom: -1rem; right: 2rem; }
.brand-message h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; margin-bottom: 1.2rem; position: relative; }
.brand-message p { font-size: 1.1rem; line-height: 1.9; max-width: 720px; margin: 0 auto 1rem; opacity: 0.92; position: relative; }

/* ===================== HOME — OFFER ===================== */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.offer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.offer-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,188,212,0.12); }
.offer-card .offer-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.offer-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 0.75rem; }
.offer-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ===================== HOME — WHY FAMILIES ===================== */
.why-families { background: var(--green-light); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--green-dark); margin-bottom: 1rem; }
.why-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.why-text p:last-child { font-style: italic; color: var(--green-dark); font-weight: 600; }
.why-badges { display: flex; flex-direction: column; gap: 1rem; }
.why-badge {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  border-left: 4px solid var(--teal);
}
.why-badge .badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-badge p { font-size: 0.95rem; color: var(--text-dark); margin: 0; font-weight: 600; }

/* ===================== HOME — CTA ===================== */
.cta-section { background: var(--white); }
.cta-box {
  background: linear-gradient(135deg, #E0F7FA, #F3E5F5);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  border: 2px solid rgba(0,188,212,0.2);
}
.cta-box h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.cta-box p { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.cta-box .cta-phone { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--teal-dark); margin: 0.5rem 0 0.25rem; }
.cta-box .cta-address { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================== ABOUT — HERO ===================== */
.about-hero {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--teal-light) 100%);
  padding: 4rem 0;
  text-align: center;
}
.about-hero h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.about-hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 680px; margin: 0 auto; line-height: 1.8; }

/* ===================== ABOUT — PHILOSOPHY ===================== */
.philosophy { background: var(--white); }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.philosophy-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--purple); margin-bottom: 1rem; }
.philosophy-text h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--teal-dark); margin: 1.5rem 0 0.5rem; }
.philosophy-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.75rem; }
.seeds-visual {
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.seed-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-left: 4px solid var(--purple);
  font-size: 0.95rem; color: var(--text-dark); font-weight: 600;
}
.seed-item:last-child { margin-bottom: 0; }
.seed-item .seed-emoji { font-size: 1.4rem; }

/* ===================== ABOUT — COMMITMENT ===================== */
.commitment { background: var(--off-white); }
.commitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.commitment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--teal);
  transition: transform 0.2s;
}
.commitment-card:hover { transform: translateY(-3px); }
.commitment-card:nth-child(2) { border-top-color: var(--purple); }
.commitment-card:nth-child(3) { border-top-color: var(--green); }
.commitment-card:nth-child(4) { border-top-color: var(--orange); }
.commitment-card:nth-child(5) { border-top-color: var(--yellow); }
.commitment-card .c-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.commitment-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ===================== ABOUT — LOCATION ===================== */
.location-section { background: var(--white); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.location-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 1rem; }
.location-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.location-card { background: var(--teal-light); border-radius: var(--radius-md); padding: 2rem; border: 2px solid rgba(0,188,212,0.2); }
.location-card address {
  font-style: normal;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--teal-dark); line-height: 1.6; margin-bottom: 1rem;
}
.location-card .loc-info { font-size: 0.95rem; color: var(--text-mid); }
.location-card .loc-info p { margin-bottom: 0.5rem; }

/* ===================== ABOUT — CLOSING ===================== */
.about-closing {
  background: linear-gradient(135deg, var(--green-dark), var(--teal-dark));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.about-closing h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.about-closing p { font-size: 1.05rem; line-height: 1.8; max-width: 660px; margin: 0 auto 1.5rem; opacity: 0.92; }

/* ===================== CONTACT — HERO ===================== */
.contact-hero {
  background: linear-gradient(160deg, var(--purple-light), var(--teal-light));
  padding: 4rem 0;
  text-align: center;
}
.contact-hero h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.contact-hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===================== CONTACT — INFO ===================== */
.contact-section { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--teal-dark); margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--teal-light);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.contact-icon.teal { background: var(--teal-light); }
.contact-icon.purple { background: var(--purple-light); }
.contact-icon.green { background: var(--green-light); }
.contact-item-text strong { display: block; font-family: var(--font-display); font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.contact-item-text a, .contact-item-text span { color: var(--teal-dark); font-size: 1.05rem; font-weight: 600; text-decoration: none; }
.contact-item-text a:hover { text-decoration: underline; }
.contact-callout {
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.contact-callout h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--purple-dark); margin-bottom: 1rem; }
.contact-callout p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.contact-callout .big-phone { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--teal-dark); display: block; margin: 1rem 0; }
.hours-box { background: var(--white); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin-top: 1.5rem; border-left: 4px solid var(--green); }
.hours-box h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.hours-box p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeInUp 0.6s ease both; }
.hero-logo-wrap { animation: fadeInUp 0.6s ease 0.15s both; }

/* ===================== RESPONSIVE — TABLET (≤900px) ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

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

  .hero-inner { gap: 2rem; }
  .hero-text h1 { font-size: 2.6rem; }

  .welcome-inner { gap: 2.5rem; }
  .why-inner { gap: 2.5rem; }
  .philosophy-inner { gap: 2.5rem; }
  .location-inner { gap: 2rem; }
  .contact-inner { gap: 2rem; }
}

/* ===================== RESPONSIVE — MOBILE (≤640px) ===================== */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }

  /* Nav */
  .nav-inner { height: 64px; padding: 0 1rem; }
  .nav-logo img { height: 44px; }
  .nav-drawer { top: 67px; }

  /* Hero */
  .hero { padding: 3rem 0 2.5rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons a { width: 100%; max-width: 280px; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-wrap img { max-width: 280px; }

  /* Section headings */
  .section-heading { font-size: 1.7rem; }
  .section-sub { font-size: 1rem; }

  /* Welcome */
  .welcome-inner { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-text h2 { font-size: 1.7rem; }
  .welcome-visual { padding: 2rem 1.25rem; }

  /* Brand message */
  .brand-message h2 { font-size: 1.7rem; }
  .brand-message p { font-size: 1rem; }
  .brand-message::before, .brand-message::after { font-size: 5rem; }

  /* Offer */
  .offer-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Why families */
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-text h2 { font-size: 1.7rem; }

  /* CTA */
  .cta-box { padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }
  .cta-box h2 { font-size: 1.6rem; }
  .cta-box p { font-size: 1rem; }
  .cta-box .cta-phone { font-size: 1.3rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; max-width: 280px; }

  /* About hero */
  .about-hero { padding: 3rem 0; }
  .about-hero h1 { font-size: 2rem; }
  .about-hero p { font-size: 1rem; }

  /* Philosophy */
  .philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-text h2 { font-size: 1.7rem; }

  /* About closing */
  .about-closing { padding: 3rem 0; }
  .about-closing h2 { font-size: 1.5rem; }
  .about-closing p { font-size: 1rem; }

  /* Location */
  .location-inner { grid-template-columns: 1fr; gap: 2rem; }
  .location-text h2 { font-size: 1.7rem; }

  /* Contact hero */
  .contact-hero { padding: 3rem 0; }
  .contact-hero h1 { font-size: 2rem; }
  .contact-hero p { font-size: 1rem; }

  /* Contact info */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-callout { padding: 2rem 1.5rem; }
  .contact-callout h2 { font-size: 1.3rem; }
  .contact-callout .big-phone { font-size: 1.5rem; }
  .contact-callout a.btn-primary,
  .contact-callout a.btn-secondary { display: block; width: 100%; }

  /* Footer */
  footer { padding: 2.5rem 0 1.5rem; }
  footer img { height: 50px; }
  footer p { font-size: 0.85rem; }
}

/* ===================== RESPONSIVE — SMALL (≤380px) ===================== */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 1.75rem; }
  .section-heading { font-size: 1.5rem; }
  .about-hero h1, .contact-hero h1 { font-size: 1.75rem; }
  .cta-box { padding: 2rem 1rem; }
}
