:root {
  --olive: #555b3b;
  --olive-dark: #3d422b;
  --olive-soft: #6d7352;
  --sage: #c1c8b8;
  --blush: #e0bdbb;
  --cream: #f7f5f0;
  --white: #ffffff;
  --ink: #26291f;
  --muted: #66695d;
  --line: rgba(85, 91, 59, 0.16);
  --shadow: 0 24px 60px rgba(42, 46, 31, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { width: 100%; max-width: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--olive-dark);
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--blush); }
.section-heading { max-width: 800px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.intro-grid h2,
.credential-copy h2,
.about-copy h2,
.contact-card h2,
.starter-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.035em;
}
.section-heading h2 span,
.intro-grid h2 span,
.credential-copy h2 span,
.about-copy h2 span,
.contact-card h2 span { color: var(--olive); }
.section-heading > p:last-child { max-width: 720px; margin: 22px auto 0; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(247,245,240,.92);
  box-shadow: 0 8px 34px rgba(42,46,31,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { min-width: 220px; height: 72px; display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.brand-wordmark { display: grid; line-height: 1; color: var(--olive-dark); }
.brand-wordmark strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; letter-spacing: -.025em; }
.brand-wordmark small { margin-top: 4px; color: var(--olive); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: .92rem; font-weight: 600; color: var(--ink); position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--blush);
  transition: right .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 18px; background: var(--olive); color: var(--white) !important; border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(85,91,59,.08); padding: 11px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--olive); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 122px 0 68px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f7f5f0 0%, #f3efe8 58%, #e9ece4 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(85,91,59,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to right, black, transparent 62%);
  opacity: .65;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(48px, 5.5vw, 82px);
}
.hero-copy { min-width: 0; max-width: 690px; }
.hero-copy h1 {
  margin: 0;
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.25vw, 4.75rem);
  line-height: .95;
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-copy h1 .hero-line { display: block; color: var(--olive); }
.hero-copy h1 .hero-line-dark { color: var(--ink); margin-bottom: .08em; }
.hero-lead { max-width: 700px; margin: 30px 0 0; color: #54574e; font-size: 1.07rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: .94rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--olive); color: var(--white); box-shadow: 0 12px 30px rgba(85,91,59,.22); }
.btn-primary:hover { background: var(--olive-dark); }
.btn-ghost { color: var(--olive); border: 1px solid rgba(85,91,59,.25); background: rgba(255,255,255,.55); }
.btn-light { color: var(--olive-dark); background: var(--cream); box-shadow: 0 10px 28px rgba(25,29,18,.14); }
.btn-outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.hero-meta { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--muted); font-size: .86rem; font-weight: 600; }
.hero-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--blush); }
.hero-visual {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 20px 24px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: min(92%, 430px);
  aspect-ratio: 4 / 5;
  border-radius: 38px;
  background: rgba(255,255,255,.44);
  transform: translate(28px, 18px);
  box-shadow: inset 0 0 0 1px rgba(85,91,59,.07);
}
.photo-frame {
  position: relative;
  isolation: isolate;
  width: clamp(300px, 25.5vw, 390px);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}
.photo-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px -18px -18px 18px;
  border: 1.5px solid var(--blush);
  border-radius: 34px;
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 30px;
  background: #eeeae2;
  box-shadow: 0 24px 54px rgba(42,46,31,.16);
}
.photo-badge {
  position: absolute;
  left: -42px;
  bottom: 30px;
  max-width: 164px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(42,46,31,.2);
}
.photo-badge strong { display: block; font-family: var(--serif); font-size: 1.55rem; line-height: 1; color: var(--blush); }
.photo-badge span { display: block; margin-top: 5px; font-size: .74rem; line-height: 1.35; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .48; }
.hero-orb-one { width: 270px; height: 270px; background: var(--blush); right: -115px; top: 150px; }
.hero-orb-two { width: 190px; height: 190px; background: var(--sage); left: -95px; bottom: -70px; }

.location-strip { background: var(--olive); color: var(--cream); }
.location-grid { min-height: 74px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; text-align: center; }
.location-grid span { padding: 8px 20px; font-size: .83rem; font-weight: 600; border-right: 1px solid rgba(255,255,255,.18); }
.location-grid span:last-child { border-right: 0; }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: start; }
.intro-copy { color: var(--muted); font-size: 1.04rem; }
.intro-copy p:first-child { margin-top: 0; }
.intro-copy blockquote { margin: 32px 0 0; padding: 22px 26px; border-left: 3px solid var(--blush); background: #faf8f4; color: var(--olive-dark); font-family: var(--serif); font-size: 1.6rem; line-height: 1.2; }

.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.service-card { min-height: 305px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.72); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(42,46,31,.08); border-color: rgba(224,189,187,.8); }
.icon-wrap { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--sage); color: var(--olive-dark); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.service-card:nth-child(3n+2) .icon-wrap { background: var(--blush); }
.service-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 1.65rem; line-height: 1.08; color: var(--olive-dark); }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.services-note { max-width: 780px; margin: 42px auto 0; text-align: center; color: var(--olive); font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }


.specialized-services { margin-top: 78px; padding-top: 68px; border-top: 1px solid var(--line); }
.specialized-heading { max-width: 830px; margin: 0 auto 34px; text-align: center; }
.specialized-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.3rem); line-height: 1.02; color: var(--olive-dark); }
.specialized-heading > p:last-child { max-width: 720px; margin: 18px auto 0; color: var(--muted); }
.specialized-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.service-detail-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 8px 24px rgba(42,46,31,.035); }
.service-detail-card[open] { border-color: rgba(85,91,59,.24); box-shadow: 0 18px 38px rgba(42,46,31,.07); }
.service-detail-card summary { min-height: 90px; display: flex; align-items: center; gap: 15px; padding: 20px 54px 20px 20px; position: relative; cursor: pointer; list-style: none; color: var(--olive-dark); font-family: var(--serif); font-size: 1.36rem; font-weight: 700; line-height: 1.08; }
.service-detail-card summary::-webkit-details-marker { display: none; }
.service-detail-card summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(85,91,59,.08); color: var(--olive); font-family: var(--sans); font-size: 1.15rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.service-detail-card[open] summary::after { content: "–"; background: var(--olive); color: var(--white); }
.detail-icon { flex: 0 0 42px; min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--olive-dark); font-family: var(--sans); font-size: .8rem; font-weight: 800; letter-spacing: -.02em; }
.service-detail-card:nth-child(even) .detail-icon { background: var(--blush); }
.service-detail-body { padding: 2px 24px 26px 77px; color: var(--muted); }
.service-detail-body p { margin: 0 0 15px; }
.service-detail-body h4 { margin: 24px 0 10px; color: var(--olive-dark); font-family: var(--serif); font-size: 1.25rem; }
.service-detail-body ul { margin: 0; padding-left: 20px; columns: 1; }
.service-detail-body li { margin: 7px 0; break-inside: avoid; }
.service-detail-body li::marker { color: var(--olive); }
.service-detail-body strong { color: var(--olive-dark); }
.detail-highlight { margin-top: 20px !important; padding: 14px 16px; border-left: 3px solid var(--blush); background: #faf8f4; color: var(--olive-dark); font-family: var(--serif); font-size: 1.1rem; font-weight: 700; }
.btn-google { color: #333; background: var(--white); border: 1px solid rgba(255,255,255,.42); box-shadow: 0 10px 26px rgba(16,18,12,.16); }
.btn-google:hover { background: #f7f7f7; }
.footer-phone { margin-top: 10px !important; color: var(--white); font-weight: 700; }

.starter-section { padding-top: 30px; }
.starter-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; padding: 64px; border-radius: var(--radius-lg); background: var(--olive); color: var(--cream); box-shadow: var(--shadow); }
.starter-card::after { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(224,189,187,.35); border-radius: 50%; right: -110px; bottom: -120px; }
.starter-card h2 { color: var(--white); }
.starter-card p { color: rgba(255,255,255,.76); }
.starter-card > div:first-child p { max-width: 650px; }
.starter-steps { display: grid; gap: 12px; position: relative; z-index: 2; }
.starter-steps > div { display: flex; align-items: center; gap: 15px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.07); }
.starter-steps span { flex: 0 0 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--blush); color: var(--olive-dark); font-weight: 800; }
.starter-steps p { margin: 0; color: var(--white); font-weight: 600; }

.experience-section { background: var(--cream); }
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 54px; }
.pillar { padding: 24px 20px; border-top: 2px solid var(--olive); background: var(--white); min-height: 250px; }
.pillar:nth-child(even) { border-top-color: var(--blush); }
.pillar > span { font-family: var(--serif); font-weight: 700; color: var(--blush); font-size: 1.35rem; }
.pillar h3 { margin: 24px 0 10px; font-family: var(--serif); font-size: 1.42rem; line-height: 1.05; color: var(--olive-dark); }
.pillar p { margin: 0; color: var(--muted); font-size: .9rem; }

.credential-section { background: var(--white); }
.credential-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: center; }
.credential-visual { min-height: 500px; position: relative; display: grid; place-items: center; border-radius: var(--radius-lg); overflow: hidden; background: var(--olive); }
.credential-visual::before, .credential-visual::after { content: ""; position: absolute; border-radius: 50%; }
.credential-visual::before { width: 360px; height: 360px; top: -190px; right: -90px; background: var(--sage); opacity: .5; }
.credential-visual::after { width: 240px; height: 240px; left: -110px; bottom: -90px; border: 2px solid var(--blush); }
.credential-visual img { position: relative; z-index: 2; width: 270px; }
.credential-kicker { position: absolute; z-index: 3; left: 28px; bottom: 28px; max-width: 240px; color: var(--white); font-family: var(--serif); font-size: 1.45rem; line-height: 1.15; }
.credential-copy p { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--olive); font-weight: 700; }
.text-link span { font-size: 1.2em; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.about-section { background: #f0f2eb; }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
.about-photo { position: relative; max-width: 480px; }
.about-photo > img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: 50% 23%; border-radius: 28px; box-shadow: var(--shadow); }
.about-nameplate { position: absolute; right: -35px; bottom: 34px; padding: 17px 20px; border-radius: 16px; background: var(--white); box-shadow: 0 12px 28px rgba(42,46,31,.13); }
.about-nameplate strong { display: block; font-family: var(--serif); font-size: 1.45rem; color: var(--olive-dark); }
.about-nameplate span { display: block; color: var(--muted); font-size: .78rem; }
.about-role { margin-top: 18px; color: var(--olive); font-weight: 700; }
.credentials-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 26px 0; padding: 0; list-style: none; }
.credentials-list li { position: relative; padding-left: 19px; color: var(--muted); font-size: .93rem; }
.credentials-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 7px; height: 7px; border-radius: 50%; background: var(--blush); }
.quote { margin: 30px 0 0; padding: 28px 30px; border-radius: 18px; background: var(--olive); color: var(--cream); font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; }

.contact-section { background: var(--cream); padding-bottom: 70px; }
.contact-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding: 58px 64px; border-radius: var(--radius-lg); background: var(--olive-dark); color: var(--white); }
.contact-card h2 { font-size: clamp(2.2rem, 4.4vw, 3.9rem); }
.contact-card h2 span { color: var(--blush); }
.contact-card p { max-width: 690px; color: rgba(255,255,255,.76); }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }

.site-footer { padding: 64px 0 26px; background: #303421; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .8fr; gap: 70px; }
.footer-brand img { width: 205px; margin-bottom: 15px; }
.footer-brand p { max-width: 330px; }
.site-footer h3 { margin: 0 0 13px; color: var(--blush); font-family: var(--serif); font-size: 1.28rem; }
.site-footer a { display: block; margin: 5px 0; }
.site-footer a:hover { color: var(--white); }
.site-footer p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 45px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--blush); outline-offset: 3px; }

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .brand { min-width: 190px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr); gap: 38px; }
  .hero-copy h1 { font-size: clamp(3rem, 5.15vw, 4.2rem); }
  .photo-frame { width: min(100%, 350px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .specialized-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .starter-card { gap: 36px; padding: 46px; }
  .about-grid, .credential-grid { gap: 52px; }
}

@media (min-width: 901px) and (max-height: 780px) {
  .hero { min-height: 640px; padding-top: 108px; padding-bottom: 48px; }
  .photo-frame { width: 330px; }
  .hero-copy h1 { font-size: clamp(3rem, 4vw, 4.25rem); }
  .hero-lead { margin-top: 22px; line-height: 1.65; }
  .hero-actions { margin-top: 26px; }
  .hero-meta { margin-top: 20px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 82px; }
  .site-header { background: rgba(247,245,240,.94); backdrop-filter: blur(12px); }
  .nav-wrap { min-height: 78px; }
  .brand { min-width: 0; height: 58px; }
  .brand img { width: 44px; height: 44px; }
  .brand-wordmark strong { font-size: 1.35rem; }
  .brand-wordmark small { font-size: .58rem; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 78px; left: 20px; right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 12px 13px; border-radius: 12px; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding: 118px 0 72px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { max-width: 700px; font-size: clamp(3.25rem, 8.6vw, 4.7rem); }
  .hero-visual { order: 2; padding-top: 4px; }
  .photo-frame { width: min(82vw, 390px); margin-inline: auto; }
  .photo-badge { left: -24px; }
  .location-grid { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .location-grid span { border-right: 0; }
  .section { padding: 84px 0; }
  .intro-grid, .credential-grid, .about-grid, .starter-card, .contact-card { grid-template-columns: 1fr; }
  .intro-grid { gap: 34px; }
  .starter-card { padding: 40px; }
  .credential-grid { gap: 42px; }
  .credential-visual { min-height: 430px; }
  .about-photo { margin-inline: auto; }
  .about-nameplate { right: 18px; }
  .contact-card { padding: 45px; }
  .contact-actions { max-width: 420px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .hero { padding-top: 104px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 12.4vw, 3.9rem); line-height: .96; }
  .hero-copy h1 .hero-line-dark { margin-bottom: .13em; }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-meta { flex-wrap: wrap; }
  .photo-badge { left: 10px; bottom: 22px; }
  .location-grid { grid-template-columns: 1fr; padding: 13px 0; }
  .services-grid, .pillars-grid { grid-template-columns: 1fr; }
  .specialized-services { margin-top: 56px; padding-top: 50px; }
  .service-detail-card summary { min-height: 78px; padding: 17px 48px 17px 17px; font-size: 1.18rem; }
  .detail-icon { flex-basis: 38px; min-width: 38px; height: 38px; }
  .service-detail-body { padding: 0 18px 22px 18px; }
  .service-card { min-height: auto; }
  .starter-card { padding: 32px 24px; border-radius: 24px; }
  .credential-visual { min-height: 380px; }
  .credential-visual img { width: 220px; }
  .credentials-list { grid-template-columns: 1fr; }
  .about-nameplate { position: static; margin: -20px 16px 0; transform: translateY(0); }
  .contact-card { padding: 34px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Google Maps */
.map-section {
  background: var(--white);
  padding-top: 82px;
  padding-bottom: 82px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
}

.map-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.1vw, 3.8rem);
  line-height: 1.02;
  color: var(--olive-dark);
}

.map-copy h2 span {
  color: var(--olive);
}

.map-copy > p:last-of-type {
  max-width: 610px;
  margin: 20px 0 26px;
  color: var(--muted);
}

.map-link {
  width: fit-content;
}

.map-embed {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--sage-light, #eef1eb);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 410px;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .map-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }
}

/* Google Reviews */
.reviews-section {
  background: #f0f2eb;
}

.reviews-summary {
  margin: 46px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(42, 46, 31, .07);
}

.reviews-summary > div {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 16px;
  align-items: center;
}

.reviews-score {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 5rem);
  line-height: .9;
  color: var(--olive-dark);
}

.rating-stars,
.review-stars {
  color: #f4b400;
  letter-spacing: .10em;
}

.reviews-summary span {
  color: var(--muted);
  font-size: .92rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(42, 46, 31, .07);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(42, 46, 31, .10);
  background: #fff;
}

.review-author div {
  min-width: 0;
}

.review-author strong {
  display: block;
  color: var(--olive-dark);
  font-size: .98rem;
}

.review-author span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.review-stars {
  margin-bottom: 15px;
  font-size: .94rem;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: .96rem;
  line-height: 1.68;
}

.reviews-disclaimer {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .reviews-summary {
    align-items: stretch;
    flex-direction: column;
    padding: 25px;
  }

  .reviews-summary .btn {
    width: 100%;
  }

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

  .review-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 23px;
  }

  .reviews-summary > div {
    grid-template-columns: auto 1fr;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float[hidden] {
  display: none;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .google-rating-card,
  .review-card {
    padding: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

