/* Armyn Private Office™ — one-page institutional website, Version 2.95 */

:root {
  --green-950: #022820;
  --green-900: #05382f;
  --green-800: #0a493b;
  --green-700: #125847;
  --paper: #f4f0e7;
  --paper-warm: #e9e2d5;
  --white: #fffdf7;
  --gold: #c6a15b;
  --gold-light: #e1ca98;
  --gold-dark: #7b5b24;
  --slate: #53645e;
  --slate-light: #9aaba5;
  --line-dark: rgba(255, 253, 247, .13);
  --line-light: rgba(5, 56, 47, .16);
  --shadow: 0 24px 70px rgba(2, 40, 32, .14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--green-950);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--gold);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  background: rgba(2, 40, 32, .7);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(2, 40, 32, .95);
  border-color: var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(225, 202, 152, .35);
  border-radius: inherit;
}
.brand-mark > span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .09em;
  line-height: 1;
}
.brand-mark-image {
  width: 54px;
  height: 54px;
  overflow: hidden;
  background: #202020;
  border-color: rgba(198, 161, 91, .72);
  border-radius: 0;
}
.brand-mark-image::before { display: none; }
.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .01em;
}
.brand-copy small {
  margin-top: 3px;
  color: var(--slate-light);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
}
.trade {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .48em;
  vertical-align: top;
}

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative;
  color: rgba(255, 253, 247, .74);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-enquiries {
  min-width: 104px;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  text-align: center;
  text-transform: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav .nav-enquiries::after { display: none; }
.site-nav .nav-enquiries:hover,
.site-nav .nav-enquiries:focus-visible {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}
.nav-toggle { display: none; }

/* Global typography and controls */
[id] { scroll-margin-top: 86px; }
.section { padding: 132px 0; }
.section-kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: none;
}
.eyebrow { color: var(--gold-light); }
.section-kicker { font-size: 21px; font-weight: 650; letter-spacing: .035em; text-transform: none; }
.hero .eyebrow {
  max-width: 920px;
  font-size: 18px;
  letter-spacing: .1em;
  line-height: 1.8;
  text-transform: none;
}
.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 12px;
  background: var(--gold);
  vertical-align: middle;
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
}
h1 em,
h2 em { color: var(--gold); font-weight: 400; }
h2 { font-size: clamp(46px, 5.3vw, 76px); }
.section-heading { max-width: 820px; margin-bottom: 66px; }
.section-heading > p:not(.section-kicker) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: 17px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: none;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--green-950); background: var(--gold-light); }
.button-primary:hover { background: var(--white); }
.button-light { color: var(--green-950); background: var(--white); }
.button-light:hover { background: var(--gold-light); }
.text-link {
  color: rgba(255, 253, 247, .74);
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  transition: color .2s ease, border-color .2s ease;
}
.text-link span { margin-left: 7px; color: var(--gold); }
.text-link:hover { color: var(--white); border-color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 174px 0 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(128deg, var(--green-950) 0%, var(--green-900) 58%, var(--green-800) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 253, 247, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, .04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, transparent 2%, black 54%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 264px);
}
.hero-copy { width: 100%; max-width: 1040px; padding: 34px 0 74px; }
.hero h1 { max-width: 1000px; font-size: clamp(64px, 8.6vw, 118px); }
.hero-lede {
  max-width: 720px;
  margin: 36px 0 0;
  color: rgba(255, 253, 247, .72);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 42px; }
.hero-actions .button { letter-spacing: .04em; text-transform: none; }
.credibility-rail {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  color: rgba(255, 253, 247, .54);
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: none;
}
.credibility-rail i { width: 18px; height: 1px; background: rgba(198, 161, 91, .5); }

/* Research */
.research-section { background: var(--paper); }
.research-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 120px;
}
.research-heading { position: sticky; top: 132px; }
.research-heading .section-kicker { color: var(--gold-dark); }
.research-copy { padding-top: 34px; }
.research-copy > p {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--slate);
  font-size: 18px;
}
.research-copy .research-lede {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.48;
}
.research-standard {
  max-width: 650px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}
.research-standard h3 {
  margin: 0 0 13px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.research-standard p {
  margin: 0;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.72;
}
.research-objective {
  display: grid;
  gap: 9px;
  margin-top: 42px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
}
.research-objective span {
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .03em;
  text-transform: none;
}
.research-objective strong {
  max-width: 560px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

/* Services */
.assignments-section { background: var(--paper-warm); border-top: 1px solid var(--line-light); }
.service-grid {
  display: flex;
  width: 100%;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.service-card {
  position: relative;
  flex: 1 1 50%;
  width: 50%;
  min-width: 0;
  min-height: 520px;
  padding: 38px 34px 34px;
  background: rgba(255, 253, 247, .28);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color .35s ease, background .35s ease, transform .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}
.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-5px);
}
.service-card:hover::after { width: calc(100% + 2px); }
.card-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.service-card:hover .card-number { color: var(--gold-light); }
.service-card h3 {
  margin: 58px 0 16px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}
.service-card > p { margin: 0; color: var(--slate); font-size: 18px; line-height: 1.7; }
.service-card:hover > p { color: var(--slate-light); }
.service-card ul {
  display: grid;
  gap: 8px;
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}
.service-card:hover ul { border-color: var(--line-dark); }
.service-card li { position: relative; padding-left: 14px; color: var(--slate); font-size: 18px; line-height: 1.5; }
.service-card:hover li { color: rgba(255, 253, 247, .66); }
.service-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* Published Work */
.published-section { color: var(--white); background: var(--green-950); }
.published-section .section-kicker { color: var(--gold); font-size: 21px; text-transform: none; }
.published-section .heading-note { color: var(--slate-light) !important; font-size: 22px !important; }
.article-list { border-top: 1px solid var(--line-dark); }
.article-card {
  display: block;
  padding: 28px 0 34px;
  color: inherit;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: background .3s ease, padding .3s ease;
}
.article-card:hover,
.article-card:focus-visible {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 253, 247, .045);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--slate-light);
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: none;
}
.article-meta span { color: var(--gold); }
.article-meta .article-source { color: var(--slate-light); }
.article-body {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 44px;
  align-items: start;
  gap: 26px;
}
.article-index { margin: 3px 0 0; color: var(--gold); font-family: var(--serif); font-size: 34px; line-height: 1; }
.article-card h3 {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.13;
}
.article-card-featured h3 { font-size: clamp(30px, 4vw, 52px); }
.article-arrow { justify-self: end; color: var(--gold); font-size: 22px; transition: transform .25s ease; }
.article-card:hover .article-arrow { transform: translate(4px, -4px); }
.publication-profiles {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 30px;
  margin-top: 34px;
  text-align: left;
}
.publication-profiles > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 26px;
}
.publication-profiles a {
  color: var(--white);
  font-size: 19px;
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 161, 91, .45);
  transition: color .2s ease, border-color .2s ease;
}
.publication-profiles a span { margin-left: 5px; color: var(--gold); }
.publication-profiles a:hover,
.publication-profiles a:focus-visible { color: var(--gold-light); border-color: var(--gold); }

/* The Office */
.office-section { background: var(--paper); }
.office-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 110px;
}
.founder-card {
  position: relative;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
}
.founder-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 40, 32, .16) 68%, rgba(2, 40, 32, .92) 100%);
}
.founder-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.founder-caption {
  position: absolute;
  z-index: 3;
  bottom: 70px;
  left: 70px;
  display: grid;
  gap: 1px;
}
.founder-caption span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.08;
  text-transform: none;
}
.founder-caption strong {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}
.office-copy .section-kicker { color: var(--gold-dark); }
.office-lede {
  margin: 35px 0 0 !important;
  color: var(--green-950) !important;
  font-family: var(--serif);
  font-size: 23px !important;
  line-height: 1.52;
}
.office-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 18px;
}
.founder-profile {
  max-width: 620px;
  margin-top: 28px;
  padding: 23px 0 24px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.founder-profile h3 {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.founder-profile ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.founder-profile li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.67;
}
.founder-profile li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
.office-principles { margin: 28px 0 0; border-top: 1px solid var(--line-light); }
.office-principles > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.office-principles dt { color: var(--gold-dark); font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.office-principles dd {
  display: grid;
  grid-template-columns: minmax(160px, .8fr) 1.2fr;
  gap: 18px;
  margin: 0;
}
.office-principles strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.office-principles span { color: var(--slate); font-size: 18px; line-height: 1.55; }

/* Enquiries and footer */
.enquiries-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--gold-dark);
}
.enquiries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.22) 48.1%, transparent 48.25%);
  background-size: 190px 100%;
}
.enquiries-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: start;
  gap: 100px;
}
.enquiries-inner > :first-child { transform: translateY(-21px); }
.enquiries-section .section-kicker { color: rgba(255, 253, 247, .7); text-transform: none; }
.enquiries-section h2 em { color: var(--white); }
.enquiries-copy > p { max-width: 540px; margin: 0 0 30px; color: rgba(255, 253, 247, .82); font-size: 17px; }
.enquiries-copy .button { letter-spacing: .04em; text-transform: none; }
.enquiries-copy small { display: block; margin-top: 14px; color: rgba(255, 253, 247, .78); font-size: 18px; line-height: 1.55; }

.site-footer { padding: 55px 0 35px; color: var(--white); background: #011b16; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-links { display: flex; gap: 30px; margin-left: auto; }
.footer-links a {
  color: var(--slate-light);
  font-size: 18px;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: none;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
  padding-top: 28px;
  color: rgba(255, 253, 247, .68);
  font-size: 17px;
  line-height: 1.65;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:first-child { font-size: 17px; }

/* Reveal enhancement */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
  .site-nav { gap: 22px; }
  .research-grid { gap: 70px; }
  .office-grid { gap: 60px; }
  .founder-card { min-height: 570px; }
  .service-card { padding-right: 27px; padding-left: 27px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 78px; }
  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }
  .nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    align-content: safe center;
    justify-items: center;
    gap: 24px;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 96px 24px 40px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 40, 32, .99);
    transition: opacity .25s ease, visibility .25s ease;
  }
  .site-nav.open { visibility: visible; opacity: 1; }
  .site-nav a { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.2; }
  .site-nav .nav-enquiries {
    min-width: 138px;
    padding: 13px 22px;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 750;
  }

  .section { padding: 102px 0; }
  .research-grid,
  .office-grid,
  .enquiries-inner { grid-template-columns: 1fr; }
  .enquiries-inner > :first-child { transform: none; }
  .research-grid { gap: 42px; }
  .research-heading { position: static; }
  .research-copy { padding-top: 0; }
  .service-grid { flex-direction: column; }
  .service-card { width: 100%; min-height: 0; padding: 34px 34px 38px; }
  .service-card h3 { margin-top: 42px; }
  .office-grid { gap: 55px; }
  .founder-card { width: min(100%, 560px); min-height: 630px; }
  .enquiries-inner { gap: 45px; }
  .enquiries-copy { max-width: 640px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 82px 0; }
  .brand { gap: 10px; }
  .brand-mark { width: 41px; height: 41px; }
  .brand-mark-image { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 14px; letter-spacing: .01em; }

  .hero { min-height: auto; padding-top: 130px; }
  .hero-inner { min-height: auto; }
  .hero-copy { padding: 34px 0 70px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); line-height: .98; }
  .hero .eyebrow { font-size: 15px; letter-spacing: .06em; }
  .hero-lede { margin-top: 28px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 35px; }
  .credibility-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 24px 0;
    line-height: 1.4;
  }
  .credibility-rail i { display: none; }

  h2 { font-size: clamp(42px, 13.5vw, 60px); }
  .section-heading { margin-bottom: 46px; }
  .section-heading > p:not(.section-kicker) { font-size: 18px; }
  .research-copy .research-lede { font-size: 23px; }
  .research-objective strong { font-size: 26px; }
  .service-card { padding: 30px 25px 34px; }

  .article-card { padding: 24px 0 28px; }
  .article-card:hover,
  .article-card:focus-visible { padding-right: 10px; padding-left: 10px; }
  .article-meta { gap: 16px; margin-bottom: 20px; }
  .article-body { grid-template-columns: 34px minmax(0, 1fr) 24px; gap: 12px; }
  .article-card h3,
  .article-card-featured h3 { font-size: clamp(24px, 8vw, 34px); }
  .publication-profiles { align-items: flex-start; flex-direction: column; gap: 14px; }
  .publication-profiles > div { align-items: flex-start; flex-direction: column; gap: 12px; }
  .founder-card { min-height: 500px; }
  .founder-caption { bottom: 52px; left: 52px; }
  .office-lede { font-size: 20px !important; }
  .office-principles dd { grid-template-columns: 1fr; gap: 6px; }

  .enquiries-section { padding: 80px 0; }
  .button-light { width: 100%; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 18px 26px; margin-left: 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
