:root {
  --green-950: #0d2e21;
  --green-900: #153f2d;
  --green-800: #1d563b;
  --green-700: #286f4d;
  --gold: #bf8d12;
  --gold-soft: #e8d9ad;
  --cream: #f7f3e9;
  --ivory: #fffdf8;
  --ink: #1d2922;
  --muted: #637068;
  --line: rgba(21, 63, 45, 0.13);
  --shadow: 0 22px 60px rgba(26, 50, 37, 0.12);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--green-950); line-height: 1.05; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3rem, 6.6vw, 6.4rem); letter-spacing: -0.055em; }
h2 { margin-bottom: 20px; font-size: clamp(2.3rem, 4.5vw, 4.2rem); letter-spacing: -0.045em; }
h3 { margin-bottom: 7px; font-size: 1.65rem; }
p { color: var(--muted); }

.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 10px 14px; color: white; background: var(--green-950); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.eyebrow { margin-bottom: 16px; color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .23em; text-transform: uppercase; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--green-800);
  box-shadow: 0 12px 28px rgba(29, 86, 59, .2);
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-700); box-shadow: 0 16px 34px rgba(29, 86, 59, .27); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(191, 141, 18, .45); outline-offset: 3px; }
.button svg { width: 24px; fill: currentColor; }
.button-small { min-height: 46px; padding: 10px 19px; font-size: .92rem; }
.button-light { color: var(--green-950); background: white; box-shadow: none; }
.button-light:hover { color: white; background: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-900); font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; background: rgba(255, 253, 248, .88); backdrop-filter: blur(14px); transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(18, 46, 33, .06); }
.header-inner { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; text-transform: uppercase; }
.brand small { margin-top: 6px; color: var(--green-700); font-size: .66rem; font-weight: 700; letter-spacing: .3em; text-align: center; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { position: relative; font-size: .94rem; font-weight: 650; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; border-radius: 50%; background: var(--cream); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-900); transition: transform .2s ease, opacity .2s ease; }

.hero { overflow: hidden; padding-top: 54px; background: radial-gradient(circle at 15% 22%, rgba(232, 217, 173, .22), transparent 30%), var(--ivory); }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(42px, 7vw, 96px); }
.hero-text { max-width: 610px; margin-bottom: 30px; font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.google-rating { display: flex; align-items: center; gap: 10px; margin-top: 31px; font-size: .92rem; }
.google-rating > span:last-child { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 620px; }
.hero-visual::before { position: absolute; z-index: 0; top: -45px; right: -90px; width: 310px; height: 310px; border: 1px solid rgba(191, 141, 18, .25); border-radius: 50%; content: ""; }
.hero-visual img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; border-radius: 48% 48% 2rem 2rem; object-fit: cover; box-shadow: var(--shadow); }
.hero-note { position: absolute; z-index: 2; right: -20px; bottom: 36px; max-width: 220px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.5); border-radius: 18px; color: white; background: rgba(13, 46, 33, .78); backdrop-filter: blur(10px); font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-style: italic; line-height: 1.25; transform: rotate(-2deg); }

.trust-strip { border-block: 1px solid var(--line); background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { display: flex; min-height: 104px; align-items: center; justify-content: center; gap: 14px; padding: 20px; }
.trust-grid div + div { border-left: 1px solid var(--line); }
.trust-grid span { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.trust-grid strong { font-size: .96rem; }

.section-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 50px; margin-bottom: 42px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.specialty-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 10px 35px rgba(21,63,45,.06); transition: transform .25s ease, box-shadow .25s ease; }
.specialty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.specialty-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.specialty-card div { padding: 22px; }
.specialty-card p { margin-bottom: 0; font-size: .92rem; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 112px); }
.about-image { position: relative; }
.about-image::after { position: absolute; z-index: 0; right: -20px; bottom: -20px; width: 74%; height: 74%; border: 1px solid var(--gold); border-radius: var(--radius-lg); content: ""; }
.about-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
.about-copy p:not(.eyebrow) { max-width: 570px; font-size: 1.04rem; }
.about-copy .text-link { margin-top: 12px; }

.reviews { background: var(--green-950); }
.reviews h2, .reviews .reviews-title strong { color: white; }
.reviews-title { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; text-align: center; }
.reviews-title > div { display: flex; align-items: center; gap: 10px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.07); }
.review-card p { min-height: 78px; margin: 15px 0 18px; color: rgba(255,255,255,.82); }
.review-card strong { color: white; font-size: .9rem; }

.contact-section { padding-block: 70px; }
.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(36px, 6vw, 72px); border-radius: var(--radius-lg); color: white; background: linear-gradient(130deg, var(--green-900), var(--green-700)); box-shadow: var(--shadow); }
.contact-card h2 { max-width: 700px; margin-bottom: 12px; color: white; }
.contact-card p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.75); }

.site-footer { padding: 54px 0 26px; border-top: 1px solid var(--line); background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 55px; height: 55px; }
.footer-grid strong { color: var(--green-950); }
.footer-grid p { margin: 8px 0 0; font-size: .9rem; }
.footer-grid a:not(.brand) { color: var(--green-800); font-weight: 650; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: none; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 50%; color: white; background: #25d366; box-shadow: 0 12px 30px rgba(12,70,40,.3); }
.floating-whatsapp svg { width: 28px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .section { padding: 74px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 86px 0 auto; display: grid; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: var(--ivory); box-shadow: 0 22px 40px rgba(15,45,32,.12); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-text { margin-inline: auto; }
  .hero-actions, .google-rating { justify-content: center; }
  .hero-visual { min-height: 560px; }
  .hero-note { right: 20px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 60px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .header-inner { min-height: 74px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .55rem; }
  .main-nav { top: 74px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .hero { padding-top: 38px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 460px; }
  .hero-visual img { border-radius: 45% 45% 24px 24px; }
  .hero-note { right: 12px; bottom: 18px; max-width: 180px; font-size: 1.05rem; }
  .google-rating { flex-wrap: wrap; }
  .google-rating > span:last-child { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .trust-grid div { min-height: 68px; justify-content: flex-start; padding: 12px 18px; }
  .trust-grid div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .specialty-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .specialty-card div { padding: 15px; }
  .specialty-card h3 { font-size: 1.3rem; }
  .specialty-card p { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { width: calc(100% - 12px); }
  .reviews-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .review-card { min-width: 84%; scroll-snap-align: center; }
  .contact-card { padding: 36px 25px; }
  .contact-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { display: flex; }
}

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