@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --cream:       #F0EDE6;
  --warm-white:  #F7F4EF;
  --sand:        #DED3C0;
  --beige:       #C9B89A;
  --tan:         #B5A08A;
  --taupe:       #8E7B6A;
  --brown-mid:   #7A6355;
  --brown-dark:  #5A4640;
  --text-dark:   #3A2E28;
  --text-mid:    #5C4E44;
  --text-light:  #9A8A7E;
  --accent:      #8B6F5E;
  --arch-beige:  #D4C5A9;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;

  --nav-height: 70px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 3px; }

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

nav.scrolled {
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.nav-logo span {
  font-weight: 300;
  color: var(--taupe);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--brown-dark);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.14em !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--text-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: var(--nav-height) 0 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(181,160,138,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(142,123,106,0.10) 0%, transparent 40%);
  pointer-events: none;
}

.hero-arch-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45vw;
  max-width: 700px;
  height: 90vh;
  background: var(--arch-beige);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8% 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 540px; }

.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown-mid);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 400px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.8rem;
}

.badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 30px;
  color: var(--text-mid);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,70,64,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-mid);
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--tan);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-arch {
  position: relative;
  width: 340px;
  max-width: 90%;
}

.hero-image-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--arch-beige);
  border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  z-index: 0;
}

.hero-image-arch img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}



/* ===================== SECTIONS SHARED ===================== */
section {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  max-width: 100%;
  padding: 7rem 0;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--brown-mid);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
}

/* ===================== DIVIDER ===================== */
.divider {
  width: 60px;
  height: 1px;
  background: var(--sand);
  margin: 2rem auto;
}

.divider-left {
  margin: 1.5rem 0;
}

/* ===================== ABOUT PREVIEW (HOME) ===================== */
.about-preview {
  background: var(--cream);
}

.about-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  z-index: 1;
}

.about-img-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-deco {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid var(--sand);
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
  bottom: -20px;
  right: -20px;
  z-index: 0;
}

.about-img-tag {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1rem 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 4px;
  z-index: 2;
}

.about-img-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1;
}

.about-img-tag span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ===================== SERVICES HOME PREVIEW ===================== */
.services-preview {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(90,70,64,0.1);
  border-color: var(--tan);
}

.service-card:hover::before { height: 100%; }

.service-card-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.2rem;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card-arrow { gap: 0.8rem; }



/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--arch-beige);
  padding: 5rem 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-dark);
  color: var(--sand);
  padding: 4rem 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(222,211,192,0.7);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(222,211,192,0.7);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: rgba(222,211,192,0.7);
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(222,211,192,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(222,211,192,0.4);
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 30px; height: 30px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===================== PAGE HEADER ===================== */
.page-header {
  background: var(--cream);
  padding: calc(var(--nav-height) + 4rem) 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: var(--arch-beige);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.3;
}

.page-header .section-label { justify-content: center; }
.page-header .section-label::before { display: none; }

.page-header .section-title {
  position: relative;
  z-index: 1;
}

/* ===================== ABOUT PAGE ===================== */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-sticky-img {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-name-tag {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

.about-name-tag h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.about-name-tag p {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.about-tag {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 30px;
  color: var(--text-mid);
}

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

.coverage-item {
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  border-left: 3px solid var(--tan);
}

.coverage-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.coverage-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===================== SERVICES PAGE ===================== */
.services-page {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--sand);
}

.service-detail-card:last-child { border-bottom: none; }

.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-detail-card:hover .service-detail-img img {
  transform: scale(1.04);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-detail-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-detail-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-top: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '—';
  color: var(--tan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== AGENDAR PAGE ===================== */
.agendar-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 5% 6rem;
  text-align: center;
}

.agendar-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 3.5rem;
  box-shadow: 0 8px 40px rgba(90,70,64,0.07);
}

.agendar-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.agendar-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wa-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.wa-big-btn:hover {
  background: #20BB5C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.wa-big-btn svg {
  width: 26px; height: 26px;
  fill: white;
}

.agendar-info {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================== MOBILE MENU OVERLAY ===================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--accent); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-arch-bg { display: none; }
  .hero-image-container { order: -1; }
  .hero-image-arch { width: 250px; margin: 0 auto; }

  .about-preview-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-tag { left: 0; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }

  .about-page-grid { grid-template-columns: 1fr; }
  .about-sticky-img { position: static; }
  .about-photo { aspect-ratio: 4/3; }

  .stats-band-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
}
