@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --ink: #171a17;
  --ink-soft: #5f625c;
  --cream: #ecebe3;
  --paper: #f3f1e9;
  --sage: #6f9b8d;
  --sage-deep: #236455;
  --gold: #236455;
  --line: #c7c5bb;
  --shadow: none;
  --radius: 0px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(181,138,74,.42); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,253,249,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,214,202,.7);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 700; letter-spacing: -.02em; }
.monogram {
  width: 40px; height: 40px; border-radius: 50%; display:grid; place-items:center;
  background: var(--ink); color: white; font-family: Georgia, serif; font-size: 15px; letter-spacing: .04em;
}
.brand-name { font-size: 17px; white-space: nowrap; }
.nav-links { display:flex; align-items:center; gap: 26px; font-size: 14px; color: var(--ink-soft); }
.nav-links a { position: relative; padding: 28px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content:""; position:absolute; height:2px; background:var(--gold); left:0; right:0; bottom:18px; }
.nav-cta { padding: 11px 18px !important; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink) !important; }
.nav-cta::after { display:none; }
.nav-cta:hover { background: var(--ink); color: white !important; }
.menu-btn { display:none; border:0; background:transparent; width:44px; height:44px; padding:10px; }
.menu-btn span { display:block; height:2px; background:var(--ink); margin:6px 0; transition:.25s; }

.hero { padding: 92px 0 70px; overflow:hidden; position:relative; }
.hero::before {
  content:""; position:absolute; width:520px; height:520px; border-radius:50%;
  background: radial-gradient(circle at center, rgba(113,135,125,.14), rgba(113,135,125,0) 70%);
  right:-120px; top:-120px; pointer-events:none;
}
.hero-grid { display:grid; grid-template-columns: 1.25fr .75fr; align-items:center; gap:70px; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; text-transform:uppercase; letter-spacing:.18em; font-size:12px; font-weight:700; color:var(--sage-deep); }
.eyebrow::before { content:""; width:34px; height:1px; background:var(--gold); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight:500; line-height:1.08; margin:0; letter-spacing:-.025em; }
h1 { font-size: clamp(50px, 7vw, 88px); max-width: 900px; }
h2 { font-size: clamp(36px, 4.6vw, 58px); }
h3 { font-size: 28px; }
.hero h1 { margin-top:18px; }
.hero .lede { font-size:20px; color:var(--ink-soft); max-width:720px; margin:28px 0 0; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:14px 21px; border-radius:999px; border:1px solid var(--ink); font-weight:650; font-size:14px; transition:.2s ease; }
.btn-primary { background:var(--ink); color:white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow:0 10px 28px rgba(22,32,29,.14); }
.btn-secondary:hover { background:var(--cream); }
.hero-card {
  min-height:500px; border-radius: 34px; background: linear-gradient(145deg, #e6e9e4 0%, #d6ddd8 50%, #c7d2cb 100%);
  position:relative; overflow:hidden; box-shadow:var(--shadow); display:flex; align-items:flex-end; padding:30px;
}
.hero-card::before { content:"SC"; position:absolute; inset:auto 0 15% 0; text-align:center; font-family:Georgia,serif; font-size:160px; color:rgba(255,255,255,.48); letter-spacing:-.08em; }
.hero-card::after { content:""; position:absolute; width:280px; height:280px; border:1px solid rgba(255,255,255,.62); border-radius:50%; top:58px; right:-52px; }
.hero-card-note { position:relative; z-index:2; background:rgba(255,253,249,.88); backdrop-filter:blur(10px); padding:18px 20px; border-radius:18px; width:100%; }
.hero-card-note strong { display:block; font-size:15px; }
.hero-card-note span { display:block; font-size:13px; color:var(--ink-soft); margin-top:4px; }

.credential-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--cream); }
.credential-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.credential { padding:24px 20px; text-align:center; font-size:13px; letter-spacing:.05em; text-transform:uppercase; font-weight:700; color:var(--ink-soft); }
.credential + .credential { border-left:1px solid var(--line); }

.section { padding:100px 0; }
.section-soft { background:var(--cream); }
.section-head { display:grid; grid-template-columns:.65fr 1.35fr; gap:60px; align-items:start; margin-bottom:50px; }
.section-head p { margin:8px 0 0; color:var(--ink-soft); font-size:18px; max-width:720px; }
.kicker { font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.18em; color:var(--sage-deep); }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.card { background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:30px; min-height:310px; transition:.25s ease; display:flex; flex-direction:column; }
.card:hover { transform: translateY(-4px); box-shadow:var(--shadow); border-color:#cfc6b7; }
.card-num { color:var(--gold); font-size:13px; font-weight:800; letter-spacing:.14em; }
.card h3 { margin-top:36px; }
.card p { color:var(--ink-soft); margin:16px 0 26px; }
.card-link { margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:14px; }
.card-link::after { content:"→"; transition:.2s; }
.card:hover .card-link::after { transform:translateX(4px); }

.split { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.quote-block { border-left:2px solid var(--gold); padding-left:28px; }
.quote-block p { font-family:Georgia,serif; font-size:clamp(26px,3vw,40px); line-height:1.25; margin:0; }
.quote-block small { display:block; margin-top:20px; color:var(--ink-soft); }
.feature-list { display:grid; gap:0; border-top:1px solid var(--line); }
.feature { display:grid; grid-template-columns:55px 1fr; gap:18px; padding:22px 0; border-bottom:1px solid var(--line); }
.feature-index { color:var(--gold); font-weight:800; }
.feature strong { display:block; }
.feature span { color:var(--ink-soft); font-size:14px; }

.cta-panel { background:var(--ink); color:white; border-radius:34px; padding:58px; display:grid; grid-template-columns:1.3fr .7fr; gap:40px; align-items:center; overflow:hidden; position:relative; }
.cta-panel::after { content:""; position:absolute; width:250px; height:250px; border:1px solid rgba(255,255,255,.14); border-radius:50%; right:-70px; top:-85px; }
.cta-panel p { color:#d7dfdc; max-width:720px; font-size:18px; }
.cta-panel .btn { border-color:white; color:white; justify-self:end; position:relative; z-index:2; }
.cta-panel .btn:hover { background:white; color:var(--ink); }

.page-hero { padding:82px 0 72px; background:var(--cream); border-bottom:1px solid var(--line); }
.page-hero h1 { font-size:clamp(48px,6vw,76px); max-width:950px; margin-top:18px; }
.page-hero p { max-width:780px; font-size:19px; color:var(--ink-soft); margin:26px 0 0; }

.prose { font-size:18px; }
.prose p { color:var(--ink-soft); margin:0 0 24px; }
.prose h2 { margin:58px 0 20px; font-size:40px; }
.prose h3 { margin:38px 0 14px; font-size:28px; }
.prose ul { color:var(--ink-soft); padding-left:22px; }

.service-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.service-box { border:1px solid var(--line); padding:34px; border-radius:22px; background:var(--paper); }
.service-box h3 { font-size:27px; }
.service-box p { color:var(--ink-soft); }
.service-box ul { padding-left:20px; color:var(--ink-soft); }

.process { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; counter-reset:step; }
.process-step { border-top:2px solid var(--ink); padding-top:22px; }
.process-step::before { counter-increment:step; content:"0" counter(step); font-size:12px; font-weight:800; color:var(--gold); }
.process-step h3 { font-family:inherit; font-size:17px; font-weight:750; margin-top:12px; letter-spacing:0; }
.process-step p { color:var(--ink-soft); font-size:14px; }

.badges { display:flex; flex-wrap:wrap; gap:10px; }
.badge { border:1px solid var(--line); background:var(--cream); border-radius:999px; padding:9px 13px; font-size:13px; font-weight:650; color:var(--ink-soft); }

.insight { border-top:1px solid var(--ink); padding-top:22px; }
.insight .meta { text-transform:uppercase; font-size:11px; letter-spacing:.14em; font-weight:800; color:var(--sage-deep); }
.insight h3 { font-size:27px; margin-top:18px; }
.insight p { color:var(--ink-soft); font-size:14px; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-detail { border-top:1px solid var(--line); padding:20px 0; }
.contact-detail strong { display:block; }
.contact-detail span { color:var(--ink-soft); font-size:14px; }
.form-card { border:1px solid var(--line); border-radius:26px; padding:34px; background:white; box-shadow:0 18px 50px rgba(22,32,29,.05); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:16px; }
.field label { display:block; font-size:13px; font-weight:700; margin-bottom:7px; }
.field input, .field textarea, .field select { width:100%; border:1px solid #cfc8bc; border-radius:12px; padding:13px 14px; background:#fff; color:var(--ink); }
.field textarea { min-height:160px; resize:vertical; }
.form-note { font-size:12px; color:var(--ink-soft); margin-top:12px; }
.form-status { display:none; margin-top:14px; padding:12px 14px; border-radius:10px; background:var(--cream); font-size:13px; }

.notice { padding:18px 20px; border:1px solid var(--line); border-radius:16px; background:var(--cream); color:var(--ink-soft); font-size:14px; }

.site-footer { background:#111916; color:white; padding:60px 0 28px; margin-top:100px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:50px; }
.footer-brand p { color:#aebbb6; max-width:420px; }
.footer-title { text-transform:uppercase; letter-spacing:.14em; font-size:11px; font-weight:800; color:#9eaba6; margin-bottom:16px; }
.footer-links { display:grid; gap:10px; font-size:14px; color:#e4e9e7; }
.footer-bottom { margin-top:52px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); display:flex; gap:20px; justify-content:space-between; color:#91a09a; font-size:12px; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .nav-links { position:fixed; inset:82px 0 0; background:var(--paper); display:none; flex-direction:column; align-items:flex-start; padding:34px 28px; gap:0; border-top:1px solid var(--line); }
  .nav-links.open { display:flex; }
  .nav-links a { width:100%; padding:16px 0; font-size:18px; border-bottom:1px solid var(--line); }
  .nav-links a.active::after { display:none; }
  .nav-cta { margin-top:20px; width:auto !important; padding:12px 18px !important; }
  .menu-btn { display:block; }
  .hero-grid, .section-head, .split, .cta-panel, .contact-grid { grid-template-columns:1fr; }
  .hero-card { min-height:390px; }
  .cards { grid-template-columns:1fr; }
  .credential-grid { grid-template-columns:1fr 1fr; }
  .credential:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .credential:nth-child(4) { border-top:1px solid var(--line); }
  .service-grid { grid-template-columns:1fr; }
  .process { grid-template-columns:1fr 1fr; }
  .cta-panel .btn { justify-self:start; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
}

@media (max-width: 600px) {
  .container, .narrow { width:min(100% - 28px, var(--max)); }
  .nav-wrap { min-height:72px; }
  .brand-name { font-size:15px; }
  .nav-links { inset:72px 0 0; }
  .hero { padding:64px 0 46px; }
  h1 { font-size:46px; }
  .hero .lede, .page-hero p { font-size:17px; }
  .hero-card { min-height:330px; padding:20px; border-radius:24px; }
  .hero-card::before { font-size:115px; }
  .section { padding:72px 0; }
  .section-head { gap:22px; }
  .credential-grid { grid-template-columns:1fr; }
  .credential + .credential, .credential:nth-child(3), .credential:nth-child(4) { border-left:0; border-top:1px solid var(--line); }
  .card { min-height:auto; }
  .cta-panel { padding:34px 24px; border-radius:24px; }
  .process { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .form-card { padding:22px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
}

/* ------------------------------------------------------------
   Editorial landing page
   ------------------------------------------------------------ */
.landing-page {
  --landing-paper: #f3f1e9;
  --landing-paper-2: #ecebe3;
  --landing-forest: #0c2019;
  --landing-green: #236455;
  --landing-line: #b9b7ab;
  --landing-ink: #171a17;
  margin: 0;
  background: var(--landing-paper);
  color: var(--landing-ink);
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  line-height: 1.42;
}

.landing-page .reveal { transform: translateY(10px); }
.landing-container { width: min(1180px, calc(100% - 88px)); margin-inline: auto; }
.landing-eyebrow {
  margin: 0 0 24px;
  color: var(--landing-green);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .01em;
}
.landing-hero { min-height: 690px; display: flex; align-items: center; background: var(--landing-paper); padding: 18px 0 32px; }
.landing-hero-inner { padding: 92px 0 104px; }
.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .82fr);
  gap: 44px;
  align-items: stretch;
  background: var(--landing-paper-2);
  border: 1px solid rgba(35, 100, 85, .14);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 24px 60px rgba(15, 31, 26, .06);
}
.landing-hero-copy {
  background: rgba(243, 241, 233, .74);
  border: 1px solid rgba(35, 100, 85, .12);
  border-radius: 26px;
  padding: 34px 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing-eyebrow-hero {
  font-size: 19px;
  margin-bottom: 28px;
}
.landing-portrait-wrap {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(243,241,233,.96));
  border: 1px solid rgba(35, 100, 85, .14);
  border-radius: 28px;
  padding: 14px;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  box-shadow: 0 18px 40px rgba(15, 31, 26, .06);
}
.landing-portrait {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}

.landing-hero h1,
.landing-story h2,
.landing-expertise h2,
.landing-career h2,
.landing-contact h2 {
  font-family: "Cormorant Garamond", Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.03em;
}
.landing-hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(68px, 7vw, 96px);
  line-height: .94;
}
.landing-intro {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.38;
  color: var(--landing-ink);
}
.landing-copy { font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.7; color: #53574f; }
.landing-copy-narrow { max-width: 610px; margin: 24px 0 0; }
.landing-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; }
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.landing-button:hover { transform: translateY(-1px); }
.landing-button-primary { background: #1c5d50; color: white; box-shadow: 0 10px 24px rgba(28, 93, 80, .16); }
.landing-text-link {
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.landing-text-link::after { content: "  ↓"; color: var(--landing-green); }

.landing-story { background: var(--landing-paper-2); padding: 112px 0 122px; }
.landing-two-col { display: grid; grid-template-columns: 1fr 1.12fr; gap: 100px; align-items: start; }
.landing-story h2 { margin: 0; max-width: 430px; font-size: clamp(43px, 4.7vw, 62px); line-height: 1.06; }
.landing-story-copy { padding-top: 35px; font-size: 15px; }
.landing-story-copy p { margin: 0 0 24px; }

.landing-expertise { padding: 112px 0 120px; background: var(--landing-paper); }
.landing-section-title { margin: 0 0 58px; font-size: clamp(44px, 4.8vw, 64px); line-height: 1.05; }
.expertise-list { border-top: 1px solid var(--landing-line); }
.expertise-row {
  display: grid;
  grid-template-columns: .88fr 1.25fr;
  gap: 84px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--landing-line);
}
.expertise-label h3 {
  margin: 0 0 7px;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.01em;
}
.expertise-label p {
  margin: 0;
  max-width: 320px;
  color: var(--landing-green);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}
.expertise-body { font-size: 14px; line-height: 1.52; }
.expertise-body > p { margin: 0 0 20px; }
.editorial-list { list-style: none; padding: 0; margin: 0; }
.editorial-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid #c7c5bb;
}
.editorial-list li::before {
  content: "◇";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--landing-green);
  font-size: 12px;
  font-weight: 700;
}
.row-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--landing-green);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.row-link:hover { border-bottom-color: var(--landing-green); }

.landing-career { padding: 110px 0 116px; background: var(--landing-forest); color: #f3f1e9; }
.landing-career-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; align-items: center; }
.landing-eyebrow-light { color: #6ec5a8; }
.landing-career h2 { margin: 0; max-width: 470px; font-size: clamp(40px, 4.5vw, 60px); line-height: 1.03; }
.landing-career p { margin: 0 0 22px; max-width: 560px; color: #e6e8e3; font-size: 15px; line-height: 1.58; }
.landing-button-light { margin-top: 6px; background: #91bfad; color: #10241d; }

.landing-contact { background: var(--landing-paper-2); padding: 100px 0 112px; }
.landing-contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 115px; }
.landing-contact h2 { margin: 0; font-size: 28px; letter-spacing: -.02em; }
.landing-contact p { margin: 0 0 30px; max-width: 590px; font-size: 15px; line-height: 1.58; }
.landing-email { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--landing-green); font-size: 14px; }
.landing-socials { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; font-size: 12px; }
.landing-socials a:hover { color: var(--landing-green); }

@media (max-width: 760px) {
  .landing-container { width: min(100% - 36px, 1040px); }
  .landing-hero { min-height: auto; }
  .landing-hero-inner { padding: 78px 0 84px; }
  .landing-hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .landing-intro { font-size: 19px; }
  .landing-two-col,
  .expertise-row,
  .landing-career-grid,
  .landing-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .landing-story,
  .landing-expertise,
  .landing-career,
  .landing-contact { padding: 78px 0 84px; }
  .landing-story-copy { padding-top: 0; }
  .landing-section-title { margin-bottom: 38px; }
  .expertise-row { gap: 25px; padding: 29px 0 33px; }
  .landing-career-grid { gap: 42px; }
  .landing-contact-grid { gap: 34px; }
  .desktop-break { display: none; }
}

@media (max-width: 460px) {
  .landing-eyebrow { margin-bottom: 19px; }
  .landing-hero h1 { font-size: 47px; }
  .landing-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .landing-story h2, .landing-section-title, .landing-career h2 { font-size: 42px; }
}


/* ------------------------------------------------------------
   Editorial design system: inner pages
   Matches the landing-page typography and palette.
   ------------------------------------------------------------ */
body:not(.landing-page) {
  background: #f3f1e9;
  color: #171a17;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

body:not(.landing-page) h1,
body:not(.landing-page) h2,
body:not(.landing-page) h3,
body:not(.landing-page) .brand-name {
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

body:not(.landing-page) .container {
  width: min(1120px, calc(100% - 80px));
}

body:not(.landing-page) .narrow {
  width: min(820px, calc(100% - 80px));
}

/* Header */
body:not(.landing-page) .site-header {
  background: rgba(243, 241, 233, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #c7c5bb;
}
body:not(.landing-page) .nav-wrap { min-height: 76px; }
body:not(.landing-page) .brand { gap: 11px; font-weight: 400; }
body:not(.landing-page) .monogram {
  width: 34px;
  height: 34px;
  border: 1px solid #236455;
  border-radius: 50%;
  background: transparent;
  color: #236455;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: 13px;
}
body:not(.landing-page) .brand-name { font-size: 19px; }
body:not(.landing-page) .nav-links { gap: 24px; color: #5f625c; font-size: 13px; }
body:not(.landing-page) .nav-links a { padding: 26px 0; }
body:not(.landing-page) .nav-links a:hover,
body:not(.landing-page) .nav-links a.active { color: #236455; }
body:not(.landing-page) .nav-links a.active::after {
  height: 1px;
  bottom: 18px;
  background: #236455;
}
body:not(.landing-page) .nav-cta {
  padding: 9px 17px !important;
  border: 1px solid #236455;
  border-radius: 999px;
  color: #236455 !important;
}
body:not(.landing-page) .nav-cta:hover { background: #236455; color: #f3f1e9 !important; }

/* Editorial labels */
body:not(.landing-page) .eyebrow,
body:not(.landing-page) .kicker {
  display: block;
  color: #236455;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  line-height: 1.4;
}
body:not(.landing-page) .eyebrow::before { display: none; }

/* Page hero */
body:not(.landing-page) .page-hero {
  padding: 100px 0 94px;
  background: #f3f1e9;
  border-bottom: 1px solid #c7c5bb;
}
body:not(.landing-page) .page-hero h1 {
  margin-top: 18px;
  max-width: 1000px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 1.02;
}
body:not(.landing-page) .page-hero p {
  max-width: 760px;
  margin-top: 28px;
  color: #5f625c;
  font-size: 19px;
  line-height: 1.55;
}

/* Sections */
body:not(.landing-page) .section { padding: 94px 0; background: #f3f1e9; }
body:not(.landing-page) .section-soft { background: #ecebe3; }
body:not(.landing-page) .section-head {
  grid-template-columns: .78fr 1.22fr;
  gap: 86px;
  margin-bottom: 52px;
}
body:not(.landing-page) .section-head h2,
body:not(.landing-page) .prose h2 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}
body:not(.landing-page) .section-head p,
body:not(.landing-page) .prose p,
body:not(.landing-page) .service-box p,
body:not(.landing-page) .service-box ul,
body:not(.landing-page) .card p {
  color: #5f625c;
}
body:not(.landing-page) .section-head p { font-size: 17px; line-height: 1.65; }
body:not(.landing-page) .prose { font-size: 17px; }
body:not(.landing-page) .prose p { line-height: 1.7; }
body:not(.landing-page) .prose h2 { margin-top: 46px; }
body:not(.landing-page) .prose h3 { font-size: 28px; }

/* Flat editorial service blocks instead of rounded cards */
body:not(.landing-page) .service-grid { gap: 0 56px; }
body:not(.landing-page) .service-box {
  padding: 28px 0 34px;
  border: 0;
  border-top: 1px solid #b9b7ab;
  border-radius: 0;
  background: transparent;
}
body:not(.landing-page) .service-grid > .service-box:nth-last-child(-n+2) { border-bottom: 1px solid #b9b7ab; }
body:not(.landing-page) .service-box h3 { color: #171a17; font-size: 27px; }
body:not(.landing-page) .service-box ul { padding-left: 20px; line-height: 1.7; }
body:not(.landing-page) .service-box li::marker { color: #236455; }

body:not(.landing-page) .cards { gap: 0 42px; }
body:not(.landing-page) .card {
  min-height: 0;
  padding: 26px 0 32px;
  border: 0;
  border-top: 1px solid #b9b7ab;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body:not(.landing-page) .card:last-child { border-bottom: 1px solid #b9b7ab; }
body:not(.landing-page) .card:hover { transform: none; box-shadow: none; border-color: #b9b7ab; }
body:not(.landing-page) .card-num {
  color: #236455;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
body:not(.landing-page) .card h3 { margin-top: 18px; font-size: 28px; }
body:not(.landing-page) .card-link { color: #236455; font-family: Baskerville, Georgia, serif; font-style: italic; font-weight: 400; }

/* Lists and split layouts */
body:not(.landing-page) .split { gap: 90px; }
body:not(.landing-page) .feature-list { border-top: 1px solid #b9b7ab; }
body:not(.landing-page) .feature { grid-template-columns: 40px 1fr; padding: 20px 0; border-bottom-color: #c7c5bb; }
body:not(.landing-page) .feature-index {
  color: #236455;
  font-family: Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
body:not(.landing-page) .feature span { color: #5f625c; }
body:not(.landing-page) .quote-block { border-left: 1px solid #236455; }
body:not(.landing-page) .quote-block p { font-family: Baskerville, "Iowan Old Style", Georgia, serif; }

body:not(.landing-page) .badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
  border-top: 1px solid #b9b7ab;
}
body:not(.landing-page) .badge {
  position: relative;
  padding: 15px 0 15px 24px;
  border: 0;
  border-bottom: 1px solid #c7c5bb;
  border-radius: 0;
  background: transparent;
  color: #171a17;
  font-size: 14px;
  font-weight: 400;
}
body:not(.landing-page) .badge::before {
  content: "◇";
  position: absolute;
  left: 0;
  top: 14px;
  color: #236455;
  font-size: 12px;
}

/* Process */
body:not(.landing-page) .process { gap: 0 34px; }
body:not(.landing-page) .process-step { border-top: 1px solid #236455; padding-top: 18px; }
body:not(.landing-page) .process-step::before {
  color: #236455;
  font-family: Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
body:not(.landing-page) .process-step h3 { font-family: Baskerville, Georgia, serif; font-size: 22px; font-weight: 400; }
body:not(.landing-page) .process-step p { color: #5f625c; line-height: 1.6; }

/* Buttons and CTA */
body:not(.landing-page) .btn {
  border-color: #236455;
  border-radius: 999px;
  color: #236455;
  font-size: 13px;
  font-weight: 600;
}
body:not(.landing-page) .btn-primary { background: #236455; color: #f3f1e9; }
body:not(.landing-page) .btn-primary:hover { box-shadow: none; background: #194d43; }
body:not(.landing-page) .btn-secondary:hover { background: #ecebe3; }
body:not(.landing-page) .cta-panel {
  padding: 64px 68px;
  border-radius: 0;
  background: #0c2019;
  color: #f3f1e9;
}
body:not(.landing-page) .cta-panel::after { display: none; }
body:not(.landing-page) .cta-panel h2 { font-size: clamp(36px, 4vw, 52px); }
body:not(.landing-page) .cta-panel p { color: #d9ddd7; font-size: 16px; }
body:not(.landing-page) .cta-panel .btn { border: 0; background: #91bfad; color: #10241d; }
body:not(.landing-page) .cta-panel .btn:hover { background: #a5caba; color: #10241d; }

/* Notices */
body:not(.landing-page) .notice {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #c7c5bb;
  border-bottom: 1px solid #c7c5bb;
  border-radius: 0;
  background: transparent;
  color: #5f625c;
}

/* Contact */
body:not(.landing-page) .contact-grid { grid-template-columns: .82fr 1.18fr; gap: 88px; }
body:not(.landing-page) .contact-detail { border-top-color: #c7c5bb; }
body:not(.landing-page) .contact-detail span { color: #5f625c; }
body:not(.landing-page) .form-card {
  padding: 32px 0 0;
  border: 0;
  border-top: 1px solid #b9b7ab;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body:not(.landing-page) .field label { color: #171a17; font-size: 12px; font-weight: 600; }
body:not(.landing-page) .field input,
body:not(.landing-page) .field textarea,
body:not(.landing-page) .field select {
  border: 1px solid #b9b7ab;
  border-radius: 0;
  background: #f7f5ee;
  color: #171a17;
}
body:not(.landing-page) .field input:focus,
body:not(.landing-page) .field textarea:focus,
body:not(.landing-page) .field select:focus { border-color: #236455; outline: none; box-shadow: 0 0 0 1px #236455; }
body:not(.landing-page) .form-note { color: #6b6c67; }
body:not(.landing-page) .form-status { border-radius: 0; background: #ecebe3; }

/* Footer */
body:not(.landing-page) .site-footer {
  margin-top: 0;
  padding: 66px 0 30px;
  background: #0c2019;
  color: #f3f1e9;
}
body:not(.landing-page) .site-footer .monogram { border-color: #91bfad; color: #91bfad; }
body:not(.landing-page) .site-footer .brand-name { color: #f3f1e9; }
body:not(.landing-page) .footer-brand p { color: #bdc8c2; }
body:not(.landing-page) .footer-title { color: #7eb09d; }
body:not(.landing-page) .footer-links { color: #e5e9e4; }
body:not(.landing-page) .footer-links a:hover { color: #91bfad; }
body:not(.landing-page) .footer-bottom { color: #9cadA5; }

body:not(.landing-page) :focus-visible {
  outline-color: rgba(35, 100, 85, .42);
}

@media (max-width: 900px) {
  body:not(.landing-page) .container,
  body:not(.landing-page) .narrow { width: min(100% - 42px, 1120px); }
  body:not(.landing-page) .nav-links { background: #f3f1e9; }
  body:not(.landing-page) .service-box:nth-last-child(-n+2) { border-bottom: 0; }
  body:not(.landing-page) .service-box:last-child { border-bottom: 1px solid #b9b7ab; }
  body:not(.landing-page) .cards { gap: 0; }
  body:not(.landing-page) .card { border-bottom: 0; }
  body:not(.landing-page) .card:last-child { border-bottom: 1px solid #b9b7ab; }
  body:not(.landing-page) .badges { grid-template-columns: 1fr; }
  body:not(.landing-page) .cta-panel { padding: 50px 42px; }
}

@media (max-width: 600px) {
  body:not(.landing-page) .container,
  body:not(.landing-page) .narrow { width: min(100% - 30px, 1120px); }
  body:not(.landing-page) .page-hero { padding: 72px 0 66px; }
  body:not(.landing-page) .page-hero h1 { font-size: 46px; }
  body:not(.landing-page) .section { padding: 70px 0; }
  body:not(.landing-page) .section-head { gap: 28px; }
  body:not(.landing-page) .service-grid { gap: 0; }
  body:not(.landing-page) .split { gap: 48px; }
  body:not(.landing-page) .cta-panel { padding: 38px 26px; }
  body:not(.landing-page) .form-card { padding-top: 26px; }
}

/* ------------------------------------------------------------
   Claude-reference typography calibration
   Palette sampled from the supplied reference screenshots.
   ------------------------------------------------------------ */
:root {
  --ink: #1a1b1b;
  --ink-soft: #55564f;
  --cream: #e6e5de;
  --paper: #f0efe8;
  --sage-deep: #2a5f55;
  --gold: #2a5f55;
  --line: #d6d4c7;
}

body {
  color: #1a1b1b;
  background: #f0efe8;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

:focus-visible { outline-color: rgba(42,95,85,.38); }

/* Landing page */
.landing-page {
  --landing-paper: #f0efe8;
  --landing-paper-2: #e6e5de;
  --landing-forest: #10231c;
  --landing-green: #2a5f55;
  --landing-line: #d6d4c7;
  --landing-ink: #1a1b1b;
  background: var(--landing-paper);
  color: var(--landing-ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.landing-container { width: min(1170px, calc(100% - 96px)); }

.landing-eyebrow {
  margin: 0 0 34px;
  color: var(--landing-green);
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.landing-hero { min-height: 720px; }
.landing-hero-inner { padding: 104px 0 112px; }
.landing-hero h1,
.landing-story h2,
.landing-expertise h2,
.landing-career h2,
.landing-contact h2 {
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.042em;
}

.landing-hero h1 {
  max-width: 1120px;
  font-size: clamp(70px, 6.45vw, 90px);
  line-height: .96;
}

.landing-intro {
  max-width: 760px;
  margin-top: 42px;
  color: #1a1b1b;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(25px, 2.15vw, 31px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.landing-copy {
  color: #55564f;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
}
.landing-copy-narrow { max-width: 735px; margin-top: 30px; }
.landing-actions { gap: 26px; margin-top: 38px; }
.landing-button {
  min-height: 46px;
  padding: 11px 23px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.landing-button-primary { background: #2a5f55; }
.landing-text-link {
  color: #1a1b1b;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.landing-story { background: #e6e5de; }
.landing-story h2 {
  max-width: 500px;
  font-size: clamp(48px, 4.6vw, 64px);
  line-height: 1.01;
}
.landing-story-copy {
  padding-top: 38px;
  color: #55564f;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.67;
}

.landing-section-title {
  font-size: clamp(48px, 4.6vw, 64px);
  line-height: 1.02;
  margin-bottom: 64px;
}
.expertise-list { border-color: #d6d4c7; }
.expertise-row {
  grid-template-columns: .82fr 1.28fr;
  gap: 94px;
  padding: 42px 0 46px;
  border-color: #d6d4c7;
}
.expertise-label h3 {
  margin-bottom: 10px;
  color: #1a1b1b;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.018em;
}
.expertise-label p {
  max-width: 350px;
  color: #2a5f55;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}
.expertise-body {
  color: #55564f;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}
.expertise-body > p { margin-bottom: 25px; }
.editorial-list li {
  color: #1a1b1b;
  padding: 11px 0 11px 29px;
  border-color: #d6d4c7;
  font-size: 16.5px;
  line-height: 1.4;
}
.editorial-list li::before {
  top: 9px;
  color: #2a5f55;
  font-size: 17px;
}
.row-link {
  margin-top: 22px;
  color: #2a5f55;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.landing-career { background: #10231c; }
.landing-eyebrow-light { color: #86b9a6; }
.landing-career h2 { font-size: clamp(46px, 4.4vw, 62px); line-height: 1.01; }
.landing-career p {
  color: #dfe3de;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
.landing-button-light { background: #a4c8b9; color: #10231c; }

.landing-contact { background: #e6e5de; }
.landing-contact h2 { font-size: 34px; }
.landing-contact p {
  color: #55564f;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
}
.landing-email { color: #1a1b1b; border-color: #2a5f55; font-size: 15px; }
.landing-socials { color: #55564f; font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 13px; }

/* Inner pages */
body:not(.landing-page) {
  background: #f0efe8;
  color: #1a1b1b;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}
body:not(.landing-page) h1,
body:not(.landing-page) h2,
body:not(.landing-page) h3,
body:not(.landing-page) .brand-name {
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
body:not(.landing-page) .site-header { background: rgba(240,239,232,.96); border-bottom-color: #d6d4c7; }
body:not(.landing-page) .brand-name { font-size: 25px; letter-spacing: -.025em; }
body:not(.landing-page) .monogram { border-color: #2a5f55; color: #2a5f55; font-family: "Cormorant Garamond", Georgia, serif; font-size: 15px; }
body:not(.landing-page) .nav-links { color: #55564f; font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 15px; font-weight: 500; }
body:not(.landing-page) .nav-links a:hover,
body:not(.landing-page) .nav-links a.active { color: #2a5f55; }
body:not(.landing-page) .nav-links a.active::after { background: #2a5f55; }
body:not(.landing-page) .nav-cta { border-color: #2a5f55; color: #2a5f55 !important; font-size: 15px; }
body:not(.landing-page) .nav-cta:hover { background: #2a5f55; color: #f0efe8 !important; }

body:not(.landing-page) .eyebrow,
body:not(.landing-page) .kicker {
  color: #2a5f55;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}
body:not(.landing-page) .page-hero { background: #f0efe8; border-bottom-color: #d6d4c7; }
body:not(.landing-page) .page-hero h1 {
  font-size: clamp(58px, 6vw, 82px);
  line-height: .98;
}
body:not(.landing-page) .page-hero p {
  color: #55564f;
  font-size: 18px;
  line-height: 1.65;
}
body:not(.landing-page) .section { background: #f0efe8; }
body:not(.landing-page) .section-soft { background: #e6e5de; }
body:not(.landing-page) .section-head h2,
body:not(.landing-page) .prose h2 {
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.03;
}
body:not(.landing-page) .section-head p,
body:not(.landing-page) .prose p,
body:not(.landing-page) .service-box p,
body:not(.landing-page) .service-box ul,
body:not(.landing-page) .card p,
body:not(.landing-page) .feature span,
body:not(.landing-page) .process-step p,
body:not(.landing-page) .contact-detail span,
body:not(.landing-page) .form-note { color: #55564f; }
body:not(.landing-page) .section-head p,
body:not(.landing-page) .prose { font-size: 17px; }
body:not(.landing-page) .service-box,
body:not(.landing-page) .card,
body:not(.landing-page) .feature-list,
body:not(.landing-page) .badges,
body:not(.landing-page) .form-card { border-color: #d6d4c7; }
body:not(.landing-page) .service-box h3,
body:not(.landing-page) .card h3 { color: #1a1b1b; font-size: 30px; }
body:not(.landing-page) .card-num,
body:not(.landing-page) .card-link,
body:not(.landing-page) .feature-index,
body:not(.landing-page) .process-step::before {
  color: #2a5f55;
  font-family: "Cormorant Garamond", Georgia, serif;
}
body:not(.landing-page) .card-link { font-size: 17px; }
body:not(.landing-page) .quote-block { border-color: #2a5f55; }
body:not(.landing-page) .quote-block p { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(30px, 3vw, 44px); }
body:not(.landing-page) .badge { color: #1a1b1b; border-color: #d6d4c7; }
body:not(.landing-page) .badge::before { color: #2a5f55; }
body:not(.landing-page) .process-step { border-color: #2a5f55; }
body:not(.landing-page) .process-step h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; }
body:not(.landing-page) .btn { border-color: #2a5f55; color: #2a5f55; font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 14px; font-weight: 500; }
body:not(.landing-page) .btn-primary { background: #2a5f55; color: #f0efe8; }
body:not(.landing-page) .btn-primary:hover { background: #214f47; }
body:not(.landing-page) .btn-secondary:hover { background: #e6e5de; }
body:not(.landing-page) .cta-panel { background: #10231c; color: #f0efe8; }
body:not(.landing-page) .cta-panel p { color: #dfe3de; }
body:not(.landing-page) .cta-panel .btn { background: #a4c8b9; color: #10231c; }
body:not(.landing-page) .notice { border-color: #d6d4c7; color: #55564f; }
body:not(.landing-page) .field label { color: #1a1b1b; font-size: 13px; }
body:not(.landing-page) .field input,
body:not(.landing-page) .field textarea,
body:not(.landing-page) .field select { border-color: #d6d4c7; background: #f6f5ef; color: #1a1b1b; }
body:not(.landing-page) .field input:focus,
body:not(.landing-page) .field textarea:focus,
body:not(.landing-page) .field select:focus { border-color: #2a5f55; box-shadow: 0 0 0 1px #2a5f55; }
body:not(.landing-page) .site-footer { background: #10231c; color: #f0efe8; }
body:not(.landing-page) .site-footer .monogram { border-color: #a4c8b9; color: #a4c8b9; }
body:not(.landing-page) .footer-brand p { color: #bfc9c3; }
body:not(.landing-page) .footer-title { color: #86b9a6; }
body:not(.landing-page) .footer-links { color: #e5e8e4; }
body:not(.landing-page) .footer-links a:hover { color: #a4c8b9; }
body:not(.landing-page) .footer-bottom { color: #9ca9a3; }

@media (max-width: 760px) {
  .landing-container { width: min(100% - 38px, 1170px); }
  .landing-eyebrow { font-size: 18px; margin-bottom: 25px; }
  .landing-hero h1 { font-size: clamp(52px, 15vw, 70px); }
  .landing-intro { font-size: 24px; margin-top: 32px; }
  .landing-copy { font-size: 16px; }
  .expertise-label h3 { font-size: 22px; }
  .expertise-label p { font-size: 21px; }
  .expertise-body { font-size: 16px; }
  .editorial-list li { font-size: 15.5px; }
}

@media (max-width: 600px) {
  body:not(.landing-page) .eyebrow,
  body:not(.landing-page) .kicker { font-size: 18px; }
  body:not(.landing-page) .brand-name { font-size: 22px; }
  body:not(.landing-page) .page-hero h1 { font-size: 50px; }
}


/* ============================================================
   Homepage refinement: editorial navigation + portrait hero
   ============================================================ */
:root {
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Use the refined typography consistently across the site. */
body {
  font-family: var(--font-sans);
}
body h1,
body h2,
body h3,
body .brand-name,
body:not(.landing-page) h1,
body:not(.landing-page) h2,
body:not(.landing-page) h3,
body:not(.landing-page) .brand-name {
  font-family: var(--font-display);
}
body:not(.landing-page) {
  font-family: var(--font-sans);
}
body:not(.landing-page) .eyebrow,
body:not(.landing-page) .kicker,
body:not(.landing-page) .card-num,
body:not(.landing-page) .card-link,
body:not(.landing-page) .feature-index,
body:not(.landing-page) .quote-block p,
body:not(.landing-page) .process-step::before,
body:not(.landing-page) .process-step h3,
body:not(.landing-page) .monogram {
  font-family: var(--font-display);
}
body:not(.landing-page) .eyebrow,
body:not(.landing-page) .kicker {
  font-size: 18px;
  line-height: 1.25;
  color: #2b665a;
}

.landing-page {
  --landing-paper: #f1f0e9;
  --landing-paper-2: #eae9e1;
  --landing-forest: #0d211a;
  --landing-green: #2b665a;
  --landing-line: #cfcdc2;
  --landing-ink: #171918;
  background: var(--landing-paper);
  color: var(--landing-ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

/* Header mirrors the quiet editorial treatment of the reference. */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(241, 240, 233, .96);
  backdrop-filter: blur(14px);
}
.landing-nav {
  width: min(1310px, calc(100% - 96px));
  min-height: 94px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.landing-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--landing-ink);
  white-space: nowrap;
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  color: #565852;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
}
.landing-nav-links > a:not(.landing-nav-cta) {
  padding: 14px 0;
  transition: color .18s ease;
}
.landing-nav-links > a:not(.landing-nav-cta):hover {
  color: var(--landing-green);
}
.landing-nav-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1.5px solid var(--landing-green);
  border-radius: 999px;
  color: var(--landing-green);
  font-weight: 500;
  transition: background .18s ease, color .18s ease;
}
.landing-nav-cta:hover {
  background: var(--landing-green);
  color: var(--landing-paper);
}
.landing-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
}
.landing-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--landing-ink);
}

.landing-container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.landing-hero {
  min-height: auto;
  display: block;
  padding: 74px 0 104px;
  background: var(--landing-paper);
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(315px, .72fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}
.landing-hero-copy {
  min-width: 0;
}
.landing-page .landing-eyebrow {
  font-family: var(--font-display);
  color: var(--landing-green);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: 0;
}
.landing-page .landing-eyebrow-hero {
  margin: 0 0 30px;
  font-size: clamp(22px, 1.8vw, 27px);
}
.landing-hero h1,
.landing-story h2,
.landing-expertise h2,
.landing-career h2,
.landing-contact h2,
.expertise-label h3 {
  font-family: var(--font-display);
}
.landing-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 5.9vw, 84px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.045em;
}
.landing-intro {
  max-width: 690px;
  margin: 36px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: -.015em;
  color: #242522;
}
.landing-copy {
  font-family: var(--font-sans);
  color: #595b55;
  font-size: 16px;
  line-height: 1.62;
}
.landing-copy-narrow {
  max-width: 650px;
  margin-top: 27px;
}
.landing-actions {
  margin-top: 34px;
}
.landing-button,
.landing-text-link {
  font-family: var(--font-sans);
}
.landing-button {
  min-height: 48px;
  padding: 11px 23px;
  font-size: 13px;
  font-weight: 600;
}
.landing-button-primary {
  background: var(--landing-green);
}
.landing-text-link {
  color: #2f302d;
  font-size: 13px;
  font-weight: 600;
}
.landing-portrait-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 0 0 auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dddcd4;
}
.landing-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

/* Keep the rest of the homepage in the same modern typography system. */
.landing-story h2,
.landing-section-title,
.landing-career h2 {
  letter-spacing: -.035em;
}
.landing-story-copy,
.expertise-body,
.landing-career p,
.landing-contact p,
.landing-socials,
.row-link {
  font-family: var(--font-sans);
}
.expertise-label h3 {
  font-size: 23px;
  letter-spacing: -.02em;
}
.expertise-label p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--landing-green);
}
.row-link {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 980px) {
  .landing-nav {
    width: min(100% - 56px, 1200px);
  }
  .landing-hero-grid {
    grid-template-columns: 1.18fr .72fr;
    gap: 46px;
  }
  .landing-hero h1 {
    font-size: clamp(52px, 6.6vw, 68px);
  }
  .landing-nav-links {
    gap: 24px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .landing-nav {
    width: min(100% - 36px, 1200px);
    min-height: 76px;
  }
  .landing-brand {
    font-size: 24px;
  }
  .landing-menu-btn {
    display: block;
  }
  .landing-nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 26px;
    border-top: 1px solid var(--landing-line);
    border-bottom: 1px solid var(--landing-line);
    background: var(--landing-paper);
    font-size: 17px;
  }
  .landing-nav-links.open {
    display: flex;
  }
  .landing-nav-links > a:not(.landing-nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid var(--landing-line);
  }
  .landing-nav-cta {
    width: fit-content;
    margin-top: 20px;
  }
  .landing-container {
    width: min(100% - 36px, 1200px);
  }
  .landing-hero {
    padding: 48px 0 78px;
  }
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .landing-page .landing-eyebrow-hero {
    margin-bottom: 24px;
    font-size: 22px;
  }
  .landing-hero h1 {
    font-size: clamp(49px, 14vw, 66px);
    line-height: .95;
  }
  .landing-intro {
    font-size: 23px;
  }
  .landing-portrait-wrap {
    width: min(100%, 500px);
    max-width: none;
    margin: 0;
    aspect-ratio: 5 / 6;
  }
}

@media (max-width: 460px) {
  .landing-brand { font-size: 22px; }
  .landing-page .landing-eyebrow-hero { font-size: 20px; }
  .landing-hero h1 { font-size: 48px; }
  .landing-intro { font-size: 21px; }
}


/* Landing header and hero refinements */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 241, 233, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35, 100, 85, .08);
}
.landing-nav {
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.landing-brand {
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 28px;
  line-height: 1;
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4f554d;
}
.landing-nav-links a:hover { color: var(--landing-green); }
.landing-nav-cta {
  padding: 14px 22px;
  border: 2px solid rgba(35, 100, 85, .9);
  border-radius: 999px;
  color: var(--landing-green);
}
.landing-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(35, 100, 85, .25);
  border-radius: 999px;
  background: transparent;
  padding: 0;
}
.landing-menu-btn span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--landing-green);
  margin: 4px auto;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .landing-nav,
  .landing-container { width: min(100% - 40px, 1180px); }
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }
  .landing-hero-copy { padding: 28px 24px 30px; }
  .landing-portrait { min-height: 420px; }
  .landing-nav-links {
    position: fixed;
    inset: 92px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 20px 18px;
    background: rgba(243,241,233,.98);
    border: 1px solid rgba(35,100,85,.12);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(15,31,26,.08);
  }
  .landing-nav-links a { width: 100%; padding: 14px 0; }
  .landing-nav-links.open { display: flex; }
  .landing-menu-btn { display: inline-block; }
}
@media (max-width: 760px) {
  .landing-hero { padding: 8px 0 18px; }
  .landing-hero h1 { font-size: clamp(52px, 14vw, 74px); }
  .landing-intro { font-size: 20px; }
  .landing-eyebrow, .expertise-label p, body:not(.landing-page) .eyebrow, body:not(.landing-page) .kicker { font-size: 15px; }
  .landing-eyebrow-hero { font-size: 17px; }
}
@media (max-width: 460px) {
  .landing-nav { min-height: 78px; }
  .landing-nav-links { inset: 78px 14px auto 14px; }
  .landing-brand { font-size: 24px; }
  .landing-hero-grid { border-radius: 26px; padding: 16px; }
  .landing-hero-copy, .landing-portrait-wrap { border-radius: 22px; }
  .landing-hero h1 { font-size: 48px; }
  .landing-eyebrow-hero { font-size: 16px; }
}


/* ------------------------------------------------------------
   Requested final corrections: 2026-08-30
   Keep layout/content unchanged; enlarge green italic labels only.
   ------------------------------------------------------------ */
.landing-page .landing-eyebrow,
.landing-page .landing-eyebrow-hero,
.expertise-label p,
body:not(.landing-page) .eyebrow,
body:not(.landing-page) .kicker {
  font-size: 26px;
}

@media (max-width: 760px) {
  .landing-page .landing-eyebrow,
  .landing-page .landing-eyebrow-hero,
  .expertise-label p,
  body:not(.landing-page) .eyebrow,
  body:not(.landing-page) .kicker {
    font-size: 21px;
  }
}


/* ------------------------------------------------------------
   Final homepage polish: requested surgical edits
   ------------------------------------------------------------ */
@media (min-width: 981px) {
  /* One shared editorial panel; text no longer looks like a card inside a card. */
  .landing-hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(350px, .82fr);
    gap: clamp(34px, 4vw, 54px);
    align-items: center;
    padding: 34px 36px 34px 44px;
  }
  .landing-hero-copy {
    min-width: 0;
    padding: 22px 6px 24px 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .landing-hero h1 {
    max-width: none;
    font-size: clamp(56px, 4.8vw, 72px);
    line-height: .96;
    letter-spacing: -.04em;
  }
  .landing-hero-line {
    white-space: nowrap;
  }
  /* Wider, calmer portrait treatment; reset the inherited tall minimum. */
  .landing-portrait-wrap {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    aspect-ratio: 4 / 5;
    padding: 9px;
    border: 1px solid rgba(35, 100, 85, .12);
    border-radius: 24px;
    background: rgba(243, 241, 233, .72);
    box-shadow: none;
  }
  .landing-portrait {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 34%;
    border-radius: 18px;
  }
}

@media (max-width: 980px) {
  .landing-hero-copy {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .landing-portrait {
    min-height: 0;
  }
  .landing-hero-line {
    white-space: normal;
  }
}


/* ------------------------------------------------------------
   Requested polish: wider portrait + card-style 01-04 process
   Content intentionally unchanged.
   ------------------------------------------------------------ */
@media (min-width: 981px) {
  /* Give the portrait more horizontal room and move copy subtly left. */
  .landing-container {
    width: min(1240px, calc(100% - 72px));
  }
  .landing-hero-grid {
    grid-template-columns: minmax(0, 1.38fr) minmax(400px, .92fr);
    gap: clamp(30px, 3.6vw, 48px);
    padding-left: 22px;
    padding-right: 28px;
  }
  .landing-hero-copy {
    padding-left: 0;
    padding-right: 4px;
  }
  .landing-portrait-wrap {
    max-width: 455px;
    aspect-ratio: 1 / 1.10;
    padding: 9px;
  }
  .landing-portrait {
    object-fit: cover;
    object-position: 50% 48%;
  }
}

/* Restyle the existing four-step advisory process in the card language
   of the provided reference, while preserving all headings/body copy. */
body:not(.landing-page) .process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  counter-reset: step;
}
body:not(.landing-page) .process-step {
  min-height: 270px;
  padding: 34px 30px 32px;
  border: 1px solid #d5d2c7;
  border-radius: 16px;
  background: #f7f6f1;
  box-shadow: none;
}
body:not(.landing-page) .process-step::before {
  display: block;
  margin-bottom: 14px;
  counter-increment: step;
  content: "0" counter(step);
  color: #2a5f55;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
body:not(.landing-page) .process-step h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
body:not(.landing-page) .process-step p {
  margin: 0;
  color: #5b5d57;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
}

@media (max-width: 1100px) and (min-width: 761px) {
  body:not(.landing-page) .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.landing-page) .process {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body:not(.landing-page) .process-step {
    min-height: 0;
    padding: 28px 24px 26px;
  }
  body:not(.landing-page) .process-step::before {
    font-size: 22px;
  }
  body:not(.landing-page) .process-step h3 {
    font-size: 27px;
  }
}


/* ------------------------------------------------------------
   Career Advice: advisory cards
   Matches the rounded editorial card reference; content unchanged.
   ------------------------------------------------------------ */
body[data-page="career"] .career-advisory-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body[data-page="career"] .career-advisory-cards .card {
  min-height: 300px;
  padding: 42px 40px 38px;
  border: 1px solid #d6d3c8;
  border-radius: 16px;
  background: #f8f7f3;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
body[data-page="career"] .career-advisory-cards .card:last-child {
  border-bottom: 1px solid #d6d3c8;
}
body[data-page="career"] .career-advisory-cards .card:hover {
  transform: none;
  border-color: #c9c6bb;
  box-shadow: none;
}
body[data-page="career"] .career-advisory-cards .card-num {
  margin: 0 0 18px;
  color: #2a6659;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
body[data-page="career"] .career-advisory-cards .card h3 {
  margin: 0 0 14px;
  color: #171a17;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
body[data-page="career"] .career-advisory-cards .card p {
  margin: 0;
  color: #5c5f58;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  body[data-page="career"] .career-advisory-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body[data-page="career"] .career-advisory-cards .card {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  body[data-page="career"] .career-advisory-cards .card {
    padding: 30px 26px 28px;
    border-radius: 14px;
  }
  body[data-page="career"] .career-advisory-cards .card-num {
    font-size: 23px;
  }
  body[data-page="career"] .career-advisory-cards .card h3 {
    font-size: 28px;
  }
  body[data-page="career"] .career-advisory-cards .card p {
    font-size: 16px;
  }
}


/* ------------------------------------------------------------
   Hero portrait width refinement: show the full original portrait crop
   without trimming the shoulders. No content or other page changes.
   ------------------------------------------------------------ */
@media (min-width: 981px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(470px, .96fr);
    gap: clamp(28px, 3vw, 42px);
    padding-left: 18px;
    padding-right: 24px;
  }
  .landing-hero-copy {
    padding-left: 0;
  }
  .landing-portrait-wrap {
    width: 100%;
    max-width: 510px;
    aspect-ratio: auto;
    align-self: center;
    padding: 10px;
  }
  .landing-portrait {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
  }
}


/* Unified site chrome on landing page: matches inner pages */
.landing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 241, 233, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #c7c5bb;
}
.landing-page .nav-wrap { min-height: 76px; }
.landing-page .brand { gap: 11px; font-weight: 400; }
.landing-page .monogram {
  width: 34px;
  height: 34px;
  border: 1px solid #236455;
  border-radius: 50%;
  background: transparent;
  color: #236455;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.landing-page .brand-name {
  color: #171a17;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}
.landing-page .nav-links { gap: 24px; color: #5f625c; font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-size: 13px; }
.landing-page .nav-links a { padding: 26px 0; }
.landing-page .nav-links a:hover,
.landing-page .nav-links a.active { color: #236455; }
.landing-page .nav-cta {
  padding: 9px 17px !important;
  border: 1px solid #236455;
  border-radius: 999px;
  color: #236455 !important;
}
.landing-page .nav-cta:hover { background: #236455; color: #f3f1e9 !important; }

.landing-page .site-footer {
  margin-top: 0;
  padding: 66px 0 30px;
  background: #10231c;
  color: #f0efe8;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}
.landing-page .site-footer .brand { font-weight: 400; }
.landing-page .site-footer .monogram { border-color: #a4c8b9; color: #a4c8b9; }
.landing-page .site-footer .brand-name { color: #f3f1e9; font-size: 19px; }
.landing-page .footer-brand p { color: #bfc9c3; }
.landing-page .footer-title { color: #86b9a6; }
.landing-page .footer-links { color: #e5e8e4; }
.landing-page .footer-links a:hover { color: #a4c8b9; }
.landing-page .footer-bottom { color: #9ca9a3; }

@media (max-width: 900px) {
  .landing-page .nav-links { background: #f3f1e9; }
  .landing-page .menu-btn { display: block; }
  .landing-page .menu-btn span { background: #236455; }
}


/* Header brand-name refinement: larger and in the site accent green. */
body .site-header .brand-name {
  color: #236455;
  font-family: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1;
}

@media (max-width: 760px) {
  body .site-header .brand-name {
    font-size: 27px;
  }
}

@media (max-width: 420px) {
  body .site-header .brand-name {
    font-size: 24px;
  }
}


/* Navigation size refinement only */
body:not(.landing-page) .nav-links,
.landing-page .nav-links {
  font-size: 16px;
}

@media (max-width: 900px) {
  body:not(.landing-page) .nav-links a,
  .landing-page .nav-links a {
    font-size: 15px;
  }
}


/* Rounded green boxes across the site */
body:not(.landing-page) .cta-panel {
  border-radius: 34px;
  overflow: hidden;
}

.landing-page .landing-career {
  background: transparent;
  padding: 70px 0 82px;
}

.landing-page .landing-career-grid {
  background: #10231c;
  color: #f0efe8;
  border-radius: 34px;
  padding: 78px 72px;
  overflow: hidden;
}

body:not(.landing-page) .site-footer,
.landing-page .site-footer {
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  overflow: hidden;
}

@media (max-width: 900px) {
  body:not(.landing-page) .cta-panel {
    border-radius: 28px;
  }

  .landing-page .landing-career {
    padding: 56px 0 68px;
  }

  .landing-page .landing-career-grid {
    border-radius: 28px;
    padding: 54px 40px;
  }

  body:not(.landing-page) .site-footer,
  .landing-page .site-footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
}

@media (max-width: 600px) {
  body:not(.landing-page) .cta-panel {
    border-radius: 24px;
  }

  .landing-page .landing-career-grid {
    border-radius: 24px;
    padding: 38px 24px;
  }

  body:not(.landing-page) .site-footer,
  .landing-page .site-footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}


/* About page redesign */
body[data-page="about"] .about-hero-section {
  padding-top: 70px;
  padding-bottom: 58px;
  background: #f3f1e9;
}
body[data-page="about"] .about-hero-content {
  max-width: 640px;
}
body[data-page="about"] .about-hero-content h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 4.3vw, 60px);
  line-height: 1.06;
}
body[data-page="about"] .about-hero-content p {
  max-width: 560px;
  margin: 0;
  color: #5f625c;
  font-size: 17px;
  line-height: 1.65;
}

body[data-page="about"] .about-perspective-section {
  padding-top: 78px;
  padding-bottom: 84px;
}
body[data-page="about"] .about-perspective-grid {
  display: grid;
  grid-template-columns: 1.05fr .92fr;
  gap: 72px;
  align-items: start;
}
body[data-page="about"] .about-glance-card {
  background: #f7f5ee;
  border: 1px solid #c7c5bb;
  border-radius: 12px;
  padding: 28px 28px 26px;
  max-width: 470px;
}
body[data-page="about"] .about-glance-card h3 {
  margin: 10px 0 20px;
  font-size: 34px;
  line-height: 1.12;
}
body[data-page="about"] .about-glance-list {
  display: grid;
  gap: 18px;
}
body[data-page="about"] .about-glance-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}
body[data-page="about"] .about-glance-badge {
  width: 36px;
  height: 36px;
  border: 1px solid #236455;
  border-radius: 50%;
  color: #236455;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: 16px;
  line-height: 1;
}
body[data-page="about"] .about-glance-item strong {
  display: block;
  margin-bottom: 4px;
  color: #171a17;
  font-size: 15px;
  font-weight: 500;
}
body[data-page="about"] .about-glance-item span {
  display: block;
  color: #5f625c;
  font-size: 13.5px;
  line-height: 1.6;
}

body[data-page="about"] .about-lenses-section {
  padding-top: 78px;
  padding-bottom: 92px;
}
body[data-page="about"] .about-lenses-head {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 30px;
}
body[data-page="about"] .about-lenses-head h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}
body[data-page="about"] .about-lenses-head p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #5f625c;
  font-size: 15px;
  line-height: 1.65;
}
body[data-page="about"] .about-lenses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
body[data-page="about"] .about-lens-card {
  background: #f7f5ee;
  border: 1px solid #c7c5bb;
  border-radius: 8px;
  padding: 22px 18px 20px;
  min-height: 170px;
}
body[data-page="about"] .about-lens-card h3 {
  margin: 0 0 12px;
  color: #236455;
  font-size: 28px;
  line-height: 1.12;
}
body[data-page="about"] .about-lens-card p {
  margin: 0;
  color: #5f625c;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  body[data-page="about"] .about-perspective-grid,
  body[data-page="about"] .about-lenses-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  body[data-page="about"] .about-glance-card {
    max-width: none;
  }
  body[data-page="about"] .about-lenses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page="about"] .about-hero-section,
  body[data-page="about"] .about-perspective-section,
  body[data-page="about"] .about-lenses-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }
  body[data-page="about"] .about-lenses-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="about"] .about-glance-card {
    padding: 22px 20px;
  }
  body[data-page="about"] .about-lens-card {
    min-height: 0;
  }
}


/* Pale sage header variant */
body:not(.landing-page) .site-header,
.landing-page .site-header {
  background: rgba(231, 239, 234, .97);
  border-bottom-color: #c8d8ce;
}

@media (max-width: 900px) {
  body:not(.landing-page) .nav-links,
  .landing-page .nav-links {
    background: #e7efea;
  }
}


/* Pale sage header: rounded lower edge */
body:not(.landing-page) .site-header,
.landing-page .site-header {
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}

@media (max-width: 900px) {
  body:not(.landing-page) .site-header,
  .landing-page .site-header {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}


/* Straight editorial edges: header + footer */
.site-header,
.landing-header {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  overflow: visible !important;
}

.site-footer,
body:not(.landing-page) .site-footer,
.landing-page .site-footer {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  overflow: visible !important;
}


/* Match homepage hero action typography to the paragraph above */
.landing-page .landing-button,
.landing-page .landing-text-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

/* About hero alignment: match the left edge used by the other interior page heroes */
body[data-page="about"] .about-hero-content {
  max-width: none;
}
body[data-page="about"] .about-hero-content h1 {
  max-width: 640px;
}
body[data-page="about"] .about-hero-content p {
  max-width: 640px;
}

/* Career page: keep the introductory narrative with the page heading. */
body[data-page="career"] .career-hero-intro {
  max-width: 1050px;
  margin-top: 36px;
}
body[data-page="career"] .career-hero-intro p {
  max-width: none;
  margin: 0 0 18px;
  color: #55564f;
  font-size: 17px;
  line-height: 1.7;
}
body[data-page="career"] .career-hero-intro p:last-child { margin-bottom: 0; }

/* Sitewide text selection: use the brand green instead of browser blue. */
::selection {
  background: #236455;
  color: #f3f1e9;
}
::-moz-selection {
  background: #236455;
  color: #f3f1e9;
}
