:root {
  --bg: #0b0b0c;
  --panel: #151516;
  --panel-soft: rgba(255,255,255,0.06);
  --text: #ffffff;
  --muted: #b9b9bd;
  --line: rgba(255,255,255,0.12);
  --white: #ffffff;
  --black: #09090a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(11,11,12,0.88);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}
.logo-fallback {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-weight: 800;
}
.brand strong { display: block; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; }
.brand small { color: var(--muted); }
nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
nav a, .header-cta { text-decoration: none; }
nav a:hover { color: #fff; }
.header-cta {
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 110px 5vw 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.17), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 32%);
  pointer-events: none;
}
.hero-content, .hero-card { position: relative; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}
.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.btn.primary { background: #fff; color: #111; }
.btn.secondary { border: 1px solid var(--line); color: #fff; }
.hero-card {
  align-self: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.card-label { color: var(--muted); font-size: 14px; }
.hero-card h2 { font-size: 32px; line-height: 1.1; }
.hero-card ul { padding: 0; margin: 24px 0 0; list-style: none; }
.hero-card li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #e5e5e5;
}
.hero-card li::before { content: "✓"; margin-right: 10px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.trust-strip span {
  padding: 22px 5vw;
  background: #101011;
  color: var(--muted);
  font-weight: 700;
}
.section { padding: 92px 5vw; }
.section-heading { max-width: 860px; margin-bottom: 42px; }
.section-heading h2, .contact-section h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.section-heading p, .contact-section p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-soft);
}
.icon { font-size: 30px; display: inline-block; margin-bottom: 18px; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--muted); line-height: 1.65; }
.states-section { background: #fff; color: #111; }
.states-section .eyebrow, .states-section .section-heading p { color: #6b6b6b; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.states-grid div {
  padding: 28px;
  min-height: 140px;
  border-radius: 28px;
  background: #f3f3f3;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.states-grid span { font-size: 44px; letter-spacing: -0.07em; color: #111; }
.process-section { background: #111112; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid div {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
.process-grid strong { color: var(--muted); }
.process-grid p { color: var(--muted); line-height: 1.65; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.instagram-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #222, #111);
  border: 1px solid var(--line);
  position: relative;
}
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.instagram-grid a.empty-tile::after {
  content: "Instagram post image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 20px;
}
.note { margin-top: 18px; color: var(--muted); font-size: 14px; }
.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: start;
  background: #fff;
  color: #111;
}
.contact-section .eyebrow, .contact-section p { color: #666; }
.contact-card {
  padding: 34px;
  border-radius: 32px;
  background: #111;
  color: #fff;
}
.contact-card p { color: #d8d8d8; }
.contact-card a { color: #fff; font-weight: 800; }
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer a { color: #fff; }

@media (max-width: 950px) {
  nav { display: none; }
  .hero, .contact-section { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid, .process-grid, .instagram-grid, .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; }
  .header-cta { display: none; }
  .hero { padding-top: 76px; }
  .service-grid, .states-grid, .process-grid, .instagram-grid, .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { padding: 18px 5vw; }
  footer { flex-direction: column; align-items: flex-start; }
}
