:root {
  --ink: #171717;
  --ink-soft: #2a2a2a;
  --paper: #f7f7f5;
  --white: #ffffff;
  --red: #c62b2b;
  --red-dark: #9e2020;
  --yellow: #ffd84d;
  --yellow-dark: #e7bd22;
  --green: #087b62;
  --green-dark: #075d4b;
  --blue: #1f5b8f;
  --muted: #636363;
  --line: #deded9;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
textarea {
  font: inherit;
}

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

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 2;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.08;
}

h1 {
  font-size: 58px;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

p {
  margin-top: 0;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.urgency-bar {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
}

.urgency-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.urgency-inner strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 15px;
  font-weight: 750;
}

.desktop-nav a {
  padding-block: 8px;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-link {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.header-call,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.header-call {
  padding: 11px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
}

.header-call:hover,
.button-call:hover {
  background: var(--red-dark);
}

.button {
  padding: 14px 19px;
}

.button-call {
  background: var(--red);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

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

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

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}

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

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

.hero,
.internal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero {
  min-height: 690px;
}

.internal-hero {
  min-height: 480px;
}

.hero > img,
.internal-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-overlay,
.internal-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.68);
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.72);
}

.hero-content,
.internal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero-content {
  min-height: 690px;
  padding-block: 70px 78px;
}

.internal-content {
  min-height: 480px;
  padding-block: 60px;
}

.hero-content > *,
.internal-content > * {
  max-width: 830px;
}

.hero-content h1,
.internal-content h1,
.hero-content h2,
.internal-content h2 {
  color: var(--white);
}

.hero-content > p:not(.eyebrow),
.internal-content > p:not(.eyebrow) {
  max-width: 720px;
  color: #f1f1ef;
  font-size: 20px;
}

.internal-content h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 48px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.internal-hero .eyebrow,
.evere-band .eyebrow,
.keyword-opportunity .eyebrow {
  color: var(--yellow);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 760;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
  min-height: 126px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-content: center;
  column-gap: 10px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  grid-row: 1 / span 2;
  margin-top: 4px;
  color: var(--red);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  line-height: 1.25;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 90px 0;
}

.section:last-child {
  padding-bottom: 90px;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 870px;
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 6px;
  background: #f9e8e8;
  color: var(--red);
}

.service-card p {
  color: var(--muted);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.service-card > a svg {
  width: 17px;
  height: 17px;
}

.section-actions {
  margin-top: 28px;
}

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

.message-band {
  margin-top: 90px;
  padding-block: 54px;
  background: var(--green);
  color: var(--white);
}

.message-band h2,
.message-band .eyebrow {
  color: var(--white);
}

.message-band .eyebrow {
  opacity: 0.76;
}

.final-message {
  margin-top: 90px;
}

.message-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 850;
}

.message-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.message-row textarea {
  width: 100%;
  min-height: 62px;
  max-height: 180px;
  resize: vertical;
  padding: 15px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.message-row textarea:focus {
  border-color: var(--yellow);
  outline: none;
}

.message-row button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.message-form small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.price-band {
  margin-top: 90px;
  padding-block: 78px;
  background: var(--yellow);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 70px;
  align-items: center;
}

.price-figure {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 7px;
}

.price-figure span,
.price-figure strong,
.price-figure small {
  display: block;
}

.price-figure span {
  font-size: 18px;
  font-weight: 800;
}

.price-figure strong {
  margin-block: 3px 8px;
  font-size: 82px;
  line-height: 1;
}

.price-figure small {
  max-width: 240px;
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.price-band .check-list li::before {
  color: var(--ink);
}

.community-section {
  padding-bottom: 4px;
}

.commune-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.commune-grid.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commune-link {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
}

.commune-link span {
  font-weight: 850;
  line-height: 1.25;
}

.commune-link small {
  color: var(--muted);
}

.commune-link svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--red);
}

.commune-link:hover {
  border-color: var(--red);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 500px;
  gap: 12px;
}

.gallery figure,
.work-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: var(--ink);
}

.gallery img,
.work-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption,
.work-figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 24px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
}

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

.social-proof strong {
  font-size: 20px;
}

.social-proof span {
  color: #dbe9f5;
  font-size: 14px;
}

.evere-band,
.keyword-opportunity {
  margin-top: 90px;
  padding-block: 58px;
  background: var(--ink);
  color: var(--white);
}

.evere-band h2,
.keyword-opportunity h2 {
  color: var(--white);
}

.evere-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.evere-layout > div {
  max-width: 780px;
}

.evere-layout p:last-child {
  margin-bottom: 0;
  color: #d7d7d3;
}

.faq-section {
  padding-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.breadcrumb {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 730;
  text-decoration: none;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  gap: 52px;
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose > p,
.prose li {
  color: #4f4f4f;
}

.prose h3 {
  margin-top: 34px;
}

.info-panel {
  position: sticky;
  top: 112px;
  padding: 29px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.info-panel strong {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.1;
}

.info-panel p {
  color: #d7d7d3;
}

.info-panel .button {
  width: 100%;
  margin-top: 8px;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.process-grid,
.three-facts {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.process-grid li {
  min-height: 220px;
  padding: 23px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  counter-increment: process;
}

.process-grid li::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.process-grid strong,
.process-grid span {
  display: block;
}

.process-grid strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.process-grid span {
  color: #d7d7d3;
  font-size: 15px;
}

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

.price-page-grid .service-card {
  min-height: 250px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

.three-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.three-facts > div {
  padding: 23px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.three-facts strong,
.three-facts span {
  display: block;
}

.three-facts strong {
  margin-bottom: 6px;
  font-size: 19px;
}

.three-facts span {
  color: var(--muted);
  font-size: 15px;
}

.district-list {
  columns: 4 230px;
  gap: 34px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  list-style-position: inside;
}

.district-list span {
  display: block;
  break-inside: avoid;
  padding-block: 4px;
  color: #484848;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.source-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.source-note a {
  color: var(--blue);
}

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

.neighborhood-tags li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  font-size: 14px;
  font-weight: 750;
}

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

.service-links a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
}

.service-links a:hover {
  border-color: var(--red);
}

.service-links a > svg:first-child {
  color: var(--red);
}

.work-figure {
  min-height: 560px;
}

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

.contact-method {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  text-decoration: none;
}

.contact-method > svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method small {
  margin-top: 4px;
  color: var(--muted);
}

.legal-hero {
  padding-block: 76px;
  background: var(--ink);
  color: var(--white);
}

.legal-hero h1 {
  margin: 0;
  color: var(--white);
}

.legal-copy {
  padding-block: 76px 120px;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 28px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding-block: 70px;
  text-align: center;
}

.not-found .shell {
  max-width: 720px;
}

.not-found strong {
  display: block;
  color: var(--red);
  font-size: 84px;
  line-height: 1;
}

.not-found h1 {
  margin-block: 16px;
}

.site-footer {
  padding-block: 66px 115px;
  background: #111111;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 56px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid p {
  max-width: 480px;
  margin-bottom: 0;
  color: #bfbfbb;
}

.footer-grid a {
  color: #d6d6d2;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-brand {
  color: var(--yellow);
  font-size: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid #363636;
  color: #969691;
  font-size: 13px;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  width: min(430px, calc(100% - 36px));
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.sticky-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.sticky-call {
  background: var(--red);
}

.sticky-whatsapp {
  background: var(--green);
}

.cookie-banner {
  position: fixed;
  top: 132px;
  right: 18px;
  z-index: 65;
  width: min(480px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid #444;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin-bottom: 14px;
  color: #ddddda;
  font-size: 14px;
}

.cookie-banner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid #616161;
  border-radius: 5px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-banner .cookie-accept {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.attention {
  animation: call-attention 7s ease-in-out infinite;
  transform-origin: center;
}

@keyframes call-attention {
  0%,
  82%,
  100% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(-3px);
  }
  88% {
    transform: translateX(3px);
  }
  91% {
    transform: translateX(-2px);
  }
  94% {
    transform: translateX(2px);
  }
  97% {
    transform: translateX(0);
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 48px;
  }

  .desktop-nav {
    display: none;
  }

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

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 390px;
  }

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

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 0.8fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .urgency-inner {
    min-height: 46px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding-block: 5px;
    line-height: 1.35;
  }

  .urgency-inner span:last-child {
    padding-left: 17px;
    opacity: 0.9;
  }

  .header-inner {
    min-height: 68px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .header-call span {
    display: none;
  }

  .language-link {
    min-width: 40px;
    min-height: 40px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .internal-hero,
  .internal-content {
    min-height: 450px;
  }

  .hero-content {
    padding-block: 52px 58px;
  }

  .internal-content {
    padding-block: 50px;
  }

  .hero-content > p:not(.eyebrow),
  .internal-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .internal-content h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 108px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .section {
    padding-top: 66px;
  }

  .section:last-child {
    padding-bottom: 66px;
  }

  .message-band,
  .price-band,
  .evere-band,
  .keyword-opportunity,
  .final-message {
    margin-top: 66px;
  }

  .message-band {
    padding-block: 42px;
  }

  .message-row,
  .price-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .message-row button {
    width: 100%;
  }

  .price-band {
    padding-block: 58px;
  }

  .price-layout {
    gap: 36px;
  }

  .price-figure {
    min-height: 250px;
  }

  .price-figure strong {
    font-size: 66px;
  }

  .service-grid,
  .commune-grid,
  .commune-grid.compact-grid,
  .price-page-grid,
  .three-facts,
  .contact-grid,
  .service-links {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-icon {
    margin-bottom: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 390px;
  }

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

  .social-proof,
  .evere-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .evere-layout .button {
    width: 100%;
  }

  .two-column {
    gap: 28px;
  }

  .info-panel {
    position: static;
  }

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

  .process-grid li {
    min-height: 180px;
  }

  .work-figure {
    min-height: 470px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-block: 58px 40px;
  }

  .sticky-actions {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .cookie-banner {
    top: auto;
    right: 10px;
    bottom: 76px;
    left: 10px;
    width: auto;
  }

  .not-found strong {
    font-size: 68px;
  }
}

@media (max-width: 430px) {
  h1,
  .internal-content h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 28px;
  }

  .brand strong {
    max-width: 135px;
    font-size: 13px;
  }

  .trust-grid strong {
    font-size: 14px;
  }

  .trust-grid span {
    font-size: 12px;
  }

  .gallery {
    grid-auto-rows: 330px;
  }

  .district-list {
    column-count: 1;
    column-width: auto;
  }
}

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

  .attention {
    animation: none;
  }
}
