:root {
  --ink: #102a34;
  --ink-soft: #274650;
  --paper: #f4efe6;
  --paper-deep: #e9e0d2;
  --white: #fffdf9;
  --terracotta: #d86138;
  --terracotta-dark: #a83d20;
  --sun: #f0c765;
  --sage: #4e796a;
  --line: rgba(16, 42, 52, 0.15);
  --shadow: 0 24px 70px rgba(16, 42, 52, 0.12);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 42px;
  --wrap: min(1180px, calc(100% - 40px));
  --font-body: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
}

h3 {
  font-size: 1.25rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.15rem);
  max-width: 13ch;
  margin-bottom: 0.28em;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  margin-bottom: 0.45em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 10vw, 132px);
}

.section--compact {
  padding-block: clamp(56px, 7vw, 88px);
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--ink .eyebrow,
.page-hero .eyebrow,
.zone-hero .eyebrow {
  color: var(--sun);
}

.lead {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.section--ink .lead,
.page-hero .lead,
.zone-hero .lead {
  color: rgba(255, 253, 249, 0.82);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 42px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.section--ink .section-heading p {
  color: rgba(255, 253, 249, 0.72);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 42;
  color: rgba(255, 253, 249, 0.86);
  background: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 37px;
}

.topbar__inner p {
  margin: 0;
}

.topbar a {
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 42, 52, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__copy small {
  margin-top: 6px;
  color: var(--terracotta-dark);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  margin-left: auto;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav > a,
.nav-dropdown > summary {
  padding: 11px 10px;
  color: var(--ink);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover {
  color: var(--terracotta-dark);
  background: var(--paper);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  display: inline-block;
  margin-left: 6px;
  content: "⌄";
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 290px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown__panel::before {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  height: 15px;
  content: "";
}

.nav-dropdown__panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
}

.nav-dropdown__panel a::after {
  color: var(--terracotta);
  content: "→";
}

.nav-dropdown__panel a:hover {
  background: var(--paper);
}

.nav-dropdown__all {
  margin-top: 7px;
  color: var(--terracotta-dark);
  border-top: 1px solid var(--line);
}

.header-call {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(216, 97, 56, 0.22);
  transition: background 160ms ease, transform 160ms ease;
}

.header-call:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.btn::after {
  content: "→";
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(168, 61, 32, 0.22);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
}

.btn--secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 42, 52, 0.32);
}

.btn--secondary:hover {
  background: var(--paper);
  border-color: var(--ink);
}

.section--ink .btn--secondary,
.page-hero .btn--secondary,
.zone-hero .btn--secondary {
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.38);
}

.section--ink .btn--secondary:hover,
.page-hero .btn--secondary:hover,
.zone-hero .btn--secondary:hover {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 92px) clamp(82px, 9vw, 126px);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: -210px;
  left: -120px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(16, 42, 52, 0.1);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero__copy {
  padding-block: 24px;
}

.hero__copy .lead {
  max-width: 57ch;
  margin-bottom: 30px;
}

.hero__title-accent {
  position: relative;
  display: inline-block;
  color: var(--terracotta-dark);
  font-style: italic;
}

.hero__title-accent::after {
  position: absolute;
  right: 0;
  bottom: 0.05em;
  left: 0;
  z-index: -1;
  height: 0.17em;
  content: "";
  background: var(--sun);
  transform: rotate(-1deg);
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__notes li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
}

.hero__notes li::before {
  color: var(--sage);
  content: "✓";
  font-weight: 900;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media::before {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 70%;
  height: 70%;
  content: "";
  background: var(--sun);
  border-radius: 32px;
  transform: rotate(3deg);
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 140px 28px 28px 28px;
  box-shadow: var(--shadow);
}

.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(16, 42, 52, 0.76);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(16, 42, 52, 0.09);
}

.trust-strip__item {
  padding: 24px 28px;
}

.trust-strip__item + .trust-strip__item {
  border-left: 1px solid var(--line);
}

.trust-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
}

.trust-strip__item span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 650;
}

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

.service-card,
.zone-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 335px;
  padding: 30px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(216, 97, 56, 0.5);
  box-shadow: 0 18px 48px rgba(16, 42, 52, 0.1);
  transform: translateY(-5px);
}

.service-card__number {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
}

.service-card h3 {
  max-width: 12ch;
  margin: 42px 0 16px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-card a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.truth-card {
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius-lg);
}

.truth-card--yes {
  color: var(--white);
  background: var(--ink);
}

.truth-card--no {
  background: #eadfd4;
  border: 1px solid rgba(168, 61, 32, 0.15);
}

.truth-card__label {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.truth-card--yes .truth-card__label {
  color: var(--ink);
  background: var(--sun);
}

.truth-card--no .truth-card__label {
  color: var(--white);
  background: var(--terracotta-dark);
}

.truth-card h3 {
  max-width: 16ch;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--terracotta);
  content: "✓";
  font-weight: 900;
}

.truth-card--yes .check-list li::before {
  color: var(--sun);
}

.truth-card--no .plain-list li::before {
  content: "×";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 22px 34px 22px 0;
  counter-increment: process;
}

.process-step + .process-step {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.process-step::before {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 50%;
  content: "0" counter(process);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-step h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.process-step p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
  margin: 0;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px 100px 28px 28px;
  box-shadow: var(--shadow);
}

.split__media::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 70%;
  height: 65%;
  content: "";
  background: var(--sun);
  border-radius: 25px;
}

.split__copy h2 {
  max-width: 13ch;
}

.split__copy .lead {
  margin-bottom: 28px;
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.factor-list li {
  padding: 12px 14px;
  background: rgba(255, 253, 249, 0.65);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.zone-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(255, 253, 249, 0.07);
  border-color: rgba(255, 253, 249, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.zone-card:hover {
  background: rgba(255, 253, 249, 0.13);
  transform: translateY(-4px);
}

.zone-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.zone-card__tag {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zone-card__count {
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.74rem;
  font-weight: 750;
}

.zone-card h3 {
  margin: 38px 0 10px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.zone-card p {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.88rem;
}

.zone-card .text-link {
  align-self: flex-start;
  color: var(--sun);
}

.zone-card a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.zone-card__arrow {
  align-self: flex-end;
  color: var(--sun);
  font-size: 1.4rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 24px;
}

.gallery figure:first-child {
  border-radius: 90px 24px 24px 24px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.025);
}

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(16, 42, 52, 0.76);
  border-radius: 13px;
  font-size: 0.73rem;
  backdrop-filter: blur(8px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 5px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--terracotta-dark);
  background: var(--paper);
  border-radius: 50%;
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list__answer {
  max-width: 75ch;
  padding: 0 52px 27px 0;
  color: var(--ink-soft);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background: var(--terracotta-dark);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  content: "";
  border: 45px solid rgba(240, 199, 101, 0.18);
  border-radius: 50%;
}

.cta-panel__copy {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 16ch;
  margin-bottom: 18px;
}

.cta-panel p {
  max-width: 62ch;
  color: rgba(255, 253, 249, 0.82);
}

.cta-panel .btn {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: var(--sun);
}

.cta-panel .btn:hover {
  background: var(--white);
}

.breadcrumbs {
  padding-block: 18px;
  color: var(--ink-soft);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 650;
}

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

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: rgba(16, 42, 52, 0.4);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--terracotta-dark);
}

.page-hero,
.zone-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero {
  padding-block: clamp(72px, 10vw, 126px);
}

.page-hero::after,
.zone-hero::after {
  position: absolute;
  top: -190px;
  right: -130px;
  width: 520px;
  height: 520px;
  content: "";
  border: 68px solid rgba(240, 199, 101, 0.1);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1,
.zone-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-hero .lead,
.zone-hero .lead {
  margin-bottom: 30px;
}

.zone-hero {
  padding-block: clamp(66px, 9vw, 114px);
}

.zone-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.zone-hero__meta {
  padding: 28px;
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.zone-hero__meta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.zone-hero__meta span {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(44px, 8vw, 96px);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 1.6em;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.prose h3 {
  margin-top: 2em;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--terracotta-dark);
  font-weight: 750;
}

.prose-callout {
  margin-block: 38px;
  padding: 28px;
  background: var(--paper);
  border-left: 5px solid var(--terracotta);
  border-radius: 0 20px 20px 0;
}

.sidebar-card {
  position: sticky;
  top: 116px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: 24px;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.sidebar-card p {
  color: rgba(255, 253, 249, 0.73);
  font-size: 0.9rem;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 18px;
}

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

.chip-list li,
.chip-list a {
  display: inline-flex;
}

.chip-list a,
.chip-list span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.chip-list a:hover {
  color: var(--white);
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.barrios-panel {
  margin-top: 38px;
  padding: 34px;
  background: var(--paper);
  border-radius: 24px;
}

.barrios-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.barrios-panel p {
  color: var(--ink-soft);
}

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

.mini-service {
  position: relative;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mini-service__icon {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--terracotta-dark);
  background: var(--paper);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.mini-service h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.mini-service p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.mini-service a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.region-group + .region-group {
  margin-top: 64px;
}

.region-group__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.region-group__heading h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.region-group__heading span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

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

.all-zone-card {
  position: relative;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.all-zone-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
}

.all-zone-card--priority {
  background: var(--paper);
  border-color: rgba(216, 97, 56, 0.35);
}

.all-zone-card h3 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.all-zone-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.all-zone-card a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-detail-card {
  padding: 27px;
  background: var(--paper);
  border-radius: 20px;
}

.service-detail-card h2,
.service-detail-card h3 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.phone-card {
  padding: clamp(34px, 6vw, 65px);
  color: var(--white);
  background: var(--terracotta-dark);
  border-radius: var(--radius-lg);
}

.phone-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-card a {
  display: inline-block;
  color: var(--sun);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.phone-card p {
  max-width: 45ch;
  margin-top: 26px;
  color: rgba(255, 253, 249, 0.78);
}

.prepare-card {
  padding: clamp(34px, 6vw, 58px);
  background: var(--paper);
  border-radius: var(--radius-lg);
}

.prepare-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.2rem);
}

.section--form {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section--form::before {
  position: absolute;
  top: -240px;
  left: -170px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 50%;
}

.contact-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.contact-form-intro {
  padding-top: 28px;
}

.contact-form-intro .eyebrow {
  color: var(--sun);
}

.contact-form-intro h2 {
  max-width: 12ch;
  color: var(--white);
}

.contact-form-intro .lead,
.contact-form-intro .check-list {
  color: rgba(255, 253, 249, 0.78);
}

.contact-form-intro .check-list li::before {
  color: var(--sun);
}

.contact-form-intro__phone {
  margin-top: 30px;
  color: rgba(255, 253, 249, 0.72);
}

.contact-form-intro__phone a {
  color: var(--sun);
  font-weight: 850;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 19px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.form-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.contact-form > label:not(.form-legal) {
  font-size: 0.82rem;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #c9d1d2;
  border-radius: 12px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(187, 88, 54, 0.14);
}

.form-field small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.form-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-legal input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--terracotta-dark);
}

.form-legal a {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.form-field--antispam {
  max-width: 230px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 750;
}

.form-status.is-error {
  color: #a72e1d;
}

.form-status.is-success {
  color: #27633a;
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-noscript {
  margin: 0;
  padding: 12px 14px;
  color: #6e3900;
  background: #fff1cd;
  border-radius: 10px;
  font-size: 0.78rem;
}

.legal-notice {
  padding: 20px 24px;
  background: #fff1cd;
  border: 1px solid #e4bf60;
  border-radius: 14px;
  color: #58430d;
}

.site-footer {
  padding-block: 68px 110px;
  color: rgba(255, 253, 249, 0.78);
  background: #0a2028;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 0.8fr;
  gap: 46px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand__copy small {
  color: var(--sun);
}

.site-footer__intro {
  max-width: 34ch;
  margin-top: 22px;
  font-size: 0.87rem;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sun);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.13);
  font-size: 0.73rem;
}

.mobile-call {
  position: fixed;
  z-index: 60;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  color: var(--white);
  background: var(--terracotta);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(16, 42, 52, 0.3);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
}

.reveal-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  :root {
    --wrap: min(100% - 34px, 960px);
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    padding-inline: 7px;
    font-size: 0.81rem;
  }

  .header-call {
    padding-inline: 13px;
    font-size: 0.8rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 48px;
  }

  .hero__media img {
    min-height: 540px;
  }

  .cards,
  .zone-grid,
  .all-zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 74px;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner p:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
    justify-content: stretch;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    display: block;
    padding: 12px;
    font-size: 0.94rem;
  }

  .nav-dropdown__panel {
    position: static;
    width: auto;
    margin: 4px 0 8px;
    padding: 6px;
    background: var(--paper);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    transform: none;
  }

  .header-call {
    display: none;
  }

  .mobile-call {
    display: flex;
  }

  .hero__grid,
  .split,
  .zone-hero__grid,
  .content-grid,
  .contact-grid,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    gap: 36px;
  }

  .hero__grid {
    gap: 56px;
  }

  .hero__media {
    max-width: 700px;
  }

  .hero__media img {
    min-height: 500px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading h2 {
    max-width: 18ch;
  }

  .split--reverse .split__media {
    order: initial;
  }

  .zone-hero__grid {
    gap: 38px;
  }

  .zone-hero__meta {
    max-width: 360px;
  }

  .sidebar-card {
    position: static;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure:first-child {
    grid-column: span 2;
  }

  .gallery img {
    min-height: 350px;
  }

  .service-detail-grid,
  .service-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__copy strong {
    font-size: 1.14rem;
  }

  .brand__copy small {
    font-size: 0.51rem;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__media img {
    min-height: 390px;
    border-radius: 76px 20px 20px 20px;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    padding: 18px 22px;
  }

  .trust-strip__item + .trust-strip__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cards,
  .zone-grid,
  .all-zones-grid,
  .truth-grid,
  .service-detail-grid,
  .service-list-grid,
  .factor-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

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

  .process-step {
    padding: 22px 0 28px;
  }

  .process-step + .process-step {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .gallery figure:first-child {
    grid-column: auto;
  }

  .gallery img {
    min-height: 310px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 28px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .barrios-panel {
    padding: 25px;
  }

  .region-group__heading {
    display: block;
  }

  .region-group__heading span {
    display: block;
    margin: -10px 0 18px;
  }

  .phone-card a {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .form-field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}
