:root {
  --ink: #111316;
  --ink-soft: #3d454d;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #d9d3c8;
  --steel: #5d6874;
  --copper: #9f6a3c;
  --deep: #0b0e13;
  --green: #1f5b4c;
  --shadow: 0 18px 42px rgba(17, 19, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.site-header {
  align-items: center;
  background: rgba(11, 14, 19, 0.72);
  color: var(--white);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 40px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 10;
}

.site-header.is-solid {
  background: rgba(11, 14, 19, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  align-items: baseline;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 800;
  letter-spacing: 0;
  padding: 6px 8px;
}

.brand-name {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
}

.site-nav a:hover {
  color: var(--white);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.9) 0%, rgba(5, 8, 12, 0.7) 42%, rgba(5, 8, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, 0.36), rgba(5, 8, 12, 0.1));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 180px 40px 96px;
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.hero h1,
.section h2,
.statement h2,
.contact-section h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 920px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 26px 0 0;
  max-width: 690px;
}

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

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

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

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

.intro-band {
  background: var(--deep);
  color: var(--white);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px 40px;
}

.intro-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 42px;
  padding-top: 42px;
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  margin: 0;
}

.section-heading {
  max-width: 720px;
}

.section h2,
.statement h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.focus-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 42px;
}

.focus-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  grid-column: span 2;
  min-height: 260px;
  padding: 28px;
}

.focus-card:nth-child(4),
.focus-card:nth-child(5) {
  grid-column: span 3;
}

.card-number {
  color: var(--copper);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.focus-card h3,
.approach-list h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 14px;
}

.focus-card p,
.approach-list p,
.statement-copy p,
.contact-panel p {
  color: var(--ink-soft);
  margin: 0;
}

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

.statement-alt {
  background: #f1eee7;
}

.statement-grid,
.contact-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.statement-copy {
  display: grid;
  gap: 22px;
  font-size: 1.06rem;
}

.muted {
  background: #ece7dd;
}

.approach-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
}

.approach-list > div {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 19, 22, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1fr);
  padding: 24px 28px;
}

.contact-section {
  background: var(--green);
  color: var(--white);
}

.contact-section .eyebrow {
  color: #e2a76d;
}

.contact-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 34px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.contact-link {
  display: inline-block;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-top: 22px;
  word-break: break-word;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px 40px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 70px;
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 138px 22px 74px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .section-inner {
    padding: 64px 22px;
  }

  .intro-grid,
  .statement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .focus-card:nth-child(4),
  .focus-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }

  .approach-list > div {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 0;
    padding-top: 28px;
  }

  .footer-inner {
    flex-direction: column;
    padding: 28px 22px;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.58rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
