

:root {
  --ink: #0b0e11;
  --ink-soft: #11171c;
  --paper: #f3f1eb;
  --white: #ffffff;
  --muted: #9aa5ad;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #00a9e8;
  --blue-deep: #0567c9;
  --red: #e22b20;
  --red-dark: #b91812;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

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

.utility-bar {
  position: relative;
  z-index: 60;
  background: #07090b;
  color: #e9eef1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.utility-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.utility-group a,
.utility-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility-group a::first-letter,
.utility-location::first-letter {
  color: var(--blue);
}

.utility-group a:hover {
  color: var(--blue);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 44px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 82px;
  height: 82px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 3px rgba(0, 169, 232, 0.34);
}

.brand-mark img {
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: #9ddcf4;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: white;
}

.nav-link {
  position: relative;
  padding: 16px 0;
  color: #ecf0f2;
  font-size: 15px;
  font-weight: 650;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.nav-cta {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 10px 26px rgba(226, 43, 32, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: #f02a1e;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 15, 0.88);
  color: white;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: stretch;
  background: var(--ink) url("/images/hero-technician.webp") center / cover no-repeat;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.99) 0%, rgba(4, 7, 9, 0.9) 35%, rgba(4, 7, 9, 0.22) 70%, rgba(4, 7, 9, 0.05) 100%),
    linear-gradient(0deg, rgba(4, 7, 9, 0.88) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 195px;
  padding-bottom: 68px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(660px, 56%);
}

.signal-line {
  width: 220px;
  height: 12px;
  position: relative;
  margin-bottom: 20px;
  border-top: 2px solid var(--blue);
}

.signal-line::after {
  content: "";
  position: absolute;
  right: 4px;
  top: -8px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue-deep);
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  color: #fff;
  font-family: Impact, "Arial Black", var(--font-geist), sans-serif;
  font-size: clamp(62px, 6.4vw, 102px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 14px;
  color: var(--red);
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: #d8dde0;
  font-size: 20px;
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--blue);
}

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

.button {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(226, 43, 32, 0.2);
}

.button-primary:hover {
  background: #f22d21;
}

.button-outline {
  border-color: var(--blue);
  background: rgba(5, 10, 14, 0.62);
  color: white;
}

.button-outline:hover {
  background: var(--blue);
  color: var(--ink);
}

.service-pills {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pills span {
  padding: 8px 15px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: rgba(5, 12, 16, 0.46);
  color: #e8eef1;
  font-size: 12px;
  font-weight: 600;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: #0b0f12;
  color: white;
  border-top: 1px solid rgba(226, 43, 32, 0.6);
}

.trust-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
}

.trust-grid strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 25px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-grid small {
  margin-top: 5px;
  color: #9ea8ae;
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.process-copy h2,
.emergency-band h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.split-heading p {
  margin: 0;
  color: #566169;
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  margin-top: 18px;
  display: inline-flex;
  gap: 14px;
  color: var(--blue-deep);
  font-weight: 800;
}

.service-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbd2d6;
  border-left: 1px solid #cbd2d6;
}

.service-card {
  min-height: 330px;
  padding: 34px;
  background: #f7f6f2;
  border-right: 1px solid #cbd2d6;
  border-bottom: 1px solid #cbd2d6;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  background: var(--ink-soft);
  color: white;
  box-shadow: 0 18px 42px rgba(13, 18, 22, 0.16);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 34px;
}

.service-tag {
  padding: 6px 9px;
  border: 1px solid #b9c3c9;
  border-radius: 999px;
  color: #59656d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:hover .service-tag {
  border-color: #45606d;
  color: #b6dcec;
}

.service-card h3 {
  margin: 50px 0 15px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: #69747a;
  font-size: 14px;
  line-height: 1.65;
}

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

.service-card a {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.service-card:hover a {
  color: var(--blue);
}

.process-section {
  background: #e7ebed;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.process-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 25px 0 30px;
  color: #5d686f;
  font-size: 17px;
  line-height: 1.7;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  border-bottom: 1px solid #bfc8cd;
}

.process-list li:first-child {
  border-top: 1px solid #bfc8cd;
}

.process-list li > span {
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 38px;
}

.process-list strong {
  font-size: 21px;
}

.process-list p {
  margin: 8px 0 0;
  color: #647178;
}

.emergency-band {
  padding: 82px 0;
  background: var(--red);
  color: white;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.emergency-band h2 {
  max-width: 760px;
}

.emergency-band p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.83);
}

.emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.interior-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(0, 169, 232, 0.18), transparent 26%),
    linear-gradient(125deg, #070a0c 0%, #10171c 64%, #07141b 100%);
  color: white;
}

.interior-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -90px;
  bottom: -220px;
  border: 1px solid rgba(0, 169, 232, 0.33);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(0, 169, 232, 0.03), 0 0 0 140px rgba(0, 169, 232, 0.025);
}

.interior-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.interior-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 205px;
  padding-bottom: 78px;
}

.interior-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Impact, "Arial Black", var(--font-geist), sans-serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.interior-hero h1 span {
  color: var(--red);
}

.interior-hero-inner > p:last-child {
  max-width: 690px;
  margin: 25px 0 0;
  color: #b8c2c7;
  font-size: 17px;
  line-height: 1.7;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.about-media,
.feature-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #cdd5d9;
}

.about-media::before,
.feature-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.09);
}

.about-media img,
.feature-media img {
  object-fit: cover;
}

.media-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 190px;
  min-height: 130px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue-deep);
  color: white;
}

.media-badge strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 43px;
}

.media-badge span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-copy h2,
.gallery-intro h2,
.contact-copy h2,
.feature-copy h2,
.assurance-grid h2,
.compact-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: #606c73;
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .button {
  margin-top: 30px;
}

.purpose-section {
  background: #0c1115;
  color: white;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.purpose-grid article {
  min-height: 390px;
  padding: 55px;
  background: #10171c;
}

.purpose-grid article:hover {
  background: #131d23;
}

.purpose-grid article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purpose-grid h3 {
  max-width: 460px;
  margin: 70px 0 20px;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.purpose-grid p {
  max-width: 520px;
  margin: 0;
  color: #aab4ba;
  line-height: 1.75;
}

.compact-heading {
  max-width: 800px;
}

.values-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values-grid article {
  min-height: 270px;
  padding: 32px;
  border-top: 3px solid var(--blue);
  background: #e7eaeb;
}

.values-grid article:nth-child(2n) {
  border-top-color: var(--red);
}

.values-grid article > span {
  color: #8b989f;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 28px;
}

.values-grid h3 {
  margin: 38px 0 12px;
  font-size: 22px;
}

.values-grid p {
  margin: 0;
  color: #68747b;
  font-size: 14px;
  line-height: 1.65;
}

.featured-service {
  padding: 0;
  background: var(--blue-deep);
  color: white;
}

.feature-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-media {
  min-height: 680px;
}

.feature-copy {
  padding: 90px clamp(42px, 7vw, 115px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.75;
}

.feature-copy ul {
  margin: 28px 0 35px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
  list-style: none;
}

.feature-copy li {
  padding-left: 23px;
  position: relative;
  font-size: 14px;
  font-weight: 650;
}

.feature-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8fe3ff;
  font-weight: 900;
}

.feature-copy .button {
  align-self: flex-start;
}

.all-services .split-heading > p {
  color: #5f6b72;
  font-size: 17px;
  line-height: 1.75;
}

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

.detailed-grid .service-card:last-child {
  grid-column: span 2;
}

.assurance-section {
  background: #e4e9eb;
}

.assurance-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.assurance-list {
  border-top: 1px solid #b8c2c7;
}

.assurance-list article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  border-bottom: 1px solid #b8c2c7;
}

.assurance-list article > span {
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 27px;
}

.assurance-list h3 {
  margin: 0;
  font-size: 19px;
}

.assurance-list p {
  margin: 7px 0 0;
  color: #647178;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-intro {
  max-width: 780px;
  margin-bottom: 55px;
}

.gallery-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #667279;
  font-size: 16px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 330px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #0c1215;
  color: white;
  cursor: pointer;
  text-align: left;
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1), opacity 300ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 9, 11, 0.86), transparent 58%);
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.gallery-item small {
  grid-column: 1;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item strong {
  grid-column: 1;
  margin-top: 4px;
  font-size: 20px;
}

.gallery-item b {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 20px;
}

.gallery-item:hover img {
  transform: scale(1.045);
  opacity: 0.84;
}

.gallery-item:hover b {
  background: var(--red);
  border-color: var(--red);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 5, 7, 0.95);
}

.lightbox-image {
  position: relative;
  width: min(1050px, 84vw);
  height: min(720px, 78vh);
}

.lightbox-image img {
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #10161a;
  color: white;
  cursor: pointer;
  font-size: 26px;
}

.lightbox-close {
  top: 24px;
  right: 25px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-arrow.previous {
  left: 25px;
}

.lightbox-arrow.next {
  right: 25px;
}

.lightbox > p {
  position: absolute;
  bottom: 20px;
  color: white;
  font-weight: 750;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: #647077;
  font-size: 16px;
  line-height: 1.75;
}

.contact-cards {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #c3cdd2;
}

.contact-cards a {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  border-bottom: 1px solid #c3cdd2;
}

.contact-cards a > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-deep);
  border-radius: 50%;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.contact-cards a div {
  display: flex;
  flex-direction: column;
}

.contact-cards small {
  color: #748087;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-cards strong {
  margin-top: 4px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.coverage-note {
  margin-top: 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  background: #e3e8ea;
}

.coverage-note > span {
  color: var(--red);
  font-size: 20px;
}

.coverage-note strong {
  font-size: 15px;
}

.coverage-note p {
  margin: 5px 0 0;
  color: #6f7a80;
  font-size: 13px;
}

.contact-form {
  padding: 42px;
  background: #0f1519;
  color: white;
  box-shadow: 0 25px 65px rgba(12, 17, 21, 0.16);
}

.form-heading {
  margin-bottom: 32px;
  padding-bottom: 23px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.form-heading span {
  font-size: 23px;
  font-weight: 800;
}

.form-heading strong {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cdd5d9;
  font-size: 12px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label {
  margin-top: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #354047;
  border-radius: 0;
  outline: 0;
  background: #151d22;
  color: white;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 135px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 169, 232, 0.15);
}

.contact-form .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  color: #9aa6ac;
  font-weight: 450;
  line-height: 1.5;
}

.contact-form .consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.submit-button {
  width: 100%;
  margin-top: 24px;
}

.form-status {
  margin: 15px 0 0;
  color: #9ee6ff;
  font-size: 12px;
  line-height: 1.5;
}

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

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

.site-footer {
  padding: 76px 0 26px;
  background: #080a0c;
  color: #e8edef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1.15fr 1fr;
  gap: 70px;
}

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

.footer-grid strong {
  font-size: 23px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: #9da8ae;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid a:hover {
  color: white;
}

.footer-brand p {
  max-width: 350px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #728087;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: #23ca62;
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (max-width: 1120px) {
  .brand-copy {
    display: none;
  }

  .main-nav {
    gap: 22px;
  }

  .nav-cta {
    padding-inline: 18px;
  }

  .hero-copy {
    width: 64%;
  }
}

@media (max-width: 900px) {
  .utility-email,
  .utility-location,
  .brand-copy {
    display: none !important;
  }

  .utility-inner {
    justify-content: center;
  }

  .site-header {
    background: rgba(6, 9, 11, 0.88);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 90px;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 26px 24px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    background: #090d10;
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.35);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 14px 4px;
  }

  .nav-link::after {
    bottom: 8px;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 7, 9, 0.97) 0%, rgba(4, 7, 9, 0.83) 60%, rgba(4, 7, 9, 0.3) 100%),
      linear-gradient(0deg, rgba(4, 7, 9, 0.92) 0%, transparent 45%);
  }

  .hero-inner {
    padding-top: 170px;
  }

  .hero-copy {
    width: 80%;
  }

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

  .trust-grid article {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .split-heading,
  .process-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .emergency-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .emergency-actions {
    width: 100%;
    flex-direction: row;
  }

  .emergency-actions .button {
    flex: 1;
  }

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

  .interior-hero {
    min-height: 520px;
  }

  .interior-hero-inner {
    padding-top: 180px;
    padding-bottom: 65px;
  }

  .about-layout,
  .contact-layout,
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-media {
    min-height: 520px;
  }

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

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 540px;
  }

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

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

  .gallery-item.is-wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .utility-group {
    gap: 16px;
  }

  .utility-inner {
    font-size: 11px;
  }

  .hero {
    min-height: 770px;
  }

  .hero {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 7, 9, 0.97) 0%, rgba(4, 7, 9, 0.72) 100%),
      linear-gradient(0deg, rgba(4, 7, 9, 0.96) 0%, transparent 60%);
  }

  .hero-inner {
    padding-top: 160px;
    padding-bottom: 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .signal-line {
    width: 150px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .service-pills {
    gap: 7px;
  }

  .service-pills span {
    padding: 7px 11px;
    font-size: 10px;
  }

  .trust-grid article {
    padding-inline: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .emergency-band h2 {
    font-size: 42px;
  }

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

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

  .process-list li {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .emergency-actions {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .interior-hero {
    min-height: 500px;
  }

  .interior-hero-inner {
    padding-top: 165px;
    padding-bottom: 55px;
  }

  .interior-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .interior-hero-inner > p:last-child {
    font-size: 15px;
  }

  .about-media {
    min-height: 410px;
  }

  .purpose-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .purpose-grid article {
    min-height: auto;
    padding: 38px 28px;
  }

  .purpose-grid h3 {
    margin-top: 50px;
  }

  .feature-media {
    min-height: 430px;
  }

  .feature-copy {
    padding: 65px 24px;
  }

  .feature-copy ul {
    grid-template-columns: 1fr;
  }

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

  .detailed-grid .service-card:last-child {
    grid-column: auto;
  }

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

  .lightbox {
    padding: 66px 16px;
  }

  .lightbox-image {
    width: 100%;
    height: 68vh;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox-arrow.previous {
    left: 22px;
  }

  .lightbox-arrow.next {
    right: 22px;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

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

.about-media > img,.feature-media > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.brand-mark > img{width:100%;height:100%;object-fit:cover}
.gallery-item > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.lightbox[hidden]{display:none}
.lightbox-image > img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain}

/* ===== Premium responsive polish — ROOT edition ===== */
:root {
  --shadow-soft: 0 18px 60px rgba(6, 12, 18, .12);
  --shadow-dark: 0 22px 70px rgba(0, 0, 0, .28);
  --radius-sm: 12px;
  --radius-md: 20px;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(0,169,232,.55);
  outline-offset: 3px;
}

.site-header { transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.nav-shell { transition: min-height .25s ease; }
.brand-mark { background: #fff; }
.brand-mark img { transform: scale(1.02); }

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4,7,9,.48), transparent);
}
.hero-copy { position: relative; }
.hero-lead { text-wrap: pretty; }
.button, .nav-cta { border-radius: 2px; }
.button { box-shadow: 0 8px 26px rgba(0,0,0,.08); }
.button-outline { backdrop-filter: blur(9px); }

.service-card,
.values-grid article,
.contact-form,
.contact-cards a,
.coverage-note {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.service-card:hover { box-shadow: var(--shadow-soft); }
.contact-form { box-shadow: var(--shadow-soft); }
.contact-cards a:hover { transform: translateX(4px); }
.gallery-item img { transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.03); }
.about-media, .feature-media, .gallery-item { box-shadow: var(--shadow-soft); }

.whatsapp-float {
  width: 62px;
  height: 62px;
  font-size: 12px;
  letter-spacing: -.02em;
  box-shadow: 0 14px 38px rgba(0,0,0,.34), 0 0 0 6px rgba(35,202,98,.12);
}

@media (max-width: 900px) {
  .site-header { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  .main-nav { max-height: calc(100vh - 134px); overflow-y: auto; }
  .nav-link { font-size: 16px; }
  .nav-cta { min-height: 56px; }
  .hero-copy { width: min(100%, 680px); }
  .split-heading > div:last-child { max-width: 680px; }
  .about-media, .feature-media { border-radius: 0; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .utility-bar { position: relative; }
  .utility-inner { min-height: 38px; }
  .utility-group { width: 100%; justify-content: space-between; gap: 8px; }
  .utility-group a { gap: 5px; white-space: nowrap; }
  .site-header { top: 38px; }
  .nav-shell { min-height: 78px; }
  .brand-mark { width: 58px; height: 58px; }
  .menu-toggle { width: 46px; height: 46px; border-radius: 8px; }
  .main-nav { top: 78px; padding: 18px 18px 24px; }

  .hero { min-height: 730px; background-position: 62% center; }
  .hero-inner { padding-top: 142px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(44px, 13.4vw, 64px); line-height: .9; letter-spacing: -.035em; }
  .hero h1 span { margin-top: 10px; }
  .hero-lead { margin-top: 20px; line-height: 1.55; }
  .hero-actions { margin-top: 22px; }
  .button { min-height: 56px; padding-inline: 20px; }
  .service-pills { margin-top: 20px; }

  .trust-grid article { padding: 22px 4px; gap: 16px; }
  .trust-icon { width: 52px; height: 52px; flex: 0 0 52px; }
  .trust-grid strong { font-size: 21px; }
  .section { padding: 68px 0; }
  .section-heading h2, .process-copy h2, .emergency-band h2,
  .about-copy h2, .gallery-intro h2, .contact-copy h2, .feature-copy h2, .assurance-grid h2, .compact-heading h2 {
    font-size: clamp(36px, 10.6vw, 46px);
    line-height: 1;
    letter-spacing: -.04em;
  }
  .split-heading { gap: 24px; }
  .split-heading p { font-size: 15px; line-height: 1.65; }
  .service-grid { margin-top: 38px; }
  .service-card { padding: 26px 22px; }
  .service-card h3 { margin-top: 34px; }
  .process-list li { padding: 22px 0; }
  .emergency-band { padding: 64px 0; }

  .interior-hero { min-height: 470px; }
  .interior-hero-inner { padding-top: 145px; padding-bottom: 48px; }
  .interior-hero h1 { font-size: clamp(43px, 12.8vw, 62px); line-height: .92; }
  .about-media { min-height: 360px; }
  .media-badge { width: 155px; min-height: 108px; padding: 20px; }
  .media-badge strong { font-size: 36px; }
  .purpose-grid article { padding: 32px 22px; }
  .purpose-grid h3 { margin-top: 38px; font-size: 27px; }
  .values-grid { margin-top: 36px; }
  .values-grid article { min-height: 220px; padding: 26px 22px; }
  .feature-media { min-height: 360px; }
  .feature-copy { padding: 54px 20px; }
  .gallery-grid { gap: 12px; grid-auto-rows: 260px; }
  .contact-form { padding: 26px 18px; }
  .contact-cards a { padding: 18px; }
  .contact-cards strong { overflow-wrap: anywhere; }
  .footer-grid { gap: 32px; }
  .site-footer { padding-top: 62px; }
  .footer-bottom { margin-top: 44px; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 56px; height: 56px; border-width: 2px; }
}

@media (max-width: 390px) {
  .utility-group a { font-size: 10px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .service-pills span:nth-child(n+5) { display: none; }
  .process-list li { grid-template-columns: 50px 1fr; }
  .process-list li > span { font-size: 32px; }
  .interior-hero h1 { font-size: 42px; }
}

/* ===== V2.2 — Header separado + hero balanceado + WhatsApp real ===== */
.site {
  overflow-x: clip;
  overflow-y: visible;
}

.utility-wa-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #25D366;
}

/* El header deja de quedar montado sobre el hero. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 11, 14, .97);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 94px;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 66px;
  height: 66px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 10px 30px rgba(0,0,0,.28);
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: .035em;
}

.brand-copy small {
  font-size: 10px;
  letter-spacing: .16em;
}

.main-nav {
  gap: 28px;
}

.nav-link {
  font-size: 14px;
}

.nav-cta {
  min-height: 52px;
  padding-inline: 22px;
}

/* Hero desktop: más aire y todo visible dentro del primer pantallazo. */
.hero {
  min-height: 700px;
  background-position: center 42%;
}

.hero-inner {
  padding-top: 72px;
  padding-bottom: 64px;
  align-items: center;
}

.hero-copy {
  width: min(700px, 54%);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 5.15vw, 84px);
  line-height: .89;
  letter-spacing: -.038em;
}

.hero h1 span {
  margin-top: 10px;
}

.hero-lead {
  max-width: 590px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.48;
}

.hero-actions {
  margin-top: 24px;
}

.service-pills {
  margin-top: 22px;
}

/* Heroes interiores ya no necesitan compensar un header absoluto. */
.interior-hero {
  min-height: 500px;
}

.interior-hero-inner {
  padding-top: 82px;
  padding-bottom: 72px;
}

/* WhatsApp flotante: icono real, dentro del viewport y más premium. */
.whatsapp-float {
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.95);
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.32), 0 0 0 6px rgba(37,211,102,.13);
}

.whatsapp-float .whatsapp-icon {
  width: 31px;
  height: 31px;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  background: #1fca5b;
}

@media (max-width: 1120px) {
  .nav-shell { min-height: 86px; }
  .brand-mark { width: 60px; height: 60px; }
  .main-nav { gap: 19px; }
  .nav-cta { padding-inline: 17px; }
  .hero-copy { width: 62%; }
  .hero h1 { font-size: clamp(56px, 6.3vw, 78px); }
}

@media (max-width: 900px) {
  .site-header {
    top: 0;
  }
  .nav-shell {
    min-height: 78px;
  }
  .brand-mark {
    width: 56px;
    height: 56px;
  }
  .main-nav {
    top: 78px;
    max-height: calc(100dvh - 78px);
  }
  .hero {
    min-height: 690px;
    background-position: 66% center;
  }
  .hero-inner {
    padding-top: 58px;
    padding-bottom: 52px;
  }
  .hero-copy {
    width: min(100%, 650px);
  }
  .hero h1 {
    font-size: clamp(50px, 9.7vw, 72px);
  }
  .interior-hero-inner {
    padding-top: 72px;
    padding-bottom: 62px;
  }
}

@media (max-width: 620px) {
  .site-header { top: 0; }
  .nav-shell { min-height: 72px; }
  .brand-mark { width: 52px; height: 52px; }
  .main-nav { top: 72px; }

  .hero {
    min-height: 650px;
    background-position: 66% center;
  }
  .hero-inner {
    padding-top: 42px;
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: clamp(42px, 12.7vw, 56px);
    line-height: .91;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.5;
  }
  .signal-line {
    margin-bottom: 16px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
  }
  .service-pills {
    margin-top: 18px;
  }
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
  .whatsapp-float .whatsapp-icon {
    width: 29px;
    height: 29px;
  }
  .interior-hero {
    min-height: 430px;
  }
  .interior-hero-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }
}

/* ==========================================================
   V2.3 — HEADER / BRAND FIX
   Corrige logo montado, overflow del CTA y zoom de navegador.
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #0b1014;
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.site-header .nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.site-header .brand {
  min-width: 0;
  height: 84px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 12px;
  overflow: visible;
}

.site-header .brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 7px 20px rgba(0,0,0,.25);
  transform: none;
}

.site-header .brand-mark > img,
.site-header .brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.site-header .brand-copy {
  min-width: 0;
  justify-content: center;
}

.site-header .brand-copy strong {
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: .035em;
  white-space: nowrap;
}

.site-header .brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .17em;
  white-space: nowrap;
}

.site-header .main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap;
}

.site-header .nav-link {
  flex: 0 0 auto;
  padding: 14px 0;
  font-size: 13px;
}

.site-header .nav-cta {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  gap: 14px;
  font-size: 12px;
  white-space: nowrap;
}

/* Compacta antes de que el contenido pueda chocar por zoom del navegador. */
@media (max-width: 1380px) {
  .site-header .nav-shell {
    grid-template-columns: minmax(205px, 1fr) auto;
    gap: 18px;
  }
  .site-header .main-nav { gap: 16px; }
  .site-header .nav-link { font-size: 12px; }
  .site-header .nav-cta { padding-inline: 15px; font-size: 11px; }
}

@media (max-width: 1220px) {
  .site-header .brand-copy { display: none; }
  .site-header .nav-shell {
    grid-template-columns: 58px 1fr;
  }
  .site-header .main-nav { gap: 15px; }
}

/* El menú móvil entra antes para impedir cualquier solapamiento. */
@media (max-width: 1040px) {
  .utility-email,
  .utility-location { display: none !important; }

  .site-header .nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .brand {
    height: 76px;
  }

  .site-header .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .site-header .menu-toggle {
    display: block;
    flex: 0 0 48px;
  }

  .site-header .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    max-height: calc(100dvh - 76px);
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: rgba(7,11,14,.99);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 35px rgba(0,0,0,.30);
  }

  .site-header .main-nav.is-open { display: flex; }

  .site-header .nav-link {
    width: 100%;
    padding: 15px 2px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .site-header .nav-link::after { bottom: 8px; }

  .site-header .nav-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    justify-content: space-between;
    padding-inline: 18px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--max)); }

  .site-header .nav-shell { min-height: 70px; }
  .site-header .brand { height: 70px; }
  .site-header .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .site-header .main-nav { top: 70px; max-height: calc(100dvh - 70px); }
}


/* ==========================================================
   V2.4 — LOGO REALMENTE LIMPIO + HEADER PREMIUM
   El JPG original tenía fondo marrón/gris alrededor del logo.
   Ahora se usa PNG transparente y se aumenta el tamaño.
   ========================================================== */
.site-header .brand {
  height: 92px;
  gap: 14px;
}

.site-header .nav-shell {
  min-height: 92px;
}

.site-header .brand-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .brand-mark > img,
.site-header .brand-mark img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 7px 14px rgba(0,0,0,.35));
}

.site-header .brand-copy strong {
  font-size: 16px;
}

.site-header .brand-copy small {
  font-size: 9.5px;
}

@media (max-width: 1220px) {
  .site-header .brand-mark,
  .site-header .brand-mark > img,
  .site-header .brand-mark img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }
}

@media (max-width: 1040px) {
  .site-header .nav-shell { min-height: 78px; }
  .site-header .brand { height: 78px; }
  .site-header .brand-mark,
  .site-header .brand-mark > img,
  .site-header .brand-mark img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
  .site-header .main-nav { top: 78px; max-height: calc(100dvh - 78px); }
}

@media (max-width: 620px) {
  .site-header .nav-shell { min-height: 72px; }
  .site-header .brand { height: 72px; }
  .site-header .brand-mark,
  .site-header .brand-mark > img,
  .site-header .brand-mark img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .site-header .main-nav { top: 72px; max-height: calc(100dvh - 72px); }
}


/* ==========================================================
   V2.5 — TIPOGRAFÍA MÁS EQUILIBRADA + SEO VISUAL
   Reducción moderada de títulos para mejorar lectura sin perder impacto.
   ========================================================== */
@media (min-width: 1041px) {
  .hero h1 {
    font-size: clamp(58px, 5.7vw, 92px);
    line-height: .87;
  }
  .hero-lead {
    font-size: 18px;
    max-width: 590px;
  }
  .interior-hero h1 {
    max-width: 1020px;
    font-size: clamp(54px, 5.9vw, 88px);
    line-height: .9;
  }
  .section-heading h2,
  .process-copy h2,
  .emergency-band h2,
  .about-copy h2,
  .gallery-intro h2,
  .contact-copy h2,
  .feature-copy h2,
  .assurance-grid h2,
  .compact-heading h2 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1;
  }
  .service-card h3 { font-size: 22px; }
  .process-list strong { font-size: 19px; }
}

@media (max-width: 1040px) {
  .hero h1 { font-size: clamp(46px, 12.6vw, 62px); }
  .interior-hero h1 { font-size: clamp(42px, 11.5vw, 58px); line-height: .94; }
  .section-heading h2,
  .process-copy h2,
  .emergency-band h2,
  .about-copy h2,
  .gallery-intro h2,
  .contact-copy h2,
  .feature-copy h2,
  .assurance-grid h2,
  .compact-heading h2 {
    font-size: clamp(34px, 9.7vw, 44px);
  }
}

@media (max-width: 620px) {
  .hero h1 { font-size: clamp(42px, 12.8vw, 56px); }
  .interior-hero h1 { font-size: clamp(39px, 11.7vw, 52px); }
}
