:root {
  --black: #050609;
  --ink: #111318;
  --charcoal: #1d2026;
  --steel: #d7dce2;
  --silver: #f4f5f7;
  --gold: #c99b3e;
  --gold-bright: #f0cc78;
  --sage: #65766b;
  --rust: #8d4633;
  --text: #f7f8fa;
  --muted: #aeb5bd;
  --paper: #fbfaf7;
  --paper-text: #1b1c20;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 6, 9, 0.64);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 9, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240, 204, 120, 0.45);
  border-radius: 6px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 82px) 72px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.92) 0%, rgba(5, 6, 9, 0.7) 36%, rgba(5, 6, 9, 0.18) 72%),
    linear-gradient(0deg, rgba(5, 6, 9, 0.9) 0%, rgba(5, 6, 9, 0) 42%),
    radial-gradient(circle at 22% 35%, rgba(201, 155, 62, 0.24), transparent 28%);
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Oswald, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 570px;
  color: var(--steel);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.metrics div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--ink);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: Oswald, Arial, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.metrics span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 82px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  background: var(--paper);
  color: var(--paper-text);
}

.intro .eyebrow,
.coverage .eyebrow {
  color: var(--rust);
}

.intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #4a4d52;
  font-size: 1.08rem;
}

.founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(12, 14, 18, 0.98), rgba(29, 32, 38, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder .eyebrow {
  color: var(--gold-bright);
}

.founder-copy {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.founder-copy p {
  margin: 0;
  color: var(--steel);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #0b0d11;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  background: #141217;
}

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

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.content-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article,
.coverage-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-list p,
.coverage-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(229, 229, 222, 0.98));
  color: var(--paper-text);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.coverage-grid article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 19, 24, 0.12);
}

.coverage-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--rust);
  font-family: Oswald, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.coverage-grid p {
  color: #54575d;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--steel);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--gold-bright);
  content: "✓";
  font-weight: 900;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 74px);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(120deg, rgba(5, 6, 9, 0.96), rgba(29, 32, 38, 0.96)),
    radial-gradient(circle at 15% 20%, rgba(201, 155, 62, 0.26), transparent 32%);
}

.quote-copy {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.quote-copy img {
  width: clamp(84px, 13vw, 148px);
  border: 1px solid rgba(240, 204, 120, 0.42);
  border-radius: 8px;
}

.quote-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.business-address {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--steel);
  font-style: normal;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
}

input {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 204, 120, 0.72);
  outline-offset: 2px;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 82px);
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
}

.site-footer strong {
  color: var(--text);
  font-family: Oswald, Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 6, 9, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 9, 0.18) 0%, rgba(5, 6, 9, 0.88) 58%, rgba(5, 6, 9, 0.96) 100%),
      radial-gradient(circle at 34% 62%, rgba(201, 155, 62, 0.24), transparent 34%);
  }

  .metrics,
  .intro,
  .founder,
  .split,
  .split.reverse,
  .coverage-grid,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 170px;
    line-height: 1;
  }

  .hero {
    padding-inline: 18px;
  }

  .button {
    width: 100%;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

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