:root {
  --bg: #131517;
  --bg-soft: #1b1e21;
  --panel: rgba(19, 21, 23, 0.78);
  --panel-strong: #21262b;
  --card: rgba(34, 39, 44, 0.9);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f3eee5;
  --muted: #c7c0b6;
  --accent: #f39c3d;
  --accent-strong: #ffbf73;
  --concrete: #a7aaad;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(243, 156, 61, 0.16), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(167, 170, 173, 0.14), transparent 28%),
    linear-gradient(180deg, #101214 0%, #181b1f 48%, #101214 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
  opacity: 0.25;
}

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

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

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #101214;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 50;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-bar,
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-bar {
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(145deg, rgba(243, 156, 61, 0.95), rgba(255, 191, 115, 0.88));
  color: #111315;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 32px rgba(243, 156, 61, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong,
.site-nav a,
.header-cta,
.button,
.service-tag,
.contact-label,
.card-label,
.eyebrow {
  letter-spacing: 0.04em;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-strong);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  padding: 0.9rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

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

.hero {
  position: relative;
  padding: 4.6rem 0 3rem;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.92) 0%, rgba(12, 13, 15, 0.7) 45%, rgba(12, 13, 15, 0.86) 100%),
    url("assets/driveway.jpg") center/cover no-repeat;
  opacity: 0.38;
  transform: scale(1.04);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy,
.hero-panel,
.service-card,
.process-card,
.gallery-card,
.contact-card {
  position: relative;
  z-index: 1;
}

.eyebrow,
.service-tag,
.card-label,
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
}

.eyebrow::before,
.service-tag::before,
.card-label::before,
.contact-label::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #ffe1b5);
  box-shadow: 0 0 0 4px rgba(243, 156, 61, 0.14);
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.75rem, 11vw, 7rem);
  max-width: 10ch;
}

h2 {
  margin-top: 0.9rem;
  font-size: clamp(2.45rem, 7vw, 4.4rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.trust-copy > p:last-of-type,
.contact-copy > p:last-of-type {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 3.35rem;
  padding: 0.95rem 1.4rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #101214;
  box-shadow: 0 18px 40px rgba(243, 156, 61, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-points {
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-points li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.service-card,
.process-card,
.gallery-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(32, 36, 40, 0.95), rgba(18, 20, 22, 0.95));
  box-shadow: var(--shadow);
}

.hero-card-image {
  min-height: 24rem;
}

.hero-card-image img {
  height: 100%;
  object-fit: cover;
}

.hero-card-info {
  padding: 1.3rem 1.4rem 1.5rem;
}

.stat-row {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.stat-row div {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
}

.stat-copy {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 2.4rem 0 2.8rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.services-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  padding: 1.4rem;
  min-height: 100%;
}

.service-card h3,
.trust-list h3 {
  margin-top: 1rem;
  font-size: 1.18rem;
}

.service-card p,
.trust-list p,
.process-card li,
.gallery-card figcaption,
.contact-card p,
.contact-card a,
address,
.site-footer p {
  color: var(--muted);
}

.service-card p {
  margin-top: 0.7rem;
}

.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.88fr);
  gap: 1.2rem;
  align-items: start;
}

.trust-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.trust-list > div,
.contact-card > div {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-list > div:first-child,
.contact-card > div:first-child {
  border-top: none;
  padding-top: 0;
}

.process-card,
.contact-card {
  padding: 1.5rem;
}

.process-card ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--text);
}

.section-gallery {
  padding-bottom: 3.2rem;
}

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

.gallery-card {
  grid-column: span 4;
}

.gallery-card-wide {
  grid-column: span 12;
}

.gallery-card img {
  height: 20rem;
  object-fit: cover;
}

.gallery-card-wide img {
  height: 25rem;
}

.gallery-card figcaption {
  padding: 1rem 1.15rem 1.2rem;
}

.contact-copy .button {
  margin-top: 1.5rem;
}

address {
  font-style: normal;
}

.site-footer {
  padding: 1.35rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar {
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .header-bar,
  .site-nav {
    flex-wrap: wrap;
  }

  .header-bar {
    padding: 1rem 0;
  }

  .hero-grid,
  .trust-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-wide {
    grid-column: span 12;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 1.1rem);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .hero-card-image,
  .gallery-card img,
  .gallery-card-wide img {
    height: auto;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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