@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --ink: #12231f;
  --muted: #60706b;
  --cream: #f8f6f0;
  --paper: #fffefa;
  --line: #dce2d8;
  --moss: #285c4a;
  --lime: #d9ef85;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.hero { min-height: 760px; background: var(--cream); padding: 26px clamp(24px, 5vw, 82px) 60px; }
.nav { display: flex; justify-content: space-between; align-items: center; max-width: 1440px; margin: 0 auto; }
.brand { display: inline-flex; align-items: baseline; font-size: 29px; letter-spacing: -2px; font-weight: 800; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 29px; height: 29px; margin-right: 2px; border-radius: 50%; background: var(--moss); color: var(--lime); font: 500 18px/1 "DM Mono", monospace; letter-spacing: -1px; }
.brand small { font-size: 12px; letter-spacing: 0; font-weight: 700; margin-left: 2px; }
.nav-link { font-size: 13px; font-weight: 800; padding-bottom: 5px; border-bottom: 2px solid var(--ink); }

.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr); gap: clamp(38px, 7vw, 130px); align-items: center; max-width: 1440px; margin: clamp(70px, 11vw, 152px) auto 0; }
.hero-copy { max-width: 575px; }
.eyebrow { margin: 0 0 18px; color: var(--moss); font: 500 11px/1.3 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 30px; font-size: clamp(59px, 7.1vw, 112px); line-height: .92; letter-spacing: -.07em; font-weight: 700; }
h1 em { color: var(--moss); font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -.075em; }
.lead { max-width: 500px; color: #40524c; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.75; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 27px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { padding: 0 23px; color: white; background: var(--moss); }
.button-primary:hover { background: #1e493a; }
.button-quiet { gap: 9px; color: var(--ink); border-bottom: 1px solid var(--ink); }
.button-quiet span { font-size: 17px; }

.hero-image { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #d4d7cd; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,35,31,.13), transparent 42%); pointer-events: none; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(.86) contrast(.98); }
.hero-image figcaption { position: absolute; z-index: 1; right: 20px; bottom: 17px; margin: 0; color: white; font: 500 10px/1 "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 1px 9px rgba(0,0,0,.55); }

.principles { padding: 112px clamp(24px, 5vw, 82px) 125px; max-width: 1604px; margin: auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.section-heading .eyebrow { margin-bottom: 8px; }
h2 { margin: 0; font-size: clamp(35px, 4.2vw, 62px); line-height: 1; letter-spacing: -.06em; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.principle-grid article { min-height: 254px; padding: 30px 30px 0 0; border-right: 1px solid var(--line); }
.principle-grid article + article { padding-left: 30px; }
.principle-grid article:last-child { border-right: 0; }
.principle-grid span { display: block; margin-bottom: 50px; color: var(--moss); font: 500 11px/1 "DM Mono", monospace; }
h3 { margin-bottom: 13px; font-size: 22px; letter-spacing: -.04em; }
.principle-grid p { max-width: 325px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.closing { display: flex; flex-direction: column; align-items: center; padding: 106px 24px; text-align: center; background: var(--moss); color: white; }
.closing .eyebrow { color: var(--lime); }
.closing h2 { margin-bottom: 33px; font-size: clamp(41px, 5vw, 70px); }
.closing .button-primary { color: var(--ink); background: var(--lime); }
.closing .button-primary:hover { background: #e6f6a8; }
footer { display: flex; justify-content: space-between; gap: 25px; padding: 20px clamp(24px, 5vw, 82px); color: #718079; background: var(--paper); font: 500 10px/1.4 "DM Mono", monospace; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 760px) {
  .hero { min-height: unset; padding-bottom: 42px; }
  .hero-grid { grid-template-columns: 1fr; margin-top: 69px; }
  .hero-image { width: 100%; aspect-ratio: 4 / 3; }
  .principles { padding-top: 78px; padding-bottom: 82px; }
  .section-heading { display: block; padding-bottom: 25px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-grid article:last-child { border-bottom: 0; }
  .principle-grid span { margin-bottom: 27px; }
  footer { flex-direction: column; gap: 8px; }
}
