@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("../fonts/barlow-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Exo;
  src: url("../fonts/exo-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700 900;
  font-display: swap;
}
:root {
  --red: #ee141d;
  --red-bright: #ff2530;
  --ink: #090a0b;
  --panel: #141516;
  --white: #f6f6f4;
  --muted: #d0d0ce;
  --line: #454648;
  --max: 1180px;
  --heading: Exo, "Arial Black", sans-serif;
  --body: Barlow, "Arial Narrow", Arial, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' opacity='.5' d='M0 0h160v160H0z'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
button:disabled {
  opacity: 0.65;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}
h3 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}
p {
  color: var(--muted);
}
.container {
  width: calc(100% - 72px);
  max-width: var(--max);
  margin-inline: auto;
}
.icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 12px 26px;
  border: 1px solid #ff3434;
  border-bottom-color: #9c050a;
  border-radius: 4px;
  background: linear-gradient(180deg, #e7161a 0%, #b60206 53%, #870105 100%);
  box-shadow:
    inset 0 1px 0 #ff61654d,
    0 3px 12px #0006;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.button:hover {
  background: linear-gradient(180deg, #ff2d33, #be0209);
  box-shadow: 0 0 18px #ef15242e;
}
.button .icon {
  width: 24px;
  height: 24px;
}
.button-outline {
  background: #080808b8;
  border: 1px solid var(--red);
  box-shadow: inset 0 0 14px #ed151114;
}
.button-outline:hover {
  background: #381012;
}
.button-small {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 17px;
  gap: 10px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 5px 3px;
  background: none;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.text-link:hover {
  color: #ff535b;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand-logo {
  width: auto;
  object-fit: contain;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #050505ed;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      #ea0d15,
      #8a3335 15%,
      #919193 50%,
      #ed151c
    )
    1;
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
}
.header-logo {
  width: 181px;
  height: 69px;
  object-fit: contain;
}
.primary-navigation {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-right: auto;
  margin-left: 15px;
}
.primary-navigation a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.primary-navigation a:hover,
.footer-navigation a:hover {
  color: #ff3842;
}
.menu-toggle {
  display: none;
  background: none;
  min-height: 44px;
  padding: 8px;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  background: var(--red);
  color: #fff;
  z-index: 9999;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 10px;
}
.section-image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  z-index: 0;
}
.hero {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid #b91820;
  text-align: center;
  background: #0d0e10;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #0002 0%, #0002 26%, #0005 53%, #000b 100%),
    linear-gradient(90deg, #0000, #0003 30%, #0002 65%, #0000);
}
.hero-image {
  object-position: center 47%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px 0 21px;
}
.hero-logo {
  mix-blend-mode: screen;
  height: 226px;
  max-width: 360px;
  margin: 0 auto 4px;
  filter: drop-shadow(0 4px 12px #0009);
}
.hero h1 {
  font-size: clamp(28px, 3.55vw, 49px);
  letter-spacing: -0.4px;
  text-shadow: 0 3px 3px #000;
  margin-top: 1px;
  white-space: nowrap;
}
.hero-tagline {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 850;
  color: #f01925;
  font-size: clamp(22px, 2.7vw, 36px);
  text-transform: uppercase;
  line-height: 1.3;
  margin: 4px 0 8px;
  text-shadow: 0 2px 2px #000;
}
.hero-description {
  font-size: 22px;
  font-weight: 500;
  color: #eee;
  line-height: 1.3;
}
.area-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.area-list li {
  display: inline;
}
.area-list li + li:before {
  content: "•";
  margin-right: 10px;
  color: #e2e2e2;
}
.hero-areas {
  justify-content: center;
  margin-top: 9px;
  font-size: 20px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0 3px;
}
.hero-actions .button {
  min-width: 290px;
  min-height: 57px;
  font-size: 21px;
}
.hero > .container > .text-link {
  font-size: 18px;
}
.trust-strip {
  border-bottom: 1px solid #666;
  background: linear-gradient(110deg, #08090aee, #111214bb, #060607ee);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 1px 25px;
  border-left: 1px solid #383a3c;
}
.trust-item:first-child {
  border-left: none;
  padding-left: 0;
  align-items: flex-start;
}
.trust-item:last-child {
  padding-right: 0;
}
.trust-item > .icon {
  width: 43px;
  height: 43px;
  color: #d9d9d8;
}
.trust-item strong {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.05;
}
.trust-item span {
  display: block;
  font-size: 13px;
  line-height: 1.12;
  margin-top: 6px;
  color: var(--muted);
}
.section-pad {
  padding: 22px 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: 32px;
  letter-spacing: -0.3px;
}
.section-heading:before,
.section-heading:after {
  content: "";
  width: 105px;
  height: 2px;
  flex: 0 1 105px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.section-heading:after {
  transform: rotate(180deg);
}
.section-heading span {
  flex: 0 1 auto;
}
.section-intro {
  text-align: center;
  font-size: 17px;
  color: #eee;
  margin-top: 3px;
  margin-bottom: 20px;
}
.metal-card {
  border: 1px solid #4b4c4e;
  border-radius: 4px;
  background: linear-gradient(117deg, #1b1d1de0, #0d0e0ff0 70%);
  box-shadow:
    inset 0 1px 2px #ffffff1a,
    0 3px 8px #0007;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 20px;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 21px;
  position: relative;
  text-align: left;
  min-height: 114px;
  padding: 18px 19px;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.service-card > .icon {
  width: 54px;
  height: 54px;
  color: #e0e1de;
}
.service-copy {
  display: block;
  min-width: 0;
}
.service-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.service-copy > span {
  display: block;
  font-size: 17px;
  line-height: 1.17;
  color: #d3d3d3;
}
.service-card .card-chevron {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  color: #e4242a;
  opacity: 0;
}
.service-card:hover {
  border-color: #dc242b;
  background: linear-gradient(117deg, #282021, #111213);
}
.service-card:hover .card-chevron {
  opacity: 1;
}
.additional-services {
  margin-top: 17px;
}
.additional-services summary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  list-style: none;
  cursor: pointer;
  min-height: 36px;
}
.additional-services summary::-webkit-details-marker {
  display: none;
}
.section-heading-small {
  font-size: 19px;
  gap: 16px;
}
.section-heading-small:before,
.section-heading-small:after {
  flex-basis: 145px;
  width: 145px;
}
.details-chevron {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
  color: #a7a7a7;
}
.additional-services:not([open]) .details-chevron {
  transform: rotate(0);
}
.additional-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 7px 44px 0;
}
.additional-grid button {
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: left;
  background: none;
  font-size: 18px;
  min-height: 30px;
  padding: 2px 25px;
  border-left: 1px solid #383a3c;
}
.additional-grid button:nth-child(-n + 3) {
  border-left: 0;
}
.additional-grid .icon {
  width: 14px;
  height: 14px;
  color: var(--red);
}
.additional-grid button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}
.performance-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid #626365;
  min-height: 360px;
  background: #070809;
}
.performance-section:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #060709ee 0%,
    #08090bcc 34%,
    #090a0b20 64%,
    #090a0b00
  );
}
.performance-image {
  object-position: center 55%;
}
.performance-content {
  position: relative;
  z-index: 1;
  padding-block: 28px;
}
.performance-content h2 {
  font-size: 32px;
  line-height: 1.28;
  margin-bottom: 19px;
}
.performance-content h2 span {
  color: var(--red);
}
.performance-feature {
  display: flex;
  gap: 21px;
  max-width: 440px;
  margin-bottom: 17px;
}
.performance-feature > .icon {
  width: 48px;
  height: 48px;
  color: #ddd;
}
.performance-feature .feature-title {
  font-size: 20px;
  margin-bottom: 5px;
}
.performance-feature .feature-description {
  font-size: 17px;
  line-height: 1.18;
  max-width: 310px;
}
.performance-experience {
  font-size: 14px;
  margin: 0 0 15px;
  color: #ccc;
}
.performance-content .button {
  min-height: 45px;
  font-size: 17px;
  padding: 9px 30px;
}
.about-section {
  padding-block: 20px 23px;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.reason-card {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 17px 21px;
  min-height: 97px;
}
.reason-card > .icon {
  width: 44px;
  height: 44px;
  color: var(--red);
}
.reason-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 5px;
}
.reason-card p {
  font-size: 16px;
  line-height: 1.2;
}
.steps-heading {
  margin: 17px 0 16px;
  font-size: 29px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps-grid li {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 14px;
  padding-right: 18px;
}
.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border: 1px solid #ff444c;
  border-radius: 50%;
  font-family: var(--heading);
  font-weight: 800;
  font-style: italic;
  font-size: 29px;
  background: linear-gradient(145deg, #f4232d, #b00409 60%, #510004);
  box-shadow:
    inset 2px 2px 8px #ff81812b,
    0 2px 6px #0007;
}
.steps-grid h3 {
  font-size: 17px;
  line-height: 1.14;
  margin-top: 6px;
  margin-bottom: 7px;
}
.steps-grid p {
  font-size: 15px;
  line-height: 1.2;
}
.step-arrow {
  position: absolute;
  right: -13px;
  top: 16px;
  width: 21px;
  height: 21px;
  color: #8c8c8b;
}
.lower-sections {
  position: relative;
  isolation: isolate;
  border-top: 1px solid #666;
  overflow: hidden;
  background: #090a0b;
}
.areas-image {
  height: 500px;
  object-position: center 43%;
  z-index: -2;
}
.lower-sections:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #05070933 0%,
    #06080ab3 37%,
    #090a0bf5 66%,
    #090a0b 82%
  );
}
.areas-section {
  padding: 22px 0 20px;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  align-items: stretch;
}
.area-panel {
  display: flex;
  gap: 20px;
  padding: 21px 24px;
  background: #080b0dd6;
}
.area-panel > .icon {
  width: 44px;
  height: 44px;
  color: var(--red);
}
.area-panel h2,
.review-panel h2 {
  font-family: var(--body);
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 6px;
}
.area-panel .area-list {
  font-size: 20px;
  line-height: 1.3;
  gap: 0 6px;
  max-width: 400px;
}
.area-panel .area-list li + li:before {
  margin-right: 6px;
}
.area-panel p {
  font-size: 15px;
  line-height: 1.2;
  max-width: 340px;
  margin-top: 12px;
}
.area-message {
  padding: 18px 25px;
  align-self: center;
  text-shadow: 0 2px 8px #000;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #efadb0;
}
.area-message p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.35;
  color: #e6e6e6;
  margin-top: 8px;
}
.area-message strong {
  color: white;
}
.review-panel {
  display: flex;
  gap: 17px;
  padding: 20px;
  background: #090b0ddb;
}
.review-panel > .icon {
  color: var(--red);
  width: 38px;
  height: 38px;
}
.review-panel blockquote {
  margin: 12px 0;
  font-style: italic;
  font-size: 20px;
}
.review-panel figcaption {
  font-size: 15px;
  color: #ccc;
}
.pricing-section {
  padding: 1px 0 26px;
}
.pricing-section .section-heading {
  font-size: 29px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 14px;
}
.pricing-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 21px 32px;
  background: linear-gradient(120deg, #191b1bdd, #090a0bec);
}
.pricing-card > .icon {
  width: 49px;
  height: 49px;
  margin-top: 4px;
  color: #e0e0de;
}
.pricing-card h3 {
  font-size: 23px;
  margin-bottom: 4px;
}
.pricing-card p {
  font-size: 17px;
  line-height: 1.2;
  min-height: 40px;
  max-width: 360px;
  margin-bottom: 11px;
}
.pricing-card .button {
  min-height: 44px;
  padding: 9px 27px;
  font-size: 17px;
}
.contact-section {
  text-align: center;
  padding: 2px 0 28px;
}
.booking-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-line:before {
  content: "";
  position: absolute;
  height: 1px;
  left: calc((var(--max) - 100vw) / 2);
  right: calc((var(--max) - 100vw) / 2);
  background: linear-gradient(
    90deg,
    transparent,
    #bd0006 20%,
    #ff1723 50%,
    #a70004 80%,
    transparent
  );
  box-shadow: 0 0 8px #ff061a;
  z-index: -1;
}
.button-booking {
  font-size: 25px;
  min-height: 64px;
  gap: 20px;
  padding: 12px 31px;
  background: linear-gradient(180deg, #170909, #6302077f, #0f0808);
  border: 2px solid #f8222e;
  box-shadow:
    0 0 14px #e30b1724,
    inset 0 0 13px #fe222024;
}
.button-booking > .icon {
  width: 32px;
  height: 32px;
}
.button-booking > .icon:last-child {
  width: 24px;
  height: 24px;
}
.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--heading);
  font-style: italic;
  font-weight: 850;
  font-size: 51px;
  line-height: 1.2;
  margin: 9px 0 3px;
}
.contact-phone > .icon {
  width: 43px;
  height: 43px;
  color: var(--red);
  fill: var(--red);
  stroke-width: 1;
}
.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.contact-methods a,
.contact-methods button {
  background: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  padding: 0;
}
.contact-methods a + a:before,
.contact-methods button:before {
  content: "•";
  margin: 0 11px;
  font-size: 15px;
  color: #a9a9a9;
}
.contact-methods a:hover,
.contact-methods button:hover {
  color: #ff4650;
}
.contact-note {
  font-size: 14px;
  color: #aaa;
  margin-top: 3px;
}
.site-footer {
  background: linear-gradient(120deg, #090a0bcc, #010203e8);
  border-top: 2px solid #4d4d4d;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}
.footer-logo {
  width: 217px;
  height: 104px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-navigation a {
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-hours {
  display: flex;
  gap: 12px;
  border-left: 1px solid #424344;
  padding-left: 24px;
  flex-shrink: 0;
}
.footer-hours .icon {
  width: 27px;
  height: 27px;
  margin-top: 2px;
}
.footer-hours strong {
  display: block;
  font-size: 18px;
}
.footer-hours span {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}
.footer-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #eee;
  background: #252627;
  border: 1px solid #555;
  border-radius: 50%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #3b3c3d;
  padding-block: 18px 30px;
  font-size: 13px;
}
.footer-bottom p {
  color: #aaa;
}
.mobile-action-bar {
  display: none;
}
.site-dialog {
  position: fixed;
  width: calc(100% - 36px);
  max-width: 590px;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 35px;
  border: 1px solid #656568;
  border-top: 3px solid var(--red);
  border-radius: 7px;
  background: linear-gradient(125deg, #1a1c1e, #0c0d0f);
  color: white;
  box-shadow: 0 20px 100px #000b;
  overflow: auto;
}
.site-dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(4px);
}
.site-dialog h2 {
  font-size: 29px;
  margin: 8px 0 16px;
  padding-right: 16px;
}
.site-dialog p {
  line-height: 1.5;
}
.site-dialog .eyebrow {
  padding-right: 35px;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2b2d;
  border-radius: 50%;
  border: 1px solid #484a4b;
}
.dialog-close:hover {
  background: #61151a;
}
.dialog-symbol .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 16px;
  color: #eee;
}
.service-inclusions {
  list-style: none;
  padding: 0;
  margin: 23px 0 25px;
  display: grid;
  gap: 12px;
}
.service-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-inclusions .icon {
  color: var(--red);
  width: 20px;
  height: 20px;
}
.service-dialog > .button {
  margin-top: 20px;
}
.dialog-small {
  font-size: 13px;
  margin-top: 20px;
}
.dialog-small a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-option {
  padding: 21px 0;
  border-top: 1px solid #414244;
  margin-top: 20px;
}
.service-option h3 {
  margin-bottom: 8px;
}
.service-option p {
  font-size: 16px;
}
.service-option .text-link {
  margin-top: 6px;
}
.service-price {
  display: block;
  color: #fff;
  font-size: 22px;
  margin-top: 10px;
}
.enquiry-dialog {
  max-width: 670px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 23px;
}
.form-grid label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #eee;
  min-width: 0;
}
.form-grid label > span[aria-hidden] {
  color: #ff575f;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #626467;
  border-radius: 4px;
  background: #0a0b0d;
  padding: 12px;
  margin-top: 7px;
  color: white;
  min-height: 47px;
  font-size: 16px;
  line-height: 1.35;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #fd464e;
}
.form-grid ::placeholder {
  color: #93979b;
  opacity: 1;
  font-weight: 400;
}
.form-grid select option {
  background: #151719;
}
.full-width {
  grid-column: 1/-1;
}
.optional {
  font-weight: 400;
  color: #aaa;
}
.field-help {
  display: block;
  margin-top: 6px;
  color: #aaa;
  font-size: 13px;
  font-weight: 400;
}
.form-note {
  font-size: 13px;
  margin: 20px 0 15px;
}
.form-status {
  font-size: 16px;
  padding: 0;
}
.form-status:not(:empty) {
  padding: 14px;
  border: 1px solid #555;
  border-radius: 4px;
  margin-top: 16px;
  background: #1c2620;
}
.form-status[data-state="error"] {
  background: #381216;
  border-color: #c63c46;
}
.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.dialog-open {
  overflow: hidden;
}
.page-content {
  padding-block: 70px;
  min-height: 60vh;
}
.page-content h1 {
  font-size: 40px;
  margin-bottom: 25px;
}
.page-content p {
  margin-bottom: 20px;
}
.no-script-notice {
  padding: 20px;
  text-align: center;
  background: #2e1014;
}
.no-script-notice a {
  text-decoration: underline;
}
@media (min-width: 1441px) {
  .hero-content {
    padding-block: 31px 25px;
  }
  .hero-logo {
    mix-blend-mode: screen;
    height: 245px;
  }
  .hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 52px);
  }
  .header-inner {
    gap: 20px;
  }
  .header-logo {
    width: 158px;
    height: 67px;
  }
  .primary-navigation {
    gap: 22px;
    margin-left: 0;
  }
  .primary-navigation a {
    font-size: 15px;
  }
  .header-call {
    font-size: 15px;
    padding: 9px 12px;
  }
  .hero-content {
    padding-top: 19px;
  }
  .hero-logo {
    mix-blend-mode: screen;
    height: 210px;
  }
  .hero h1 {
    font-size: 3.7vw;
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-tagline {
    font-size: 2.85vw;
  }
  .trust-item {
    padding-inline: 18px;
    gap: 16px;
  }
  .trust-item strong {
    font-size: 16px;
  }
  .trust-item > .icon {
    width: 36px;
    height: 36px;
  }
  .services-grid {
    gap: 14px;
  }
  .service-card {
    gap: 16px;
    padding: 17px 16px;
    min-height: 105px;
  }
  .service-card > .icon {
    width: 45px;
    height: 45px;
  }
  .service-copy strong {
    font-size: 20px;
  }
  .service-copy > span {
    font-size: 16px;
  }
  .section-heading {
    font-size: 29px;
  }
  .additional-grid {
    margin-inline: 15px;
  }
  .reason-card {
    gap: 17px;
    padding: 15px;
  }
  .reason-card h3 {
    font-size: 16px;
  }
  .reason-card p {
    font-size: 15px;
  }
  .steps-grid {
    gap: 17px;
  }
  .steps-grid li {
    gap: 11px;
    padding-right: 5px;
  }
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }
  .steps-grid h3 {
    font-size: 16px;
  }
  .steps-grid p {
    font-size: 14px;
  }
  .step-arrow {
    right: -15px;
    width: 17px;
  }
  .footer-main {
    gap: 16px;
  }
  .footer-logo {
    width: 169px;
    height: 90px;
  }
  .footer-navigation {
    gap: 17px;
  }
  .footer-navigation a {
    font-size: 13px;
  }
  .footer-hours {
    padding-left: 15px;
    gap: 9px;
  }
  .footer-hours span {
    font-size: 13px;
  }
  .pricing-card {
    gap: 23px;
    padding: 20px 24px;
  }
  .area-panel {
    padding: 20px;
  }
  .area-panel .area-list {
    font-size: 18px;
  }
  .area-message p {
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  .header-logo {
    width: 137px;
  }
  .header-inner {
    gap: 16px;
    min-height: 68px;
  }
  .primary-navigation {
    gap: 18px;
  }
  .primary-navigation a {
    font-size: 14px;
  }
  .header-call {
    font-size: 14px;
    gap: 7px;
    padding: 7px 10px;
  }
  .header-call .icon {
    width: 17px;
    height: 17px;
  }
  .hero-logo {
    mix-blend-mode: screen;
    height: 185px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-areas {
    font-size: 18px;
  }
  .hero-actions .button {
    min-width: 240px;
    font-size: 18px;
    min-height: 51px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 17px;
  }
  .trust-item {
    padding-inline: 12px;
    gap: 12px;
  }
  .trust-item strong {
    font-size: 15px;
  }
  .trust-item span {
    font-size: 11px;
  }
  .trust-item > .icon {
    width: 31px;
    height: 31px;
  }
  .trust-grid {
    padding-block: 18px;
  }
  .section-heading {
    font-size: 26px;
    gap: 13px;
  }
  .section-heading:before,
  .section-heading:after {
    flex-basis: 75px;
  }
  .section-intro {
    font-size: 16px;
  }
  .service-card {
    gap: 12px;
    padding: 15px 13px;
    min-height: 101px;
  }
  .service-card > .icon {
    width: 40px;
    height: 40px;
  }
  .service-copy strong {
    font-size: 18px;
  }
  .service-copy > span {
    font-size: 15px;
  }
  .additional-grid {
    margin-inline: 0;
  }
  .additional-grid button {
    padding-inline: 18px;
    font-size: 16px;
  }
  .section-heading-small {
    font-size: 17px;
  }
  .performance-content h2 {
    font-size: 29px;
  }
  .performance-section {
    min-height: 325px;
  }
  .performance-content {
    padding-block: 25px;
  }
  .performance-feature .feature-description {
    font-size: 16px;
    max-width: 285px;
  }
  .performance-experience {
    max-width: 350px;
    font-size: 13px;
  }
  .reason-card {
    gap: 12px;
    padding: 13px 12px;
  }
  .reason-card > .icon {
    width: 34px;
    height: 34px;
  }
  .reason-card h3 {
    font-size: 15px;
  }
  .reason-card p {
    font-size: 14px;
  }
  .steps-heading {
    font-size: 25px;
  }
  .steps-grid {
    gap: 16px;
  }
  .steps-grid li {
    gap: 9px;
  }
  .step-number {
    width: 37px;
    height: 37px;
    font-size: 22px;
  }
  .steps-grid h3 {
    font-size: 15px;
  }
  .steps-grid p {
    font-size: 13px;
  }
  .step-arrow {
    width: 15px;
    right: -14px;
  }
  .areas-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .area-panel {
    gap: 14px;
    padding: 17px;
  }
  .area-panel > .icon {
    width: 34px;
    height: 34px;
  }
  .area-panel h2 {
    font-size: 19px;
  }
  .area-panel .area-list {
    font-size: 17px;
  }
  .area-panel p {
    font-size: 14px;
  }
  .area-message {
    padding: 15px 7px;
  }
  .area-message p {
    font-size: 23px;
  }
  .pricing-section .section-heading {
    font-size: 26px;
  }
  .pricing-card {
    padding: 18px;
    gap: 18px;
  }
  .pricing-card > .icon {
    width: 39px;
    height: 39px;
  }
  .pricing-card h3 {
    font-size: 21px;
  }
  .pricing-card p {
    font-size: 16px;
  }
  .pricing-card .button {
    font-size: 15px;
    padding-inline: 18px;
    gap: 8px;
  }
  .button-booking {
    font-size: 23px;
    min-height: 59px;
  }
  .contact-phone {
    font-size: 46px;
  }
  .footer-main {
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-brand {
    margin-right: auto;
  }
  .footer-navigation {
    gap: 20px;
  }
  .footer-hours {
    border-left: 0;
  }
  .footer-message {
    width: 40px;
    height: 40px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .contact-methods a,
  .contact-methods button {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 75px;
  }
  .container {
    width: calc(100% - 32px);
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
    font-size: 16px;
  }
  .site-header {
    position: sticky;
    top: 0;
  }
  .header-inner {
    min-height: 63px;
    gap: 10px;
  }
  .header-logo {
    width: 143px;
    height: 58px;
  }
  .header-call {
    margin-left: auto;
    font-size: 14px;
    min-height: 39px;
    gap: 7px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    width: 44px;
    padding: 8px;
  }
  .menu-toggle span {
    display: none;
  }
  .menu-toggle .icon {
    width: 27px;
    height: 27px;
  }
  .primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 20px 18px;
    background: #0e0f10;
    border-bottom: 1px solid #a8252b;
    box-shadow: 0 15px 20px #0009;
  }
  .primary-navigation.is-open,
  .primary-navigation[data-open="true"] {
    display: grid;
    gap: 1px;
  }
  .primary-navigation a {
    font-size: 17px;
    padding: 9px 12px;
    border-bottom: 1px solid #282a2c;
    min-height: 48px;
  }
  .hero-content {
    padding: 18px 0 17px;
  }
  .hero-logo {
    mix-blend-mode: screen;
    height: 166px;
    max-width: 263px;
    margin-bottom: 10px;
  }
  .hero-image {
    object-position: 48% center;
  }
  .hero:after {
    background: linear-gradient(180deg, #0002, #0007 38%, #000b 100%);
  }
  .hero h1 {
    font-size: clamp(24px, 5.1vw, 35px);
    white-space: normal;
    line-height: 1.17;
    letter-spacing: -0.4px;
  }
  .hero-tagline {
    font-size: clamp(19px, 4vw, 27px);
    margin: 8px auto 10px;
    line-height: 1.22;
    max-width: 460px;
  }
  .hero-description {
    font-size: 17px;
    max-width: 470px;
    margin: auto;
    line-height: 1.35;
  }
  .hero-areas {
    font-size: 15px;
    gap: 3px 8px;
    max-width: 460px;
    margin: 12px auto 0;
    line-height: 1.5;
  }
  .hero-areas li + li:before {
    margin-right: 8px;
  }
  .hero-actions {
    gap: 12px;
    margin: 17px 0 2px;
  }
  .hero-actions .button {
    min-width: 0;
    width: 50%;
    padding: 12px 10px;
    font-size: 17px;
    gap: 9px;
    min-height: 50px;
  }
  .hero-actions .button .icon {
    width: 21px;
    height: 21px;
  }
  .hero > .container > .text-link {
    font-size: 16px;
    min-height: 41px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .trust-item {
    justify-content: flex-start;
    gap: 15px;
    padding: 17px 20px;
    min-height: 83px;
  }
  .trust-item:first-child {
    padding: 17px 12px 17px 0;
    align-items: center;
  }
  .trust-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #333;
  }
  .trust-item:nth-child(4) {
    border-top: 1px solid #333;
  }
  .trust-item strong {
    font-size: 15px;
    line-height: 1.1;
  }
  .trust-item span {
    font-size: 11px;
  }
  .trust-item > .icon {
    width: 31px;
    height: 31px;
  }
  .section-pad {
    padding-block: 25px;
  }
  .section-heading {
    font-size: 25px;
    gap: 10px;
  }
  .section-heading:before,
  .section-heading:after {
    flex: 0 1 45px;
    min-width: 15px;
  }
  .section-intro {
    font-size: 15px;
    margin: 7px auto 17px;
    max-width: 330px;
    line-height: 1.25;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 16px;
    min-height: 167px;
  }
  .service-card > .icon {
    width: 39px;
    height: 39px;
  }
  .service-copy strong {
    font-size: 19px;
    line-height: 1.1;
    margin-bottom: 5px;
  }
  .service-copy > span {
    font-size: 15px;
    line-height: 1.22;
  }
  .service-card .card-chevron {
    opacity: 1;
    top: 27px;
    right: 13px;
    width: 14px;
    height: 14px;
  }
  .additional-services {
    margin-top: 16px;
  }
  .section-heading-small {
    font-size: 17px;
  }
  .section-heading-small:before,
  .section-heading-small:after {
    flex-basis: 45px;
  }
  .additional-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 0 9px;
    margin-top: 10px;
  }
  .additional-grid button,
  .additional-grid button:nth-child(-n + 3) {
    border: 0;
    padding: 7px 0;
    font-size: 15px;
    min-height: 44px;
    gap: 5px;
    line-height: 1.2;
  }
  .additional-grid .icon {
    width: 12px;
    height: 12px;
  }
  .performance-section {
    min-height: 382px;
  }
  .performance-section:after {
    background:
      linear-gradient(90deg, #07080aee 3%, #07080ac4 53%, #07080a55),
      linear-gradient(0deg, #05060644, transparent);
  }
  .performance-image {
    object-position: 61% center;
  }
  .performance-content {
    padding-block: 27px;
  }
  .performance-content h2 {
    font-size: 27px;
    line-height: 1.3;
    max-width: 450px;
    margin-bottom: 22px;
  }
  .performance-feature {
    gap: 15px;
    max-width: 340px;
    margin-bottom: 18px;
  }
  .performance-feature > .icon {
    width: 39px;
    height: 39px;
  }
  .performance-feature .feature-title {
    font-size: 19px;
  }
  .performance-feature .feature-description {
    font-size: 15px;
    max-width: 275px;
  }
  .performance-experience {
    font-size: 12px;
    max-width: 300px;
    margin-bottom: 17px;
  }
  .performance-content .button {
    font-size: 16px;
    min-height: 46px;
    padding-inline: 20px;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .reason-card {
    gap: 22px;
    padding: 17px 22px;
    min-height: 87px;
  }
  .reason-card > .icon {
    width: 38px;
    height: 38px;
  }
  .reason-card h3 {
    font-size: 17px;
    margin-bottom: 5px;
  }
  .reason-card p {
    font-size: 15px;
    max-width: 360px;
  }
  .steps-heading {
    margin-top: 24px;
    margin-bottom: 20px;
    font-size: 25px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 17px;
  }
  .steps-grid li {
    gap: 11px;
    padding: 0;
  }
  .step-number {
    width: 37px;
    height: 37px;
  }
  .steps-grid h3 {
    font-size: 16px;
    margin-top: 3px;
  }
  .steps-grid p {
    font-size: 14px;
  }
  .step-arrow {
    display: none;
  }
  .areas-section {
    padding: 20px 0;
  }
  .areas-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .area-panel {
    padding: 19px;
    gap: 15px;
  }
  .area-panel h2 {
    font-size: 20px;
  }
  .area-panel .area-list {
    font-size: 18px;
  }
  .area-panel p {
    font-size: 14px;
    max-width: none;
    margin-top: 10px;
  }
  .area-message {
    padding: 10px 15px 5px;
  }
  .area-message p {
    font-size: 23px;
    margin-top: 5px;
  }
  .areas-image {
    height: 620px;
    object-position: 62% top;
  }
  .lower-sections:before {
    background: linear-gradient(
      180deg,
      #05070955,
      #06080abd 36%,
      #090a0bf5 66%,
      #090a0b
    );
  }
  .pricing-section {
    padding-top: 2px;
    padding-bottom: 24px;
  }
  .pricing-section .section-heading {
    font-size: 25px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .pricing-card {
    padding: 20px;
    gap: 23px;
  }
  .pricing-card > .icon {
    width: 38px;
    height: 38px;
  }
  .pricing-card h3 {
    font-size: 21px;
  }
  .pricing-card p {
    font-size: 16px;
    min-height: 0;
    margin-bottom: 14px;
  }
  .pricing-card .button {
    min-height: 46px;
    font-size: 16px;
    padding-inline: 20px;
  }
  .contact-section {
    padding: 0 0 27px;
  }
  .button-booking {
    font-size: 19px;
    padding: 13px 15px;
    gap: 12px;
    min-height: 58px;
    width: 100%;
  }
  .button-booking > .icon {
    width: 25px;
    height: 25px;
  }
  .button-booking > .icon:last-child {
    width: 18px;
    height: 18px;
  }
  .contact-phone {
    font-size: 39px;
    gap: 13px;
    margin-top: 13px;
  }
  .contact-phone > .icon {
    width: 31px;
    height: 31px;
  }
  .contact-methods a,
  .contact-methods button {
    font-size: 19px;
  }
  .contact-note {
    font-size: 13px;
    max-width: 280px;
    margin: 6px auto 0;
  }
  .footer-main {
    justify-content: space-between;
    gap: 15px;
    padding-block: 16px 20px;
  }
  .footer-logo {
    width: 158px;
    height: 94px;
  }
  .footer-brand {
    margin: 0;
  }
  .footer-hours {
    padding: 0;
    gap: 9px;
  }
  .footer-hours .icon {
    width: 23px;
    height: 23px;
  }
  .footer-hours strong {
    font-size: 17px;
  }
  .footer-hours span {
    font-size: 13px;
  }
  .footer-navigation {
    order: 3;
    justify-content: space-between;
    width: 100%;
    gap: 9px;
    border-top: 1px solid #333;
    padding-top: 7px;
  }
  .footer-navigation a {
    font-size: 14px;
  }
  .footer-message {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0 23px;
    gap: 7px;
    font-size: 12px;
  }
  .mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid #656568;
    background: #090a0bf5;
    backdrop-filter: blur(12px);
    box-shadow: 0 -3px 16px #0007;
  }
  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border: 1px solid #525456;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    background: #191b1d;
  }
  .mobile-action-bar button {
    border-color: #f73440;
    background: linear-gradient(#e91a25, #a5020b);
  }
  .mobile-action-bar .icon {
    width: 20px;
    height: 20px;
  }
  .site-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 28px);
    padding: 29px 23px 24px;
  }
  .site-dialog h2 {
    font-size: 26px;
    padding-right: 15px;
  }
  .site-dialog .eyebrow {
    font-size: 11px;
  }
  .dialog-close {
    right: 9px;
    top: 9px;
    width: 40px;
    height: 40px;
  }
  .form-grid {
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .form-grid label {
    font-size: 15px;
  }
  .site-dialog .button {
    font-size: 16px;
  }
  .enquiry-dialog #enquiry-submit {
    width: 100%;
  }
  .form-note {
    font-size: 12px;
  }
  .dialog-small {
    font-size: 12px;
  }
  .service-inclusions {
    font-size: 15px;
  }
  .form-status:not(:empty) {
    padding: 12px;
  }
  .booking-line:before {
    left: -16px;
    right: -16px;
  }
}
@media (max-width: 390px) {
  .container {
    width: calc(100% - 28px);
  }
  .header-logo {
    width: 122px;
  }
  .header-call {
    font-size: 13px;
    padding: 7px 9px;
    gap: 6px;
  }
  .header-call .icon {
    width: 15px;
    height: 15px;
  }
  .header-inner {
    gap: 5px;
  }
  .menu-toggle {
    width: 40px;
  }
  .hero-logo {
    mix-blend-mode: screen;
    height: 153px;
  }
  .hero h1 {
    font-size: 25px;
    max-width: 320px;
    margin-inline: auto;
  }
  .hero-tagline {
    font-size: 20px;
    max-width: 315px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 320px;
  }
  .hero-areas {
    font-size: 14px;
    max-width: 310px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 15px;
    padding-inline: 7px;
    gap: 7px;
  }
  .hero-actions .button .icon {
    width: 18px;
    height: 18px;
  }
  .trust-item {
    padding-left: 14px;
    gap: 11px;
  }
  .trust-item strong {
    font-size: 14px;
  }
  .trust-item span {
    font-size: 10px;
  }
  .trust-item > .icon {
    width: 27px;
    height: 27px;
  }
  .section-heading {
    font-size: 23px;
  }
  .section-heading-small {
    font-size: 16px;
  }
  .service-card {
    padding: 14px;
    min-height: 170px;
  }
  .service-copy strong {
    font-size: 18px;
  }
  .service-copy > span {
    font-size: 14px;
  }
  .performance-content h2 {
    font-size: 25px;
  }
  .reason-card {
    padding: 16px;
    gap: 18px;
  }
  .reason-card h3 {
    font-size: 16px;
  }
  .steps-grid {
    gap: 21px 13px;
  }
  .steps-grid li {
    gap: 9px;
  }
  .step-number {
    width: 33px;
    height: 33px;
    font-size: 21px;
  }
  .steps-grid h3 {
    font-size: 15px;
  }
  .steps-grid p {
    font-size: 13px;
  }
  .pricing-section .section-heading {
    font-size: 23px;
  }
  .pricing-card {
    padding: 18px 16px;
    gap: 17px;
  }
  .pricing-card .button {
    padding-inline: 16px;
  }
  .button-booking {
    font-size: 17px;
    gap: 10px;
    padding-inline: 10px;
  }
  .contact-phone {
    font-size: 36px;
    gap: 10px;
  }
  .contact-phone > .icon {
    width: 29px;
    height: 29px;
  }
  .footer-logo {
    width: 141px;
  }
  .footer-hours {
    gap: 7px;
  }
  .footer-hours span {
    font-size: 12px;
  }
  .footer-hours .icon {
    width: 22px;
    height: 22px;
  }
  .footer-navigation a {
    font-size: 13px;
  }
}
@media (max-width: 340px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex-direction: row;
    min-height: 100px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .header-call span {
    display: none;
  }
  .header-call {
    width: 40px;
  }
  .header-logo {
    width: 140px;
  }
  .trust-item strong {
    font-size: 12px;
  }
  .trust-item span {
    font-size: 9px;
  }
  .additional-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .button-booking {
    font-size: 15px;
  }
  .contact-phone {
    font-size: 31px;
  }
  .footer-main {
    justify-content: center;
  }
  .footer-hours {
    margin-bottom: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Full feature rows provide a service-specific enquiry path. */
.performance-feature {
  color: inherit;
  background: none;
  text-align: left;
  padding: 0;
}
.feature-title,
.feature-description {
  display: block;
}
.feature-description {
  color: var(--muted);
}
.performance-feature:hover .feature-title {
  color: #ff515c;
}
.form-privacy {
  font-size: 12px;
  margin: -5px 0 18px;
  color: #b0b4b8;
}
/* Keep the expandable heading consistent with the reference typography. */
.section-heading-small {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (min-width: 701px) and (max-width: 900px) {
  .footer-message {
    display: none;
  }
}
