@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --snow: #f4f8f6;
  --white: #ffffff;
  --mist: #e2eee8;
  --ink: #14241c;
  --ink-soft: #3d5348;
  --mute: #6b7f74;
  --line: rgba(20, 36, 28, 0.1);
  --accent: #1f7a5c;
  --accent-deep: #155c45;
  --accent-soft: #d8efe6;
  --wa: #25d366;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(31, 122, 92, 0.12), transparent 55%),
    radial-gradient(800px 480px at 100% 0%, rgba(226, 238, 232, 0.95), transparent 50%),
    linear-gradient(180deg, #e6f0eb 0%, var(--snow) 30%, var(--snow) 100%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
}
body.lock { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }

.wrap { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
.display-xl { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
.display-lg { font-size: clamp(1.9rem, 4vw, 3rem); }
.display-md { font-size: clamp(1.45rem, 2.8vw, 2.1rem); }
.lede { color: var(--ink-soft); max-width: 34rem; font-size: 1.05rem; }
.lede-light { color: rgba(255, 255, 255, 0.88); max-width: 34rem; font-size: 1.05rem; }
.fine { color: var(--mute); font-size: 0.88rem; margin-top: 1rem; }
.section { padding: 4.5rem 0; }
.section-soft { background: rgba(255, 255, 255, 0.55); }
.section-head { margin-bottom: 2rem; max-width: 38rem; }
.mt { margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 0.35rem;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.btn svg,
.social svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}
.social-wa { border-color: rgba(37, 211, 102, 0.35); color: #128c4a; }
.site-foot .social {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
}
.site-foot .social:hover { color: #fff; border-color: #fff; }

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar a:hover { color: #fff; }

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
}
.site-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  flex: 1;
  padding-right: 0.5rem;
}
.brand strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav a:hover,
.nav a.active { color: var(--ink); }
.nav .btn { margin-left: 0.35rem; }
.nav .btn-primary,
.nav .btn-primary:hover,
.nav .btn-primary:focus,
.nav .btn-primary:active {
  color: #fff;
}

.burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 0.35rem;
  z-index: 120;
  position: relative;
}
.burger i {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.burger.on i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.on i:nth-child(2) { opacity: 0; }
.burger.on i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(72svh, 640px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.35) 0%, rgba(20, 36, 28, 0.72) 55%, rgba(20, 36, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 36, 28, 0.55), transparent 60%);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}
.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.hero-dots button.is-active { background: #fff; }
.hero .wrap { position: relative; z-index: 1; width: min(1120px, calc(100% - 2.5rem)); }
.hero-copy { padding: 2rem 0 2.75rem; max-width: 40rem; }
.brand-mark {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd6bf;
  margin-bottom: 0.65rem;
}
.brand-mark em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.hero .display { color: #fff; margin-bottom: 1rem; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 18px 40px rgba(20, 36, 28, 0.08);
}
.trust article {
  background: var(--white);
  padding: 1.35rem 1.25rem;
  text-align: center;
}
.trust b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}
.trust span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mute);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.split-visual {
  border-radius: 0.6rem;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 22px 50px rgba(20, 36, 28, 0.12);
}
.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.split-copy .display { margin: 0.45rem 0 1rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.4rem 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0.55rem 0 0.45rem;
}
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }
.feature-card .num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  border-top: 2px solid var(--accent);
}
.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.service-tile p { color: var(--ink-soft); font-size: 0.92rem; }
.service-tile .num {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process article {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}
.process .num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.process h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.55rem 0 0.4rem;
}
.process p { color: var(--ink-soft); font-size: 0.92rem; }

.reviews-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.5rem 1.35rem;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mute);
}

.loc-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.loc-copy {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0.5rem;
  padding: 1.75rem 1.5rem;
}
.loc-copy .display { color: #fff; margin: 0.4rem 0 0.75rem; }
.loc-copy a { color: #9fd6bf; }
.loc-copy a:hover { color: #fff; }
.loc-map {
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.cta-band {
  background: linear-gradient(135deg, #155c45, #1f7a5c 55%, #2a916d);
  color: #fff;
  padding: 3.5rem 0;
}
.cta-band .display { color: #fff; margin: 0.4rem 0 0.75rem; }
.cta-band .lede-light { margin-bottom: 0.25rem; }

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .display { margin: 0.4rem 0 0.75rem; }

.service-list { display: grid; gap: 0.75rem; }
.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
}
.service-row .num {
  font-weight: 700;
  color: var(--accent);
}
.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.service-row p { color: var(--ink-soft); font-size: 0.92rem; }
.service-row .fee {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.reasons article {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}
.reasons .num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.reasons h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0.5rem 0 0.4rem;
}
.reasons article p { color: var(--ink-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.gallery-grid figure {
  position: relative;
  border-radius: 0.45rem;
  overflow: hidden;
  min-height: 220px;
  grid-column: span 1;
}
.gallery-grid figure:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 460px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
}
.gallery-grid figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.meta-list { display: grid; gap: 1.15rem; margin: 1.5rem 0; }
.meta-list .lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.meta-list a:hover { color: var(--accent-deep); }
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours td:last-child { text-align: right; color: var(--ink-soft); }
.hours tr.today td { color: var(--accent-deep); font-weight: 700; }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(20, 36, 28, 0.06);
}
.form-panel .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.field { margin-bottom: 0.85rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 0.75rem 0.85rem;
  background: var(--snow);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-ok {
  display: none;
  margin-top: 0.85rem;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.9rem;
}
.form-ok.show { display: block; }

.map {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 0.5rem;
  filter: grayscale(0.05) contrast(1.02);
  box-shadow: 0 12px 30px rgba(20, 36, 28, 0.08);
}

.site-foot {
  background: #14241c;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}
.site-foot .brand strong { color: #fff; }
.site-foot .brand span { color: #9fd6bf; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
}
.foot-grid > * { min-width: 0; }
.foot-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd6bf;
  margin-bottom: 0.85rem;
}
.foot-grid a:hover { color: #fff; }
.foot-grid li + li { margin-top: 0.45rem; }
.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.wa-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 1.55rem; height: 1.55rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .split,
  .contact-grid,
  .trust,
  .reasons,
  .feature-grid,
  .reviews-duo,
  .loc-strip,
  .process { grid-template-columns: 1fr; }
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1rem 1.25rem;
  }
  .foot-grid h4 { margin-bottom: 0.65rem; }
  .foot-grid li + li { margin-top: 0.35rem; }
  .trust { margin-top: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 220px;
  }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; min-height: 280px; }
  .burger { display: grid; }
  .nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    width: 100vw;
    height: 100%;
    height: 100dvh;
    max-width: 100%;
    margin: 0;
    z-index: 110;
    box-sizing: border-box;
    background: #f4f8f6;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 1.25rem) 1.5rem max(1.5rem, env(safe-area-inset-bottom));
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transition: left 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .nav.open {
    left: 0;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    display: block;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    color: var(--ink);
  }
  .nav .btn {
    display: flex;
    margin: 1.35rem 0 0;
    width: 100%;
    flex-shrink: 0;
  }
  .nav .btn-primary {
    color: #fff;
    border-bottom: none;
  }
  .service-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.75rem 1rem;
  }
  .service-row .fee {
    grid-column: 2;
    justify-self: start;
  }
  .form-panel .row2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 62svh; }
  .hero-copy { padding: 1.5rem 0 2.25rem; }
  .topbar .wrap { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:nth-child(n) { grid-column: span 1; }
  .site-foot { padding: 2.75rem 0 1.25rem; font-size: 0.92rem; }
  .site-foot .brand strong { font-size: 1.05rem; }
  .site-foot .brand span { font-size: 0.58rem; letter-spacing: 0.1em; }
  .foot-grid { gap: 0.85rem 0.85rem; }
  .foot-end {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .process { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
