:root {
  --ink: #111827;
  --muted: #5f6876;
  --line: #d8dde5;
  --paper: #f7f4ee;
  --white: #ffffff;
  --red: #c72027;
  --red-dark: #8e151a;
  --gold: #f4b740;
  --green: #2c7a64;
  --blue: #1f5f8b;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.no-scroll {
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links,
.site-header.is-scrolled .icon-button {
  color: var(--ink);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-weight: 900;
}

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

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  padding: 3px;
}

.site-header.is-scrolled .lang-switch {
  background: #eef1f5;
  border-color: #d8dde5;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--white);
  min-width: 42px;
  min-height: 36px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.site-header.is-scrolled .lang-btn {
  color: var(--ink);
}

.lang-btn.is-active {
  background: var(--red);
  color: var(--white);
}

.icon-button {
  width: 44px;
  height: 44px;
  color: var(--white);
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.68) 45%, rgba(17, 24, 39, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
}

.hero h1 {
  width: min(780px, 100%);
  margin: 0;
  font-size: clamp(2.45rem, 5rem, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions,
.form-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero-facts {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(17, 24, 39, 0.68);
}

dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.strip-item {
  min-width: 0;
  padding: 20px clamp(16px, 4vw, 42px);
  background: #172033;
}

.strip-item span {
  display: block;
  color: #bfc6d2;
  font-size: 0.82rem;
  font-weight: 800;
}

.strip-item strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  width: min(660px, 100%);
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4rem, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.proof-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.service-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.service-tab.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 16px;
}

.service-detail {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.service-detail.is-hidden {
  display: none;
}

.service-detail h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.05;
}

.service-detail p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.service-photo {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.rating-box {
  width: min(340px, 100%);
  display: grid;
  gap: 2px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 26px;
}

.rating-box strong {
  font-size: 4rem;
  line-height: 0.9;
}

.rating-box span {
  color: var(--gold);
}

.rating-box small {
  color: #cfd5dd;
  font-weight: 800;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.proof-card span {
  color: var(--red);
  font-weight: 900;
}

.proof-card h3 {
  margin: 8px 0;
  font-size: 1.35rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 6px;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.call-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
}

.call-builder {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.call-builder label span,
.call-builder legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.call-builder input,
.call-builder textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  resize: vertical;
}

.call-builder fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: 14px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.check input {
  width: auto;
}

.note-output {
  min-height: 74px;
  border-radius: var(--radius);
  background: #f2f5f8;
  border: 1px dashed #adb7c4;
  padding: 14px;
  color: var(--muted);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.hours-list {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  padding: 14px 16px;
}

.map-wrap {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
}

.footer p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #c6ced9;
}

.footer a {
  color: var(--white);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.28);
}

.mobile-cta a:last-child {
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-facts,
  .quick-strip,
  .section-heading,
  .service-stage,
  .proof-section,
  .call-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .service-photo,
  .service-detail {
    min-height: auto;
  }

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

  .gallery img {
    height: 300px;
  }

  .footer {
    flex-direction: column;
    padding: 30px 16px 88px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .nav {
    width: calc(100% - 20px);
    min-height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

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

  .hero-content {
    width: calc(100% - 24px);
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .section {
    width: calc(100% - 24px);
    padding: 64px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .service-detail,
  .call-builder,
  .proof-card {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }
}
