/*
Theme Name: Five Oaks Homes Oakville
Description: Pre-construction landing page for Five Oaks by Caivan Communities in Oakville
Version: 1.0
*/

/* ═══════════ VARIABLES ═══════════ */
:root {
  --teal: #1A5C5A;
  --teal-dark: #0E3D3B;
  --teal-light: #2A8A87;
  --teal-muted: #3D9E9B;
  --ivory: #FAFAF5;
  --warm-white: #FEFDFB;
  --sand: #E6DFD3;
  --sand-light: #F0EBE3;
  --charcoal: #1E1E1E;
  --text: #2D2D2D;
  --text-light: #666;
  --gold: #C4A265;
  --gold-dark: #A8893F;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(26,92,90,.06);
  --shadow-lg: 0 16px 48px rgba(26,92,90,.10);
}

/* ═══════════ RESET ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--warm-white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════ INTRO SPLASH ═══════════ */
.intro-splash {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  transition: opacity .8s ease, visibility .8s;
}
.intro-splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-dev-logo { max-width: 140px; height: auto; opacity: .7; }
.intro-logo { max-width: min(65vw, 380px); height: auto; }
.intro-tagline {
  font-family: var(--sans); font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-top: 4px; font-weight: 500;
}

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s, transform .35s;
}
.site-header.scrolled {
  background: rgba(14,61,59,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.site-header.header-hidden { transform: translateY(-100%); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 34px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: #fff;
  letter-spacing: .8px; text-transform: uppercase; transition: color .2s; position: relative;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.header-nav a:hover::after { width: 100%; }
.header-cta {
  background: var(--gold) !important; color: var(--charcoal) !important; padding: 10px 24px;
  border-radius: 4px; font-weight: 600 !important; letter-spacing: .5px;
  text-transform: uppercase !important;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 28px; padding: 4px 0;
}
.mobile-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,61,59,.5) 0%, rgba(14,61,59,.7) 60%, rgba(14,61,59,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 120px 24px 80px;
}
.hero-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.7;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-sub a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.hero-sub a:hover { color: #fff; }
.hero-btn {
  display: inline-block; background: var(--gold); color: var(--charcoal); padding: 16px 44px;
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 4px;
  transition: background .3s, transform .2s, color .3s; cursor: pointer;
}
.hero-btn:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }

/* ═══════════ STATS BANNER ═══════════ */
.stats-banner { background: var(--teal-dark); padding: 48px 24px; }
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-value {
  display: block; font-family: var(--serif); font-size: 26px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.stat-item p { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════ ABOUT ═══════════ */
.about { padding: 100px 24px; background: var(--warm-white); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.about h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 24px;
}
.about-text { font-size: 16px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.about-text a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.about-text a:hover { color: var(--teal-dark); }
.about-quote {
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--teal-dark);
  border-left: 3px solid var(--gold); padding: 16px 0 16px 24px; margin-top: 24px;
}
.about-images { display: flex; flex-direction: column; gap: 16px; }
.about-images img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ═══════════ COMMUNITY FEATURES ═══════════ */
.community { padding: 100px 24px; background: var(--ivory); }
.community h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 16px;
}
.community-intro {
  text-align: center; font-size: 16px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.feature-card {
  background: var(--warm-white); padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid var(--sand); transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--teal); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ═══════════ INTERIORS ═══════════ */
.interiors { padding: 100px 24px; background: var(--warm-white); }
.interiors h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 48px;
}
.interiors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.interior-card { border-radius: var(--radius); overflow: hidden; background: var(--ivory); }
.interior-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .5s; }
.interior-card:hover img { transform: scale(1.03); }
.interior-caption { padding: 24px; }
.interior-caption h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 8px;
}
.interior-caption p { font-size: 14px; color: var(--text-light); }

/* ═══════════ LOCATION ═══════════ */
.location { padding: 100px 24px; background: var(--ivory); }
.location h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 16px;
}
.location-intro {
  text-align: center; font-size: 16px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.location-intro a { color: var(--teal); text-decoration: underline; }
.map-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
.map-card {
  background: var(--warm-white); padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.map-card h3 {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 16px;
}
.map-card ul { display: flex; flex-direction: column; gap: 10px; }
.map-card li { font-size: 15px; color: var(--text); padding-left: 20px; position: relative; }
.map-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
}
.map-card a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.map-card a:hover { color: var(--teal-dark); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: 0; }

/* ═══════════ NEIGHBOURHOOD ═══════════ */
.neighbourhood { padding: 100px 24px; background: var(--warm-white); }
.neighbourhood h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 16px;
}
.neighbourhood-intro {
  text-align: center; font-size: 16px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.hood-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hood-card {
  background: var(--ivory); padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.hood-icon { width: 40px; height: 40px; color: var(--teal); margin-bottom: 16px; }
.hood-icon svg { width: 100%; height: 100%; }
.hood-card h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 14px;
}
.hood-card ul { display: flex; flex-direction: column; gap: 8px; }
.hood-card li { font-size: 14px; color: var(--text); padding-left: 16px; position: relative; }
.hood-card li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light);
}
.hood-card a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════ FLOOR PLANS ═══════════ */
.floorplans { padding: 100px 24px; background: var(--ivory); }
.floorplans h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 16px;
}
.floorplans-intro {
  text-align: center; font-size: 16px; color: var(--text-light);
  max-width: 700px; margin: 0 auto 48px;
}
.floorplans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fp-card {
  background: var(--warm-white); padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid var(--sand); display: flex; flex-direction: column;
}
.fp-card--accent { background: var(--teal-dark); border-color: var(--teal); }
.fp-card--accent h3, .fp-card--accent p, .fp-card--accent li { color: #fff !important; }
.fp-card--accent .fp-features li::before { background: var(--gold); }
.fp-icon { width: 44px; height: 44px; color: var(--teal); margin-bottom: 20px; }
.fp-card--accent .fp-icon { color: var(--gold); }
.fp-icon svg { width: 100%; height: 100%; }
.fp-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
}
.fp-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.fp-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fp-features li { font-size: 14px; color: var(--text); padding-left: 20px; position: relative; }
.fp-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
}
.fp-cta {
  display: inline-block; text-align: center; background: var(--gold); color: var(--charcoal);
  padding: 14px 28px; border-radius: 4px; font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; transition: background .3s, color .3s; cursor: pointer;
}
.fp-cta:hover { background: var(--gold-dark); color: #fff; }
.fp-card--accent .fp-cta { background: var(--gold); color: var(--charcoal); }

/* ═══════════ FAQ ═══════════ */
.faq { padding: 100px 24px; background: var(--warm-white); }
.faq h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 48px;
}
.faq-item {
  max-width: 800px; margin: 0 auto 12px;
  border: 1px solid var(--sand); border-radius: var(--radius); overflow: hidden;
  background: var(--ivory);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: background .2s;
}
.faq-question:hover { background: var(--sand-light); }
.faq-question h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--charcoal); flex: 1;
}
.faq-toggle { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; transition: transform .3s; }
.faq-toggle svg { width: 100%; height: 100%; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.8; }
.faq-answer-inner a { color: var(--teal); text-decoration: underline; }

/* ═══════════ BOOKING ═══════════ */
.booking { padding: 100px 24px; background: var(--ivory); }
.booking h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--charcoal); text-align: center; margin-bottom: 16px;
}
.booking-intro {
  text-align: center; font-size: 16px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 36px;
}
.calendly-inline-widget { min-width: 320px; height: 700px; border-radius: var(--radius); overflow: hidden; }
.calendly-inline-widget iframe { width: 100% !important; height: 100% !important; border: none; }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--teal-dark); color: rgba(255,255,255,.8); padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; margin-bottom: 6px; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-dev {
  text-align: center; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-dev img { height: 24px; margin: 0 auto; opacity: .6; }
.footer-communities {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
  text-align: center; font-size: 13px; color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-communities a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }
.footer-communities a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 0; }
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.7; text-align: center;
}

/* ═══════════ FLOATING BUTTONS ═══════════ */
.float-whatsapp, .float-book {
  position: fixed; z-index: 900; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s;
}
.float-whatsapp:hover, .float-book:hover { transform: scale(1.1); }
.float-whatsapp { bottom: 24px; right: 24px; background: #25D366; }
.float-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
.float-book { bottom: 90px; right: 24px; background: var(--gold); }
.float-book svg { width: 24px; height: 24px; color: #fff; }

/* ═══════════ LEAD POPUP ═══════════ */
.lead-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(30,30,30,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  padding: 24px;
}
.lead-popup-overlay.visible { opacity: 1; visibility: visible; }
.lead-popup {
  background: var(--warm-white); border-radius: 14px; padding: 40px 36px;
  max-width: 420px; width: 100%; position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px); transition: transform .4s;
}
.lead-popup-overlay.visible .lead-popup { transform: translateY(0); }
.lead-popup-close {
  position: absolute; top: 16px; right: 16px; cursor: pointer;
  width: 32px; height: 32px; color: var(--text-light); transition: color .2s;
}
.lead-popup-close:hover { color: var(--teal-dark); }
.lead-popup-close svg { width: 100%; height: 100%; }
.lead-popup h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--teal-dark); margin-bottom: 8px;
}
.lead-popup > div > p {
  font-size: 14px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-group input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--sand);
  border-radius: 8px; font-family: var(--sans); font-size: 15px;
  background: var(--ivory); color: var(--text); transition: border-color .2s;
}
.form-group input:focus { outline: none; border-color: var(--teal); }
.phone-input-wrap {
  display: flex; align-items: center; border: 1px solid var(--sand);
  border-radius: 8px; background: var(--ivory); overflow: hidden;
}
.phone-input-wrap:focus-within { border-color: var(--teal); }
.phone-prefix {
  padding: 14px 12px 14px 16px; font-size: 15px; color: var(--text-light);
  font-weight: 500; border-right: 1px solid var(--sand); white-space: nowrap;
}
.phone-input-wrap input {
  border: none !important; border-radius: 0 !important; background: transparent !important;
}
.popup-submit {
  width: 100%; padding: 16px; background: var(--teal); color: #fff;
  border: none; border-radius: 8px; font-family: var(--sans); font-size: 15px;
  font-weight: 600; letter-spacing: .5px; cursor: pointer;
  transition: background .3s; margin-top: 4px;
}
.popup-submit:hover { background: var(--teal-dark); }
.popup-submit:disabled { opacity: .6; cursor: not-allowed; }
.popup-success { display: none; text-align: center; padding: 20px 0; }
.popup-success h3 {
  font-family: var(--serif); font-size: 24px; color: var(--teal); margin-bottom: 8px;
}
.popup-success p { font-size: 15px; color: var(--text-light); }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .interiors-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplans-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplans-grid .fp-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14,61,59,.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 18px; }
  .mobile-toggle { display: flex; }

  .hero-content { padding: 140px 20px 80px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-value { font-size: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { order: -1; }

  .features-grid { grid-template-columns: 1fr; }
  .interiors-grid { grid-template-columns: 1fr; }
  .interior-card img { height: 260px; }

  .map-cards { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }

  .hood-scroll {
    grid-template-columns: repeat(4, 280px);
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 16px;
  }
  .hood-card { scroll-snap-align: start; }

  .floorplans-grid { grid-template-columns: 1fr; }
  .floorplans-grid .fp-card:last-child { grid-column: span 1; }

  .booking { padding: 60px 16px; }
  .calendly-inline-widget { height: 750px !important; border-radius: 8px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-nav { align-items: center; }

  .float-whatsapp { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .float-book { bottom: 76px; right: 16px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lead-popup { padding: 32px 24px; }
}
