:root {
  color-scheme: dark;
  --bg: #090909;
  --bg-raised: #111111;
  --panel: #181614;
  --panel-soft: #211d18;
  --text: #f7f3ee;
  --muted: #b8aea4;
  --subtle: #7e756d;
  --line: rgba(247, 243, 238, 0.14);
  --accent: #d9432f;
  --accent-strong: #ff5a3c;
  --gold: #d6aa58;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--accent);
  color: var(--text);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 243, 238, 0.2);
  background: linear-gradient(135deg, var(--accent), #5b1f18 58%, #15110e);
  border-radius: 8px;
  color: #fff7ef;
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 84svh;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.88) 31%, rgba(9, 9, 9, 0.34) 66%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.58) 0%, rgba(9, 9, 9, 0.1) 42%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 36px));
  min-height: 84svh;
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 104px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 11vw, 7.6rem);
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 920;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 850;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff9f3;
  box-shadow: 0 18px 34px rgba(217, 67, 47, 0.22);
}

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

.button-secondary {
  border-color: rgba(247, 243, 238, 0.22);
  background: rgba(247, 243, 238, 0.06);
  color: var(--text);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0c0b;
}

.proof-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--text);
  font-weight: 850;
  text-align: center;
}

.proof-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(217, 67, 47, 0.08), rgba(217, 67, 47, 0) 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.approach-item p,
.contact-section p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.split-section .section-heading {
  margin: 0;
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-item {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.approach-item:first-child {
  padding-top: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 64px) clamp(48px, 7vw, 92px);
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid rgba(247, 243, 238, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 67, 47, 0.18), rgba(214, 170, 88, 0.08) 44%, rgba(255, 255, 255, 0.03)),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  margin-bottom: 20px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.contact-details a,
.contact-details span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 850;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--accent-strong);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--muted);
}

.not-found {
  min-height: 100svh;
}

.error-page {
  display: flex;
  min-height: 100svh;
  width: min(760px, calc(100% - 36px));
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 72px 0;
}

.error-page .button {
  width: fit-content;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 82svh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.76) 54%, rgba(9, 9, 9, 0.2)),
      linear-gradient(180deg, rgba(9, 9, 9, 0.5) 0%, rgba(9, 9, 9, 0.12) 42%, #090909 100%);
  }

  .service-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-card {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 190px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 50px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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