:root {
  --bg: #07080a;
  --bg-strong: #0c0e12;
  --panel: rgba(18, 21, 27, 0.78);
  --panel-solid: #11141a;
  --panel-light: #171b23;
  --card: rgba(24, 29, 39, 0.94);
  --card-strong: #1b212c;
  --card-line: rgba(255, 255, 255, 0.22);
  --ink: #f4f6f8;
  --muted: #a7adb8;
  --muted-strong: #d7dbe2;
  --red: #e21d2f;
  --red-dark: #98111d;
  --steel: #7d8a99;
  --amber: #f2a93b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(226, 29, 47, 0.14), transparent 32rem),
    linear-gradient(180deg, #050608 0%, var(--bg) 38%, #090b0e 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.86), rgba(7, 8, 10, 0.5));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(7, 8, 10, 0.94);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(226, 29, 47, 0.5);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(226, 29, 47, 0.22), rgba(255, 255, 255, 0.04)),
    #11141a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(244, 246, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(226, 29, 47, 0.48);
  border-radius: var(--radius);
  padding: 0 15px;
  background: rgba(226, 29, 47, 0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.header-call:hover {
  border-color: var(--red);
  background: rgba(226, 29, 47, 0.22);
  transform: translateY(-1px);
}

.header-call svg,
.btn svg,
.back-to-top svg {
  width: 18px;
  height: 18px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 118px 138px;
}

.hero-media,
.hero-media img,
.hero-overlay,
.scan-line {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.78;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.82) 42%, rgba(5, 6, 8, 0.36) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 10, 0) 34%);
}

.scan-line {
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 7px;
  opacity: 0.32;
}

.steel-ring {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(226, 29, 47, 0.12);
  animation: ringFloat 8s ease-in-out infinite;
}

.ring-one {
  top: 23%;
  right: 13%;
  width: 170px;
  height: 170px;
}

.ring-two {
  right: 32%;
  bottom: 19%;
  width: 84px;
  height: 84px;
  animation-delay: -2s;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  align-items: end;
  gap: clamp(32px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 8.6vw, 7.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.hero-subtitle {
  max-width: 620px;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2.1vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(226, 29, 47, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 24px 54px rgba(226, 29, 47, 0.34);
}

.btn-ghost,
.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-ghost:hover,
.btn-secondary:hover {
  border-color: rgba(226, 29, 47, 0.6);
  background: rgba(226, 29, 47, 0.1);
}

.hero-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(226, 29, 47, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(12, 14, 18, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel p {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-panel span {
  color: var(--muted);
}

.trust-strip {
  margin-top: 50px;
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-strip article {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-strip svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.trust-strip strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.9;
}

.trust-strip span {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 134px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.section-shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p:last-child,
.about-lead,
.about-certifications p,
.feature-card p,
.review-card span,
.timeline p,
.booking-copy p,
.emergency p,
.site-footer p {
  color: var(--muted);
}

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

.service-card,
.feature-card,
.review-card,
.booking-form {
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(226, 29, 47, 0.055)),
    var(--card);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.service-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(226, 29, 47, 0.22);
  border-radius: 50%;
  transition: transform 260ms ease, border-color 260ms ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 29, 47, 0.64);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(226, 29, 47, 0.09)),
    var(--card-strong);
}

.service-card:hover::after,
.feature-card:hover::after {
  border-color: rgba(226, 29, 47, 0.5);
  transform: scale(1.35);
}

.service-card svg,
.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.service-card h3,
.feature-card h3,
.timeline h3,
.about-certifications h3 {
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 70px;
}

.service-card p,
.feature-card p {
  margin-bottom: 0;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(226, 29, 47, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.section-cta span {
  color: var(--muted-strong);
  font-weight: 800;
}

.about {
  background:
    radial-gradient(circle at 8% 22%, rgba(226, 29, 47, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(125, 138, 153, 0.1), rgba(7, 8, 10, 0) 42%),
    var(--bg-strong);
  overflow: hidden;
}

.booking-layout,
.location-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.about-shell {
  display: grid;
  gap: 42px;
}

.about-heading {
  max-width: 820px;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.about-media {
  position: relative;
  max-width: 100%;
  min-height: 520px;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(226, 29, 47, 0.42);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(7, 8, 10, 0.74), transparent 54%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.24), transparent);
  pointer-events: none;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(1.08);
  box-shadow: var(--shadow);
}

.about-image-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(10, 12, 16, 0.86);
  color: #fff;
  backdrop-filter: blur(16px);
}

.about-image-panel span,
.about-image-panel strong {
  display: block;
}

.about-image-panel span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-image-panel strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-content {
  display: grid;
  align-content: center;
  gap: 28px;
  min-width: 0;
}

.about-lead {
  max-width: 640px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

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

.about-proof-grid article {
  min-height: 148px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(226, 29, 47, 0.16), rgba(255, 255, 255, 0.075)),
    var(--card);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-proof-grid strong,
.about-proof-grid span {
  display: block;
}

.about-proof-grid strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.about-proof-grid span {
  max-width: 140px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-certifications {
  display: grid;
  gap: 12px;
}

.about-certifications article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(125, 138, 153, 0.18), rgba(226, 29, 47, 0.12)),
    var(--card);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-certifications svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.about-certifications h3 {
  margin-bottom: 8px;
}

.about-certifications p {
  margin-bottom: 0;
}

.why,
.reviews {
  background: #090b0f;
}

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

.feature-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card h3 {
  margin-top: 44px;
}

.gallery {
  background:
    radial-gradient(circle at 70% 14%, rgba(242, 169, 59, 0.08), transparent 28rem),
    var(--bg);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.gallery-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.gallery-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--panel-solid);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.82);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 62%);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.1) brightness(0.96);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.review-card {
  /*min-height: 250px;*/
  padding: 30px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 29, 47, 0.38);
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
}

blockquote {
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.process {
  background:
    linear-gradient(180deg, rgba(226, 29, 47, 0.08), rgba(7, 8, 10, 0)),
    var(--bg-strong);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.08));
}

.timeline li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(18, 21, 27, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(226, 29, 47, 0.58);
  border-radius: 50%;
  background: #0b0d11;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline h3 {
  margin-top: 52px;
}

.booking {
  background: var(--bg);
}

.booking-copy {
  align-self: start;
  position: sticky;
  top: 106px;
}

.booking-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}

.booking-contact svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.booking-contact span,
.booking-contact a {
  display: block;
}

.booking-contact span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-contact a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(226, 29, 47, 0.11)),
    var(--card-strong);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 4, 6, 0.62);
  color: #fff;
  outline: 0;
  padding: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(167, 173, 184, 0.58);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(226, 29, 47, 0.76);
  background: rgba(3, 4, 6, 0.82);
  box-shadow: 0 0 0 4px rgba(226, 29, 47, 0.15);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-success {
  display: none;
  margin: 0;
  border: 1px solid rgba(68, 177, 106, 0.38);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(68, 177, 106, 0.13);
  color: #baf3cd;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.emergency {
  padding: 48px 0;
  background:
    linear-gradient(135deg, rgba(226, 29, 47, 0.92), rgba(152, 17, 29, 0.94)),
    var(--red);
}

.emergency-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.emergency .eyebrow,
.emergency p {
  color: rgba(255, 255, 255, 0.78);
}

.emergency h2 {
  margin-bottom: 8px;
}

.emergency .btn-primary {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: #101216;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.location {
  background: #080a0d;
}

.location-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

address,
.hours,
.contact-list {
  display: grid;
  gap: 5px;
  margin: 24px 0;
  color: var(--muted);
  font-style: normal;
}

.location-details strong {
  color: #fff;
}

.hours p {
  margin-bottom: 4px;
  color: var(--muted);
}

.contact-list a {
  color: var(--muted-strong);
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: #fff;
}

.map-placeholder {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(125, 138, 153, 0.16), rgba(226, 29, 47, 0.1)),
    #11141a;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: -42px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-8deg) scale(1.12);
}

.map-route {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: rgba(226, 29, 47, 0.72);
  box-shadow: 0 0 24px rgba(226, 29, 47, 0.32);
}

.route-one {
  top: 48%;
  left: 14%;
  width: 72%;
  transform: rotate(-18deg);
}

.route-two {
  top: 36%;
  left: 23%;
  width: 56%;
  background: rgba(125, 138, 153, 0.58);
  transform: rotate(31deg);
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(226, 29, 47, 0.94);
  color: #fff;
  box-shadow: 0 0 0 16px rgba(226, 29, 47, 0.14);
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 30px;
  height: 30px;
}

.map-placeholder p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: var(--muted-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050608;
  padding: 54px 0 24px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.28fr 0.8fr 0.96fr 1fr;
  gap: 32px;
}

.site-footer .brand-mark {
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-cta {
  width: max-content;
  margin-top: 18px;
  border-bottom: 1px solid rgba(226, 29, 47, 0.7);
  color: #fff !important;
  font-weight: 900;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.copyright span {
  display: inline-block;
  margin-left: 8px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(18, 21, 27, 0.78);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top svg {
  transform: rotate(-90deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.reveal {
  min-width: 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes ringFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: 0 -18px;
    rotate: 10deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    justify-self: end;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  h1 {
    max-width: 100%;
  }

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

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

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(7, 8, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .header-call {
    display: none;
  }

  .hero {
    align-items: end;
    padding-block: 118px 250px;
  }

  .hero-layout {
    transform: translateY(-18px);
  }

  .hero-panel {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(5, 6, 8, 0.88) 36%, rgba(5, 6, 8, 0.52) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.34));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 18px;
  }

  .trust-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .booking-layout,
  .location-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .booking-copy {
    position: static;
  }

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

  .gallery-heading,
  .emergency-layout {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .reveal,
  .service-card,
  .feature-card,
  .review-card,
  .timeline li,
  .booking-form,
  .about-proof-grid article,
  .about-certifications article {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .service-grid,
  .feature-grid,
  .review-grid,
  .timeline,
  .booking-form,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-block: 112px 245px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .steel-ring {
    display: none;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .emergency .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article + article,
  .trust-strip article:nth-child(3),
  .trust-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-strip article {
    min-height: 74px;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid,
  .feature-grid,
  .review-grid,
  .timeline,
  .booking-form,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta .btn {
    width: 100%;
  }

  .service-card,
  .feature-card {
    min-height: 250px;
  }

  .about-shell {
    gap: 30px;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }

  .about-media::before {
    inset: 10px -8px -10px 8px;
  }

  .about-image-panel {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 15px;
  }

  .about-proof-grid article {
    min-height: 112px;
  }

  .about-proof-grid span {
    margin-top: 14px;
  }

  .about-certifications article {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .booking-contact a {
    font-size: 1.65rem;
  }

  .map-placeholder {
    min-height: 380px;
  }

  .copyright span {
    display: block;
    margin: 6px 0 0;
  }
}
