:root {
  --paper: #f6f3ec;
  --paper-alt: #eae9e2;
  --ink: #16202e;           /* deep slate navy — heritage, softer than black */
  --ink-mid: #4c5663;
  --ink-muted: #8a8d93;
  --accent: #b06036;        /* terracotta — strip-foundation / groundworks */
  --accent-soft: #c2703f;
  --rule: #d4cdbf;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; transition: text-decoration-color .15s; }
a:hover { text-decoration-color: var(--ink); }
::selection { background: var(--accent); color: var(--paper); }

/* ── Page frame ── */
.frame {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 560px) {
  .frame { padding: 0 22px; }
  body { font-size: 16px; }
}

/* ── Header ── */
header { padding: 36px 0 0; }
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mark { display: flex; align-items: center; text-decoration: none; }
.mark:hover { text-decoration: none; }
.mark-logo { display: block; height: 32px; width: auto; }
.head-meta {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
}
.head-meta .meta-row { display: block; }
.head-meta a { color: var(--ink-mid); text-decoration: none; }
.head-meta a:hover { color: var(--ink); }
@media (max-width: 480px) {
  .head-meta { display: none; }
  .mark-logo { height: 28px; }
}

/* ── Primary nav (flat bar, wraps — never a dropdown) ── */
.primary-nav {
  margin-top: 30px;
  padding: 16px 0 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-link:hover { color: var(--ink); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.nav-link-call { margin-left: auto; color: var(--ink); }
@media (max-width: 480px) {
  .primary-nav { gap: 18px; margin-top: 24px; }
  .nav-link { font-size: 11px; letter-spacing: 0.14em; }
  .nav-link-call { margin-left: 0; }
}

/* ── Hero (home) ── */
.hero { padding: 96px 0 120px; max-width: 740px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero .lede {
  margin-top: 28px;
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 600px;
}
@media (max-width: 560px) { .hero { padding: 60px 0 76px; } }

/* ── Page title (inner pages) ── */
.page-title { padding: 72px 0 52px; max-width: 740px; }
.page-title .crumb {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.page-title h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.page-title h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.page-title .lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 600px;
}
@media (max-width: 560px) { .page-title { padding: 48px 0 36px; } }

/* ── Section ── */
section { padding: 60px 0; border-top: 1px solid var(--rule); }
.sec-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 26px;
}
.sec-body { max-width: 640px; }
.sec-body p + p { margin-top: 18px; }
.sec-body p { color: var(--ink-mid); }
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(25px, 3.6vw, 33px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
  max-width: 640px;
}
h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.25; margin-bottom: 6px; }

/* ── Definition / capability list ── */
.spec-list { list-style: none; margin-top: 22px; }
.spec-list li {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.55;
}
.spec-list li:last-child { border-bottom: 1px solid var(--rule); }
.spec-list li strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 17px;
  display: inline;
  margin-right: 6px;
}

/* ── Numbered method list ── */
.method { margin-top: 30px; }
.method-item {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
  align-items: baseline;
}
.method-item:last-child { border-bottom: 1px solid var(--rule); }
.method-num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--accent); font-weight: 400; }
.method-body p { margin-top: 4px; color: var(--ink-mid); font-size: 16px; }
@media (max-width: 480px) {
  .method-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ── Two-column key/value (sectors, team) ── */
.kv { list-style: none; margin-top: 22px; }
.kv li {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 32px;
  align-items: baseline;
}
.kv li:last-child { border-bottom: 1px solid var(--rule); }
.kv .k { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.kv .v { color: var(--ink-mid); font-size: 15.5px; line-height: 1.55; }
@media (max-width: 560px) {
  .kv li { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Placeholder figure (honest, no fabricated photos) ── */
.figure {
  background: var(--paper-alt);
  aspect-ratio: 3 / 2;
  margin: 30px 0 0;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}
.figure::after { content: ''; position: absolute; inset: 14px; border: 1px dashed var(--rule); }
.figure span { position: relative; z-index: 1; padding: 0 16px; text-align: center; }

/* ── Accreditation marks ── */
.acc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.acc-row .acc { line-height: 1.3; }
.acc-row .acc-name { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.acc-row .acc-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 2px; }

/* ── Pull-quote ── */
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 600px;
  margin: 8px 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
}
.pull cite { display: block; font-style: normal; font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-top: 16px; }

/* ── Onward links (home cards) ── */
.onward {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 24px;
}
.onward a { background: var(--paper); padding: 28px 24px; text-decoration: none; display: block; transition: background .15s; }
.onward a:hover { background: var(--paper-alt); text-decoration: none; }
.onward .onward-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-bottom: 8px; }
.onward .onward-title { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.2; display: block; margin-bottom: 6px; }
.onward .onward-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
@media (max-width: 560px) { .onward { grid-template-columns: 1fr; } }

/* ── Contact ── */
.contact-list { list-style: none; margin-top: 22px; }
.contact-list li { padding: 20px 0; border-top: 1px solid var(--rule); }
.contact-list li:last-child { border-bottom: 1px solid var(--rule); }
.contact-list .c-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.contact-list .c-val { font-family: var(--serif); font-size: 21px; line-height: 1.35; color: var(--ink); }
.contact-list .c-val a { color: var(--ink); text-decoration-color: var(--rule); }
.contact-list .c-val a:hover { text-decoration-color: var(--accent); }
.contact-list .c-note { margin-top: 8px; font-size: 14px; color: var(--ink-muted); }

/* ── Form ── */
form.cf { margin-top: 30px; display: grid; gap: 22px; max-width: 600px; }
form.cf .f-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; display: block; }
form.cf input, form.cf textarea, form.cf select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}
form.cf input:focus, form.cf textarea:focus, form.cf select:focus { outline: none; border-bottom-color: var(--accent); }
form.cf textarea { min-height: 120px; resize: vertical; }
form.cf .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { form.cf .row { grid-template-columns: 1fr; } }
.btn {
  justify-self: start;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); text-decoration: none; }

/* ── Map ── */
.map { margin-top: 26px; border: 1px solid var(--rule); }
.map iframe { display: block; width: 100%; height: 380px; filter: grayscale(0.3) contrast(0.95); }

/* ── Footer ── */
footer {
  padding: 64px 0 56px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
}
footer p + p { margin-top: 4px; }
footer .foot-links { margin-top: 16px; display: flex; gap: 22px; flex-wrap: wrap; }
footer .foot-links a { color: var(--ink-muted); text-decoration: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
footer .foot-links a:hover { color: var(--ink); }

/* ── Imagery ───────────────────────────────── */
.media { margin: 30px 0 0; border: 1px solid var(--rule); overflow: hidden; background: var(--paper-alt); }
.media img { display: block; width: 100%; height: auto; }
.media-cover img { height: clamp(240px, 38vw, 420px); object-fit: cover; }
.figcap { margin-top: 10px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }

.hero-media { margin: 44px 0 0; border: 1px solid var(--rule); overflow: hidden; }
.hero-media img { display: block; width: 100%; height: clamp(260px, 44vw, 480px); object-fit: cover; }

/* photo gallery */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.shot { position: relative; border: 1px solid var(--rule); overflow: hidden; background: var(--paper-alt); }
.shot img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.shot:hover img { transform: scale(1.045); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 9px;
  font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(22,32,46,0.82), rgba(22,32,46,0));
}
.shot.wide { grid-column: span 2; }
@media (max-width: 700px) {
  .shots { grid-template-columns: repeat(2, 1fr); }
  .shot.wide { grid-column: span 2; }
}

/* 3-up teaser strip */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.strip a { display: block; border: 1px solid var(--rule); overflow: hidden; }
.strip img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .45s ease; }
.strip a:hover img { transform: scale(1.05); }

/* split: text + image side by side */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 30px; }
.split .media { margin: 0; }
@media (max-width: 720px) { .split { grid-template-columns: 1fr; gap: 20px; } }

/* footer logo */
.foot-logo { margin-bottom: 22px; }
.foot-logo img { display: block; height: 66px; width: auto; }
