:root {
  --bg: #f4f2ed;
  --paper: #fbfaf7;
  --ink: #111111;
  --muted: #66635d;
  --line: #d8d3ca;
  --dark: #111111;
  --light: #f4f2ed;
  --accent: #b8ff3d;
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  width: min(calc(100% - 2 * var(--pad)), var(--max));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--light);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a,
.text-link {
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.text-link:hover {
  border-bottom-color: currentColor;
}

.section-pad {
  width: min(calc(100% - 2 * var(--pad)), var(--max));
  margin: 0 auto;
  padding-top: clamp(4rem, 9vw, 9rem);
  padding-bottom: clamp(4rem, 9vw, 9rem);
}

.rule-top {
  border-top: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c7c2b9;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.45fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 8.5vw, 8.4rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  font-weight: 700;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 2.3rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #37342f;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.text-link {
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-note {
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
}

.note-number {
  margin-bottom: 3.2rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.note-title {
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-note p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-section {
  width: 100%;
  padding: 0 var(--pad);
}

.photo-placeholder {
  min-height: clamp(420px, 65vw, 820px);
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    repeating-linear-gradient(135deg, #222 0, #222 1px, #171717 1px, #171717 18px);
  color: #fff;
  border: 1px solid #2b2b2b;
}

.photo-placeholder span {
  font-size: clamp(2.6rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.photo-placeholder small {
  margin-top: 1rem;
  color: #b9b9b9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.team-photo {
  display: block;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.statement {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 3rem;
}

.statement-copy {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.section-intro {
  max-width: 720px;
  font-size: 1.1rem;
  color: #c7c2b9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: 4rem;
}

.about-grid > div > p {
  max-width: 720px;
  font-size: 1.05rem;
}

.facts {
  margin: 0;
}

.facts div {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.facts dt {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.facts dd {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2));
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2));
  background: var(--dark);
  color: var(--light);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 5rem 0 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #3b3b3b;
}

.process-list li:last-child {
  border-bottom: 1px solid #3b3b3b;
}

.process-list p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c7c2b9;
}

.step {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.review-grid article {
  min-height: 260px;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.review-grid article > span {
  display: block;
  margin-bottom: 4rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.scope-note {
  max-width: 820px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.deliverable {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.deliverable-body > p {
  max-width: 700px;
  font-size: 1.08rem;
}

.check-list {
  padding: 0;
  margin: 3rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.7rem;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "↘";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact h2 {
  max-width: 760px;
}

.contact-copy {
  max-width: 640px;
  color: #c7c2b9;
  font-size: 1.1rem;
}

.contact-card {
  padding-top: 1rem;
  border-top: 1px solid #4b4b4b;
}

.contact-card p {
  margin-bottom: 0.45rem;
}

.contact-card .button {
  margin-top: 2rem;
}

.button-light {
  color: var(--light);
}

.button-light:hover {
  background: var(--light);
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem var(--pad);
  background: var(--dark);
  color: #8d8d8d;
  border-top: 1px solid #2f2f2f;
  font-size: 0.74rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .statement,
  .about-grid,
  .deliverable,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 420px;
  }

  .note-number {
    margin-bottom: 1.5rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
  }

  .brand-name {
    display: none;
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
  }

  .photo-section {
    padding-left: 0;
    padding-right: 0;
  }

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

  .process-list li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
  }

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