:root {
  --coal: #0f0f0f;
  --ash: #1c1c1c;
  --charcoal: #2c2c2c;
  --border: #2a2a2a;
  --muted: #c8c8c8;
  --signal: #c0392b;
  --flame: #cc4400;
  --white: #fff;
  --green: #4caf76;
  --r: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: var(--coal);
  color: var(--white);
}

a {
  color: #f2b5ac;
}

a:hover {
  color: var(--white);
}

.page-hero p a,
.page-section p a,
.page-section li a,
.home-hero p a,
.home-section p a,
.home-section li a,
.cta-band p a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-hero p a:hover,
.page-section p a:hover,
.page-section li a:hover,
.home-hero p a:hover,
.home-section p a:hover,
.home-section li a:hover,
.cta-band p a:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-brand {
  text-decoration: none;
  color: var(--white);
  line-height: 1;
}

.site-brand-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.site-brand-wordmark span {
  color: var(--signal);
}

.site-brand-tagline {
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-links a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.site-links .cta {
  padding: 12px 18px;
  border-radius: var(--r);
  background: var(--signal);
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 32px 56px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(192, 57, 43, 0.18), transparent 45%),
    var(--coal);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner,
.page-section-inner,
.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #9f9f9f;
  font-size: 13px;
}

.breadcrumbs a {
  color: #cfcfcf;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--signal);
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--signal);
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.8px;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.75;
  color: #dedede;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--r);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
}

.page-section {
  padding: 52px 32px;
  border-bottom: 1px solid var(--border);
}

.page-section.alt {
  background: var(--ash);
}

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

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

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.card h2,
.card h3 {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  line-height: 1;
}

.card h3 {
  font-size: 22px;
}

.page-section h2 {
  margin: 0 0 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.page-section p,
.page-section li {
  font-size: 16px;
  line-height: 1.75;
  color: #d6d6d6;
}

.page-section ul {
  padding-left: 20px;
}

.trust-block {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.trust-pill {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(192, 57, 43, 0.22);
  background: rgba(192, 57, 43, 0.08);
  color: #ececec;
  font-size: 14px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.inline-links a {
  color: #f7c3ba;
}

.contact-strip {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(76, 175, 118, 0.24);
  background: rgba(76, 175, 118, 0.08);
}

.site-footer {
  padding: 44px 32px 56px;
  background: var(--coal);
}

.site-footer-inner {
  display: grid;
  gap: 28px;
}

.footer-business h2 {
  margin: 0 0 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  line-height: 1;
}

.footer-business h2 span {
  color: var(--signal);
}

.footer-business p,
.footer-business li {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #c9c9c9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-meta strong {
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-socials a {
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 960px) {
  .section-grid,
  .section-grid.two,
  .trust-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .page-hero,
  .page-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-links {
    justify-content: flex-start;
  }

  .page-hero {
    padding-top: 72px;
  }
}
