/* ============================================================
   SARAH · LIFE COACH
   Warm & Human — Earthy tones, rounded corners, friendly typography
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --color-primary:        #C17B4E;              /* terracotta */
  --color-primary-dark:   #a96840;              /* hover state */
  --color-primary-light:  rgba(193,123,78,0.10);/* tinted backgrounds */
  --color-accent:         #7E9B7B;              /* sage green — badges, bullets */
  --color-accent-light:   rgba(126,155,123,0.15);

  /* Backgrounds */
  --color-bg:             #FAF7F2;              /* warm off-white — default sections */
  --color-bg-alt:         #FFF4E6;              /* warm cream — about section */
  --color-surface:        #FFFFFF;              /* cards, map wrap */

  /* Text */
  --color-text:           #2D2926;              /* espresso — body text */
  --color-text-muted:     #7A6F68;              /* secondary text */

  /* Borders & shadows */
  --color-border:         rgba(45,41,38,0.08);
  --shadow-sm:            0 2px 8px  rgba(45,41,38,0.06);
  --shadow-md:            0 4px 24px rgba(45,41,38,0.10);
  --shadow-lg:            0 8px 48px rgba(45,41,38,0.14);

  /* Typography */
  --font-heading:         'Playfair Display', Georgia, serif;
  --font-body:            'Inter', system-ui, -apple-system, sans-serif;

  /* Radius scale */
  --radius-sm:            8px;
  --radius-md:            16px;
  --radius-lg:            24px;
  --radius-xl:            32px;

  /* Layout */
  --container-width:      1160px;
  --navbar-height:        68px;
  --section-padding:      clamp(4.5rem, 9vw, 7.5rem);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  /* Smooth scrolling — offset accounts for fixed navbar */
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw,  3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw,  2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }

/* Inline SVG icons */
.icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}


/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease,
              transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — terracotta fill */
.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost — outlined terracotta */
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}


.btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}


/* ============================================================
   4. SHARED SECTION STYLES
   ============================================================ */
.section-header {
  text-align: center;
  max-width: var(--container-width);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0 2rem;
}

.section-sub {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  /* Starts transparent — JS adds .scrolled on scroll */
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease,
              backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 28px rgba(45,41,38,0.09);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 3px;
}

/* Underline reveal on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover              { color: var(--color-primary); }
.nav-links a:hover::after       { width: 100%; }
.nav-links a.active             { color: var(--color-primary); }
.nav-links a.active::after      { width: 100%; }

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → ✕ animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   6. HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  padding-top: var(--navbar-height); /* offset for fixed navbar */
  background: var(--color-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal edge into the About section */
#hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--color-bg-alt);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* ── Photo column ── */
.hero-image-wrap {
  position: relative;
}

.hero-blob {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ── Content column ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 { margin-top: 0.2rem; }
.hero-content h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 440px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: -0.25rem;
}
.trust-divider { opacity: 0.35; }


/* ============================================================
   7. ABOUT ME
   ============================================================ */
#about {
  background: var(--color-bg-alt);
  padding: var(--section-padding) 2rem;
  position: relative;
}

.about-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* ── Photo (tilted — straightens on hover) ── */
.about-image-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.45s ease;
}
.about-image-wrap:hover .about-photo { transform: rotate(0deg); }

/* ── Bio & credentials ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-content h2    { margin-bottom: 0.4rem; }
.about-content p     { color: var(--color-text-muted); line-height: 1.85; }

/* Credential badges */
.about-badges {
  display: flex;
  gap: 0.875rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  min-width: 88px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.badge-icon   { font-size: 1.5rem; }
.badge-number {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}
.badge-label {
  font-size: 0.73rem;
  color: var(--color-text-muted);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}


/* ============================================================
   8. SERVICES
   ============================================================ */
#services {
  background: var(--color-surface);
  padding: var(--section-padding) 0;
}

.service-row {
  max-width: var(--container-width);
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.service-row:last-of-type { margin-bottom: 0; }
.service-row.reverse      { flex-direction: row-reverse; }

/* Image card */
.service-image-wrap {
  flex: 0 0 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.service-image-wrap:hover img { transform: scale(1.05); }

/* Text block */
.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-content p   { color: var(--color-text-muted); line-height: 1.8; }

/* Bullet benefits */
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.service-benefits li::before {
  content: '●';
  color: var(--color-accent);
  font-size: 0.45rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--color-primary-light);
  padding: var(--section-padding) 2rem;
}

/* Pure-CSS masonry via CSS columns */
.testimonials-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  columns: 3;
  column-gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars { font-size: 0.9rem; letter-spacing: 1px; }

.quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info         { display: flex; flex-direction: column; gap: 0.1rem; }
.author-info strong  { font-size: 0.9rem; color: var(--color-text); }
.author-info span    { font-size: 0.8rem; color: var(--color-text-muted); }


/* ============================================================
   10. CONTACT
   ============================================================ */
#contact {
  background: var(--color-bg);
  padding: var(--section-padding) 2rem;
}

.contact-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 490px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Info column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-business-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: -0.5rem;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Google Rating badge */
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.1rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.g-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #4285F4;
  font-weight: 900;
  font-size: 1.3rem;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.rating-details     { display: flex; flex-direction: column; gap: 0.15rem; }
.rating-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rating-stars  { font-size: 0.8rem; }
.rating-number { font-weight: 700; font-size: 1rem; color: var(--color-text); }
.rating-count  { font-size: 0.82rem; color: var(--color-text-muted); }

/* Contact links (phone, email) */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.3rem 0;
}
.contact-link:hover { color: var(--color-primary); }

/* Social icons row (WhatsApp, Facebook, Instagram) */
.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.contact-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: var(--shadow-sm);
}
.contact-social-icon svg  { width: 20px; height: 20px; }
.contact-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-social-icon.whatsapp  { background: #25D366; }
.contact-social-icon.whatsapp:hover { filter: brightness(1.1); }

.contact-social-icon.facebook  { background: #1877F2; }
.contact-social-icon.facebook:hover { filter: brightness(1.1); }

.contact-social-icon.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.contact-social-icon.instagram:hover { filter: brightness(1.1); }


/* ============================================================
   11. FOOTER
   ============================================================ */
#footer {
  background: var(--color-text);          /* espresso dark */
  color: rgba(255,255,255,0.75);
  padding: 2.75rem 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
}
.social-icon svg  { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #FFFFFF; }

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   12. FLOATING ACTION BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.8rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  /* Transition the label's max-width for smooth expand */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.float-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Label hidden by default — expands on hover */
.float-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition:
    max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.25s ease 0.1s,
    margin-left 0.35s ease;
}
.float-btn:hover .float-label {
  max-width: 180px;
  opacity: 1;
  margin-left: 0.5rem;
}

/* WhatsApp — bounces 3× after 1.5s to draw attention */
.float-whatsapp {
  background: #25D366;
  animation: float-bounce 2.2s ease-in-out 1.5s 3;
}

/* Instagram — multi-color gradient */
.float-instagram {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

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


/* ============================================================
   13. FADE-IN ON SCROLL
   Applied by JS via IntersectionObserver
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for cards */
.testimonial-card:nth-child(2) { transition-delay: 0.08s; }
.testimonial-card:nth-child(3) { transition-delay: 0.16s; }
.testimonial-card:nth-child(4) { transition-delay: 0.08s; }
.testimonial-card:nth-child(5) { transition-delay: 0.16s; }
.testimonial-card:nth-child(6) { transition-delay: 0.24s; }


/* ============================================================
   14. RESPONSIVE
   ============================================================ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Mobile nav drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  /* Hero stacks vertically */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem 6rem;
  }
  .hero-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-content  { align-items: center; }
  .hero-sub      { max-width: 100%; }
  .hero-trust    { justify-content: center; }

  /* Hero diagonal less tall on mobile */
  #hero::after   { height: 55px; }

  /* About stacks */
  .about-container    { grid-template-columns: 1fr; }
  .about-image-wrap   { max-width: 360px; margin: 0 auto; }
  .about-badges       { justify-content: center; }

  /* Services stack */
  .service-row,
  .service-row.reverse { flex-direction: column; }
  .service-image-wrap  { flex: none; width: 100%; }

  /* Map full width */
  .contact-container   { grid-template-columns: 1fr; }
  .map-wrap            { height: 320px; }

  /* Testimonials 2 columns */
  .testimonials-grid   { columns: 2; }

  /* Footer centered */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .testimonials-grid   { columns: 1; }
  .floating-buttons    { bottom: 1.25rem; right: 1.25rem; }
  .google-rating       { width: 100%; }
  .contact-buttons     { gap: 0.75rem; }
  .footer-nav          { gap: 1rem; }

  .hero-container      { padding: 2.5rem 1.25rem 5rem; }
  #about, #services, #testimonials, #contact {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
