:root {
  --navy-950: #071a2b;
  --navy-900: #102a43;
  --navy-800: #173f5f;
  --orange-600: #bd4108;
  --orange-500: #f47a2a;
  --sky-100: #eaf3f7;
  --sand-50: #fff9f4;
  --white: #ffffff;
  --text: #1f3346;
  --muted: #607285;
  --border: #d9e3ea;
  --whatsapp: #0f7a3d;
  --shadow: 0 20px 60px rgba(16, 42, 67, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

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

[hidden] {
  display: none !important;
}

.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;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--navy-900) !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.topbar {
  color: #dce8f1;
  background: var(--navy-950);
  font-size: 0.82rem;
}

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

.topbar p {
  margin: 0;
  letter-spacing: 0.04em;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--orange-500);
}

.topbar svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 227, 234, 0.85);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.main-nav > a:not(.button) {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--orange-600);
}

.main-nav > a[aria-current="page"]:not(.button) {
  color: var(--orange-600);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.main-nav .button[aria-current="page"] {
  background: var(--orange-600);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--navy-900);
}

.button--small:hover {
  background: var(--orange-600);
}

.button--primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 12px 28px rgba(233, 95, 24, 0.24);
}

.button--primary:hover {
  background: #a93406;
  box-shadow: 0 16px 32px rgba(233, 95, 24, 0.3);
}

.button--primary svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--navy-900);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--navy-900);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

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

.button--light:hover {
  background: var(--sky-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 12% 15%, rgba(244, 122, 42, 0.11), transparent 28%),
    linear-gradient(135deg, var(--sand-50), var(--white) 62%);
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(16, 42, 67, 0.025), 0 0 0 108px rgba(16, 42, 67, 0.02);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
}

h1 span {
  color: var(--orange-600);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

h3 {
  font-size: 1.55rem;
}

.hero__lead {
  max-width: 620px;
  margin: 0 0 2rem;
  color: #40576b;
  font-size: clamp(1.05rem, 1.8vw, 1.23rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.text-link {
  color: var(--navy-900);
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--orange-600);
}

.hero__hint {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.hero__media::before {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  content: "";
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__media figcaption {
  position: absolute;
  right: -34px;
  bottom: 38px;
  min-width: 220px;
  display: grid;
  gap: 0.1rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 15px;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.22);
}

.hero__media figcaption span {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__media figcaption strong {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.hero__media figcaption i {
  position: relative;
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

.hero__media figcaption i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.benefits {
  background: var(--navy-900);
}

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

.benefit {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.benefit:last-child {
  border-right: 0;
}

.benefit svg {
  width: 35px;
  flex: 0 0 35px;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  line-height: 1.35;
}

.benefit span {
  color: #b8ccdc;
  font-size: 0.86rem;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.process {
  background: var(--white);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 49px;
  left: 16%;
  width: 68%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
}

.steps li {
  position: relative;
  text-align: center;
}

.step__number {
  position: absolute;
  top: -5px;
  right: calc(50% - 56px);
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-600);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.step__icon {
  position: relative;
  z-index: 1;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--navy-900);
  background: var(--sky-100);
  border: 9px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--border);
}

.step__icon svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.steps h3 {
  margin-bottom: 0.7rem;
}

.steps p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--muted);
}

.step__link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--orange-600);
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.services {
  background: var(--sky-100);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(16, 42, 67, 0.06);
}

.service-card--featured {
  color: #d8e7f2;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--orange-600);
  background: var(--sand-50);
  border-radius: 14px;
}

.service-card__icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card__label {
  margin: 0 0 0.5rem;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card > p:last-of-type {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card--featured > p:last-of-type {
  color: #c2d3e0;
}

.service-card > a {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 5px;
  transition: color 160ms ease;
}

.service-card > a:hover {
  color: #ffd6bd;
}

.quote-band {
  color: var(--white);
  background: var(--orange-600);
}

.quote-band__inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 3.5rem;
}

.quote-band .eyebrow {
  color: #fff3eb;
}

.quote-band h2 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.quote-band p:last-child {
  margin: 0;
  color: #fff3eb;
}

.quote-band .button {
  flex: 0 0 auto;
}

.about {
  background: var(--sand-50);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.about h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.about__copy {
  padding-top: 1rem;
}

.about__lead {
  margin-top: 0;
  color: var(--navy-900);
  font-size: 1.32rem;
  font-weight: 700;
}

.about__copy > p:not(.about__lead) {
  color: var(--muted);
}

.about__copy ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about__copy li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 700;
}

.about__copy li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--orange-600);
  border-radius: 50%;
}

.contact {
  color: #d6e3ed;
  background: var(--navy-950);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.contact h2 {
  color: var(--white);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 2rem;
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-style: normal;
}

.contact-card > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card svg {
  width: 23px;
  flex: 0 0 23px;
  margin-top: 0.25rem;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-card small,
.contact-card a {
  display: block;
}

.contact-card small {
  margin-bottom: 0.2rem;
  color: #93acc0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.contact-card a + a {
  margin-top: 0.25rem;
}

.contact-card a:hover {
  color: #ffd6bd;
  text-decoration-color: currentColor;
}

.site-footer {
  padding: 0;
  color: #91a7b8;
  background: #061521;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr) minmax(230px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: 3rem;
}

.footer__brand p {
  max-width: 340px;
  margin: 1.1rem 0 0;
}

.footer__address {
  font-style: normal;
}

.footer__label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--orange-500);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__contact a {
  display: block;
  color: #c9d8e4;
  font-weight: 720;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(201, 216, 228, 0.35);
  text-underline-offset: 4px;
}

.footer__contact a + a {
  margin-top: 0.35rem;
}

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

.footer__bottom {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  margin: 0;
}

.brand--footer {
  padding: 0.5rem 0.65rem;
  background: var(--white);
  border-radius: 8px;
}

.brand--footer img {
  width: 148px;
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--whatsapp);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(7, 26, 43, 0.25);
  transition: transform 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 30px;
  fill: currentColor;
}

/* Interior pages */

.page-hero {
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  color: #cfdeea;
  background:
    radial-gradient(circle at 82% 30%, rgba(244, 122, 42, 0.2), transparent 22%),
    linear-gradient(125deg, var(--navy-950), var(--navy-900));
}

.page-hero .eyebrow,
.contact .eyebrow,
.service-card--featured .service-card__label,
.purpose-card--dark .eyebrow,
.contact-assurance .eyebrow {
  color: var(--orange-500);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.route-mark {
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-mark i {
  position: relative;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.route-mark i::before,
.route-mark i::after {
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
}

.route-mark i::before {
  left: 0;
}

.route-mark i::after {
  right: 0;
}

.story {
  background: var(--sand-50);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

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

.story__media::after {
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: 0;
  content: "";
  background: var(--orange-600);
  border-radius: var(--radius-lg);
}

.story__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--navy-900);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--orange-600);
  border-radius: 50%;
}

.purpose {
  background: var(--white);
}

.purpose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.purpose-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--sky-100);
  border-radius: var(--radius-lg);
}

.purpose-card--dark {
  color: #c6d8e5;
  background: var(--navy-900);
}

.purpose-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.purpose-card--dark h2 {
  color: var(--white);
}

.purpose-card p:last-child {
  max-width: 560px;
  margin-bottom: 0;
}

.service-detail-section {
  background: var(--sand-50);
}

.service-detail-list {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.service-detail--reverse img {
  grid-column: 2;
}

.service-detail--reverse > div {
  grid-row: 1;
  grid-column: 1;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-detail__number {
  margin: 0 0 0.8rem;
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-detail h3 {
  max-width: 720px;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.service-detail > div > p:not(.service-detail__number) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-page {
  background: var(--sand-50);
}

.contact-page__heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.contact-page__heading h2 {
  margin-bottom: 0.75rem;
}

.contact-page__heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-600) 0 28%, var(--navy-900) 28% 100%);
}

.contact-form {
  display: grid;
  gap: 1.35rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field label span {
  color: var(--orange-600);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #aab8c4;
  border-radius: 10px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--navy-800);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--navy-900);
  outline: 3px solid var(--white);
  outline-offset: 1px;
  box-shadow: 0 0 0 5px var(--navy-900) !important;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #a12622;
}

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

.contact-form__verification {
  min-width: 0;
  min-height: 65px;
}

.contact-form__verification .contact-turnstile {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.contact-form__verification .contact-turnstile iframe {
  max-width: 100%;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.form-checkbox {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--orange-600);
}

.contact-form__submit {
  min-width: 130px;
  cursor: pointer;
  font-family: inherit;
}

.contact-form__submit[aria-busy="true"] > svg {
  display: none;
}

.button__spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: button-spin 700ms linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin-bottom: 1.35rem;
  padding: 1rem 1.15rem;
  color: var(--navy-900);
  background: var(--sky-100);
  border-left: 4px solid var(--navy-900);
  border-radius: 8px;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #0b512c;
  background: #e8f7ef;
  border-left-color: #0f7a3d;
}

.form-status[data-state="warning"] {
  color: #6d3b00;
  background: #fff7e6;
  border-left-color: #b65d00;
}

.form-status[data-state="error"] {
  color: #721c18;
  background: #fff0ef;
  border-left-color: #a12622;
}

.contact-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 1.2rem;
}

.contact-page__lead {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-tip {
  max-width: 570px;
  margin: 0;
  padding: 1.25rem 1.4rem;
  color: var(--muted);
  background: var(--white);
  border-left: 4px solid var(--orange-600);
}

.contact-sidebar__whatsapp {
  width: 100%;
}

.contact-options {
  display: grid;
  gap: 0.8rem;
  font-style: normal;
}

.contact-option {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

a.contact-option:hover {
  border-color: var(--orange-500);
  transform: translateY(-2px);
}

.contact-option svg {
  width: 25px;
  flex: 0 0 25px;
  margin-top: 0.2rem;
  fill: none;
  stroke: var(--orange-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.contact-option small {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option strong {
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.contact-assurance {
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: #c6d8e5;
  background: var(--navy-900);
}

.contact-assurance__grid {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-assurance ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0;
  padding: 0;
  counter-reset: contact-step;
  list-style: none;
}

.contact-assurance li {
  counter-increment: contact-step;
}

.contact-assurance li::before {
  content: "0" counter(contact-step);
  display: block;
  margin-bottom: 1.1rem;
  color: var(--orange-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-assurance strong,
.contact-assurance span {
  display: block;
}

.contact-assurance strong {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-assurance span {
  font-size: 0.9rem;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.page-hero__copy > p:last-child {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.page-hero__aside {
  width: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #d4e2ec;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.page-hero__aside strong {
  color: var(--orange-500);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
  font-size: 4.5rem;
  line-height: 0.9;
}

.page-hero__aside span {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.stores-directory {
  background: var(--sand-50);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.js .directory-toolbar {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
}

.directory-toolbar__heading {
  margin-bottom: 0;
}

.store-filter {
  min-width: 0;
  display: none;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(16, 42, 67, 0.06);
}

.js .store-filter {
  display: block;
}

.store-filter > label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 850;
}

.store-filter__field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.9rem;
  background: var(--sky-100);
  border: 2px solid transparent;
  border-radius: 11px;
}

.store-filter__field:focus-within {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 3px rgba(189, 65, 8, 0.16);
}

.store-filter__field svg {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.store-filter input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 0;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.store-filter input:focus-visible {
  outline: 0;
  box-shadow: none !important;
}

.store-filter input::placeholder {
  color: #596e80;
  opacity: 1;
}

.store-filter__status {
  min-width: 0;
  min-height: 1.4em;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.5rem;
}

.store-category {
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(16, 42, 67, 0.06);
}

.store-category > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.store-category__body {
  padding: clamp(1.4rem, 4vw, 2.25rem);
}

.store-category__count {
  margin: 0 0 0.35rem;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-category h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-links li {
  min-width: 0;
  border-top: 1px solid var(--border);
}

.store-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0.1rem;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
  text-decoration: none;
}

.store-links a:hover {
  color: var(--orange-600);
}

.store-links span {
  flex: 0 0 auto;
  color: var(--orange-600);
}

.store-empty {
  padding: 3rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.store-empty h3 {
  margin-bottom: 0.5rem;
}

.store-empty p {
  margin: 0;
  color: var(--muted);
}

.directory-note {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 1.25rem 1.5rem;
  color: var(--muted);
  background: var(--white);
  border-left: 4px solid var(--orange-600);
}

@media (max-width: 900px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .js .header__inner {
    flex-wrap: nowrap;
  }

  .js .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: static;
    flex-basis: 100%;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 1rem 20px 1.4rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 30px rgba(16, 42, 67, 0.12);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .js .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  }

  .js .main-nav.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav > a:not(.button) {
    padding: 0.8rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .button {
    margin-top: 1rem;
  }

  .hero__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    width: min(520px, calc(100% - 20px));
    margin-inline: auto;
  }

  .hero__media img {
    aspect-ratio: 1.05;
    object-position: center 32%;
  }

  .hero__media figcaption {
    right: -12px;
  }

  .contact__grid {
    align-items: start;
  }

  .page-hero__grid,
  .page-hero__inner,
  .story__grid,
  .service-detail,
  .contact-page__grid,
  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .js .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .route-mark {
    width: fit-content;
  }

  .page-hero__aside {
    width: min(100%, 360px);
    min-height: 0;
  }

  .story__media {
    width: min(520px, calc(100% - 20px));
  }

  .service-detail--reverse img,
  .service-detail--reverse > div {
    grid-row: auto;
    grid-column: auto;
  }

  .service-detail--reverse img {
    order: 0;
  }

  .service-detail--reverse > div {
    order: 1;
  }

  .contact-page__grid {
    align-items: start;
  }

  .contact-sidebar {
    position: static;
  }
}

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

  .topbar p {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 70px;
  }

  .brand img {
    width: 168px;
  }

  .hero {
    padding-top: 3.8rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

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

  .hero__actions {
    align-items: flex-start;
  }

  .hero__actions .text-link {
    width: auto;
  }

  .hero__media::before {
    inset: 14px -12px -14px 12px;
  }

  .hero__media figcaption {
    right: -6px;
    bottom: 24px;
    min-width: 200px;
  }

  .benefits__grid,
  .steps,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 104px;
    padding-inline: 0.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .steps {
    gap: 3.4rem;
  }

  .steps::before {
    display: none;
  }

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

  .quote-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-band__inner {
    gap: 2rem;
  }

  .quote-band .button {
    width: 100%;
  }

  .contact__grid {
    gap: 3.5rem;
  }

  .page-hero {
    padding: 3.8rem 0 4.5rem;
  }

  .purpose__grid,
  .contact-assurance__grid,
  .contact-assurance ol,
  .stores-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    min-height: 360px;
  }

  .story__media::after {
    inset: 14px -12px -14px 12px;
  }

  .contact-page__grid {
    gap: 3.5rem;
  }

  .contact-form-card {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-option {
    padding: 1.2rem;
  }

  .store-category {
    contain-intrinsic-size: auto 900px;
  }

  .directory-note {
    margin-top: 2rem;
  }

  .contact-card {
    min-width: 0;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-block: 2.5rem;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.6rem);
  }

  .store-links {
    grid-template-columns: 1fr;
  }
}

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

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