:root {
  --black: #0f1114;
  --charcoal: #171a1f;
  --ink: #20242b;
  --muted: #5e6570;
  --line: #d8d0c1;
  --paper: #faf7f1;
  --white: #fffdf8;
  --gold: #b87916;
  --gold-bright: #e2aa38;
  --green: #496b5b;
  --rust: #a34f2b;
  --shadow: 0 24px 70px rgba(15, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(15, 17, 20, 0.92);
  border-bottom: 1px solid rgba(226, 170, 56, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.brand-lockup {
  width: clamp(220px, 26vw, 310px);
  height: auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(226, 170, 56, 0.22);
}

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

.brand strong {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  color: #d7c6a3;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: #f3ead8;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 88px) clamp(34px, 6vw, 58px);
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 20, 0.96), rgba(15, 17, 20, 0.84) 38%, rgba(15, 17, 20, 0.34) 72%),
    linear-gradient(0deg, rgba(15, 17, 20, 0.96), rgba(15, 17, 20, 0.12) 55%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.95);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

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

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

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

h1 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: #f4ecdf;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.outcomes div {
  min-height: 180px;
  padding: 28px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.outcomes div:last-child {
  border-right: 0;
}

.outcomes span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
}

.outcomes strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.outcomes p,
.text-stack p,
.method p,
.fit p,
.service-card p,
.service-card li {
  color: var(--muted);
}

.split-section,
.method,
.services,
.fit,
.diagnostic,
.cta-band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.text-stack {
  max-width: 720px;
  font-size: 1.04rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

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

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.method {
  background: var(--charcoal);
  color: var(--white);
}

.method .section-heading p:last-child,
.method article p {
  color: #d9cfbd;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(226, 170, 56, 0.32);
  border: 1px solid rgba(226, 170, 56, 0.32);
}

.method-grid article {
  min-height: 260px;
  padding: 32px;
  background: var(--charcoal);
}

.method-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 50%;
  font-weight: 900;
}

.services {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 30px;
  background: #f4eee3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.service-card.featured p,
.service-card.featured li {
  color: #ded5c6;
}

.service-kicker {
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 24px 0;
}

.service-card strong {
  display: block;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 121, 22, 0.32);
  color: var(--gold);
  font-size: 1.55rem;
}

.service-card.featured strong {
  color: var(--gold-bright);
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.fit-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-grid div {
  padding: 28px;
  background: var(--paper);
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: #ebe4d8;
  border-bottom: 1px solid var(--line);
}

.diagnostic-copy {
  max-width: 760px;
}

.diagnostic-copy p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intake-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.intake-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--white);
}

.intake-row span {
  color: var(--gold);
  font-weight: 900;
}

.intake-row p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 650;
}

.intake-button {
  margin: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  color: var(--white);
  background: var(--black);
}

.cta-band h2 {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: rgba(226, 170, 56, 0.36);
  border: 1px solid rgba(226, 170, 56, 0.36);
}

.contact-panel a {
  padding: 18px;
  color: #f8efd8;
  background: var(--black);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel a:hover {
  color: var(--gold-bright);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 88px);
  color: #d9cfbd;
  background: var(--black);
  border-top: 1px solid rgba(226, 170, 56, 0.32);
  font-size: 0.9rem;
}

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

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    min-height: 760px;
  }

  .outcomes,
  .method-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section,
  .fit,
  .diagnostic,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand-lockup {
    width: 218px;
  }

  .nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
    padding-top: 72px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(15, 17, 20, 0.96), rgba(15, 17, 20, 0.82)),
      linear-gradient(0deg, rgba(15, 17, 20, 0.98), rgba(15, 17, 20, 0.14));
  }

  .hero-media img {
    object-position: 58% center;
  }

  .button {
    width: 100%;
  }

  .outcomes,
  .method-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .outcomes div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcomes div:last-child {
    border-bottom: 0;
  }

  .method-grid article {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
