:root {
  --ink: #171816;
  --paper: #f2f0e9;
  --card: #dfe8d8;
  --line: rgba(23, 24, 22, 0.2);
  --muted: #62665d;
  --accent: #496f5c;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0%, rgba(156, 180, 148, 0.18), transparent 30rem),
    var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
}

main, footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: inherit;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.wordmark span { color: var(--accent); }
.nav-note, .eyebrow, .card-meta, footer { font-family: "DM Mono", monospace; }
.nav-note { color: var(--muted); font-size: 0.7rem; }

.hero { max-width: 900px; padding: clamp(94px, 16vw, 185px) 0 100px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }
h1, h2 { font-family: "Newsreader", Georgia, serif; font-weight: 400; }
h1 { max-width: 820px; margin-bottom: 30px; font-size: clamp(3.25rem, 7vw, 6.9rem); line-height: 0.9; letter-spacing: -0.07em; }
.intro { max-width: 575px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.45; }

.brands { padding-bottom: 110px; }
.section-heading { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.section-heading p:last-child { color: var(--muted); font-size: 0.9rem; }

.brand-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 26px;
  background: var(--card);
  border: 1px solid rgba(73, 111, 92, 0.22);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 160ms ease, transform 160ms ease;
}

.brand-card:hover { background: #d5e1cf; transform: translateY(-2px); }
.brand-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.card-meta { display: flex; justify-content: space-between; color: var(--accent); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.card-content { position: relative; z-index: 1; max-width: 635px; }
.kicker { margin-bottom: 12px; font-size: 1rem; font-weight: 700; }
h2 { margin-bottom: 20px; font-size: clamp(2.6rem, 5.5vw, 5.25rem); line-height: 0.92; letter-spacing: -0.06em; }
.card-content p:last-child { max-width: 440px; color: #394539; font-size: 1.05rem; line-height: 1.5; }

.brand-mark {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: min(230px, 35%);
  opacity: 0.76;
}

.approach { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding: 42px 0 110px; border-top: 1px solid var(--line); }
.approach div { max-width: 700px; }
.approach div p:first-child { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.08; letter-spacing: -0.04em; }
.muted { color: var(--muted); line-height: 1.5; }

footer { display: flex; justify-content: space-between; padding: 24px 0 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.68rem; }

@media (max-width: 650px) {
  main, footer { width: min(100% - 32px, 1120px); }
  .nav-note { display: none; }
  .hero { padding: 90px 0 76px; }
  .section-heading, footer { gap: 16px; align-items: flex-start; flex-direction: column; }
  .brand-card { min-height: 440px; padding: 20px; }
  .approach { grid-template-columns: 1fr; padding-bottom: 76px; }
}
