:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f4f1eb;
  --ink: #171917;
  --muted: #626761;
  --line: #e4dfd7;
  --green: #2f6f46;
  --green-dark: #1d3b2a;
  --green-soft: #edf4ef;
  --accent: #7c9a6f;
  --shadow: 0 32px 90px rgba(18, 22, 18, 0.12);
  --radius: 28px;
  --max: 1180px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(228, 223, 215, 0.85);
  backdrop-filter: blur(22px);
}

.brand {
  width: fit-content;
}

.brand img {
  width: 150px;
}

.site-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav a,
.nav-action {
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-action:hover {
  background: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(26px, 3.6vw, 44px) 0;
}

.service-page-hero,
.service-detail,
.service-local,
.service-contact-band,
.service-faq,
.related-services {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.breadcrumb {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "/";
  color: #a8a098;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  color: var(--green-dark);
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(42px, 6vw, 84px) 0 clamp(34px, 5vw, 68px);
}

.service-page-copy {
  max-width: 720px;
}

.service-page-copy h1 {
  max-width: 760px;
}

.service-page-copy p:not(.section-label) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-page-photo {
  height: clamp(320px, 34vw, 500px);
  margin: 0;
}

.service-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(34px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.service-local {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 clamp(34px, 5vw, 68px);
}

.service-local article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.service-local h2 {
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
}

.service-local p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-detail h2,
.service-faq h2,
.related-services h2 {
  max-width: 760px;
}

.service-detail p,
.service-detail li {
  color: var(--muted);
}

.service-detail p {
  margin: 18px 0 0;
  font-size: 1rem;
}

.service-detail ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.care-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(47, 111, 70, 0.18);
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--muted);
  font-size: 0.96rem;
}

.service-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 24px;
  background: var(--green-dark);
  color: #fff;
}

.service-contact-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.service-contact-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.service-contact-actions .button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.52);
}

.service-faq,
.related-services {
  padding: clamp(34px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.related-grid a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.related-grid a:hover {
  transform: translateY(-3px);
  border-color: #d5cdc2;
  box-shadow: 0 20px 48px rgba(18, 22, 18, 0.08);
}

.related-grid h3 {
  font-size: 1.12rem;
}

.related-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-hero,
.blog-index,
.article-shell,
.article-related {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.blog-hero {
  padding: clamp(42px, 6vw, 84px) 0 clamp(26px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}

.blog-hero h1 {
  max-width: 860px;
}

.blog-hero p:not(.section-label) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(34px, 5vw, 68px) 0;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #d5cdc2;
  box-shadow: 0 20px 48px rgba(18, 22, 18, 0.08);
}

.blog-card span,
.article-meta {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 18px;
  font-size: clamp(1.22rem, 1.6vw, 1.58rem);
}

.blog-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.blog-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-size: 0.92rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(34px, 5vw, 72px) 0;
}

.article-content {
  min-width: 0;
}

.article-content h1 {
  max-width: 820px;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 1.9vw, 2.1rem);
}

.article-content h3 {
  margin-top: 30px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.03rem;
  overflow-wrap: normal;
}

.article-content p {
  margin: 18px 0 0;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.article-content a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.article-intro {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.article-callout {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(47, 111, 70, 0.18);
  border-radius: 20px;
  background: var(--green-soft);
}

.article-callout p {
  margin: 0;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.article-sidebar section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.article-sidebar h2 {
  font-size: 1rem;
}

.article-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.article-sidebar a {
  color: var(--ink);
  font-weight: 750;
}

.article-sidebar a:hover {
  color: var(--green);
}

.article-references {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-references h2 {
  margin-top: 0;
}

.article-related {
  padding: clamp(34px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.hero-copy {
  max-width: 640px;
  min-width: 0;
}

.section-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.45rem, 3.25vw, 3.9rem);
  font-weight: 830;
}

h2 {
  font-size: clamp(1.7rem, 2.25vw, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  font-weight: 780;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--green);
  color: #fff;
}

.button-dark:hover {
  background: var(--green-dark);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: #c8c0b6;
  background: var(--surface);
}

.button-light {
  background: var(--green);
  color: #fff;
}

.hero-photo {
  position: relative;
  min-width: 0;
  height: clamp(360px, 34vw, 500px);
  min-height: 0;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-photo::after,
.statement-photo::after,
.about-photo::after {
  content: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 4px;
  font-size: 1.03rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.quiet-section,
.services,
.local-seo,
.process,
.faq {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 56px) 0;
}

.center-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.center-copy p:last-child {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.image-statement,
.about,
.contact,
.relationship,
.location {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.image-statement,
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(34px, 4vw, 56px) 0;
}

.statement-photo,
.about-photo {
  position: relative;
  margin: 0;
  height: clamp(360px, 38vw, 500px);
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.statement-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center bottom;
}

.about-photo img {
  position: static;
  inset: auto;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 24px;
}

.statement-copy {
  max-width: 620px;
}

.statement-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.statement-copy li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  min-width: 0;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.local-seo {
  border-top: 1px solid var(--line);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.local-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--green-soft);
}

.local-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-grid article {
  min-height: 0;
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: #d5cdc2;
  box-shadow: 0 24px 60px rgba(18, 22, 18, 0.08);
}

.service-grid span,
.process-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-grid h3 {
  margin-top: 0;
}

.service-grid p,
.process-steps p,
.about-copy p,
.relationship p,
.contact-action p,
.faq-list p {
  color: var(--muted);
}

.service-grid p {
  margin: 16px 0 0;
}

.service-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.92rem;
}

.service-link:hover {
  color: var(--green-dark);
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-steps article {
  min-height: 0;
  display: block;
  padding: 28px;
  background: var(--surface-soft);
}

.process-steps h3 {
  margin-top: 0;
}

.process-steps p {
  margin: 16px 0 0;
}

.relationship {
  max-width: 980px;
  padding: clamp(34px, 4vw, 58px) 0;
  text-align: center;
}

.relationship p:last-child {
  max-width: 680px;
  margin: 28px auto 0;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.about {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.about-copy {
  max-width: 640px;
}

.about-copy p:not(.section-label) {
  margin: 18px 0 0;
  font-size: 1rem;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 4vw, 56px) 0;
  border-top: 1px solid var(--line);
}

.location-copy p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-lines a,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.contact-lines a:first-child,
.phone-link {
  background: var(--surface-soft);
  color: var(--ink);
}

.contact-lines a:last-child {
  background: var(--green);
  color: #fff;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 430px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 28px;
  background: var(--green-dark);
  color: #fff;
}

.contact .section-label,
.contact-action p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-action p {
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.contact-action .phone-link {
  margin: 0 0 14px;
}

.faq {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 26px 54px 26px 0;
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  font-weight: 760;
  letter-spacing: -0.025em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--green);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

details[open] summary::after {
  content: "-";
  background: var(--green);
  color: #fff;
}

.faq-list p {
  max-width: 760px;
  margin: -8px 0 28px;
  font-size: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 52px rgba(29, 59, 42, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(260px, auto);
  gap: 24px;
  align-items: start;
  padding: 34px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 170px 1fr;
    height: auto;
    min-height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .nav-action {
    display: none;
  }

  .hero,
  .breadcrumb,
  .service-page-hero,
  .service-detail,
  .service-contact-band,
  .image-statement,
  .about,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-photo {
    height: 360px;
    min-height: 0;
  }

  .proof-strip,
  .service-grid,
  .service-local,
  .related-grid,
  .blog-index,
  .local-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .statement-photo,
  .about-photo {
    height: 360px;
    min-height: 0;
  }

  .service-grid article,
  .process-steps article {
    min-height: 0;
  }

  .service-grid h3,
  .process-steps h3 {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand img {
    width: 138px;
  }

  .site-nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: visible;
    padding-bottom: 2px;
    font-size: 0.78rem;
    white-space: normal;
  }

  .hero,
  .blog-hero,
  .blog-index,
  .article-shell,
  .article-related,
  .service-page-hero,
  .service-detail,
  .service-local,
  .service-contact-band,
  .service-faq,
  .related-services,
  .proof-strip,
  .quiet-section,
  .image-statement,
  .services,
  .local-seo,
  .process,
  .relationship,
  .about,
  .location,
  .contact,
  .faq {
    width: min(calc(100vw - 32px), var(--max));
  }

  .hero {
    gap: 24px;
    padding: 28px 0 0;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-content,
  .article-sidebar,
  .article-related {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .article-content p,
  .article-content li {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .article-content h1 {
    font-size: clamp(1.42rem, 5.2vw, 1.82rem);
    overflow-wrap: anywhere;
  }

  .article-content h2 {
    font-size: clamp(1.25rem, 5vw, 1.62rem);
    overflow-wrap: anywhere;
  }

  .article-sidebar {
    position: static;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.58rem, 6vw, 1.95rem);
    letter-spacing: -0.018em;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .hero-text {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .service-page-actions {
    display: grid;
  }

  .service-contact-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-photo,
  .service-page-photo {
    width: 100%;
    height: 220px;
    margin-left: 0;
    border-radius: 0;
  }

  .proof-strip {
    margin-top: 0;
  }

  .proof-strip div {
    padding: 20px 0;
  }

  .quiet-section,
  .services,
  .local-seo,
  .process,
  .faq {
    padding: 42px 0;
  }

  .image-statement,
  .about {
    padding: 38px 0;
  }

  .statement-photo,
  .about-photo {
    height: 260px;
    min-height: 0;
    border-radius: 0;
  }

  .about-photo {
    border-radius: 18px;
  }

  .location {
    padding: 38px 0;
  }

  .contact-lines,
  .contact-lines a,
  .phone-link {
    width: 100%;
  }

  .map-card {
    border-radius: 18px;
  }

  .map-card iframe {
    height: 320px;
  }

  .service-grid article {
    min-height: 0;
    padding: 22px;
  }

  .process-steps article {
    min-height: 0;
    padding: 22px;
  }

  .relationship {
    padding: 42px 0;
    text-align: left;
  }

  .relationship p:last-child {
    margin-left: 0;
  }

  .contact {
    width: 100%;
    border-radius: 0;
    padding: 42px 24px;
  }

  summary {
    padding-right: 46px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-photo {
    height: 220px;
  }

  .section-label {
    font-size: 0.76rem;
  }
}
