:root {
  --ink: #151714;
  --ink-soft: #343934;
  --green: #16342d;
  --green-deep: #0e241f;
  --green-soft: #244b40;
  --cream: #f3ecde;
  --paper: #e8ddca;
  --paper-deep: #d8c9ae;
  --brass: #b69256;
  --brass-light: #d1b77c;
  --oxblood: #4a2228;
  --white: #fffdf7;
  --line: rgba(22, 52, 45, .18);
  --line-light: rgba(243, 236, 222, .22);
  --serif-display: "Libre Caslon Display", "Iowan Old Style", "Baskerville", Georgia, serif;
  --serif: "Libre Caslon Text", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1220px, calc(100vw - 64px));
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--brass); color: var(--green-deep); }

.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; top: 12px; left: 12px; z-index: 9999; transform: translateY(-150%); background: var(--cream); padding: 10px 16px; color: var(--green); text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  border-bottom: 1px solid rgba(243, 236, 222, .15);
  transition: background .35s ease, color .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.is-fixed {
  position: fixed;
  height: 76px;
  background: rgba(14, 36, 31, .95);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(6, 21, 17, .17);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__crest { width: 52px; height: 52px; color: var(--brass-light); }
.brand__type { display: grid; line-height: 1; }
.brand__name { font-family: var(--serif-display); font-size: 31px; letter-spacing: -.02em; }
.brand__descriptor { margin-top: 7px; font-size: 9px; letter-spacing: .32em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--brass-light); transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 14px 18px; border: 1px solid rgba(209,183,124,.75); transition: .3s ease; }
.nav-cta:hover { background: var(--brass-light); color: var(--green-deep); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: inherit; position: relative; }
.menu-toggle span:not(.sr-only) { position: absolute; width: 24px; height: 1px; background: currentColor; left: 10px; transition: .3s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:nth-child(2) { top: 26px; }

.hero { min-height: 850px; height: 100svh; display: grid; grid-template-columns: 56% 44%; background: var(--green-deep); color: var(--cream); }
.hero__copy { position: relative; padding: calc(var(--header-height) + 94px) clamp(42px, 6.2vw, 106px) 42px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__copy::before { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(209,183,124,.13); border-radius: 50%; left: -330px; bottom: -290px; }
.hero__copy::after { content: ""; position: absolute; width: 400px; height: 1px; background: linear-gradient(90deg, transparent, rgba(209,183,124,.35), transparent); transform: rotate(-45deg); right: -160px; top: 39%; }
.hero__eyebrow { color: var(--brass-light); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 30px; }
.hero__title { position: relative; z-index: 1; max-width: 760px; margin: 0; font-family: var(--serif-display); font-size: clamp(58px, 7.1vw, 116px); line-height: .93; letter-spacing: -.055em; font-weight: 400; }
.hero__title em { color: var(--brass-light); font-family: var(--serif); font-weight: 400; }
.hero__intro { max-width: 650px; margin: 38px 0 0; color: rgba(243,236,222,.75); font-family: var(--serif); font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; }
.hero__actions { margin-top: 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 30px; padding: 0 24px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; font-size: 10px; font-weight: 600; letter-spacing: .2em; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--cream); color: var(--green-deep); }
.button--light:hover { background: var(--brass-light); }
.button--dark { width: 100%; background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.button--dark:hover { background: var(--oxblood); border-color: var(--oxblood); }
.text-link { position: relative; text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; padding-bottom: 8px; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform-origin: left; transition: transform .25s ease; }
.text-link:hover::after { transform: scaleX(.55); }
.text-link--light { color: var(--cream); }
.hero__foot { position: absolute; bottom: 30px; left: clamp(42px, 6.2vw, 106px); right: clamp(42px, 6.2vw, 106px); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(243,236,222,.45); font-size: 8px; letter-spacing: .26em; text-transform: uppercase; }
.hero__foot span:nth-child(2) { flex: 1; display: flex; align-items: center; gap: 20px; }
.hero__foot span:nth-child(2)::before, .hero__foot span:nth-child(2)::after { content: ""; height: 1px; flex: 1; background: rgba(243,236,222,.17); }

.hero__visual { position: relative; overflow: hidden; min-height: 680px; }
.hero__visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 54%; transform: scale(1.02); animation: heroZoom 18s ease-in-out infinite alternate; }
.hero__visual-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,29,25,.42), rgba(13,31,27,.06) 46%, rgba(13,31,27,.5)), linear-gradient(90deg, rgba(14,36,31,.32), transparent 44%); mix-blend-mode: multiply; }
.hero__visual::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(243,236,222,.32); pointer-events: none; }
.hero__seal { position: absolute; top: 128px; right: 38px; width: 94px; aspect-ratio: 1; border: 1px solid rgba(243,236,222,.65); border-radius: 50%; display: grid; place-content: center; justify-items: center; gap: 2px; color: var(--cream); text-transform: uppercase; font-size: 7px; letter-spacing: .2em; backdrop-filter: blur(3px); }
.hero__seal-kicker { font-family: var(--serif-display); font-size: 22px; letter-spacing: .05em; }
.hero__seal-line { width: 35px; height: 1px; background: var(--brass-light); margin: 2px 0 4px; }
.hero__caption { position: absolute; left: 0; bottom: 78px; display: grid; grid-template-columns: 54px auto; min-width: 330px; background: var(--cream); color: var(--green-deep); box-shadow: 0 18px 44px rgba(9,20,17,.22); }
.hero__caption > span { display: grid; place-items: center; border-right: 1px solid rgba(22,52,45,.2); font-family: var(--serif); color: var(--brass); }
.hero__caption p { margin: 0; padding: 18px 22px; font-family: var(--serif); font-size: 17px; line-height: 1.35; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.08); } }

.ticker { height: 58px; overflow: hidden; display: flex; align-items: center; background: var(--brass); color: var(--green-deep); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(22,52,45,.18); }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 26px; animation: ticker 35s linear infinite; white-space: nowrap; }
.ticker span { font-family: var(--serif); font-size: 14px; font-style: italic; }
.ticker i { font-style: normal; font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px max(32px, calc((100vw - 1220px)/2)); }
.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 52px; color: var(--green); font-size: 9px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.section-label::after { content: ""; width: 70px; height: 1px; background: currentColor; opacity: .45; }
.section-label span { display: inline-grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(22,52,45,.3); border-radius: 50%; font-family: var(--serif); font-size: 10px; letter-spacing: 0; }
.section-label--light { color: var(--brass-light); }
.section-label--light span { border-color: rgba(209,183,124,.45); }
.display-heading { margin: 0; color: var(--green-deep); font-family: var(--serif-display); font-size: clamp(47px, 6vw, 88px); line-height: 1.03; letter-spacing: -.045em; font-weight: 400; }
.display-heading em { color: var(--oxblood); font-family: var(--serif); font-weight: 400; }
.display-heading--light { color: var(--cream); }
.display-heading--light em { color: var(--brass-light); }

.manifesto { background: var(--cream); }
.manifesto__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); gap: clamp(70px, 10vw, 160px); align-items: start; }
.manifesto__body { padding-top: 15px; color: var(--ink-soft); }
.manifesto__body p { margin: 0 0 24px; font-family: var(--serif); font-size: 19px; line-height: 1.75; }
.signature-line { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.signature-line span { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--green); }
.signature-line small { color: #777b73; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }

.section--dark { background: var(--green-deep); color: var(--cream); }
.advisory { position: relative; overflow: hidden; }
.advisory::before { content: "NCA"; position: absolute; right: -40px; top: 55px; color: rgba(243,236,222,.025); font-family: var(--serif-display); font-size: 330px; line-height: 1; }
.advisory__intro { position: relative; display: grid; grid-template-columns: 1.2fr .55fr; gap: 100px; align-items: end; margin-bottom: 76px; }
.advisory__intro > p { margin: 0 0 8px; color: rgba(243,236,222,.64); font-family: var(--serif); font-size: 18px; line-height: 1.7; }
.services { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service { position: relative; min-height: 520px; padding: 38px 42px 42px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; transition: background .35s ease, color .35s ease; }
.service::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(209,183,124,.12); border-radius: 50%; right: -100px; bottom: -100px; transition: transform .45s ease, border-color .35s ease; }
.service:hover { background: var(--cream); color: var(--green-deep); }
.service:hover::after { transform: scale(1.5); border-color: rgba(74,34,40,.25); }
.service__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 70px; }
.service__number { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(209,183,124,.5); border-radius: 50%; color: var(--brass-light); font-family: var(--serif); font-size: 13px; }
.service__tag { color: rgba(243,236,222,.48); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.service:hover .service__tag { color: rgba(22,52,45,.55); }
.service h3 { margin: 0 0 24px; font-family: var(--serif-display); font-size: clamp(36px, 4vw, 58px); line-height: 1.02; letter-spacing: -.04em; font-weight: 400; }
.service > p { max-width: 600px; margin: 0; color: rgba(243,236,222,.68); font-family: var(--serif); font-size: 17px; line-height: 1.7; }
.service:hover > p { color: var(--ink-soft); }
.service ul { margin: 34px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; color: rgba(243,236,222,.56); font-size: 10px; letter-spacing: .04em; }
.service li { position: relative; padding-left: 13px; }
.service li::before { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; left: 0; top: .68em; background: var(--brass); }
.service:hover ul { color: #5f665f; }

.focus { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; background: var(--cream); }
.focus__image { position: relative; min-height: 830px; overflow: hidden; }
.focus__image img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.1) contrast(1.06); }
.focus__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,36,31,.58)); }
.focus__image-label { position: absolute; left: 44px; bottom: 34px; z-index: 1; color: var(--cream); font-size: 8px; letter-spacing: .25em; text-transform: uppercase; }
.focus__copy { padding: 110px clamp(50px, 7vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.focus__copy > p { max-width: 560px; margin: 34px 0 36px; color: var(--ink-soft); font-family: var(--serif); font-size: 19px; line-height: 1.72; }
.focus__list { border-top: 1px solid var(--line); }
.focus__list > div { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: center; min-height: 82px; border-bottom: 1px solid var(--line); }
.focus__list span { color: var(--brass); font-family: var(--serif); font-size: 12px; }
.focus__list p { margin: 0; color: var(--green-deep); font-family: var(--serif); font-size: 17px; }

.section--paper { background: var(--paper); }
.process { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(70px, 9vw, 150px); align-items: stretch; }
.process__copy { padding: 14px 0; }
.process__lead { max-width: 680px; margin: 34px 0 54px; color: var(--ink-soft); font-family: var(--serif); font-size: 19px; line-height: 1.7; }
.process__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(22,52,45,.24); }
.process__steps li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid rgba(22,52,45,.24); }
.process__steps li > span { color: var(--brass); font-family: var(--serif); font-size: 13px; padding-top: 3px; }
.process__steps h3 { margin: 0 0 5px; color: var(--green-deep); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.process__steps p { margin: 0; color: #5d625c; font-size: 13px; line-height: 1.65; }
.process__image { position: relative; min-height: 820px; overflow: hidden; border: 1px solid rgba(22,52,45,.25); padding: 14px; }
.process__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) sepia(.12) contrast(1.02); }
.process__image blockquote { position: absolute; left: -35px; bottom: 70px; margin: 0; padding: 22px 28px; background: var(--oxblood); color: var(--cream); font-family: var(--serif); font-size: 22px; font-style: italic; box-shadow: 0 20px 35px rgba(74,34,40,.28); }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 150px); background: var(--oxblood); color: var(--cream); position: relative; overflow: hidden; }
.contact::after { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(209,183,124,.14); border-radius: 50%; left: -300px; bottom: -300px; }
.contact__heading { position: relative; z-index: 1; }
.contact__heading > p { max-width: 460px; margin: 30px 0 52px; color: rgba(243,236,222,.7); font-family: var(--serif); font-size: 18px; line-height: 1.7; }
.contact__note { display: grid; gap: 8px; padding-top: 22px; border-top: 1px solid rgba(243,236,222,.2); }
.contact__note span { color: var(--brass-light); font-size: 8px; letter-spacing: .23em; text-transform: uppercase; }
.contact__note a { font-family: var(--serif); font-size: 18px; text-decoration: none; }
.enquiry-form { position: relative; z-index: 1; background: var(--cream); color: var(--green-deep); padding: clamp(30px, 4.4vw, 58px); box-shadow: 0 28px 70px rgba(34,9,14,.28); }
.enquiry-form::before { content: "PRIVATE ENQUIRY"; position: absolute; right: 20px; top: 17px; color: rgba(22,52,45,.35); font-size: 7px; letter-spacing: .26em; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.enquiry-form label { display: grid; gap: 10px; margin-bottom: 24px; }
.enquiry-form label > span:first-child { font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(22,52,45,.33); border-radius: 0; padding: 11px 0 13px; background: transparent; color: var(--green-deep); outline: none; transition: border-color .2s ease; }
.enquiry-form textarea { resize: vertical; min-height: 100px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--oxblood); }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(22,52,45,.45); }
.checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 11px !important; font-size: 11px; line-height: 1.5; color: #5e645f; }
.checkbox input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--green); }
.checkbox a { color: var(--green-deep); }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 12px; color: var(--oxblood); }

.site-footer { padding: 70px max(32px, calc((100vw - 1220px)/2)) 30px; background: var(--green-deep); color: var(--cream); }
.footer__brand { display: flex; align-items: center; gap: 18px; padding-bottom: 38px; border-bottom: 1px solid var(--line-light); }
.footer__crest { width: 56px; color: var(--brass-light); }
.footer__brand div { display: grid; }
.footer__brand strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.footer__brand span { color: rgba(243,236,222,.48); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.footer__links { display: flex; flex-wrap: wrap; gap: 32px; margin: 34px 0; }
.footer__links a { text-decoration: none; font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer__legal { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; padding: 32px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: rgba(243,236,222,.47); font-size: 10px; line-height: 1.7; }
.footer__legal p { margin: 0; }
.legal-placeholder { color: var(--brass-light); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; color: rgba(243,236,222,.35); font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

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

@media (max-width: 1100px) {
  :root { --header-height: 86px; }
  .site-header { padding: 0 28px; }
  .site-nav { gap: 22px; }
  .hero { grid-template-columns: 60% 40%; }
  .hero__copy { padding-left: 48px; padding-right: 48px; }
  .hero__title { font-size: clamp(58px, 7.8vw, 90px); }
  .hero__foot { left: 48px; right: 48px; }
  .manifesto__grid, .advisory__intro { gap: 65px; }
  .service { padding: 34px 32px; }
  .focus__copy { padding: 90px 60px; }
  .process { grid-template-columns: 1fr 1fr; gap: 65px; }
}

@media (max-width: 840px) {
  .site-header { position: fixed; height: 76px; background: rgba(14,36,31,.96); padding: 0 20px; }
  .brand__crest { width: 42px; }
  .brand__name { font-size: 26px; }
  .brand__descriptor { font-size: 7px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { top: 22px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; padding: 130px 32px 50px; background: var(--green-deep); flex-direction: column; align-items: flex-start; gap: 0; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
  .menu-open .site-nav { transform: translateX(0); }
  .site-nav a { width: 100%; padding: 20px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: 26px; letter-spacing: 0; text-transform: none; }
  .nav-cta { margin-top: 24px; padding: 16px 18px !important; border: 1px solid var(--brass-light) !important; font-family: var(--sans) !important; font-size: 10px !important; letter-spacing: .18em !important; text-transform: uppercase !important; text-align: center; }

  .hero { min-height: auto; height: auto; grid-template-columns: 1fr; }
  .hero__copy { min-height: 720px; padding: 150px 28px 90px; }
  .hero__title { font-size: clamp(58px, 16vw, 92px); }
  .hero__intro { font-size: 17px; }
  .hero__foot { position: static; margin-top: 70px; left: auto; right: auto; }
  .hero__foot span:nth-child(2) { display: none; }
  .hero__visual { min-height: 640px; }
  .hero__caption { bottom: 44px; min-width: 285px; }

  .section { padding: 90px 28px; }
  .manifesto__grid, .advisory__intro, .process, .contact { grid-template-columns: 1fr; }
  .manifesto__grid { gap: 48px; }
  .advisory__intro { gap: 32px; margin-bottom: 54px; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: 480px; }
  .focus { grid-template-columns: 1fr; }
  .focus__image { min-height: 600px; }
  .focus__copy { padding: 90px 28px; }
  .process { gap: 70px; }
  .process__image { min-height: 680px; }
  .process__image blockquote { left: 0; }
  .contact { gap: 70px; }
  .footer__legal { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  .hero__copy { min-height: 680px; }
  .hero__eyebrow { font-size: 8px; line-height: 1.7; }
  .hero__title { font-size: clamp(51px, 15.5vw, 74px); }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .hero__foot { justify-content: flex-start; gap: 18px; flex-wrap: wrap; }
  .hero__visual { min-height: 520px; }
  .hero__visual::after { inset: 12px; }
  .hero__seal { top: 30px; right: 26px; width: 78px; }
  .hero__caption { left: 12px; right: 12px; min-width: auto; }
  .ticker { height: 52px; }
  .display-heading { font-size: clamp(42px, 13vw, 62px); }
  .section-label { margin-bottom: 38px; }
  .manifesto__body p, .focus__copy > p, .process__lead { font-size: 17px; }
  .signature-line { align-items: flex-start; flex-direction: column; }
  .service { min-height: auto; padding: 30px 24px 42px; }
  .service__top { margin-bottom: 52px; }
  .service h3 { font-size: 40px; }
  .service ul { grid-template-columns: 1fr; }
  .focus__image { min-height: 500px; }
  .focus__image-label { left: 24px; }
  .focus__list > div { grid-template-columns: 36px 1fr; }
  .process__steps li { grid-template-columns: 42px 1fr; }
  .process__image { min-height: 540px; padding: 8px; }
  .process__image blockquote { right: 0; bottom: 35px; font-size: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form { padding: 44px 24px 30px; }
  .footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
