:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --panel: #161616;
  --text: #f2f0ec;
  --soft: #d4d0c8;
  --muted: #9a958c;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);
  --red: #c62828;
  --red-bright: #ef5350;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, .88);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.brand-text small {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
}

.nav-links {
  display: none;
  gap: 20px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  color: var(--soft);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-call {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(198, 40, 40, .35);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .header-call { margin-left: 0; }
}

.kicker {
  margin: 0 0 10px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b71c1c;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .04);
}

.hero {
  width: min(1140px, calc(100vw - 20px));
  margin: 18px auto 0;
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}

.hero-media {
  position: relative;
  min-height: 220px;
  max-height: 52vh;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .15) 0%, rgba(10, 10, 10, .75) 70%, rgba(10, 10, 10, .95) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.hero-panel {
  padding: 24px 20px 28px;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 3.8rem);
  line-height: .94;
  letter-spacing: normal;
  text-transform: uppercase;
  max-width: 16ch;
}

.hero-lead {
  margin: 0 0 20px;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  font-size: 13px;
  font-weight: 550;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
  }

  .hero-media {
    min-height: 100%;
    max-height: none;
  }

  .hero-media::after {
    background: linear-gradient(90deg, transparent 25%, rgba(10, 10, 10, .92) 100%);
  }

  .hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 36px;
  }
}

.pillars {
  width: min(1140px, calc(100vw - 20px));
  margin: 40px auto;
  display: grid;
  gap: 10px;
}

.pillars article {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
}

.pillars h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
}

.pillars p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 48px auto;
  }
}

.services {
  width: min(1140px, calc(100vw - 20px));
  margin: 56px auto;
}

.section-head {
  max-width: 52ch;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: .95;
  text-transform: uppercase;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-row {
  display: grid;
  gap: 0;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-row-media {
  min-height: 200px;
  overflow: hidden;
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.service-row-media-accent {
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(198, 40, 40, .18), rgba(255, 255, 255, .03));
}

.accent-panel {
  max-width: 28ch;
}

.accent-label {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--red-bright);
}

.accent-panel p:last-child {
  margin: 0;
  color: var(--soft);
  line-height: 1.55;
}

.service-row-copy {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-transform: uppercase;
  line-height: 1;
}

.service-row-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .service-row-reverse .service-row-media {
    order: 2;
  }

  .service-row-reverse .service-row-copy {
    order: 1;
  }

  .service-row-media {
    min-height: 240px;
  }

  .service-row-copy {
    padding: 32px 28px;
  }
}

.trust {
  width: min(1140px, calc(100vw - 20px));
  margin: 0 auto 56px;
  display: grid;
  gap: 16px;
}

.trust h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: .95;
  text-transform: uppercase;
}

.trust-copy > p {
  margin: 0 0 16px;
  color: var(--soft);
  line-height: 1.6;
  max-width: 48ch;
}

.trust-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

.trust-list li + li { margin-top: 6px; }

.hours-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(198, 40, 40, .12), rgba(255, 255, 255, .02));
}

.hours-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.hours-lead {
  margin: 0 0 16px;
  color: var(--soft);
  line-height: 1.55;
}

.hours-cta {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.hours-cta a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.hours-cta a:hover,
.hours-cta a:focus-visible {
  border-color: rgba(198, 40, 40, .45);
  background: rgba(198, 40, 40, .08);
}

.hours-note {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .trust {
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
    gap: 20px;
  }
}

.contact-section {
  width: min(1140px, calc(100vw - 20px));
  margin: 0 auto 80px;
  display: grid;
  gap: 14px;
}

.contact-copy {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: .95;
  text-transform: uppercase;
}

.contact-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 42ch;
}

.contact-grid {
  display: grid;
  gap: 10px;
}

.contact-grid a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  border-color: rgba(198, 40, 40, .45);
  background: rgba(198, 40, 40, .06);
}

.contact-grid span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}

.contact-grid strong {
  font-size: 1.05rem;
}

.map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  min-height: 280px;
  display: grid;
}

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

.map-link {
  display: block;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid var(--line);
  color: var(--red-bright);
}

@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
  }

  .contact-copy { padding: 32px 28px; }
}

.site-footer {
  width: min(1140px, calc(100vw - 20px));
  margin: 0 auto 100px;
  padding: 20px 0 8px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--muted);
  font-size: .92rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-action {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.mobile-action a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.mobile-action a:first-child {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.mobile-action a:last-child {
  background: var(--red);
  color: #fff;
}

@media (min-width: 768px) {
  .mobile-action { display: none; }
  .site-footer { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .header-call,
  .contact-grid a,
  .hours-cta a { transition: none; }
}
