:root {
  --ink: #0b0c0e;
  --ink-soft: #15171a;
  --paper: #f3f1ec;
  --white: #fff;
  --muted: #a9aaac;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d71920;
  --red-dark: #a50d12;
  --green: #23b95e;
  --container: 1200px;
  --header-height: 82px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.emergency-bar {
  position: relative;
  z-index: 60;
  height: 36px;
  color: var(--white);
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.emergency-bar__inner > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.emergency-bar a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 36px;
  left: 0;
  right: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(11, 12, 14, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--red);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.28rem;
  font-style: italic;
  letter-spacing: -0.02em;
  transform: skew(-6deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__text strong {
  font-size: 0.9rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--red);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: calc(var(--header-height) + 78px) 0 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.97) 0%, rgba(4, 5, 6, 0.84) 43%, rgba(4, 5, 6, 0.32) 76%, rgba(4, 5, 6, 0.55) 100%),
    linear-gradient(0deg, rgba(4, 5, 6, 0.72) 0%, transparent 36%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 0;
  width: 1px;
  height: 58%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.22));
  content: "";
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: url("assets/fachada-sm.jpg") center / cover no-repeat;
  background-image: image-set(
    url("assets/fachada-sm.webp") type("image/webp"),
    url("assets/fachada-sm.jpg") type("image/jpeg")
  );
  filter: saturate(0.6) contrast(1.06);
  transform: scale(1.015);
  animation: hero-in 1.3s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: 8%;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  color: #e0e0e0;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--red);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(4rem, 7.4vw, 7.1rem);
}

.hero h1 em,
.section h2 em,
.final-cta h2 em {
  color: var(--red);
  font-style: normal;
}

.hero__copy > p {
  max-width: 640px;
  margin: 28px 0 34px;
  color: #d2d3d4;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  fill: currentColor;
}

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

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

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

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

.button--light span,
.button--primary span {
  margin-left: 12px;
  font-size: 1.1rem;
}

.hero__card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 12, 14, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero__card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 48px;
  height: 4px;
  background: var(--red);
  content: "";
}

.hero__card-label {
  color: #c6c7c8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__card > strong {
  display: block;
  margin: 10px 0 7px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 5.5rem;
  line-height: 1;
}

.hero__card > strong span {
  color: var(--red);
  font-size: 2.8rem;
}

.hero__card > p {
  margin: 0 0 25px;
  color: #b9bbbc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero__card > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  font-weight: 900;
}

.hero__card > a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__card a small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-circle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
}

.icon-circle svg {
  width: 19px;
  fill: var(--white);
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 0;
  transform: translateX(-50%);
}

.hero__scroll span {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-2px, -2px);
}

.service-strip {
  color: var(--white);
  background: var(--red);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-strip__grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-strip strong {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.service-strip span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading .kicker,
.workshop .kicker {
  margin-bottom: 17px;
}

.section h2,
.final-cta h2 {
  font-size: clamp(2.9rem, 5vw, 5.1rem);
}

.section-heading > p {
  margin: 0;
  padding-bottom: 6px;
  color: #616368;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d7d5cf;
  border-left: 1px solid #d7d5cf;
}

.service-card {
  position: relative;
  min-height: 305px;
  padding: 32px;
  border-right: 1px solid #d7d5cf;
  border-bottom: 1px solid #d7d5cf;
  background: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.service-card__number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #a4a49f;
  font-size: 0.7rem;
  font-weight: 800;
}

.service-card > svg {
  width: 44px;
  height: 44px;
  margin: 17px 0 42px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:first-child > svg {
  fill: var(--red);
  stroke: none;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.17rem;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #6a6c70;
  font-size: 0.89rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #b7b9bb;
}

.service-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--red);
}

.service-card--cta:hover {
  background: var(--red-dark);
}

.service-card--cta .kicker {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.7);
}

.service-card--cta h3 {
  max-width: 270px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1.04;
}

.service-card--cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card--cta a span {
  font-size: 1.1rem;
}

.rescue {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.rescue::before {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  content: "";
}

.rescue__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  align-items: center;
  gap: 8%;
}

.rescue__visual {
  position: relative;
}

.rescue__visual::before {
  position: absolute;
  z-index: -1;
  right: 35px;
  bottom: -24px;
  left: -24px;
  height: 75%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
}

.rescue__visual img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: center 63%;
  box-shadow: var(--shadow);
}

.rescue__badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.rescue__badge strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.9rem;
}

.rescue__badge span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

.rescue__content h2 {
  margin: 18px 0 25px;
}

.rescue__content h2 em,
.final-cta h2 em {
  color: var(--white);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.rescue__content > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
  line-height: 1.75;
}

.rescue__steps {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.rescue__steps li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.rescue__steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.rescue__steps li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--red);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.rescue__steps div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rescue__steps strong {
  font-size: 0.85rem;
  text-transform: uppercase;
}

.rescue__steps small {
  color: rgba(255, 255, 255, 0.7);
}

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

.workshop__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 8%;
}

.workshop__content > p {
  margin: 28px 0 34px;
  color: #aaaeb0;
  line-height: 1.75;
}

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

.feature-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list > div > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 29px;
  height: 29px;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-list p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.feature-list strong {
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-list small {
  color: var(--muted);
}

.workshop__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.workshop__image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.74), transparent 50%);
  content: "";
}

.workshop__image picture,
.workshop__image img {
  display: block;
  width: 100%;
}

.workshop__image img {
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.72) contrast(1.05);
}

.workshop__image figcaption {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 38px;
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop__image figcaption strong {
  margin-top: 5px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0;
}

.location {
  background: #ece9e3;
}

.section-heading--location {
  margin-bottom: 45px;
}

.location__card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.65fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 25px 70px rgba(17, 17, 17, 0.12);
}

.location__map {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #d2d1ce;
}

.location__map::after {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  content: "";
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.78) contrast(1.02);
}

.map-label {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  color: var(--white);
  background: rgba(11, 12, 14, 0.88);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-label i {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}

.location__pin {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  background: var(--red);
}

.location__pin svg {
  width: 25px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
}

.location__info .kicker {
  margin-bottom: 13px;
  font-size: 0.65rem;
}

.location__info h3 {
  margin: 0 0 13px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.location__info > p {
  margin: 0 0 27px;
  color: #65676a;
  font-size: 0.88rem;
  line-height: 1.7;
}

.location__info .button {
  align-self: flex-start;
}

.location__contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e2e0dc;
}

.location__contacts a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.82rem;
  font-weight: 800;
}

.location__contacts small {
  color: #898b8d;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before { top: -210px; left: -80px; }
.final-cta::after { right: -130px; bottom: -280px; }

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}

.final-cta .kicker {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.final-cta__actions {
  flex-direction: column;
  align-items: stretch;
}

.final-cta__actions > a:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  text-align: center;
}

.final-cta__actions > a:last-child strong {
  color: var(--white);
}

.site-footer {
  padding: 62px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 55px;
  padding-bottom: 50px;
}

.site-footer__top nav {
  display: flex;
  gap: 28px;
  color: #aeb0b2;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.site-footer__social {
  display: flex;
  gap: 8px;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid var(--line);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.site-footer__social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #797b7d;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 19px;
  color: var(--white);
  background: var(--green);
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.27);
  font-size: 0.76rem;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #159e4b;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.7,.2,1);
}

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

.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.14s; }

@media (max-width: 1040px) {
  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    color: inherit;
    background: transparent;
  }
  .menu-button > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: 90px 28px 40px;
    background: rgba(11, 12, 14, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav > a:not(.nav-cta) {
    display: block;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 2.6rem;
    line-height: 1.13;
    text-transform: uppercase;
  }
  .main-nav .nav-cta { margin-top: 25px; }
  .hero__content { gap: 5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rescue__grid { gap: 6%; }
  .workshop__grid { gap: 5%; }
  .location__card { grid-template-columns: 1.2fr 0.8fr; }
  .location__info { padding: 36px; }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .site-footer__top nav { display: none; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .emergency-bar__inner { justify-content: center; }
  .emergency-bar a { display: none; }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 95px;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(4, 5, 6, 0.94), rgba(4, 5, 6, 0.62)), linear-gradient(0deg, rgba(4, 5, 6, 0.8), transparent 50%);
  }
  .hero__content { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.7rem, 14vw, 6.2rem); }
  .hero__card { display: none; }
  .service-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .service-strip__grid > div:nth-child(2) { border-right: 0; }
  .service-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .section { padding: 88px 0; }
  .section-heading,
  .rescue__grid,
  .workshop__grid,
  .location__card,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }
  .section-heading { gap: 24px; margin-bottom: 42px; }
  .section-heading > p { max-width: 580px; }
  .rescue__grid { gap: 70px; }
  .rescue__visual { max-width: 560px; }
  .rescue__visual img { max-height: 570px; }
  .workshop__grid { gap: 60px; }
  .workshop__image { grid-row: 1; }
  .workshop__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
  .location__card { min-height: 0; }
  .location__map { min-height: 460px; }
  .location__info { padding: 40px; }
  .final-cta .kicker { margin-bottom: 0; }
  .final-cta__inner { gap: 25px; }
  .final-cta__actions { align-items: flex-start; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand__mark { width: 42px; height: 42px; }
  .brand__text strong { font-size: 0.76rem; }
  .brand__text small { font-size: 0.57rem; }
  .hero { padding-top: calc(var(--header-height) + 65px); }
  .hero__backdrop { background-position: 62% center; }
  .eyebrow { font-size: 0.64rem; line-height: 1.4; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.8rem); }
  .hero__copy > p { margin: 23px 0 27px; font-size: 0.96rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; padding: 0 18px; }
  .service-strip__grid > div { min-height: 77px; padding: 13px 12px; }
  .service-strip span { font-size: 0.68rem; }
  .section h2,
  .final-cta h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .rescue__visual img { height: 480px; }
  .rescue__badge { right: -4px; bottom: 20px; }
  .workshop__image img { min-height: 0; }
  .workshop__image figcaption { bottom: 24px; left: 24px; }
  .location__map { min-height: 365px; }
  .location__info { padding: 34px 24px; }
  .location__info .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__social { justify-content: flex-start; }
  .site-footer__social a {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
  }
  .site-footer__social svg { fill: var(--white); }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; min-height: 54px; padding: 0; justify-content: center; }
  .floating-whatsapp span { display: none; }
}

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

:focus-visible {
  outline: 3px solid #ffbbbd;
  outline-offset: 4px;
}
