@font-face {
  font-family: "Outfit";
  src: url("external/cdn.zyrosite.com/u1/google-fonts/font-file__family_Outfit_wght_600_subset_latin_display_swap.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("external/cdn.zyrosite.com/u1/google-fonts/font-file__family_Inter_wght_400_subset_latin_display_swap.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("external/cdn.zyrosite.com/u1/google-fonts/font-file__family_Inter_wght_500_subset_latin_display_swap.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #101d2d;
  --ink-soft: #21334a;
  --navy: #152d4a;
  --blue: #274e78;
  --gold: #b98a45;
  --gold-light: #e8d0a9;
  --ivory: #f6f2ea;
  --paper: #fcfbf7;
  --white: #ffffff;
  --muted: #627083;
  --line: rgba(16, 29, 45, 0.14);
  --shadow: 0 24px 70px rgba(16, 29, 45, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(185, 138, 69, 0.55);
  outline-offset: 4px;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.lead {
  max-width: 650px;
  color: #d5dde6;
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.text-large {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.muted {
  color: var(--muted);
}

.announcement {
  color: #ecdfca;
  background: #0b1725;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.announcement__message-short,
.announcement__phone-action,
.announcement__phone-mobile {
  display: none;
}

.announcement__phone {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(252, 251, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand__text small {
  margin-top: 4px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: #445267;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(21, 45, 74, 0.2);
}

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

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

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 29, 45, 0.28);
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button__arrow {
  font-size: 18px;
  line-height: 0;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button__lines,
.menu-button__lines::before,
.menu-button__lines::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button__lines::before {
  transform: translateY(-6px);
}

.menu-button__lines::after {
  transform: translateY(4.5px);
}

.menu-button[aria-expanded="true"] .menu-button__lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__lines::before {
  transform: translateY(1px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__lines::after {
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink) url("/bandera-poster.jpg") center / cover no-repeat;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 23, 38, 0.9) 0%, rgba(8, 23, 38, 0.72) 52%, rgba(8, 23, 38, 0.5) 100%),
    radial-gradient(circle at 16% 12%, rgba(39, 78, 120, 0.48), transparent 52%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 88px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy h1 {
  max-width: 780px;
}

.hero__copy h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 12px 8px;
  color: #e7edf2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 600;
}

.hero__link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero__visual {
  position: relative;
}

.hero__image {
  overflow: hidden;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 180px 180px 28px 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.3);
}

.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  right: -28px;
  bottom: 44px;
  width: 190px;
  padding: 24px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(185, 138, 69, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.hero__badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero__badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

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

.trust-item__number {
  color: var(--gold);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
}

.trust-item strong {
  display: block;
  font-size: 14px;
}

.trust-item span:last-child {
  color: var(--muted);
  font-size: 12px;
}

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

.section--compact {
  padding-block: clamp(64px, 8vw, 96px);
}

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

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

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 5px;
  color: var(--muted);
}

.section--ink .section-head p {
  color: #aeb9c7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.split--top {
  align-items: start;
}

.split__image {
  position: relative;
}

.split__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split__image::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 44%;
  height: 34%;
  content: "";
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0 0 34px 0;
  pointer-events: none;
}

.split__image--brand {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(185, 138, 69, 0.2), transparent 45%),
    var(--ink);
  border: 1px solid rgba(185, 138, 69, 0.3);
  border-radius: var(--radius-lg);
}

.split__image--brand img {
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.26));
}

.split__copy h2 {
  max-width: 650px;
}

.split__copy p {
  max-width: 610px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(185, 138, 69, 0.55);
  box-shadow: 0 20px 58px rgba(16, 29, 45, 0.09);
}

.service-card__number {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.service-card h3 {
  max-width: 360px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.service-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card__arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 19px;
}

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

.process-card {
  position: relative;
  padding: 34px 30px 32px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-card::before {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(232, 208, 169, 0.4);
  border-radius: 50%;
  content: "0" counter(process);
  font-size: 12px;
}

.process-card p {
  margin-bottom: 0;
  color: #aeb9c7;
}

.testimonials {
  background: var(--ivory);
}

.testimonials__head {
  display: grid;
  max-width: 780px;
  justify-items: center;
  margin: 0 auto 58px;
  text-align: center;
}

.testimonials__logo {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 28px rgba(16, 29, 45, 0.14));
}

.testimonials__head h2 {
  max-width: 720px;
}

.testimonials__head > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(185, 138, 69, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(16, 29, 45, 0.07);
}

.testimonial-card::before {
  position: absolute;
  top: -34px;
  left: 24px;
  color: rgba(185, 138, 69, 0.08);
  content: "“";
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__service {
  position: relative;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  position: relative;
  max-width: 500px;
  margin: 25px 0 30px;
  color: var(--ink-soft);
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.48;
}

.testimonial-card figcaption {
  display: grid;
  justify-items: center;
  line-height: 1.4;
}

.testimonial-card figcaption strong {
  color: var(--navy);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 16px;
}

.testimonial-card figcaption > span:not(.testimonial-stars) {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.testimonial-stars i {
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, #f4d99a, #b9822f 70%);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 57%, 79% 93%, 50% 72%, 21% 93%, 32% 57%, 2% 35%, 39% 34%);
  filter: drop-shadow(0 2px 3px rgba(185, 138, 69, 0.24));
  animation: testimonial-star-sparkle 3s ease-in-out infinite;
}

.testimonial-stars i:nth-child(2) { animation-delay: 80ms; }
.testimonial-stars i:nth-child(3) { animation-delay: 160ms; }
.testimonial-stars i:nth-child(4) { animation-delay: 240ms; }
.testimonial-stars i:nth-child(5) { animation-delay: 320ms; }

.testimonials__disclaimer {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

@keyframes testimonial-star-sparkle {
  0%, 68%, 100% {
    filter: brightness(1) drop-shadow(0 2px 3px rgba(185, 138, 69, 0.24));
    transform: translateY(0) scale(1);
  }
  78% {
    filter: brightness(1.75) drop-shadow(0 0 9px rgba(232, 208, 169, 0.95));
    transform: translateY(-1px) scale(1.08);
  }
  88% {
    filter: brightness(1.05) drop-shadow(0 2px 4px rgba(185, 138, 69, 0.32));
    transform: translateY(0) scale(1);
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 580px;
  height: 580px;
  content: "";
  background: radial-gradient(circle, rgba(185, 138, 69, 0.28), transparent 65%);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 46px;
  padding: clamp(48px, 7vw, 88px);
}

.cta-band h2 {
  max-width: 750px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 600px;
  margin-bottom: 0;
  color: #c6d0dc;
}

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

.page-hero__grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  padding-block: 90px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 6rem);
}

.page-hero__aside {
  max-width: 470px;
  padding: 26px 0 8px 28px;
  border-left: 1px solid rgba(232, 208, 169, 0.45);
}

.page-hero__aside p {
  margin-bottom: 26px;
  color: #c0cad6;
  font-size: 1.05rem;
}

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

.value-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card__number {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-size: 12px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature p {
  margin-bottom: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 100px minmax(240px, 0.8fr) 1.2fr;
  gap: 42px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail__number {
  color: var(--gold);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.service-detail__body p {
  margin-bottom: 18px;
  color: var(--muted);
}

.service-detail__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 125px;
}

.contact-intro h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.1rem;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form__head {
  margin-bottom: 34px;
}

.contact-form__head h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-form__head p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(16, 29, 45, 0.18);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 145px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 138, 69, 0.12);
}

.form-note {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.contact-form__submit-proxy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  margin-top: clamp(78px, 10vw, 138px);
  color: #c1ccd7;
  background: #0b1725;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 70px;
  padding-block: 76px;
}

.footer-brand .brand__mark {
  background: transparent;
}

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

.footer-brand > p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #8e9bab;
}

.footer-column h2 {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f8d9d;
  font-size: 12px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 7px 20px 7px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 29, 45, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(16, 29, 45, 0.2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.whatsapp-fab:hover {
  color: #075e54;
  background: var(--white);
  border-color: rgba(37, 211, 102, 0.65);
  box-shadow: 0 20px 54px rgba(7, 94, 84, 0.22);
}

.whatsapp-fab__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(7, 94, 84, 0.12);
}

.whatsapp-fab__icon img {
  width: 23px;
  height: 23px;
}

.whatsapp-fab__copy {
  display: grid;
  gap: 2px;
}

.whatsapp-fab__copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {
  .nav-links,
  .nav-shell > .button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav-links.is-open {
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    min-height: calc(100vh - 74px);
    min-height: calc(100dvh - 74px);
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 34px 24px;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: 0 24px 50px rgba(16, 29, 45, 0.16);
    overscroll-behavior: contain;
  }

  .nav-links.is-open a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Outfit", Arial, sans-serif;
    font-size: 1.55rem;
  }

  .nav-links.is-open a::after {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 72px;
  }

  .hero__image,
  .hero__image img {
    min-height: 480px;
  }

  .hero__badge {
    right: 20px;
  }

  .section-head,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split__image--home img {
    max-height: 380px;
    aspect-ratio: 16 / 10;
    object-position: 50% 43%;
  }

  .section-head {
    gap: 18px;
  }

  .contact-intro {
    position: static;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 76px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

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

  .announcement {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .announcement__inner {
    display: grid;
    min-height: 44px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .announcement__message {
    min-width: 0;
    color: var(--gold-light);
    font-weight: 600;
    white-space: nowrap;
  }

  .announcement__message-full,
  .announcement__phone-full {
    display: none;
  }

  .announcement__message-short,
  .announcement__phone-action,
  .announcement__phone-mobile {
    display: inline;
  }

  .announcement__phone {
    min-height: 44px;
    gap: 7px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    letter-spacing: 0.03em;
  }

  .announcement__phone-action {
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

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

  .brand__text {
    font-size: 15px;
  }

  .hero__grid {
    gap: 48px;
    padding-block: 62px;
  }

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

  .hero__video {
    object-position: 15% center;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero__image,
  .hero__image img {
    min-height: 410px;
  }

  .hero__image {
    border-radius: 110px 110px 22px 22px;
  }

  .hero__badge {
    right: 12px;
    bottom: 18px;
    width: 165px;
    padding: 20px;
  }

  .trust-bar__grid,
  .services-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .split__image {
    order: 2;
  }

  .split__image--brand {
    min-height: 400px;
    padding: 36px 26px;
  }

  .split__image--home img {
    max-height: 280px;
    border-radius: 24px;
  }

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

  .service-card__number,
  .value-card__number {
    margin-bottom: 42px;
  }

  .process-card::before {
    margin-bottom: 42px;
  }

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

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

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero__grid {
    min-height: 480px;
    padding-block: 64px;
  }

  .page-hero__aside {
    padding-left: 20px;
  }

  .service-detail {
    grid-template-columns: 54px 1fr;
    gap: 22px;
  }

  .service-detail__body {
    grid-column: 2;
  }

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

  .field--full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 62px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 410px) {
  .brand__text small {
    display: none;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button,
  .hero__actions .hero__link {
    width: 100%;
  }

  .whatsapp-fab__copy {
    display: none;
  }

  .whatsapp-fab {
    width: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-fab__icon {
    width: 46px;
    height: 46px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .testimonial-stars i {
    animation: none;
  }
}
