:root {
  --bg: #f6f2ec;
  --surface: #fbf8f3;
  --ink: #151311;
  --muted: #71685f;
  --line: #ddd2c5;
  --max: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 236, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221, 210, 197, 0.7);
}
.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  font-size: 30px;
  letter-spacing: 0.09em;
  text-transform: lowercase;
  color: var(--ink);
  font-weight: 400;
}
.navlinks {
  display: flex;
  gap: 30px;
  align-items: center;
}
.navlinks a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero {
  padding: 28px 0 16px;
}
.hero-frame, .image-break, .contact-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #ece3d8;
}
.hero-frame {
  position: relative;
}
.hero-frame img {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(18,16,14,0.42), rgba(18,16,14,0.12) 36%, rgba(18,16,14,0.02) 62%);
}
.hero-copy {
  max-width: 700px;
  padding: 0 48px 48px;
  color: #f7f2eb;
}
.eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.hero-copy .eyebrow { color: rgba(247,242,235,0.9); }
h1, h2, .statement {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
h1 {
  margin: 0 0 18px;
  font-size: 74px;
  line-height: 0.96;
  letter-spacing: 0.01em;
}
.page-hero {
  padding: 54px 0 26px;
}
.page-hero h1 {
  max-width: 860px;
}
.lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  max-width: 560px;
  color: rgba(247,242,235,0.92);
}
.page-hero .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}
section.block, section.page-section {
  padding: 78px 0;
  border-top: 1px solid rgba(221, 210, 197, 0.78);
}
.text-narrow { max-width: 820px; }
.statement {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1.04;
}
p.large {
  margin: 0;
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}
.two-col, .grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}
.copy p, .closing p, .small {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}
ul.principles, ul.focus-list, ul.inboxes {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.principles li, ul.focus-list li {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: 19px;
  color: var(--ink);
}
ul.principles li:last-child, ul.focus-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.34);
}
.email {
  font-size: 28px;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 18px;
}
ul.inboxes { display: grid; gap: 10px; margin-top: 18px; }
ul.inboxes li { font-size: 16px; color: var(--ink); }
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.footer-brand {
  font-size: 25px;
  letter-spacing: 0.09em;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.footer-note, .footer-links {
  font-size: 14px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .navlinks { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .hero-frame img { min-height: 560px; }
  .hero-copy { padding: 0 28px 32px; }
  h1 { font-size: 52px; }
  .statement { font-size: 38px; }
  h2 { font-size: 36px; }
  .two-col, .grid, .footer-grid { display: grid; grid-template-columns: 1fr; }
}
