@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/atkinson-400.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/atkinson-700.woff2") format("woff2");
}
@font-face {
  font-family: "Saira Semi Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/saira-600.woff2") format("woff2");
}
@font-face {
  font-family: "Saira Semi Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/saira-700.woff2") format("woff2");
}
@font-face {
  font-family: "Saira Semi Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/saira-800.woff2") format("woff2");
}

:root {
  --ink: #101314;
  --ink-soft: #25302e;
  --muted: #59635f;
  --paper: #fffaf0;
  --paper-deep: #f4efe4;
  --line: #d9d7cd;
  --signal: #f6c945;
  --signal-soft: #fff0a8;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 19, 20, .12);
  --display: "Saira Semi Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", Arial, sans-serif;
  --mono: Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  color: var(--muted);
  font: 700 .76rem/1.2 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow--signal { color: #725b00; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.035em; line-height: .98; }
h1 { font-size: clamp(3.2rem, 7vw, 6rem); max-width: 9.5ch; }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.2rem); max-width: 11ch; }
h3 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); max-width: 62ch; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { color: var(--white); background: var(--ink); }
.section--dark .eyebrow,
.section--dark .number-list b { color: var(--signal); }
.section--dark .lede,
.section--dark details p { color: #c9d0c9; }
.section--cream { background: var(--paper-deep); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 42ch; color: var(--muted); margin-bottom: 4px; }
.section--dark .section-heading p { color: #b8c0b9; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid rgba(16, 19, 20, .1);
  backdrop-filter: blur(16px);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.45rem; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--ink); }
.brand small { display: block; color: var(--muted); font: 700 .55rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .96rem; }
.nav-links a { color: var(--ink-soft); font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #806800; }
.nav-cta { display: inline-flex; }
.menu-toggle { position: relative; display: none; width: 44px; height: 44px; border: 0; background: transparent; font-size: 0; padding: 8px; cursor: pointer; }
.menu-toggle::before { content: ""; position: absolute; left: 10px; right: 10px; top: 14px; height: 2px; background: var(--ink); box-shadow: 0 7px 0 var(--ink), 0 14px 0 var(--ink); }
.menu-toggle[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); box-shadow: none; }
.menu-toggle[aria-expanded="true"]::after { content: ""; position: absolute; left: 10px; right: 10px; top: 21px; height: 2px; background: var(--ink); transform: rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 13px 19px; border: 1px solid var(--ink); border-radius: 999px; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(16,19,20,.14); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
.button--primary { background: var(--signal); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--ghost { background: transparent; }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.68); }

.hero { position: relative; overflow: hidden; padding: 92px 0 82px; background: var(--paper); }
.hero::after { content: ""; position: absolute; width: 34vw; height: 72%; right: 0; top: 0; border-radius: 0 0 0 120px; background: var(--signal); opacity: .9; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 58px; align-items: center; }
.hero h1 { margin: 15px 0 26px; }
.hero-copy { max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 35px; padding-top: 23px; border-top: 1px solid var(--line); color: var(--muted); font-size: .94rem; }
.hero-proof strong { display: block; color: var(--ink); font: 800 1.5rem/1 var(--display); }
.hero-media { position: relative; min-height: 510px; }
.hero-media img { width: 100%; height: 510px; object-fit: cover; object-position: 57% center; border-radius: 24px 24px 24px 76px; filter: saturate(.92) contrast(1.04); box-shadow: var(--shadow); }
.photo-tag { position: absolute; left: -22px; bottom: 30px; max-width: 190px; padding: 17px; color: var(--ink); background: var(--signal); border: 1px solid var(--ink); transform: rotate(-3deg); box-shadow: 7px 7px 0 var(--ink); }
.photo-tag strong { display: block; font-family: var(--display); font-size: 1.35rem; line-height: .95; }

.trust-strip { padding: 20px 0; color: #edf2ec; background: var(--ink-soft); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.trust-item span:first-child { color: var(--signal); font: 800 1.6rem/1 var(--display); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; min-height: 305px; flex-direction: column; justify-content: space-between; padding: 24px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card--featured { background: var(--signal); border-color: var(--ink); }
.service-card h3 { max-width: 10ch; margin: 16px 0 12px; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card--featured p { color: #403700; }
.service-card .arrow { font-size: 1.4rem; font-weight: 900; }
.service-card .card-icon { font-size: 1.55rem; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(56px, 6vw, 84px); }
.split--reverse { grid-template-columns: 1.05fr .95fr; }
.split h2 { margin: 14px 0 22px; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 430px; min-height: 0; object-fit: cover; border-radius: 22px; }
.split-media--service img { height: 500px; min-height: 0; object-position: center; }
.split-media--about img { height: 430px; min-height: 0; object-position: center 78%; }
.split-media--contain img { object-fit: contain; padding: 12px; background: #202625; }
.split-media--injectors img { object-position: center 58%; }
.split-media--yellow { padding: 15px 15px 0 0; }
.split-media--yellow::before { content: ""; position: absolute; inset: 0 0 0 15px; background: var(--signal); border-radius: 22px; transform: translate(15px, 15px); z-index: -1; }
.number-list { display: grid; gap: 17px; margin: 28px 0 0; padding: 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.number-list b { color: #806800; font: 800 1.1rem/1 var(--mono); }

.offer { padding: 40px 44px; color: var(--ink); border: 1px solid var(--ink); border-radius: 24px; background: var(--signal); }
.offer .eyebrow { color: #544600; }
.offer-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(42px, 6vw, 76px); align-items: center; }
.offer h2 { max-width: 14ch; margin: 11px 0 14px; font-size: clamp(2.65rem, 4vw, 3.65rem); line-height: .98; }
.offer p { max-width: 56ch; margin-bottom: 22px; }
.offer .button { color: var(--white); background: var(--ink); border-color: var(--ink); }
.offer-list { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.offer-list li { padding: 13px 0; color: var(--ink); border-bottom: 1px solid rgba(16, 19, 20, .26); font-weight: 800; }
.section--offer { padding: 64px 0; }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
details { padding: 20px 0; border-top: 1px solid rgba(16,19,20,.2); }
summary { cursor: pointer; font-family: var(--display); font-size: 1.45rem; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; font-family: var(--mono); }
details[open] summary::after { content: "–"; }
details p { max-width: 72ch; margin: 12px 38px 0 0; color: var(--muted); }

.page-hero { padding: 72px 0 64px; background: var(--ink); color: var(--white); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: clamp(56px, 6vw, 88px); align-items: center; }
.page-hero h1 { max-width: 10ch; margin: 13px 0 24px; font-size: clamp(3.2rem, 5.4vw, 5.25rem); overflow-wrap: break-word; hyphens: auto; }
.page-hero .lede { color: #c9d0c9; }
.page-hero .eyebrow { color: var(--signal); }
.page-hero-image { padding: 0 10px 10px 0; border-radius: 22px 22px 22px 72px; background: var(--signal); }
.page-hero-image img { width: 100%; height: 320px; object-fit: cover; border-radius: 18px 18px 18px 62px; }
.breadcrumbs { padding: 18px 0 0; color: var(--muted); font: .76rem var(--mono); }
.breadcrumbs a:hover { color: var(--ink); }
.service-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 62px; align-items: start; }
.service-intro h2 { margin: 12px 0 20px; }
.service-intro .lede { margin-bottom: 28px; }
.facts { display: grid; gap: 12px; padding: 22px; background: var(--paper-deep); border-radius: 16px; }
.fact { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.fact:last-child { padding-bottom: 0; border-bottom: 0; }
.fact span { color: var(--muted); font-size: .9rem; }
.fact strong { text-align: right; }
.proof-image { margin-top: 42px; }
.proof-image img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 22px; }
.image-caption { margin-top: 9px; color: var(--muted); font: .75rem var(--mono); }
.equipment-proof { display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; align-items: center; margin-top: 42px; padding: 38px; color: var(--white); background: var(--ink); border-radius: 24px; overflow: hidden; }
.equipment-proof-media { height: 480px; display: grid; place-items: center; padding: 20px; border-radius: 18px; background: #242a28; }
.equipment-proof-media img { width: auto; max-width: 100%; height: 100%; max-height: 100%; object-fit: contain; }
.equipment-proof-copy h3 { max-width: 11ch; margin: 14px 0 18px; font-size: clamp(2.3rem, 4vw, 3.8rem); }
.equipment-proof-copy p { max-width: 46ch; color: #c6cec7; }
.equipment-proof .eyebrow { color: var(--signal); }
.equipment-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.equipment-tags span { padding: 8px 11px; border: 1px solid #4b5651; border-radius: 999px; font: 700 .72rem var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.comparison-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.comparison-card img { width: 100%; height: 270px; object-fit: cover; }
.comparison-card div { padding: 16px 18px; }
.comparison-card strong { font-family: var(--display); font-size: 1.3rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; }
.contact-card { padding: 28px; border-radius: 20px; background: var(--white); border: 1px solid var(--line); }
.contact-card--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.contact-card h2 { margin: 13px 0 25px; }
.contact-lines { display: grid; gap: 20px; }
.contact-line small { display: block; color: var(--muted); font: .72rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.contact-card--dark .contact-line small { color: #aab4ac; }
.contact-line strong { display: block; margin-top: 3px; font-family: var(--display); font-size: 1.28rem; line-height: 1.05; }
.contact-card--dark .contact-line strong { color: var(--signal); }
.map-frame { min-height: 410px; padding: 15px; background: var(--signal); border-radius: 20px; }
.map-inner { height: 100%; min-height: 380px; display: grid; place-items: center; text-align: center; padding: 30px; background: var(--ink-soft); color: var(--white); border-radius: 12px; }
.map-inner p { color: #ccd2cb; max-width: 28ch; }
.contact-visit-section { background: var(--paper-deep); }
.contact-visit { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; color: var(--white); background: var(--ink); border: 1px solid var(--ink); border-radius: 26px; box-shadow: var(--shadow); }
.contact-visit-main { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.contact-visit-main .eyebrow { color: var(--signal); }
.contact-visit-main h2 { max-width: 10ch; margin: 14px 0 20px; }
.contact-visit-main .lede { color: #c6cec7; }
.contact-visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-visit-details { display: grid; grid-template-columns: repeat(2, 1fr); color: var(--ink); background: var(--signal); }
.contact-visit-details > div { display: flex; min-height: 190px; flex-direction: column; justify-content: center; padding: 28px; border-left: 1px solid rgba(16,19,20,.22); border-bottom: 1px solid rgba(16,19,20,.22); }
.contact-visit-details small { display: block; color: #6b5900; font: 700 .68rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.contact-visit-details strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 1.35rem; line-height: 1.08; }
.contact-visit-details a:hover { text-decoration: underline; }
.location-section { background: var(--paper-deep); }
.location-shell { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 540px; overflow: hidden; color: var(--white); background: var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.location-media { position: relative; min-height: 540px; }
.location-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.location-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16,19,20,.68)); pointer-events: none; }
.location-badge { position: absolute; z-index: 1; left: 24px; bottom: 24px; padding: 14px 16px; color: var(--ink); background: var(--signal); border-radius: 14px; box-shadow: 5px 5px 0 var(--ink); }
.location-badge span { display: block; font: 700 .65rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.location-badge strong { display: block; margin-top: 3px; font-family: var(--display); font-size: 1.35rem; line-height: 1; }
.location-content { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.location-content .eyebrow { color: var(--signal); }
.location-content h2 { max-width: 10ch; margin: 14px 0 20px; }
.location-content .lede { color: #c6cec7; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 34px; }
.location-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid #3a4440; }
.location-details > div { padding: 18px 18px 18px 0; border-bottom: 1px solid #3a4440; }
.location-details > div:nth-child(even) { padding-left: 18px; border-left: 1px solid #3a4440; }
.location-details small { display: block; color: #98a49d; font: 700 .66rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.location-details strong { display: block; margin-top: 5px; font-family: var(--display); font-size: 1.08rem; line-height: 1.15; }
.location-details a:hover { color: var(--signal); }

.footer { padding: 58px 0 25px; color: #d6ddd5; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; padding-bottom: 48px; }
.footer .brand { color: var(--white); }
.footer .brand small { color: #aab4ac; }
.footer p { color: #aab4ac; max-width: 34ch; }
.footer h3 { color: var(--signal); font-size: 1.3rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 9px; color: #d6ddd5; }
.footer-links a:hover { color: var(--signal); }
.footer-bottom { display: grid; grid-template-columns: auto minmax(360px, 1fr) auto; align-items: center; gap: 20px; padding-top: 20px; border-top: 1px solid #3b4541; color: #89958c; font-size: .85rem; }
.footer-bottom a { text-decoration: underline; }
.footer-credit { display: grid; gap: 3px; justify-self: center; text-align: center; color: #aab4ac; }
.footer-credit strong { color: #d6ddd5; }
.footer-credit-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.footer-credit a:hover { color: var(--signal); }

.whatsapp-float { position: fixed; z-index: 25; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; padding: 14px 18px; color: var(--ink); background: var(--signal); border: 1px solid var(--ink); border-radius: 999px; font-weight: 900; box-shadow: 5px 5px 0 var(--ink); }
.whatsapp-float:hover { transform: translateY(-2px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.legal-copy { max-width: 78ch; }
.legal-copy h2 { max-width: none; font-size: 2rem; margin-top: 42px; }
.legal-copy ul { padding-left: 22px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--signal); background: var(--paper-deep); }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 82px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .menu-toggle { display: block; }
  .hero-grid, .split, .split--reverse, .page-hero-grid, .service-intro, .contact-grid, .contact-visit, .location-shell, .equipment-proof { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 65px; }
  .hero-media, .hero-media img { min-height: 410px; height: 410px; }
  .section { padding: 72px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-credit { grid-column: 1 / -1; grid-row: 1; justify-self: start; text-align: left; }
  .footer-credit-links { justify-content: flex-start; }
  .location-media { min-height: 360px; }
  .location-content { padding: 40px; }
  .equipment-proof-media { height: 420px; }
  .contact-visit { gap: 0; }
  .contact-visit-main { padding: 42px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { width: min(1180px, calc(100% - 28px)); }
  .nav { min-height: 72px; }
  .nav-links { inset: 72px 0 auto; }
  .brand { font-size: 1.22rem; }
  .brand img { width: 42px; height: 42px; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading p { margin-top: 16px; }
  .hero { padding: 58px 0 64px; }
  .hero::after { width: 44vw; height: 34%; right: 0; top: 0; border-radius: 0 0 0 70px; }
  .hero-media, .hero-media img { min-height: 330px; height: 330px; }
  .hero-media img { border-radius: 20px 20px 20px 55px; }
  .photo-tag { left: 12px; bottom: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .trust-item { font-size: .82rem; }
  .trust-item span:first-child { font-size: 1.35rem; }
  .service-grid, .comparison-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .offer { padding: 28px 22px; }
  .offer h2 { max-width: 100%; font-size: clamp(2.4rem, 12vw, 3.25rem); }
  .section--offer { padding: 46px 0; }
  .split-media img { height: 300px; min-height: 0; }
  .split-media--service img { height: 320px; min-height: 0; }
  .split-media--about img { height: 300px; min-height: 0; object-position: center 76%; }
  .split-media--contain img { height: 320px; padding: 10px; }
  .split-media--injectors img { object-position: center 60%; }
  .page-hero { padding: 52px 0; }
  .page-hero h1 { max-width: 100%; font-size: clamp(2.65rem, 11.5vw, 3.4rem); }
  .page-hero-image img { height: 250px; }
  .location-media { min-height: 280px; }
  .location-content { padding: 30px 24px; }
  .location-actions { flex-direction: column; }
  .location-actions .button { width: 100%; }
  .location-details { grid-template-columns: 1fr; }
  .location-details > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .equipment-proof { padding: 24px; }
  .equipment-proof-media { height: 360px; padding: 10px; }
  .contact-visit-main { padding: 34px 24px; }
  .contact-visit-actions { flex-direction: column; }
  .contact-visit-actions .button { width: 100%; }
  .contact-visit-details { grid-template-columns: 1fr; }
  .contact-visit-details > div { min-height: 0; padding: 22px 24px; border-left: 0; }
  .fact { display: block; }
  .fact strong { display: block; text-align: left; margin-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-credit { grid-column: auto; grid-row: auto; }
  .footer-bottom > span { margin-top: 0; }
  .footer-bottom [data-year] { display: inline; margin: 0; }
  .whatsapp-float { right: 13px; bottom: 13px; padding: 12px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
