:root {
  --color-white: #ffffff;
  --color-offwhite: #f6f8fb;
  --color-black: #0b0b0d;
  --color-text: #111827;
  --color-muted: #5f6977;
  --color-blue: #1f5cff;
  --color-blue-dark: #1647d8;
  --color-whatsapp: #20c462;
  --color-whatsapp-dark: #15994b;
  --color-facebook: #1877f2;
  --color-facebook-dark: #115ec7;
  --color-red: #ef233c;
  --color-border: #dfe5ee;
  --color-border-strong: #c8d2df;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-soft: 0 14px 34px rgba(17, 24, 39, 0.08);
  --shadow-card: 0 18px 44px rgba(17, 24, 39, 0.12);
  --container: 1220px;
  --anchor-offset: 96px;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Oswald", "Arial Narrow", Impact, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at 18px 18px, rgba(17, 24, 39, 0.025) 0 1px, transparent 1px),
    var(--color-white);
  background-size: 18px 18px;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.55;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body-font);
}

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

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

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(31, 92, 255, 0.32);
  outline-offset: 3px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.08em;
  height: 1.08em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-icon {
  width: 1.08em;
  height: 1.08em;
  display: inline-block;
  flex: 0 0 auto;
  object-fit: contain;
}

.button .brand-icon,
.nav-cta .brand-icon {
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

#services,
#gallery,
#why-us,
#area,
#contact,
#contact-form {
  scroll-margin-top: var(--anchor-offset);
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--color-black);
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 13.5ch;
  font-size: clamp(2.9rem, 4.55vw, 4.95rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

h3 {
  font-size: clamp(1.24rem, 1.6vw, 1.58rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.58rem;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--color-red);
  content: "";
}

.button,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.nav-cta {
  color: var(--color-white);
  background: var(--color-blue);
  box-shadow: 0 12px 24px rgba(31, 92, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--color-blue-dark);
  box-shadow: 0 15px 30px rgba(31, 92, 255, 0.3);
}

.button[data-contact-href="whatsappHref"] {
  color: var(--color-white);
  border-color: var(--color-whatsapp);
  background: var(--color-whatsapp);
  box-shadow: 0 12px 24px rgba(32, 196, 98, 0.24);
}

.button[data-contact-href="whatsappHref"]:hover,
.button[data-contact-href="whatsappHref"]:focus-visible {
  border-color: var(--color-whatsapp-dark);
  background: var(--color-whatsapp-dark);
  box-shadow: 0 15px 30px rgba(32, 196, 98, 0.3);
}

.button[data-contact-href="facebookHref"] {
  color: var(--color-white);
  border-color: var(--color-facebook);
  background: var(--color-facebook);
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.24);
}

.button[data-contact-href="facebookHref"]:hover,
.button[data-contact-href="facebookHref"]:focus-visible {
  border-color: var(--color-facebook-dark);
  background: var(--color-facebook-dark);
  box-shadow: 0 15px 30px rgba(24, 119, 242, 0.3);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-blue-dark);
  color: var(--color-blue-dark);
  box-shadow: 0 10px 22px rgba(31, 92, 255, 0.12);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(18px);
}

.top-strip {
  color: var(--color-white);
  background: var(--color-black);
}

.top-strip-inner {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 850;
}

.top-strip-message,
.top-strip-links,
.top-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-strip .icon,
.top-strip .brand-icon {
  width: 1rem;
  height: 1rem;
  color: #86b2ff;
}

.top-strip-links {
  gap: 16px;
}

.top-strip a {
  color: #bad3ff;
  white-space: nowrap;
  transition: color 180ms ease;
}

.top-strip a:hover,
.top-strip a:focus-visible {
  color: var(--color-white);
}

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

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

.brand-logo {
  width: clamp(132px, 11vw, 160px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: auto;
  color: var(--color-black);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.nav-cta {
  min-height: 38px;
  padding: 9px 14px;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--color-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  width: 44px;
  height: 40px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(1.25rem, 2.35vw, 1.9rem) 0 1.05rem;
  background:
    linear-gradient(90deg, var(--color-white) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(255, 255, 255, 0.76) 64%, rgba(246, 248, 251, 0.92) 100%),
    var(--color-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.86fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 2.6vw, 2.6rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy > p:not(.eyebrow):not(.hero-contact-line) {
  max-width: 545px;
  margin: 0.85rem 0 1.1rem;
  color: #334155;
  font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.1rem);
  font-weight: 600;
  line-height: 1.65;
}

.hero-contact-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.85rem 0 0;
  color: var(--color-black);
  font-size: 0.95rem;
  font-weight: 850;
}

.hero-contact-line > span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(31, 92, 255, 0.26);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(31, 92, 255, 0.06);
}

.hero-contact-line a {
  color: var(--color-blue);
  font-weight: 900;
}

.hero-media {
  position: relative;
  min-height: 330px;
}

.hero-media > img {
  width: 100%;
  height: clamp(300px, 25vw, 365px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.benefit-strip .icon,
.benefit-strip .brand-icon,
.contact-card > .icon,
.contact-card > .brand-icon,
.area-panel > .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 9px;
  border: 1px solid rgba(31, 92, 255, 0.28);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(31, 92, 255, 0.06);
}

.benefit-strip .icon,
.benefit-strip .brand-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
}

.benefit-strip strong,
.contact-card strong,
.area-panel strong {
  color: var(--color-black);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.benefit-strip strong {
  font-size: 0.76rem;
  line-height: 1.15;
}

.benefit-strip p {
  margin: 0.16rem 0 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.3;
}

.quick-benefits {
  padding: 0 0 1.25rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.benefit-strip article {
  min-height: 68px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0.72rem 0.9rem;
  border-right: 1px solid var(--color-border);
}

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

.section {
  padding: clamp(2.1rem, 3.35vw, 3.25rem) 0;
}

.section-heading {
  max-width: none;
  margin-bottom: clamp(1.05rem, 2vw, 1.55rem);
}

.section-heading h2 {
  margin-bottom: 0.55rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.compact-heading {
  margin-bottom: 1.05rem;
}

.services-section {
  padding-top: 1rem;
  background: var(--color-white);
}

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

.service-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
  }
}

.service-image {
  position: relative;
  height: 132px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-offwhite);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.service-label {
  width: fit-content;
  margin-bottom: 0.45rem;
  padding-top: 0.45rem;
  border-top: 3px solid var(--color-red);
  color: var(--color-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.48;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card a .icon,
.gallery-action .icon,
.contact-card span .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.proof-section {
  padding-top: 2rem;
  background: var(--color-offwhite);
}

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

.proof-grid article,
.detail-list article,
.faq-grid article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.proof-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 1rem;
}

.proof-grid .icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(31, 92, 255, 0.28);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(31, 92, 255, 0.06);
}

.proof-grid strong,
.detail-list strong {
  color: var(--color-black);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-grid p,
.detail-list p,
.faq-grid p {
  margin: 0.22rem 0 0;
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.48;
}

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

.detail-layout,
.local-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: start;
}

.detail-layout > div:first-child p:not(.eyebrow),
.local-layout > div:first-child p:not(.eyebrow) {
  max-width: 520px;
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

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

.detail-list article,
.faq-grid article {
  padding: 1rem;
}

.gallery-section {
  padding-top: 2.1rem;
  background: var(--color-offwhite);
}

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

.results-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-bottom: 0;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.11);
}

.results-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.results-grid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 8px;
  color: var(--color-white);
  background: rgba(11, 11, 13, 0.78);
  border-left: 3px solid var(--color-red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (hover: hover) {
  .results-grid figure:hover img {
    transform: scale(1.04);
  }
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.booking-cta {
  padding: clamp(1.8rem, 3.1vw, 2.55rem) 0;
  background: var(--color-white);
}

.booking-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  overflow: hidden;
  padding: 12px clamp(1rem, 2vw, 1.45rem) 12px 12px;
  border-radius: var(--radius-md);
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.9), rgba(11, 11, 13, 0.92)),
    var(--color-black);
  box-shadow: var(--shadow-card);
}

.booking-card > img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.booking-copy .eyebrow,
.booking-copy h2 {
  color: var(--color-white);
}

.booking-copy h2 {
  font-size: clamp(1.65rem, 2.45vw, 2.7rem);
}

.booking-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.booking-copy li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-copy li .icon {
  width: 1rem;
  height: 1rem;
  color: #8db5ff;
}

.local-section {
  background: var(--color-offwhite);
}

.local-section .local-layout > div:first-child p:not(.eyebrow) {
  max-width: 650px;
}

.local-layout ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-layout li {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

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

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

.faq-grid article {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--color-red);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-grid article::before {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(31, 92, 255, 0.24);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(31, 92, 255, 0.06);
  content: "?";
  font-size: 0.82rem;
  font-weight: 900;
}

@media (hover: hover) {
  .faq-grid article:hover {
    transform: translateY(-3px);
    border-color: var(--color-border-strong);
    border-left-color: var(--color-red);
    box-shadow: var(--shadow-card);
  }
}

.faq-grid h3 {
  margin-bottom: 0.45rem;
  font-family: var(--body-font);
  font-size: 0.82rem;
  line-height: 1.2;
}

.contact-section {
  background: var(--color-offwhite);
}

.contact-heading {
  text-align: left;
}

.area-panel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.area-panel p {
  margin: 0.18rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-map {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.service-map iframe {
  display: block;
  width: 100%;
  height: 210px;
  border: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0.9rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  align-items: start;
  column-gap: 12px;
  min-height: 112px;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) {
  .contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-blue);
    box-shadow: var(--shadow-card);
  }
}

.contact-card > .icon,
.contact-card > .brand-icon {
  grid-row: 1 / span 3;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 8px;
}

.contact-card strong {
  font-size: 0.78rem;
  line-height: 1.15;
}

.contact-card p {
  margin: 0.22rem 0 0.45rem;
  font-size: 0.81rem;
  line-height: 1.35;
}

.contact-card > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  color: var(--color-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px 14px;
  padding: clamp(0.9rem, 1.8vw, 1.1rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.form-intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--color-border);
}

.form-intro strong {
  color: var(--color-black);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.form-intro p {
  max-width: 620px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form label {
  display: grid;
  grid-column: span 2;
  gap: 6px;
  color: var(--color-black);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(-n + 2) {
  grid-column: span 3;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-black);
  background-color: var(--color-white);
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.7rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--color-blue) 50%) calc(100% - 21px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--color-blue) 50%, transparent 50%) calc(100% - 16px) 50% / 7px 7px no-repeat,
    var(--color-white);
}

.contact-form textarea {
  height: 90px;
  min-height: 90px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(31, 92, 255, 0.12);
}

.contact-form option {
  color: var(--color-black);
}

.contact-form .full,
.full {
  grid-column: 1 / -1;
}

.contact-form .button {
  min-height: 46px;
}

.contact-form .button.full {
  grid-column: 1 / 3;
  width: 100%;
}

.form-note {
  grid-column: 3 / -1;
  align-self: center;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.site-footer {
  background: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(130px, 0.5fr));
  gap: clamp(1.4rem, 4vw, 3.5rem);
  padding-block: clamp(1.7rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-border);
}

.site-footer .brand-logo {
  width: clamp(138px, 13vw, 170px);
}

.footer-grid p {
  max-width: 390px;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h2 {
  margin: 0 0 0.35rem;
  color: var(--color-black);
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--color-blue);
}

.footer-bottom {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-black);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.footer-bottom::before {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background: var(--color-black);
  content: "";
}

.footer-bottom a {
  color: var(--color-white);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #bad3ff;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  }

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

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

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

@media (max-width: 940px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

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

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    min-height: 0;
  }

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

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

  .benefit-strip article {
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .benefit-strip article:nth-child(3n) {
    border-right: 0;
  }

  .booking-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .booking-card .button {
    grid-column: 2;
    width: fit-content;
  }

  .contact-cards,
  .proof-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .local-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --anchor-offset: 112px;
  }

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

  .top-strip-inner {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    gap: 5px;
    padding-block: 4px;
    font-size: 0.66rem;
    text-align: center;
  }

  .top-strip-message {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .top-strip-links {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .top-strip a {
    gap: 5px;
    font-size: 0.65rem;
  }

  .nav-row {
    min-height: 56px;
  }

  .brand-logo {
    width: 126px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 1.1rem 0 0.9rem;
  }

  h1 {
    max-width: 12.5ch;
    font-size: clamp(2.1rem, 11.2vw, 2.75rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .hero-copy > p:not(.eyebrow):not(.hero-contact-line) {
    margin: 0.85rem 0 1rem;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .button-row,
  .button,
  .nav-cta {
    width: 100%;
  }

  .button,
  .nav-cta {
    min-height: 43px;
    padding: 10px 15px;
  }

  .hero-contact-line {
    width: 100%;
    margin: 0.85rem 0 1.05rem;
    gap: 6px;
    font-size: 0.86rem;
  }

  .hero-contact-line a {
    white-space: nowrap;
  }

  .hero-media > img {
    height: clamp(170px, 48vw, 225px);
    aspect-ratio: auto;
    border-radius: var(--radius-md);
  }

  .quick-benefits {
    padding-bottom: 0.85rem;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .benefit-strip article {
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    padding: 0.62rem 0.65rem;
  }

  .benefit-strip .icon,
  .benefit-strip .brand-icon {
    width: 34px;
    height: 34px;
  }

  .section {
    padding: 1.95rem 0;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .contact-cards,
  .proof-grid,
  .detail-list,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    width: calc(100vw - 14px);
    display: grid;
    grid-auto-columns: minmax(260px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 7px 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .service-card {
    min-height: 100%;
    scroll-snap-align: start;
  }

  .service-image {
    height: 150px;
  }

  .service-body {
    padding: 0.95rem;
  }

  .gallery-section {
    padding-top: 1.8rem;
  }

  .results-grid {
    width: calc(100vw - 14px);
    display: grid;
    grid-auto-columns: minmax(230px, 76vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 5px 0;
    scroll-snap-type: x proximity;
  }

  .results-grid figure {
    scroll-snap-align: start;
  }

  .gallery-action .button {
    width: min(100%, 300px);
  }

  .booking-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .booking-card > img {
    height: 155px;
  }

  .booking-copy {
    padding: 0.35rem 0.25rem 0;
  }

  .booking-copy ul {
    display: grid;
    gap: 8px;
  }

  .booking-card .button {
    grid-column: auto;
    width: 100%;
  }

  .area-panel {
    padding: 0.92rem;
  }

  .contact-card {
    padding: 0.82rem 0.9rem;
  }

  .area-panel {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-map iframe {
    height: 150px;
  }

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

  .contact-form {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px;
    padding: 0.82rem;
  }

  .form-intro {
    padding-bottom: 0.48rem;
  }

  .form-intro p {
    font-size: 0.8rem;
  }

  .contact-form label {
    gap: 4px;
    font-size: 0.62rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .contact-form select {
    padding-right: 2.25rem;
    background:
      linear-gradient(45deg, transparent 50%, var(--color-blue) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
      linear-gradient(135deg, var(--color-blue) 50%, transparent 50%) calc(100% - 14px) 50% / 6px 6px no-repeat,
      var(--color-white);
  }

  .contact-form label,
  .contact-form label:nth-of-type(-n + 2),
  .contact-form .button.full,
  .form-note {
    grid-column: 1 / -1;
  }

  .contact-form label:nth-of-type(3),
  .contact-form label:nth-of-type(4) {
    grid-column: span 3;
  }

  .contact-form textarea {
    height: 72px;
    min-height: 72px;
  }

  .contact-form .button {
    min-height: 42px;
  }

  .form-note {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.15rem;
    padding-block: 1.1rem;
    padding-bottom: 1rem;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
  }

  .site-footer .brand-logo {
    width: 112px;
  }

  .footer-grid p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .footer-grid nav {
    gap: 5px;
    justify-items: start;
  }

  .footer-grid h2 {
    margin-bottom: 0.18rem;
    font-size: 0.64rem;
  }

  .footer-grid a {
    gap: 5px;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px 10px;
  }

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

  .footer-bottom {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-block: 0.55rem;
    font-size: 0.72rem;
  }

}

@media (max-width: 390px) {
  .top-strip a {
    font-size: 0.62rem;
  }

  .brand-logo {
    width: 128px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .footer-grid nav:last-child {
    grid-template-columns: 1fr;
  }
}
