:root {
  --ink: #17201d;
  --ink-soft: #4f5b56;
  --paper: #f6f4ef;
  --white: #ffffff;
  --stone: #e5e0d6;
  --sage: #6c766f;
  --sage-dark: #46524b;
  --sand: #b49a6a;
  --line: rgba(23, 32, 29, 0.16);
  --max: 1240px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 70px rgba(20, 28, 25, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #d7ded8; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.25rem, 7.2vw, 7.5rem); line-height: 0.93; }
h2 { font-size: clamp(2.3rem, 4.6vw, 4.85rem); line-height: 1.02; }
h3 { font-size: 1.22rem; line-height: 1.28; }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.12rem, 1.8vw, 1.42rem); }
.small { color: var(--ink-soft); font-size: 0.82rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.button::after { content: "\2197"; font-size: 1rem; }
.button:hover { transform: translateY(-2px); background: var(--sage-dark); border-color: var(--sage-dark); }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { color: var(--white); }
.button.light { border-color: rgba(255,255,255,.72); background: transparent; color: var(--white); }
.button.light:hover { background: var(--white); color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--sage-dark);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link::after { content: "\2192"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  transition: height 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled, .site-header.on-light {
  height: 76px;
  background: rgba(246,244,239,.96);
  box-shadow: 0 10px 32px rgba(20,28,25,.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: inherit; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  flex: 0 0 39px;
  border: 0;
  padding: 6px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(23,32,29,.12);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-name { font-family: var(--serif); font-size: 1.16rem; letter-spacing: .02em; }
.brand-type { margin-top: 4px; font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; opacity: .72; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 28px); }
.main-nav a { position: relative; color: inherit; font-size: .73rem; font-weight: 680; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right 180ms ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-cta { padding: 10px 14px; border: 1px solid currentColor; }
.nav-cta:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

/* Heroes */
.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #202925;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,20,17,.89) 0%, rgba(13,20,17,.65) 38%, rgba(13,20,17,.12) 72%), linear-gradient(0deg, rgba(10,16,13,.44), transparent 56%); }
.hero-content { position: relative; z-index: 1; width: min(780px, 75%); padding-block: 190px 90px; }
.hero h1 { margin-bottom: 30px; }
.hero .lead { max-width: 650px; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-meta { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max))/2)); bottom: 86px; max-width: 245px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.56); font-size: .78rem; color: rgba(255,255,255,.78); }
.page-hero { padding: 190px 0 96px; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 980px; font-size: clamp(3.4rem, 7vw, 7rem); }
.page-hero .lead { max-width: 800px; color: rgba(255,255,255,.72); }
.page-hero .eyebrow { color: #cbd4cd; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: rgba(255,255,255,.58); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }

/* Sections */
.section { padding-block: clamp(86px, 10vw, 150px); }
.section.compact { padding-block: 72px; }
.section.white { background: var(--white); }
.section.dark { background: var(--ink); color: var(--white); }
.section.sage { background: var(--sage-dark); color: var(--white); }
.section-head { display: grid; grid-template-columns: minmax(0, .65fr) minmax(320px, 1.35fr); gap: 60px; align-items: start; margin-bottom: 68px; }
.section-head h2 { max-width: 890px; }
.section-head .lead { margin-top: 10px; }
.section.dark .lead, .section.sage .lead { color: rgba(255,255,255,.7); }
.intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.intro-copy h2 { margin-bottom: 30px; }
.stat-line { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.stat { min-height: 176px; padding: 34px 24px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.stat span { color: var(--ink-soft); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.capability-card { position: relative; min-height: 420px; padding: clamp(34px, 4.5vw, 64px); background: var(--white); overflow: hidden; }
.capability-card::before { content: attr(data-number); position: absolute; top: 28px; right: 32px; color: rgba(23,32,29,.14); font-family: var(--serif); font-size: 4.8rem; }
.capability-card h3 { max-width: 360px; margin: 92px 0 20px; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.4rem); font-weight: 400; letter-spacing: -.03em; }
.capability-card p { max-width: 530px; color: var(--ink-soft); }
.capability-card .text-link { position: absolute; left: clamp(34px, 4.5vw, 64px); bottom: 48px; }
.capability-card.featured { background: var(--sage-dark); color: var(--white); }
.capability-card.featured::before { color: rgba(255,255,255,.16); }
.capability-card.featured p { color: rgba(255,255,255,.7); }
.capability-card.featured .text-link { color: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.split-media { min-height: 520px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 8vw, 120px); background: var(--ink); color: var(--white); }
.split-copy p { max-width: 580px; color: rgba(255,255,255,.7); }
.split-copy .text-link { align-self: flex-start; margin-top: 22px; color: var(--white); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.principle { padding-top: 26px; border-top: 1px solid var(--line); }
.principle-number { display: block; margin-bottom: 58px; color: var(--sage); font-family: var(--serif); font-size: 1.45rem; }
.principle h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.principle p { color: var(--ink-soft); }
.quote { max-width: 1020px; margin: 0 auto; text-align: center; }
.quote blockquote { margin: 0 0 32px; font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 5rem); line-height: 1.08; letter-spacing: -.035em; }
.quote cite { font-style: normal; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.timeline-date { color: var(--sage-dark); font-size: .77rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.timeline-item p { max-width: 750px; color: var(--ink-soft); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px 1fr minmax(280px, .9fr); gap: 34px; padding: 38px 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-row .number { color: var(--sage); font-family: var(--serif); font-size: 1.45rem; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 400; }
.service-row p { margin: 3px 0 0; color: var(--ink-soft); }
.notice { padding: 30px 32px; border-left: 3px solid var(--sage); background: #ece9e2; }
.notice p:last-child { margin-bottom: 0; }
.notice.spaced { margin-top: 70px; }
.notice.dark-notice { border-color: var(--sand); background: rgba(255,255,255,.06); }
.notice.dark-notice p { color: rgba(255,255,255,.74); }
.notice.dark-notice strong { color: var(--white); }
.light-stat-line { border-color: rgba(255,255,255,.22); }
.light-stat-line .stat { border-color: rgba(255,255,255,.22); }
.light-stat-line strong { color: var(--white); }
.light-stat-line span { color: rgba(255,255,255,.65); }
.not-found { min-height: 100vh; display: grid; place-items: center; }
.registry-card { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.registry-card div { padding: 28px 30px; background: rgba(255,255,255,.04); }
.registry-card dt { color: rgba(255,255,255,.58); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.registry-card dd { margin: 6px 0 0; font-family: var(--serif); font-size: 1.35rem; }
.image-band { position: relative; min-height: 580px; overflow: hidden; background: var(--ink); }
.image-band img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.image-caption { position: absolute; right: 28px; bottom: 22px; max-width: 360px; margin: 0; color: rgba(255,255,255,.72); font-size: .7rem; letter-spacing: .04em; }
.motion-band { position: relative; min-height: 620px; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.motion-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.motion-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,20,17,.82), rgba(13,20,17,.18) 70%), linear-gradient(0deg, rgba(13,20,17,.4), transparent 55%); }
.motion-copy { position: relative; z-index: 1; padding-block: 80px; }
.motion-copy h2 { max-width: 800px; margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.7rem); }
.motion-toggle { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max))/2)); bottom: 76px; display: grid; width: 46px; height: 46px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(16,23,20,.58); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); }
.motion-toggle:hover, .motion-toggle:focus-visible { background: var(--white); color: var(--ink); }
.motion-toggle-icon { position: relative; width: 12px; height: 14px; border-inline: 3px solid currentColor; }
.motion-toggle.is-paused .motion-toggle-icon { width: 0; height: 0; margin-inline: 2px; border: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.landscape-section { padding-block: clamp(80px, 9vw, 130px); background: #ece9e2; }
.landscape-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: start; margin-bottom: 54px; }
.landscape-heading h2 { max-width: 850px; margin: 0; }
.landscape-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: minmax(250px, 360px) minmax(520px, 680px); gap: 12px; }
.landscape-card { min-width: 0; margin: 0; overflow: hidden; background: var(--stone); }
.landscape-card.panorama { grid-column: 1 / -1; }
.landscape-card picture, .landscape-card img { width: 100%; height: 100%; }
.landscape-card img { object-fit: cover; transition: transform 900ms ease; }
.landscape-card:hover img { transform: scale(1.025); }
.landscape-card.alpine img { object-position: center 48%; }
.image-band-landscape img { object-position: center 54%; }
.image-band-wide { min-height: 460px; }
.image-band-wide img { min-height: 460px; object-position: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.team-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 32px; background: var(--white); }
.team-card.ceo-card { grid-column: 1 / -1; min-height: 290px; border-top: 4px solid var(--sand); background: var(--ink); color: var(--white); }
.team-card.ceo-card .team-initials { background: rgba(255,255,255,.12); color: var(--white); }
.team-card.ceo-card .team-role { color: rgba(255,255,255,.72); }
.team-card.ceo-card .team-contact { color: var(--white); border-color: rgba(255,255,255,.38); }
.team-initials { display: grid; width: 70px; height: 70px; place-items: center; border-radius: 50%; background: var(--paper); color: var(--sage-dark); font-family: var(--serif); font-size: 1.5rem; letter-spacing: .02em; }
.team-card h3 { margin: auto 0 8px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; letter-spacing: -.025em; }
.team-role { min-height: 42px; margin-bottom: 24px; color: var(--sage-dark); font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.team-contact { align-self: flex-start; color: var(--ink-soft); font-size: .76rem; text-decoration: none; border-bottom: 1px solid var(--line); }
.team-contact:hover { color: var(--ink); border-color: var(--ink); }
.team-card.ceo-card .team-contact:hover { color: var(--white); border-color: var(--white); }
.team-note { max-width: 760px; margin: 44px 0 0 auto; color: var(--ink-soft); }
.cta-band { padding: 82px 0; background: var(--sage-dark); color: var(--white); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-row h2 { max-width: 780px; margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); }

/* Contact and legal */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 9vw, 130px); }
.contact-panel { padding: clamp(36px, 5vw, 64px); background: var(--white); box-shadow: var(--shadow); }
.contact-panel address { margin: 28px 0; font-family: var(--serif); font-size: 1.8rem; font-style: normal; line-height: 1.35; }
.map-card { min-height: 420px; display: grid; place-items: center; padding: 40px; background: linear-gradient(135deg, #56675d, #1c2722); color: var(--white); text-align: center; }
.map-pin { display: grid; width: 76px; height: 76px; place-items: center; margin: 0 auto 26px; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; font-family: var(--serif); font-size: 1.9rem; }
.form-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.form-intro { position: sticky; top: 115px; }
.form-intro h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.form-intro a { color: var(--sage-dark); }
.contact-form { position: relative; display: grid; gap: 24px; scroll-margin-top: 110px; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 9px; color: var(--ink); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form label > span[aria-hidden="true"] { color: #8a3e34; }
.contact-form .optional { margin-left: 6px; color: var(--ink-soft); font-size: .62rem; font-weight: 500; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(23,32,29,.24); border-radius: 0; padding: 14px 15px; background: var(--white); color: var(--ink); font-size: .95rem; font-weight: 400; letter-spacing: 0; text-transform: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 0; border-color: var(--sage-dark); box-shadow: 0 0 0 3px rgba(70,82,75,.14); }
.consent-check { display: flex !important; align-items: flex-start; gap: 12px !important; font-size: .76rem !important; font-weight: 500 !important; line-height: 1.55; letter-spacing: 0 !important; text-transform: none !important; }
.consent-check input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; accent-color: var(--sage-dark); }
.consent-check a { color: var(--sage-dark); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.form-submit p { margin: 0; color: var(--ink-soft); font-size: .72rem; }
.contact-form button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status { padding: 16px 18px; border-left: 3px solid var(--sage-dark); background: #e4ebe6; color: var(--ink); font-size: .88rem; }
.form-status.error { border-color: #9b4a3e; background: #f1e4e1; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 9px; }
.legal-nav a { color: var(--ink-soft); font-size: .79rem; text-decoration: none; }
.legal-nav a:hover { color: var(--ink); }
.legal-copy section { margin-bottom: 58px; scroll-margin-top: 110px; }
.legal-copy h2 { font-size: 2rem; }
.legal-copy h3 { margin-top: 28px; }
.legal-copy p, .legal-copy li { color: var(--ink-soft); }
.source-list { padding-left: 20px; }

/* Footer */
.site-footer { padding: 76px 0 30px; background: #101714; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .75fr .75fr .75fr; gap: 50px; padding-bottom: 66px; }
.footer-brand p { max-width: 370px; color: rgba(255,255,255,.58); font-size: .87rem; }
.footer-title { margin-bottom: 22px; color: rgba(255,255,255,.44); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.76); font-size: .83rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: .7rem; }
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.contact-email { margin: -12px 0 28px; }
.contact-email a { color: var(--sage-dark); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .main-nav { position: fixed; inset: 76px 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 34px 24px 60px; background: var(--paper); color: var(--ink); transform: translateX(100%); transition: transform 240ms ease; }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; letter-spacing: -.01em; text-transform: none; }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 24px; border: 1px solid var(--ink) !important; padding-inline: 18px !important; font-family: var(--sans) !important; font-size: .78rem !important; font-weight: 700 !important; letter-spacing: .08em !important; text-align: center; text-transform: uppercase !important; }
  .menu-toggle { display: block; }
  .nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { width: min(820px, 90%); }
  .hero-meta { display: none; }
  .section-head, .intro-grid, .contact-grid, .form-layout, .landscape-heading { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .section-head { gap: 14px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 540px; }
  .motion-copy { padding-bottom: 130px; }
  .landscape-heading { gap: 14px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 55px 1fr; }
  .service-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .site-header { height: 76px; }
  .brand-type { display: none; }
  .hero { min-height: 740px; }
  .hero-content { width: 100%; padding: 150px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .page-hero { padding: 145px 0 72px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 390px; }
  .stat-line { grid-template-columns: 1fr; }
  .stat { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .principles { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 280px; }
  .principle-number { margin-bottom: 26px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-row p { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .registry-card { grid-template-columns: 1fr; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .motion-band { min-height: 520px; }
  .motion-copy { padding-block: 64px 130px; }
  .motion-toggle { right: 16px; bottom: 34px; }
  .landscape-grid { grid-template-columns: 1fr; grid-template-rows: 230px 320px 440px; }
  .landscape-card.panorama { grid-column: 1; }
  .image-band-wide, .image-band-wide img { min-height: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
