/* ============================================================
   WALTON FAMILY DENTISTRY — Design System
   Aesthetic: Warm refined editorial. Cream + deep teal + gold.
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --teal: #2a5f5e;
  --teal-light: #3d7a78;
  --teal-dark: #1a3d3c;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --text: #1e2a29;
  --text-mid: #4a5a58;
  --text-light: #8a9a98;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(42,95,94,0.08);
  --shadow-lg: 0 12px 48px rgba(42,95,94,0.14);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--teal-dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
em { font-style: italic; color: var(--gold); }

a { color: inherit; text-decoration: none; }
p { color: var(--text-mid); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center { text-align: center; }

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--teal-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 2px solid var(--teal);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 2px solid var(--gold-light);
  transition: all var(--transition);
}
.btn-ghost-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-dark);
}

.btn-book {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-light); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-tooth {
  font-size: 1.4rem;
  color: var(--teal);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-group { position: relative; }

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--cream-dark); }

.dropdown-menu {
  position: absolute;
  top: 100%;          /* flush to parent — no gap to break hover */
  left: 0;
  padding-top: 8px;   /* visual breathing room via padding, not margin */
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
/* inner wrapper carries the visual styling so padding-top stays transparent */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 8px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: -1;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  position: relative;
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.83rem;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--cream-dark); color: var(--teal); }
.dropdown-menu a:first-child { margin-top: 0.5rem; }
.dropdown-menu a:last-child  { margin-bottom: 0.5rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--teal);
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 1rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--teal); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--teal-dark);
  z-index: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 4rem 4rem;
  max-width: 640px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--teal-dark);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 480px;
}

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

.hero-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.hero-info a { color: var(--teal); font-weight: 500; }
.hero-info a:hover { color: var(--teal-dark); }

.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100vh;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100vh;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* ---- PILLARS ---- */
.pillars {
  padding: 5rem 0;
  background: var(--white);
}

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

.pillar {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: var(--teal-dark);
}
.pillar p { font-size: 0.92rem; }

/* ---- MEET STRIP ---- */
.meet-strip {
  padding: 6rem 0;
  background: var(--cream);
}

.meet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.meet-text h2 { margin-bottom: 1.25rem; }
.meet-text p { margin-bottom: 2rem; font-size: 0.95rem; }

.meet-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ---- SERVICES STRIP ---- */
.services-strip {
  padding: 6rem 0;
  background: var(--teal-dark);
}

.services-strip .section-eyebrow { color: var(--gold-light); }
.services-strip h2 { color: var(--cream); margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--cream);
  transition: background var(--transition), transform var(--transition);
  display: block;
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.svc-icon { font-size: 1.75rem; display: block; margin-bottom: 1rem; }
.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.82rem; color: rgba(250,247,242,0.7); }

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 1rem; }
.testi-name { font-size: 0.78rem; font-weight: 500; color: var(--teal); letter-spacing: 0.05em; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--teal);
  padding: 5rem 0;
}

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

.cta-banner h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(250,247,242,0.75); }

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}

.footer-brand .logo-name { color: var(--cream); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(250,247,242,0.6);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--teal-dark); border-color: var(--gold); }

.footer-links h5, .footer-contact h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(250,247,242,0.7);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.7);
  margin-bottom: 0.4rem;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.78rem;
  color: rgba(250,247,242,0.35);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--teal-dark);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(250,247,242,0.7); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ---- INNER PAGE CONTENT ---- */
.page-content {
  padding: 5rem 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  color: var(--teal-dark);
}
.content-block h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  color: var(--teal);
}
.content-block p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.content-block ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.content-block ul li { margin-bottom: 0.5rem; }

/* ---- DOCTORS PAGE ---- */
.doctor-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 3rem;
  margin-bottom: 3rem;
}
.doctor-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.doctor-info h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.doctor-info .doc-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.doctor-info p { font-size: 0.93rem; margin-bottom: 1rem; }
.doc-traits {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.doc-trait {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.doc-trait-title { font-weight: 600; font-size: 0.88rem; color: var(--teal-dark); }
.doc-trait p { font-size: 0.83rem; margin: 0; }

/* ---- HOURS PAGE ---- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hours-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hours-table h3 {
  background: var(--teal);
  color: var(--cream);
  padding: 1.25rem 1.75rem;
  font-size: 1.1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--teal-dark); }
.hours-row .time { color: var(--text-mid); }
.hours-note {
  background: var(--cream-dark);
  padding: 1rem 1.75rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-style: italic;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }
.location-info {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.location-info p { font-size: 0.9rem; margin-bottom: 0.4rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.contact-info p { font-size: 0.9rem; margin-bottom: 0.6rem; }
.contact-info a { color: var(--teal); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 1rem;
  color: #2e7d32;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* ---- SERVICES PAGE ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 4px solid var(--teal);
  transition: transform var(--transition);
}
.service-full-card:hover { transform: translateY(-3px); }
.service-full-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.service-full-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.service-full-card ul { margin-left: 1.2rem; font-size: 0.88rem; color: var(--text-mid); }
.service-full-card ul li { margin-bottom: 0.35rem; }

/* ---- EMERGENCY BANNER ---- */
.emergency-banner {
  background: #c0392b;
  color: white;
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}
.emergency-banner h2 { color: white; font-size: 2rem; margin-bottom: 0.5rem; }
.emergency-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.emergency-banner a.btn-primary {
  background: white;
  color: #c0392b;
  border-color: white;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.emergency-banner a.btn-primary:hover { background: #f8d7da; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.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: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-bg { display: none; }
  .hero-content { padding: 4rem 2rem 2rem; max-width: 100%; }
  .hero-image-wrap { min-height: 50vw; }
  .hero-img { min-height: auto; max-height: 480px; }
  .hero-badge { bottom: 1.5rem; left: 1rem; }

  .pillar-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .meet-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-card img { max-width: 300px; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-book { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}
