:root {
  --ink: #171512;
  --muted: #5f5a52;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: rgba(23, 21, 18, 0.14);
  --accent: #b44a2b;
  --accent-dark: #71311f;
  --green: #2f5f50;
  --steel: #46515b;
  --shadow: 0 22px 60px rgba(23, 21, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0;
}

.brand span {
  font-size: 0.84rem;
  font-weight: 800;
  padding: 3px 6px;
  color: var(--ink);
  background: #fff;
}

.brand strong {
  font-size: 0.98rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.08)),
    linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 160px clamp(22px, 5vw, 72px) 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(1.14rem, 2vw, 1.58rem);
  color: rgba(255, 255, 255, 0.9);
}

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

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

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.intro,
.focus-grid,
.showcase,
.process,
.contact {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  background: #fff;
}

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

h3 {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
}

.intro p {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
}

.section-kicker {
  display: block;
  color: var(--accent-dark);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 920px;
  margin-bottom: 22px;
}

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

.focus-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.focus-grid article span {
  color: var(--accent);
  font-weight: 900;
}

.focus-grid article p {
  margin: 0;
}

.showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: #e8ece8;
}

.showcase-copy p {
  max-width: 560px;
  font-size: 1.1rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.88fr 0.62fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img + img {
  aspect-ratio: 3 / 4;
  margin-bottom: -38px;
}

.process {
  background: var(--ink);
  color: #fff;
}

.process .section-kicker,
.process p {
  color: rgba(255, 255, 255, 0.72);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.process strong {
  font-size: 1.25rem;
}

.process span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  min-height: 45vh;
  background: #fff;
}

.contact p {
  max-width: 620px;
  font-size: 1.16rem;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 128px 20px 58px;
  }

  .intro,
  .showcase,
  .focus-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .focus-grid article {
    min-height: auto;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img + img {
    margin-bottom: 0;
  }
}
