:root {
  --bg: #070707;
  --bg-soft: #0d0d0e;
  --surface: #141414;
  --surface-2: #1b1b1d;
  --surface-3: #242426;
  --text: #f7f2ee;
  --muted: #b8afa7;
  --subtle: #847b73;
  --line: #302b28;
  --red: #e3342b;
  --red-hot: #ff493f;
  --red-dark: #a91516;
  --cream: #fbf4ee;
  --black: #000000;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 7, 7, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  text-decoration: none;
}

.logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  max-width: none;
}

.brand-mark {
  width: 68px;
  height: 38px;
}

.brand-mark img {
  top: -45px;
  left: -33px;
  width: 132px;
  height: auto;
}

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

.brand strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red-hot);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(227, 52, 43, 0.13), transparent 34%),
    linear-gradient(180deg, #0f0f10 0%, #070707 100%);
  color: var(--text);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), transparent 78%);
  content: "";
}

.hero-overlay {
  padding: clamp(34px, 5vw, 74px) clamp(18px, 4vw, 56px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 340px) minmax(320px, 430px);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  max-width: 1320px;
  margin: 0 auto;
}

.hero-copy,
.contact-card,
.hero-media {
  min-width: 0;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--red-hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 6.4vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

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

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

.button-secondary {
  background: var(--white);
  color: var(--black);
}

.button-quiet {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--red-hot);
  color: var(--red-hot);
}

.button-light {
  background: var(--white);
  color: var(--red-dark);
}

.button-full {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 7px solid var(--red);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
  content: "";
}

.portrait-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.06) saturate(0.9);
}

.portrait-logo {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  width: 112px;
  height: 70px;
  opacity: 0.88;
}

.portrait-logo img {
  top: -76px;
  left: -54px;
  width: 220px;
}

.hero-media p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-card {
  background: rgba(20, 20, 20, 0.97);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 28px);
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.contact-card p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

label {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #4a4441;
  border-radius: 6px;
  background: #090909;
  color: var(--text);
  font: inherit;
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-hot);
  outline: 3px solid rgba(227, 52, 43, 0.22);
}

textarea {
  resize: vertical;
}

::placeholder {
  color: #8c837d;
}

.hidden {
  display: none;
}

.social-links {
  margin-top: 18px;
}

.social-links a {
  color: var(--red-hot);
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.intro-band,
.area-guides {
  background: var(--bg);
}

.section-header {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.section-header.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 24px;
  max-width: 1220px;
  align-items: end;
}

.section-header p:last-child {
  color: var(--muted);
}

.feature-grid,
.video-grid,
.area-grid,
.proof-grid,
.faq-list {
  max-width: 1220px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.service-card,
.area-card,
.proof-item,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature,
.service-card,
.area-card,
.proof-item {
  padding: 24px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature p,
.service-card p,
.area-card p,
.proof-item p,
details p,
.content-panel p {
  color: var(--muted);
}

.video-section {
  background: var(--bg-soft);
}

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

.video-tile {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  background: var(--black);
}

.video-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84));
  content: "";
}

.video-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-tile:hover img,
.video-tile:focus-visible img {
  transform: scale(1.04);
}

.video-tile strong,
.video-tile small,
.play-badge {
  position: relative;
  z-index: 1;
}

.video-tile strong {
  display: block;
  max-width: 290px;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
}

.video-tile small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.play-badge {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(227, 52, 43, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.moving-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--bg);
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.84);
}

.content-panel {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.services,
.faq {
  background: var(--bg-soft);
}

.service-card {
  display: grid;
  align-content: start;
  border-top: 4px solid var(--red);
}

.service-card a {
  margin-top: 10px;
  color: var(--red-hot);
  font-weight: 900;
  text-decoration: none;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(40px, 7vw, 72px) clamp(18px, 4vw, 56px);
  background: linear-gradient(90deg, var(--red-dark), #1a0909);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.search-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.search-band h2 {
  margin-bottom: 10px;
}

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

.area-card {
  border-left: 6px solid var(--red);
}

.area-card:nth-child(2n) {
  border-left-color: #8f1d1d;
}

.area-card:nth-child(3n) {
  border-left-color: var(--white);
}

.proof-section {
  background: #090909;
  color: var(--white);
}

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

.proof-item {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.proof-item p {
  color: var(--muted);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red-hot);
  font-size: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 36px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 90px;
  height: 56px;
  margin-bottom: 16px;
}

.footer-logo img {
  top: -61px;
  left: -44px;
  width: 177px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.site-footer a {
  color: var(--red-hot);
  font-weight: 900;
  text-decoration: none;
}

.credit {
  grid-column: 1 / -1;
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  }

  .hero-media {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-card {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .portrait-frame,
  .portrait-photo {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-header.split,
  .moving-section,
  .search-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .contact-card {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy {
    order: 1;
  }

  .contact-card {
    order: 2;
  }

  .hero-media {
    order: 3;
  }

  .feature-grid.three,
  .video-grid,
  .area-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-band {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px 12px;
    width: 100%;
    font-size: 0.9rem;
  }

  .hero-overlay {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2rem, 9.4vw, 2.45rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .contact-card h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .eyebrow,
  .card-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .feature-grid.three,
  .video-grid,
  .area-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .video-tile {
    min-height: 320px;
  }

  .portrait-frame,
  .portrait-photo {
    min-height: 390px;
  }

  .image-panel img {
    min-height: 300px;
  }

  .button {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }
}
