:root {
  --bg: #0f1012;
  --surface: #17191d;
  --surface-soft: #1d2025;
  --panel: #f3efe6;
  --ink: #f5f2eb;
  --muted: #b7b3ac;
  --muted-dark: #64686f;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff6a13;
  --accent-soft: #ffb077;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 19, 0.17), transparent 22%),
    linear-gradient(180deg, #111216 0%, #0f1012 58%, #15171b 100%);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header,
.hero,
.signal-bar,
.section,
.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(15, 16, 18, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav a,
.nav-cta,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0.02em;
}

.brand-mark {
  font-size: 1.7rem;
  line-height: 1;
}

.brand-copy {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-solid {
  background: var(--accent);
  color: #111216;
  font-weight: 700;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  padding: 38px 0 22px;
}

.hero-copy,
.hero-rail,
.service-card,
.advantage-card,
.process-panel,
.review-card,
.map-card,
.hours-card,
.contact-card {
  border-radius: var(--radius);
}

.hero-copy {
  padding: clamp(34px, 4vw, 64px);
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(15, 16, 18, 0.06), rgba(15, 16, 18, 0.92)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.hero-rail {
  display: grid;
  gap: 18px;
}

.rail-card,
.service-card,
.advantage-card,
.review-card,
.hours-card,
.contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rail-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 106, 19, 0.17), rgba(255, 106, 19, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.rail-card strong {
  display: block;
  margin: 12px 0 4px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 5rem;
  line-height: 0.9;
}

.rail-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  margin: 8px 0 16px;
}

.rail-label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  text-transform: uppercase;
}

p,
li,
address,
span {
  line-height: 1.65;
}

p,
li,
address {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(245, 242, 235, 0.82);
}

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

.hero-points,
.location-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li,
.location-points li {
  padding-left: 22px;
  position: relative;
}

.hero-points li::before,
.location-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 28px;
}

.signal-bar article {
  padding: 18px 20px;
  background: #13151a;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.signal-bar span {
  display: block;
  color: var(--muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.signal-bar strong,
.signal-bar strong a {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
}

.section {
  padding: 58px 0;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 26px;
}

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

.service-card span,
.review-card span {
  display: inline-flex;
  color: var(--accent-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.dark-section .advantage-card {
  background: rgba(255, 255, 255, 0.04);
}

.process-panel {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 106, 19, 0.14), rgba(255, 255, 255, 0.02)),
    #121419;
  border: 1px solid var(--line);
}

.section-heading.compact {
  margin-bottom: 20px;
}

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

.process-steps article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.review-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 320px;
}

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

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 16, 18, 0.82);
  color: var(--ink);
}

.location-section,
.hours-contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.map-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 26px;
  margin: 20px 0 18px;
}

.hours-grid span {
  color: var(--ink);
}

.hours-grid strong {
  color: var(--muted);
  font-weight: 500;
}

.contact-card address {
  margin-top: 24px;
  font-style: normal;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1040px) {
  .hero,
  .signal-bar,
  .service-grid,
  .advantage-grid,
  .process-steps,
  .review-section,
  .review-grid,
  .gallery-grid,
  .location-section,
  .hours-contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .signal-bar,
  .section,
  .site-footer {
    width: min(1240px, calc(100% - 24px));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-copy,
  .rail-card,
  .service-card,
  .advantage-card,
  .process-panel,
  .review-card,
  .hours-card,
  .contact-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
