:root {
  --ink: #132b34;
  --muted: #63737a;
  --paper: #fbfaf7;
  --white: #fff;
  --mint: #dfeee9;
  --gold: #be8531;
  --line: #dce3e1;
  --red: #d8404f;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; }
a { color: inherit; }
.wrap { width: calc(100% - 32px); max-width: 1120px; margin-inline: auto; }
.masthead { background: var(--white); border-bottom: 1px solid var(--line); }
.masthead-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 23px/1 Merriweather, Georgia, serif; text-decoration: none; }
.mark { display: grid; grid-template-columns: repeat(4, 3px); align-items: center; gap: 3px; width: 22px; height: 26px; }
.mark i { display: block; width: 3px; height: 8px; background: var(--gold); border-radius: 9px; }
.mark i:nth-child(2) { height: 22px; }
.mark i:nth-child(3) { height: 15px; }
.mark i:nth-child(4) { height: 6px; }
.nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
.nav a { text-decoration: none; }
.hero { padding: 62px 0 46px; }
.kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { max-width: 850px; margin: 12px 0 16px; font: 700 clamp(38px, 6vw, 68px)/1.05 Merriweather, Georgia, serif; letter-spacing: -.035em; }
.hero-lead { max-width: 720px; color: var(--muted); font: 18px/1.65 Merriweather, Georgia, serif; }
.featured { display: grid; grid-template-columns: 1.18fr .82fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.featured img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 54px); }
.label { width: max-content; padding: 6px 9px; color: #71511d; background: #fff2d7; border-radius: 3px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured h2 { margin: 16px 0 13px; font: 700 clamp(27px, 4vw, 40px)/1.18 Merriweather, Georgia, serif; }
.featured p { color: var(--muted); line-height: 1.65; }
.read { display: inline-flex; width: max-content; margin-top: 13px; padding-bottom: 5px; color: var(--red); border-bottom: 2px solid currentColor; font-weight: 800; text-decoration: none; }
.section { padding: 60px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.section h2 { margin: 0; font: 700 32px/1.2 Merriweather, Georgia, serif; }
.section-head p { max-width: 570px; margin: 0; color: var(--muted); line-height: 1.55; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { min-height: 225px; padding: 25px; background: var(--white); border: 1px solid var(--line); }
.card small { color: var(--gold); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.card h3 { margin: 13px 0 10px; font: 700 21px/1.3 Merriweather, Georgia, serif; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.principles { background: var(--ink); color: var(--white); }
.principles .section-head p { color: #bad0d6; }
.principles .card { background: #183b47; border-color: #2b5360; }
.principles .card p { color: #c7d8dc; }
.footer { padding: 32px 0; color: var(--muted); background: var(--white); border-top: 1px solid var(--line); font-size: 12px; line-height: 1.6; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }

@media (max-width: 780px) {
  .nav { display: none; }
  .hero { padding-top: 40px; }
  .featured { grid-template-columns: 1fr; }
  .featured img { min-height: 250px; max-height: 360px; }
  .grid { grid-template-columns: 1fr; }
  .section-head, .footer-inner { align-items: start; flex-direction: column; }
}
