:root {
  --ink: #161616;
  --charcoal: #252220;
  --mortar: #ede8df;
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #6e6a64;
  --line: rgba(22, 22, 22, 0.13);
  --brick: #8b4e3b;
  --steel: #61737d;
  --gum: #7f8b74;
  --sand: #c4a46d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 12px;
  background: var(--white);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(37, 34, 32, 0.96);
  border-bottom: 1px solid rgba(248, 246, 241, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 172px;
  height: auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.86rem;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-text {
  color: var(--white);
  white-space: nowrap;
}

.brand-line {
  color: rgba(248, 246, 241, 0.68);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav,
.header-actions,
.hero-actions,
.social-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav {
  justify-content: center;
}

.nav a,
.header-actions a {
  color: rgba(248, 246, 241, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav a:hover,
.header-actions a:hover {
  color: var(--gold);
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(120deg, rgba(37, 34, 32, 0.98), rgba(37, 34, 32, 0.84)),
    linear-gradient(135deg, #252220, #61737d);
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.1rem, 6.8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--sand);
  color: var(--ink);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
}

.hero-media {
  position: relative;
}

.hero-main-image {
  width: 100%;
  height: min(70vh, 720px);
  min-height: 430px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.hero-card {
  position: absolute;
  right: clamp(12px, 3vw, 34px);
  bottom: clamp(12px, 3vw, 34px);
  max-width: 310px;
  padding: 20px;
  background: rgba(248, 246, 241, 0.95);
  border-radius: 5px;
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.hero-card span,
.service-band span,
.project-card span,
.process-list span {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

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

.audience-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.audience-band div {
  padding: 22px clamp(18px, 4vw, 44px);
  background: var(--mortar);
}

.audience-band span {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-band strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
}

.proof-strip div {
  min-height: 122px;
  padding: 24px clamp(16px, 3vw, 32px);
  background: var(--white);
}

.proof-strip strong {
  display: block;
  font-size: 1.15rem;
}

.proof-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 108px) 18px;
}

.split,
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

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

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  margin: 0;
}

p + p {
  margin-top: 16px;
}

.copy-stack,
.section-header > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-band article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--mortar);
}

.service-band h3 {
  margin-top: 38px;
}

.service-band p {
  margin-top: 14px;
  color: var(--muted);
}

.feasibility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(62px, 9vw, 108px) clamp(18px, 5vw, 74px);
  background: var(--charcoal);
  color: var(--white);
}

.feasibility-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.feasibility-copy .button {
  margin-top: 32px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
}

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

.checklist span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.report-detail {
  background: var(--paper);
}

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

.report-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.report-grid span {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-grid h3 {
  margin-top: 30px;
}

.report-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.projects {
  max-width: none;
  padding-left: clamp(18px, 5vw, 74px);
  padding-right: clamp(18px, 5vw, 74px);
  background: var(--white);
}

.section-header {
  margin-bottom: 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.project-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card div {
  padding: 22px;
}

.project-card h3 {
  margin-top: 9px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pathway-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pathway-grid span {
  display: block;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pathway-grid h3 {
  margin-top: 34px;
}

.pathway-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.about {
  padding: clamp(62px, 9vw, 108px) clamp(18px, 5vw, 74px);
  background: linear-gradient(135deg, var(--gum), var(--steel));
  color: var(--white);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.about h2 {
  max-width: 880px;
}

.about-copy {
  max-width: 820px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
}

.process-list strong {
  display: block;
  margin-top: 32px;
  font-size: 1.08rem;
}

.process-list p {
  margin-top: 12px;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(62px, 9vw, 108px) clamp(18px, 5vw, 74px);
  background: var(--white);
}

.review-panel {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.review-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(50px, 7vw, 78px) clamp(18px, 5vw, 74px);
  background: var(--mortar);
}

.social-section h2 {
  max-width: 760px;
}

.social-section p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(28px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 108px) 18px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-details a {
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brick);
  outline: 2px solid rgba(139, 78, 59, 0.18);
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 5px;
  background: var(--charcoal);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 30px clamp(18px, 5vw, 74px);
  background: var(--ink);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 8px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--charcoal);
}

.thanks-panel {
  max-width: 720px;
  padding: clamp(28px, 6vw, 56px);
  background: var(--paper);
  border-radius: 6px;
}

.thanks-panel h1 {
  margin: 42px 0 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.98;
}

.thanks-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.thanks-panel .button {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    justify-content: center;
  }

  .nav,
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .split,
  .section-header,
  .feasibility,
  .contact,
  .reviews,
  .social-section {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .audience-band,
  .service-band,
  .project-grid,
  .pathway-grid,
  .report-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand {
    display: grid;
    justify-items: center;
  }

  .brand-logo {
    width: 156px;
  }

  .brand-text {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-main-image {
    min-height: 320px;
  }

  .hero-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .proof-strip,
  .audience-band,
  .service-band,
  .project-grid,
  .pathway-grid,
  .report-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .social-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
