:root {
  --red: #e1262f;
  --red-dark: #8d1118;
  --red-hot: #ff4d57;
  --ember: #f0752f;
  --cyan: #66d7df;
  --brass: #d7b56d;
  --ink: #08090a;
  --graphite: #111315;
  --graphite-2: #181b1d;
  --charcoal: #202326;
  --steel: #c4ccd1;
  --muted: #899299;
  --paper: #f5f7f8;
  --mist: #dfe5e8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --field: rgba(255, 255, 255, 0.08);
  --success: #37c984;
  --warning: #e1a541;
  --error: #ff6672;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-red: 0 18px 48px rgba(225, 38, 47, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(115deg, rgba(225, 38, 47, 0.08), transparent 34%, rgba(102, 215, 223, 0.05) 68%, transparent),
    var(--ink);
  background-size: 54px 54px, 54px 54px, 100% 100%, auto;
  color: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(8, 9, 10, 0.3), rgba(8, 9, 10, 0.92));
  opacity: 0.82;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(225, 38, 47, 0.5);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--red-hot);
}

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

:focus-visible {
  outline: 3px solid rgba(102, 215, 223, 0.42);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 900;
}

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

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 860px);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 4.85rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 1rem 0 0;
}

main {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 38, 47, 0.82), rgba(255, 255, 255, 0.18) 42%, transparent);
  opacity: 0.74;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.97);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.5rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.72rem 0.48rem 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    linear-gradient(90deg, rgba(225, 38, 47, 0.16), transparent 46%),
    rgba(17, 19, 20, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.brand:hover {
  border-color: rgba(225, 38, 47, 0.38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.brand img {
  position: relative;
  width: 146px;
  height: auto;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(8, 9, 10, 0.16);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff, #eef1f2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 8px 22px rgba(0, 0, 0, 0.24);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.2rem 0;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.72rem;
  border: 0;
  border-radius: 0;
  color: rgba(245, 247, 248, 0.7);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: #ffffff;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 19, 20, 0.92);
  color: var(--paper);
  padding: 0.7rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 9, 10, 0.98), rgba(24, 13, 14, 0.96) 56%, rgba(8, 9, 10, 0.92)),
    var(--ink);
}

.hero-backdrop-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.12) brightness(0.58);
  transform: scale(1.02);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.96) 0%, rgba(8, 9, 10, 0.78) 38%, rgba(8, 9, 10, 0.34) 76%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.28), rgba(8, 9, 10, 0.92));
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(90deg, transparent 0 9px, rgba(255, 255, 255, 0.026) 9px 10px);
  background-size: 86px 86px, 86px 86px, auto;
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 3.2rem;
  min-height: 650px;
  padding-block: 4.7rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--red-hot);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--ember));
}

.hero .eyebrow,
.section--dark .eyebrow,
.section--accent .eyebrow,
.page-hero .eyebrow,
.site-footer .eyebrow {
  color: #ffd1d4;
}

.hero h1 {
  max-width: 9ch;
  color: #ffffff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.hero h1::after {
  content: "";
  display: block;
  width: 130px;
  height: 6px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--ember), var(--cyan));
  box-shadow: 0 0 26px rgba(225, 38, 47, 0.42);
}

.hero-lead {
  max-width: 670px;
  color: rgba(245, 247, 248, 0.88);
  font-size: 1.22rem;
}

.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.45rem;
}

.hero-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions,
.section-heading--inline,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  max-width: 100%;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: inherit;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  color: #ffffff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.button--ghost:hover {
  border-color: rgba(102, 215, 223, 0.45);
  background: rgba(102, 215, 223, 0.11);
  color: #ffffff;
}

.button--light {
  background: var(--paper);
  color: var(--red-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.button--light:hover {
  color: var(--red-dark);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2.25rem 0 0;
}

.hero-facts div {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 9, 10, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-facts div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.22rem 0 0;
  color: #ffffff;
  font-weight: 950;
}

.hero-media {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% 6% 10% 11%;
  border: 1px solid rgba(102, 215, 223, 0.22);
  background:
    linear-gradient(90deg, rgba(102, 215, 223, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  transform: skew(-6deg);
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.32));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.hero-photo:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.08);
}

.hero-photo--1 {
  inset: 0 8% 18% 0;
  transform: rotateX(0deg) rotateY(-6deg);
}

.hero-photo--2 {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 45%;
}

.hero-photo--3 {
  right: 3%;
  top: 7%;
  width: 34%;
  height: 30%;
  border-color: rgba(215, 181, 109, 0.34);
}

.hero-panel {
  position: absolute;
  left: 3%;
  bottom: 7%;
  z-index: 3;
  display: grid;
  min-width: 160px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 10, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
}

.section {
  position: relative;
  padding-block: 5.5rem;
  background:
    linear-gradient(180deg, rgba(12, 13, 14, 0.96), rgba(17, 19, 20, 0.97)),
    var(--graphite);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.section--tight {
  padding-block: 2rem;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(8, 9, 10, 0.96), rgba(31, 19, 18, 0.98)),
    var(--charcoal);
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(141, 17, 24, 0.96), rgba(33, 14, 15, 0.98)),
    var(--red-dark);
  color: #ffffff;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2.1rem;
}

.section-heading h2,
.split h2,
.cta-band h2,
.contact-panel h2,
.contact-card h2,
.map-box h2,
.empty-state h2,
.legal-content h2 {
  color: #ffffff;
}

.section-heading p,
.service-card p,
.service-detail p,
.contact-card p,
.contact-panel p,
.legal-content p,
.rich-text p,
.map-box p,
.empty-state p {
  color: rgba(245, 247, 248, 0.74);
}

.trust-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trust-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  max-width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 19, 20, 0.9);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.trust-row a:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 38, 47, 0.42);
  color: #ffffff;
}

.trust-row img {
  padding: 0.2rem;
  border-radius: 4px;
  background: var(--paper);
}

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

.service-card,
.contact-card,
.admin-like-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    var(--graphite-2);
}

.service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.9rem;
  min-height: 250px;
  padding: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(225, 38, 47, 0.2), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
  opacity: 0;
  transition: opacity 190ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--ember), transparent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 190ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 38, 47, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border: 1px solid rgba(102, 215, 223, 0.28);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 950;
}

.service-card h3 {
  color: #ffffff;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ff7078;
  font-weight: 950;
  text-decoration-thickness: 2px;
}

.service-card a::after,
.text-link::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split > div:first-child {
  max-width: 560px;
}

.process-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.process-list li::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  right: 1rem;
  top: 0.62rem;
  color: rgba(102, 215, 223, 0.22);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.process-list li:hover {
  transform: translateX(5px);
  border-color: rgba(102, 215, 223, 0.34);
  background-color: rgba(102, 215, 223, 0.05);
}

.process-list strong {
  color: #ffffff;
}

.process-list span {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 0.9fr);
  grid-auto-rows: 210px;
  gap: 0.75rem;
}

.gallery-strip img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95) contrast(1.04);
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-strip img:first-child {
  grid-column: 1;
  grid-row: span 2;
}

.gallery-strip img:nth-child(5) {
  grid-column: 2 / span 3;
}

.gallery-strip img:hover,
.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}

.cta-band {
  position: relative;
  min-height: 190px;
  padding-block: 0.4rem;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -1.2rem -2rem;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band > div {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    var(--graphite-2);
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.faq-list details[open] {
  border-color: rgba(225, 38, 47, 0.38);
}

.faq-list summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 950;
}

.faq-list p {
  margin-bottom: 0;
  color: rgba(245, 247, 248, 0.74);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 5.2rem;
  background:
    linear-gradient(120deg, rgba(8, 9, 10, 0.96), rgba(27, 17, 17, 0.98)),
    var(--graphite);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.44;
}

.page-hero::after {
  right: -10%;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 44%;
  background:
    repeating-linear-gradient(90deg, rgba(225, 38, 47, 0.18) 0 6px, transparent 6px 18px),
    linear-gradient(135deg, rgba(102, 215, 223, 0.12), transparent 70%);
  transform: skewX(-14deg);
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(245, 247, 248, 0.8);
  font-size: 1.12rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--graphite-2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--ember), var(--cyan));
}

.service-detail:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 38, 47, 0.38);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.service-detail h2 {
  font-size: 1.55rem;
}

.rich-text p:first-child {
  margin-top: 0;
}

.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.filter-chip {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 247, 248, 0.8);
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: rgba(225, 38, 47, 0.65);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #ffffff;
  transform: translateY(-2px);
}

.filter-chip span {
  opacity: 0.78;
}

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

.gallery-item {
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
}

.gallery-item figcaption {
  padding: 0.8rem 0.95rem;
  color: rgba(245, 247, 248, 0.78);
  font-weight: 850;
}

.empty-state {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    var(--graphite-2);
}

.form-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

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

.contact-panel,
.contact-card,
.quote-form,
.map-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 19, 20, 0.96);
  padding: 1.3rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.contact-panel {
  position: sticky;
  top: 105px;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.contact-list a,
.contact-card a,
.site-footer a {
  color: #ffffff;
}

.contact-list a:hover,
.contact-card a:hover,
.site-footer a:hover {
  color: var(--red-hot);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  color: #ffffff;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--field);
  color: #ffffff;
  padding: 0.82rem 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(102, 215, 223, 0.58);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(102, 215, 223, 0.12);
}

select option {
  background: var(--graphite);
  color: #ffffff;
}

textarea {
  resize: vertical;
}

small,
.field-error {
  color: var(--error);
  font-weight: 800;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 750;
}

.checkbox-line input {
  width: auto;
  margin-top: 0.35rem;
  accent-color: var(--red);
}

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

.notice {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-weight: 850;
}

.notice--success {
  border: 1px solid rgba(55, 201, 132, 0.3);
  background: rgba(55, 201, 132, 0.12);
  color: #a8ffd2;
}

.notice--error {
  border: 1px solid rgba(255, 102, 114, 0.3);
  background: rgba(255, 102, 114, 0.12);
  color: #ffd4d8;
}

.map-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(225, 38, 47, 0.12), rgba(102, 215, 223, 0.08)),
    var(--graphite-2);
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul,
.legal-content ol {
  color: rgba(245, 247, 248, 0.78);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.96), #050607),
    var(--ink);
  color: var(--paper);
  padding-top: 4rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.5;
}

.footer-grid,
.footer-legal {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h2 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-grid p,
.footer-grid address,
.hours-list {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.footer-logo {
  margin-bottom: 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0.35rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.7rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.footer-badge img {
  background: var(--paper);
  border-radius: 4px;
  padding: 0.25rem;
}

.hours-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list dt {
  font-weight: 850;
}

.hours-list dd {
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 0.55rem;
  margin-top: 2.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.92rem;
}

.footer-legal nav {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-weight: 900;
}

.footer-legal p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: calc(100vw - 2rem);
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #18a957, #0c7538);
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.whatsapp-float:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1fc466, #0e8841);
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-grid,
  .split,
  .form-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 124px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(8, 9, 10, 0.97);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    white-space: normal;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-grid,
  .section {
    padding-block: 3rem;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

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

  .hero-photo--1 {
    inset: 0 0 18% 0;
    transform: none;
  }

  .hero-photo--2 {
    width: 54%;
  }

  .hero-photo--3 {
    display: none;
  }

  .hero-panel {
    left: 1rem;
    bottom: 1rem;
    min-width: 140px;
  }

  .hero-facts,
  .service-grid,
  .gallery-grid,
  .form-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-auto-rows: auto;
  }

  .gallery-strip img,
  .gallery-strip img:first-child,
  .gallery-strip img:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .map-box,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band::before {
    inset: -1rem;
  }

  .hours-list div {
    display: grid;
    gap: 0.1rem;
  }
}

@media (max-width: 460px) {
  .container,
  .narrow {
    width: min(100% - 1.25rem, 1180px);
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-actions,
  .hero-actions .button,
  .section-heading--inline .button,
  .cta-band .button,
  .map-box .button {
    width: 100%;
  }

  .hero-facts div,
  .service-card,
  .contact-panel,
  .contact-card,
  .quote-form,
  .map-box,
  .faq-list details,
  .empty-state {
    padding: 1rem;
  }
}

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

  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
