:root {
  --ink: #10221c;
  --ink-soft: #4d5b55;
  --forest: #073e31;
  --forest-2: #0a5c45;
  --emerald: #0aa665;
  --acid: #c9ff9d;
  --paper: #f4efe4;
  --paper-2: #e8e0d1;
  --white: #fffdf7;
  --clay: #d57a4c;
  --line: rgba(16, 34, 28, .16);
  --line-light: rgba(255, 253, 247, .2);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1440px, calc(100vw - 80px));
  --header-height: 104px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { color: var(--white); background: var(--forest-2); }

.screen-reader-text { position: absolute !important; 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: 14px; left: 14px; z-index: 9999; padding: 12px 18px; color: var(--white); background: var(--ink); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow { margin: 0 0 22px; color: var(--forest-2); font-family: var(--mono); font-size: .7rem; font-weight: 600; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.eyebrow--light { color: rgba(255, 253, 247, .72); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 1000; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--clay); transform: scaleX(0); transform-origin: 0 50%; }

.cursor-orbit { position: fixed; z-index: 1100; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; pointer-events: none; mix-blend-mode: difference; transform: translate3d(-100px,-100px,0); transition: width .25s var(--ease), height .25s var(--ease), opacity .2s ease; }
.cursor-orbit span { position: absolute; inset: 50% auto auto 50%; width: 4px; height: 4px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.cursor-orbit.is-active { width: 72px; height: 72px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 900; height: var(--header-height); transition: height .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease); }
.site-header::before { content: ""; position: absolute; inset: 0; background: rgba(244,239,228,.95); opacity: 0; backdrop-filter: blur(18px); transition: opacity .45s var(--ease); }
.site-header.is-sticky { height: 82px; box-shadow: 0 1px 0 rgba(16,34,28,.12); }
.site-header.is-sticky::before { opacity: 1; }
.admin-bar .site-header { top: 32px; }
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; width: var(--shell); height: 100%; margin-inline: auto; }
.site-brand { position: relative; z-index: 4; display: flex; align-items: center; width: min(330px, 32vw); padding: 12px 18px; background: rgba(244,239,228,.9); box-shadow: 0 8px 28px rgba(0,0,0,.08); backdrop-filter: blur(12px); transition: width .45s var(--ease), padding .45s var(--ease); }
.site-header.is-sticky .site-brand { width: 280px; padding-block: 9px; background: transparent; box-shadow: none; backdrop-filter: none; }
.site-brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav__surface { display: flex; align-items: center; }
.primary-nav__eyebrow, .primary-nav__meta { display: none; }
.primary-nav .menu { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 38px); margin: 0; padding: 0; list-style: none; }
.primary-nav .menu a { position: relative; color: var(--white); font-size: .76rem; font-weight: 550; letter-spacing: .05em; }
.primary-nav .menu a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: 100% 50%; transition: transform .35s var(--ease); }
.primary-nav .menu a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.site-header.is-sticky .primary-nav .menu a { color: var(--ink); }
.nav-enquiry, .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; padding: 0 22px; border: 1px solid transparent; font-size: .76rem; font-weight: 650; letter-spacing: .035em; transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.nav-enquiry { color: var(--ink); background: var(--paper); }
.nav-enquiry i, .button i { font-style: normal; font-size: 1rem; }
.nav-enquiry:hover { color: var(--white); background: var(--clay); }
.site-header.is-sticky .nav-enquiry { color: var(--white); background: var(--forest); }
.button--paper { color: var(--ink); background: var(--paper); }
.button--paper:hover { color: var(--white); background: var(--clay); }
.button--ink { color: var(--white); background: var(--ink); }
.button--ink:hover { color: var(--ink); background: var(--acid); }
.button--forest { color: var(--white); background: var(--forest); }
.button--forest:hover { background: var(--clay); }
.menu-toggle { display: none; position: relative; z-index: 5; align-items: center; gap: 12px; padding: 10px 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle__label { color: var(--white); font-family: var(--mono); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.site-header.is-sticky .menu-toggle__label { color: var(--ink); }
.menu-toggle__lines { display: grid; gap: 6px; width: 26px; }
.menu-toggle__lines i { display: block; height: 1px; background: currentColor; transition: transform .35s var(--ease); }

.text-link { display: inline-flex; align-items: center; gap: 24px; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--forest); font-size: .76rem; font-weight: 650; letter-spacing: .035em; }
.text-link span { transition: transform .35s var(--ease); }
.text-link:hover span { transform: translate(4px,-4px); }
.text-link--light { color: var(--white); }

/* HERO */
.hero-cinematic { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: var(--forest); isolation: isolate; }
.hero-cinematic__webgl { position: absolute; inset: 0; z-index: -4; width: 100%; height: 100%; opacity: .9; }
.hero-cinematic__veil { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,30,23,.96) 0%, rgba(4,30,23,.83) 42%, rgba(4,30,23,.32) 68%, rgba(4,30,23,.1) 100%); }
.hero-cinematic__grain { position: absolute; inset: 0; z-index: 2; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-cinematic__media { position: absolute; inset: 0; z-index: -3; }
.hero-cinematic__image { position: absolute; overflow: hidden; margin: 0; }
.hero-cinematic__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transform: scale(1.06); }
.hero-cinematic__image--primary { top: 0; right: 0; width: 54vw; height: 100%; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
.hero-cinematic__image--secondary { right: 8vw; bottom: 8vh; width: min(23vw, 400px); height: min(31vw, 480px); border: 1px solid rgba(255,255,255,.32); box-shadow: 0 32px 90px rgba(0,0,0,.32); }
.hero-cinematic__image--secondary::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 12px rgba(255,255,255,.06); }
.hero-cinematic__copy { position: relative; z-index: 4; display: grid; grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr); gap: 8vw; align-items: end; min-height: 100svh; padding-top: calc(var(--header-height) + 90px); padding-bottom: 170px; }
.hero-cinematic__headline h1 { max-width: 970px; margin: 0; font-family: var(--display); font-size: clamp(4.6rem, 8.4vw, 9.2rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.hero-cinematic__headline h1 span { display: block; overflow: hidden; }
.hero-cinematic__headline h1 span:nth-child(2) { padding-left: clamp(20px, 8vw, 150px); color: var(--acid); font-style: italic; }
.hero-cinematic__intro { align-self: end; max-width: 430px; padding-bottom: 12px; }
.hero-cinematic__intro > p { margin: 0; color: rgba(255,253,247,.83); font-size: clamp(1.08rem, 1.45vw, 1.36rem); line-height: 1.55; }
.hero-cinematic__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 38px; }
.hero-cinematic__facts { position: absolute; right: 0; bottom: 0; left: 0; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); width: var(--shell); margin-inline: auto; border-top: 1px solid var(--line-light); }
.hero-cinematic__facts > div { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; min-height: 112px; padding: 18px 36px 18px 0; border-right: 1px solid var(--line-light); }
.hero-cinematic__facts > div + div { padding-left: 36px; }
.hero-cinematic__facts > div:last-child { border-right: 0; }
.hero-cinematic__facts strong { font-family: var(--display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.hero-cinematic__facts span { max-width: 190px; color: rgba(255,253,247,.68); font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.hero-cinematic__scroll { position: absolute; right: 36px; bottom: 150px; z-index: 5; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: 100% 100%; }
.hero-cinematic__scroll i { display: block; width: 52px; height: 1px; background: currentColor; animation: scrollLine 2.2s infinite var(--ease-soft); transform-origin: left; }
@keyframes scrollLine { 0%,100% { transform: scaleX(.3); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

/* EDITORIAL INTRO */
.intro-editorial { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.55fr); gap: 28px 8vw; padding-block: clamp(110px, 12vw, 190px); }
.intro-editorial__heading h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 7vw, 7.8rem); font-weight: 400; line-height: .91; letter-spacing: -.045em; }
.intro-editorial__body { align-self: end; max-width: 520px; padding-bottom: 12px; }
.intro-editorial__body > p { margin: 0 0 34px; color: var(--ink-soft); font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.55; }
.intro-editorial__image { position: relative; grid-column: 1 / 2; min-height: 720px; margin: 72px 0 0; overflow: hidden; background: var(--paper-2); }
.intro-editorial__image img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; transform: scale(1.08); transition: transform 1.6s var(--ease); }
.intro-editorial__image.is-visible img { transform: scale(1); }
.intro-editorial__image::after { content: ""; position: absolute; inset: 0; background: var(--forest); transform: translateY(0); transition: transform 1.2s var(--ease); }
.intro-editorial__image.is-visible::after { transform: translateY(-101%); }
.intro-editorial__image figcaption { position: absolute; right: 0; bottom: 0; z-index: 2; display: grid; grid-template-columns: auto 1fr; gap: 16px; max-width: 420px; padding: 24px 28px; background: var(--paper); font-size: .77rem; line-height: 1.5; }
.intro-editorial__image figcaption span { color: var(--clay); font-family: var(--mono); }
.intro-editorial__aside { align-self: center; padding: 54px 0 54px 54px; border-left: 1px solid var(--line); }
.intro-editorial__aside > p { margin: 0; font-family: var(--display); font-size: clamp(1.9rem, 2.7vw, 3rem); line-height: 1.14; }
.intro-editorial__aside ul { margin: 48px 0 0; padding: 0; list-style: none; }
.intro-editorial__aside li { padding: 15px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.intro-editorial__aside li:last-child { border-bottom: 1px solid var(--line); }

.practice-marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.practice-marquee > div, .site-footer__marquee > div { display: flex; align-items: center; gap: 28px; width: max-content; padding: 18px 0; animation: marquee 36s linear infinite; }
.practice-marquee span { font-family: var(--display); font-size: 1.25rem; }
.practice-marquee i { color: var(--clay); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* HORIZONTAL PRACTICE CINEMA */
.practice-cinema { position: relative; height: 720vh; color: var(--white); background: var(--forest); }
.practice-cinema__sticky { position: sticky; top: 0; display: flex; flex-direction: column; min-height: 100svh; overflow: hidden; padding-top: 120px; }
.practice-cinema__head { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.45fr); gap: 8vw; align-items: end; margin-bottom: 44px; }
.practice-cinema__head h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 5.8vw, 6rem); font-weight: 400; line-height: .93; letter-spacing: -.04em; }
.practice-cinema__head > p { margin: 0; color: rgba(255,253,247,.68); }
.practice-cinema__viewport { overflow: hidden; flex: 1; min-height: 440px; }
.practice-cinema__track { display: flex; gap: 22px; width: max-content; height: 100%; padding-left: max(40px, calc((100vw - min(1440px, calc(100vw - 80px))) / 2)); padding-right: 18vw; will-change: transform; }
.practice-card { position: relative; flex: 0 0 clamp(360px, 36vw, 560px); min-height: 470px; overflow: hidden; background: #173d31; }
.practice-card > a { position: absolute; inset: 0; display: block; color: var(--white); }
.practice-card__media { position: absolute; inset: 0; overflow: hidden; }
.practice-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1s var(--ease), filter .6s ease; filter: saturate(.72) contrast(1.02); }
.practice-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,21,15,.08) 0%, rgba(1,21,15,.24) 38%, rgba(1,21,15,.94) 100%); }
.practice-card__number { position: absolute; top: 24px; left: 24px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-family: var(--mono); font-size: .65rem; }
.practice-card__content { position: absolute; right: 30px; bottom: 30px; left: 30px; }
.practice-card__content h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.3rem); font-weight: 400; line-height: .92; letter-spacing: -.035em; }
.practice-card__content p { max-width: 500px; margin: 20px 0 25px; color: rgba(255,255,255,.73); }
.practice-card__content > span { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.practice-card:hover .practice-card__media img { transform: scale(1.09); filter: saturate(.95) contrast(1.05); }
.practice-card--final { display: grid; place-items: center; padding: 54px; background: var(--clay); }
.practice-card--final > div { max-width: 440px; }
.practice-card--final h3 { margin: 0 0 38px; font-family: var(--display); font-size: clamp(3rem, 4.5vw, 5rem); font-weight: 400; line-height: .94; }
.practice-cinema__progress { height: 38px; padding-top: 20px; }
.practice-cinema__progress::before { content: ""; display: block; width: 100%; height: 1px; background: rgba(255,255,255,.16); }
.practice-cinema__progress span { display: block; width: 100%; height: 2px; margin-top: -1px; background: var(--acid); transform: scaleX(0); transform-origin: left; }

/* COUNSEL */
.counsel-portrait { display: grid; grid-template-columns: minmax(360px,.78fr) minmax(0,1fr); gap: clamp(70px, 10vw, 160px); align-items: center; padding-block: clamp(120px, 14vw, 220px); }
.counsel-portrait__media { position: relative; }
.counsel-portrait__media figure { aspect-ratio: 4 / 5.2; margin: 0; overflow: hidden; background: var(--paper-2); }
.counsel-portrait__media figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.7); transform: scale(1.06); transition: transform 1.4s var(--ease); }
.counsel-portrait__media.is-visible figure img { transform: scale(1); }
.counsel-portrait__content h2 { margin: 0; font-family: var(--display); font-size: clamp(4.5rem, 7vw, 8rem); font-weight: 400; line-height: .86; letter-spacing: -.05em; }
.counsel-portrait__title { margin: 24px 0 40px; color: var(--forest-2); font-family: var(--mono); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.counsel-portrait__bio { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: clamp(1.18rem, 1.65vw, 1.5rem); }
.counsel-portrait__credentials { margin: 48px 0; border-top: 1px solid var(--line); }
.counsel-portrait__credentials > div { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.counsel-portrait__credentials span { color: var(--clay); font-family: var(--mono); font-size: .66rem; }
.counsel-portrait__credentials p { margin: 0; }
.counsel-portrait blockquote { max-width: 720px; margin: 0 0 38px; padding-left: 28px; border-left: 1px solid var(--forest); font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.8rem); line-height: 1.12; }

/* PATHWAY */
.client-pathway { position: relative; min-height: 980px; overflow: hidden; color: var(--white); background: #061f19; }
.client-pathway__media { position: absolute; inset: 0; }
.client-pathway__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,24,18,.98) 0%, rgba(3,24,18,.91) 48%, rgba(3,24,18,.3) 100%); }
.client-pathway__media img { width: 100%; height: 112%; object-fit: cover; filter: saturate(.45) contrast(1.15); }
.client-pathway__content { position: relative; display: grid; grid-template-columns: minmax(0,.72fr) minmax(420px,.8fr); gap: 9vw; align-items: center; min-height: 980px; padding-block: 130px; }
.client-pathway__heading h2 { max-width: 600px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 7vw, 7.2rem); font-weight: 400; line-height: .88; letter-spacing: -.045em; }
.client-pathway__steps { margin: 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.client-pathway__steps li { display: grid; grid-template-columns: 60px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line-light); }
.client-pathway__steps > li > span { color: var(--acid); font-family: var(--mono); font-size: .66rem; }
.client-pathway__steps h3 { margin: 0 0 8px; font-family: var(--display); font-size: 2.3rem; font-weight: 400; line-height: 1; }
.client-pathway__steps p { max-width: 540px; margin: 0; color: rgba(255,255,255,.68); }

/* PRINCIPLES */
.principles-stage { padding-block: clamp(120px, 14vw, 210px); }
.principles-stage__heading { display: grid; grid-template-columns: .4fr 1fr; gap: 8vw; align-items: start; margin-bottom: 100px; }
.principles-stage__heading h2 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 6.8vw, 7rem); font-weight: 400; line-height: .91; letter-spacing: -.045em; }
.principles-stage__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-stage__grid article { min-height: 360px; padding: 32px 38px 40px 0; }
.principles-stage__grid article + article { padding-left: 38px; border-left: 1px solid var(--line); }
.principles-stage__grid span { color: var(--clay); font-family: var(--mono); font-size: .66rem; }
.principles-stage__grid h3 { margin: 92px 0 20px; font-family: var(--display); font-size: 3.3rem; font-weight: 400; line-height: 1; }
.principles-stage__grid p { max-width: 340px; margin: 0; color: var(--ink-soft); }

/* NASSAU */
.nassau-stage { position: relative; min-height: 90svh; overflow: hidden; color: var(--white); background: var(--forest); }
.nassau-stage__media { position: absolute; inset: 0; }
.nassau-stage__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.nassau-stage__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,24,18,.08), rgba(3,24,18,.65) 65%, rgba(3,24,18,.92)); }
.nassau-stage__content { position: relative; display: grid; align-content: end; min-height: 90svh; padding-block: 120px; }
.nassau-stage__content h2 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(4.2rem, 7.5vw, 8rem); font-weight: 400; line-height: .86; letter-spacing: -.05em; }
.nassau-stage__content > div:last-child { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line-light); }
.nassau-stage__content address { font-size: 1.05rem; }

/* ENQUIRY */
.enquiry-section { padding-block: clamp(110px, 13vw, 190px); }
.enquiry-panel { display: grid; grid-template-columns: minmax(300px,.62fr) minmax(0,1fr); gap: clamp(60px, 9vw, 140px); padding: clamp(48px, 6vw, 84px); color: var(--white); background: var(--forest); box-shadow: 0 40px 100px rgba(7,62,49,.16); }
.enquiry-panel__intro h2 { max-width: 520px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 6vw, 6.8rem); font-weight: 400; line-height: .88; letter-spacing: -.045em; }
.enquiry-panel__intro > p { max-width: 520px; margin: 36px 0; color: rgba(255,255,255,.68); }
.enquiry-panel__direct { padding-top: 24px; border-top: 1px solid var(--line-light); }
.enquiry-panel__direct span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.55); font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.enquiry-panel__direct a { font-family: var(--display); font-size: 2rem; }
.enquiry-panel__form { padding: 8px 0; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.field { display: block; margin-bottom: 28px; }
.field > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.65); font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; color: var(--white); background: transparent; outline: none; transition: border-color .25s ease, background .25s ease; }
.field input, .field select { height: 58px; }
.field textarea { min-height: 145px; padding: 15px 0; resize: vertical; }
.field select option { color: var(--ink); background: var(--white); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--acid); }
.field [aria-invalid="true"] { border-color: #ff9f8a; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 14px; align-items: start; margin: 12px 0 30px; color: rgba(255,255,255,.63); font-size: .75rem; }
.consent input { margin-top: 4px; accent-color: var(--acid); }
.form-actions { display: flex; align-items: center; gap: 24px; }
.form-status { margin: 0; color: rgba(255,255,255,.68); font-size: .76rem; }
.form-trap { position: absolute; left: -9999px; }
.pf-notice { margin-bottom: 24px; padding: 14px 18px; border-left: 3px solid var(--acid); background: rgba(255,255,255,.08); }
.pf-notice--error { border-color: #ff9f8a; }

/* INSIGHTS */
.insights-section { padding-bottom: clamp(120px, 12vw, 190px); }
.insights-section__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.insights-section__head h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 6vw, 6.5rem); font-weight: 400; line-height: .9; }
.insights-list { border-top: 1px solid var(--line); }
.insights-list article { border-bottom: 1px solid var(--line); }
.insights-list a { display: grid; grid-template-columns: 150px 1fr 40px; gap: 32px; align-items: center; padding: 32px 0; }
.insights-list time { color: var(--forest-2); font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; }
.insights-list h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 400; line-height: 1; transition: color .3s ease, transform .4s var(--ease); }
.insights-list a:hover h3 { color: var(--clay); transform: translateX(12px); }

/* FOOTER */
.site-footer { color: var(--white); background: #041d17; }
.site-footer__marquee { overflow: hidden; border-bottom: 1px solid var(--line-light); }
.site-footer__marquee > div { animation-duration: 42s; }
.site-footer__marquee span { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 4rem); }
.site-footer__marquee i { color: var(--acid); font-style: normal; }
.site-footer__main { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.7fr); gap: 10vw; padding-block: 120px; }
.site-footer__statement h2 { max-width: 760px; margin: 0 0 42px; font-family: var(--display); font-size: clamp(4.2rem, 7vw, 7.4rem); font-weight: 400; line-height: .86; letter-spacing: -.05em; }
.site-footer__details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px 50px; align-content: start; padding-top: 10px; }
.site-footer__details > div, .site-footer__details nav { display: flex; flex-direction: column; }
.site-footer__details > div > span, .site-footer__details nav > span { margin-bottom: 18px; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__details a, .site-footer__details address { color: rgba(255,255,255,.78); }
.site-footer__details .menu { margin: 0; padding: 0; list-style: none; }
.site-footer__details li + li { margin-top: 7px; }
.site-footer__base { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: end; padding-block: 34px; border-top: 1px solid var(--line-light); }
.site-footer__logo { width: 260px; filter: brightness(0) invert(1); opacity: .72; }
.site-footer__base p { margin: 0; color: rgba(255,255,255,.45); font-size: .64rem; }

/* INNER PAGE HEROES */
.page-hero, .practice-hero { position: relative; min-height: 80svh; overflow: hidden; color: var(--white); background: var(--forest); }
.page-hero::before, .practice-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--page-image, url('../images/editorial/office.webp')); background-position: center; background-size: cover; filter: saturate(.65); transform: scale(1.05); }
.page-hero::after, .practice-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,30,23,.96), rgba(4,30,23,.58) 65%, rgba(4,30,23,.22)); }
.page-hero--about { --page-image: url('../images/editorial/hero-alt.webp'); }
.page-hero--practice { --page-image: url('../images/editorial/practice-litigation.webp'); }
.page-hero--contact { --page-image: url('../images/editorial/location.webp'); }
.page-hero__inner, .practice-hero__inner { position: relative; z-index: 2; display: grid; align-content: end; min-height: 80svh; padding-top: calc(var(--header-height) + 80px); padding-bottom: 100px; }
.page-hero h1, .practice-hero h1 { max-width: 1120px; margin: 0; font-family: var(--display); font-size: clamp(4.6rem, 8vw, 9rem); font-weight: 400; line-height: .84; letter-spacing: -.055em; }
.page-hero p, .practice-hero p { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.76); font-size: 1.16rem; }
.practice-hero .back-link { margin-bottom: 34px; color: var(--acid); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

.about-story { display: grid; grid-template-columns: .65fr 1fr; gap: 10vw; padding-block: 140px; }
.about-story__lead p { margin: 0; font-family: var(--display); font-size: clamp(2.3rem, 4vw, 4.4rem); line-height: 1.03; }
.about-story__body h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(3.6rem, 5.8vw, 6rem); font-weight: 400; line-height: .91; }
.about-story__body p { color: var(--ink-soft); font-size: 1.08rem; }
.credentials { display: grid; grid-template-columns: .72fr 1fr; gap: 10vw; padding-bottom: 150px; }
.credentials__name h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 6vw, 6.5rem); font-weight: 400; line-height: .9; }
.credentials__name p { color: var(--forest-2); font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.credentials__list { border-top: 1px solid var(--line); }
.credentials__list > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.credentials__list span { color: var(--clay); font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; }
.credentials__list p { margin: 8px 0 0; font-family: var(--display); font-size: 1.9rem; line-height: 1.12; }
.mission-band { padding-block: 130px; color: var(--white); background: var(--forest); }
.mission-band h2 { max-width: 1100px; margin: 0; font-family: var(--display); font-size: clamp(3.8rem, 6.8vw, 7rem); font-weight: 400; line-height: .9; }
.mission-band p { margin: 34px 0 0; color: var(--acid); font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }

.practice-archive { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-block: 120px 160px; }
.practice-archive__item { position: relative; min-height: 560px; overflow: hidden; background: var(--forest); }
.practice-archive__item a { position: absolute; inset: 0; display: grid; align-content: end; padding: 34px; color: var(--white); background: linear-gradient(180deg, transparent 20%, rgba(3,24,18,.9)); }
.practice-archive__item a::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--practice-image); background-position: center; background-size: cover; transition: transform 1s var(--ease); }
.practice-archive__item:hover a::before { transform: scale(1.07); }
.practice-archive__item > a > span { position: absolute; top: 28px; left: 28px; font-family: var(--mono); font-size: .66rem; }
.practice-archive__item h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 400; line-height: .9; }
.practice-archive__item p { max-width: 580px; margin: 20px 0 0; color: rgba(255,255,255,.72); }
.practice-archive__item i { position: absolute; right: 30px; bottom: 30px; font-style: normal; font-size: 1.3rem; }

.practice-content { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 9vw; padding-block: 130px; }
.practice-content__aside { position: sticky; top: 120px; align-self: start; padding: 28px; color: var(--white); background: var(--forest); }
.practice-content__aside p { margin-top: 0; color: rgba(255,255,255,.68); }
.practice-content__aside .button { margin-top: 24px; }
.entry-content { max-width: 820px; font-size: 1.08rem; }
.entry-content > * + * { margin-top: 1.5em; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2em; margin-bottom: .7em; font-family: var(--display); font-weight: 400; line-height: 1.02; }
.entry-content h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.entry-content h3 { font-size: clamp(2.2rem, 3.5vw, 3.8rem); }
.entry-content p, .entry-content li { color: var(--ink-soft); }
.entry-content a { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.entry-content blockquote { margin: 2.4em 0; padding-left: 30px; border-left: 1px solid var(--forest); font-family: var(--display); font-size: 2rem; }

.contact-ledger { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 100px; }
.contact-ledger > div { min-height: 230px; padding: 28px; }
.contact-ledger > div + div { border-left: 1px solid var(--line); }
.contact-ledger span { display: block; margin-bottom: 50px; color: var(--clay); font-family: var(--mono); font-size: .64rem; letter-spacing: .07em; text-transform: uppercase; }
.contact-ledger a, .contact-ledger address, .contact-ledger p { display: block; margin: 0; font-family: var(--display); font-size: 1.65rem; line-height: 1.15; }

.simple-page-header { padding-top: calc(var(--header-height) + 110px); padding-bottom: 90px; color: var(--white); background: var(--forest); }
.simple-page-header h1 { max-width: 1100px; margin: 0; font-family: var(--display); font-size: clamp(4.5rem, 8vw, 8.5rem); font-weight: 400; line-height: .86; }
.simple-page-content { padding-block: 120px 160px; }
.journal { padding-block: 110px 160px; }
.journal__item { border-bottom: 1px solid var(--line); }
.journal__item:first-child { border-top: 1px solid var(--line); }
.journal__item a { display: grid; grid-template-columns: 140px 1fr 40px; gap: 36px; align-items: start; padding: 42px 0; }
.journal__item time, .journal__item > a > span { color: var(--forest); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.journal__item h2 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(2.4rem, 4vw, 4.2rem); font-weight: 400; line-height: .96; }
.journal__item p { max-width: 800px; margin: 0; color: var(--ink-soft); }
.journal__item i { justify-self: end; font-style: normal; }
.navigation.pagination { margin-top: 50px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; border: 1px solid var(--line); }
.page-numbers.current { color: var(--white); background: var(--forest); }
.article__header { padding-top: calc(var(--header-height) + 100px); padding-bottom: 90px; background: var(--paper); }
.article__header time { display: block; margin: 60px 0 22px; color: var(--forest); font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.article__header h1 { max-width: 1120px; margin: 0; font-family: var(--display); font-size: clamp(4.4rem, 8vw, 8.5rem); font-weight: 400; line-height: .87; letter-spacing: -.05em; }
.article__header > p { max-width: 760px; margin: 34px 0 0; color: var(--ink-soft); font-size: 1.18rem; }
.article__image { margin-bottom: 100px; }
.article__image img { width: 100%; max-height: 760px; object-fit: cover; }
.article__content { padding-bottom: 110px; }
.article__notice { max-width: 760px; padding: 28px 0; border-block: 1px solid var(--line); color: var(--ink-soft); font-size: .78rem; }
.search-form { display: flex; max-width: 680px; margin-top: 40px; }
.search-form label { flex: 1; }
.search-form input { width: 100%; height: 56px; padding: 0 16px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.search-form button { min-width: 120px; border: 0; color: var(--white); background: var(--forest); cursor: pointer; }
.not-found { display: grid; min-height: 100svh; padding-top: var(--header-height); background: var(--paper); }
.not-found__inner { align-self: center; padding-block: 90px; }
.not-found__inner > p:first-child { color: var(--emerald); font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; }
.not-found h1 { max-width: 900px; margin: 20px 0; font-family: var(--display); font-size: clamp(4.5rem, 9vw, 9rem); font-weight: 400; line-height: .84; }
.not-found__inner > p:not(:first-child) { max-width: 620px; color: var(--ink-soft); }
.not-found__inner > div { display: flex; align-items: center; gap: 30px; margin-top: 40px; }

/* REVEALS */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(34px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-hero-copy] { opacity: 0; transform: translateY(30px); }
.js.is-ready [data-hero-copy] { opacity: 1; transform: none; transition: opacity 1.15s var(--ease), transform 1.15s var(--ease); }
.js.is-ready [data-hero-copy]:nth-child(2) { transition-delay: .18s; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1440px); }
  .primary-nav .menu { gap: 18px; }
  .hero-cinematic__copy { grid-template-columns: 1.25fr .55fr; gap: 5vw; }
  .hero-cinematic__headline h1 { font-size: clamp(4.4rem, 8vw, 7.8rem); }
  .hero-cinematic__image--primary { width: 58vw; }
  .intro-editorial { grid-template-columns: 1fr .55fr; gap: 42px 6vw; }
  .counsel-portrait { grid-template-columns: .74fr 1fr; gap: 8vw; }
  .site-footer__main { gap: 7vw; }
}

@media (max-width: 980px) {
  :root { --shell: calc(100% - 40px); --header-height: 84px; }
  .admin-bar .site-header { top: 46px; }
  .cursor-orbit { display: none; }
  .site-brand { width: min(300px, 68vw); padding: 10px 14px; }
  .site-header.is-sticky .site-brand { width: min(280px, 66vw); }
  .menu-toggle { display: inline-flex; color: var(--white); }
  .site-header.is-sticky .menu-toggle { color: var(--ink); }
  .primary-nav { position: fixed; inset: 0; z-index: 3; display: grid; grid-template-columns: 1fr; align-content: space-between; gap: 20px; padding: 120px 28px 34px; color: var(--white); background: var(--forest); visibility: hidden; opacity: 0; transform: translateY(-16px); transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav__surface { display: block; }
  .primary-nav__eyebrow { display: block; margin-bottom: 38px; color: var(--acid); font-family: var(--mono); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
  .primary-nav .menu { display: block; }
  .primary-nav .menu li { border-bottom: 1px solid var(--line-light); }
  .primary-nav .menu a, .site-header.is-sticky .primary-nav .menu a { display: block; padding: 17px 0; color: var(--white); font-family: var(--display); font-size: clamp(2.4rem, 8vw, 4rem); font-weight: 400; line-height: 1; }
  .primary-nav__meta { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; color: rgba(255,255,255,.62); font-size: .78rem; }
  .nav-enquiry { width: 100%; min-height: 62px; }
  .site-header.menu-active .site-brand { background: var(--paper); }
  .site-header.menu-active .menu-toggle { color: var(--white); }
  .site-header.menu-active .menu-toggle__lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-active .menu-toggle__lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero-cinematic { min-height: 1050px; }
  .hero-cinematic__veil { background: linear-gradient(180deg, rgba(4,30,23,.94) 0%, rgba(4,30,23,.78) 58%, rgba(4,30,23,.4)); }
  .hero-cinematic__image--primary { top: auto; right: 0; bottom: 0; width: 100%; height: 54%; clip-path: none; }
  .hero-cinematic__image--secondary { right: 20px; bottom: 150px; width: 210px; height: 280px; }
  .hero-cinematic__copy { display: block; min-height: 920px; padding-top: 170px; padding-bottom: 320px; }
  .hero-cinematic__headline h1 { max-width: 820px; font-size: clamp(4rem, 12vw, 7rem); }
  .hero-cinematic__headline h1 span:nth-child(2) { padding-left: 0; }
  .hero-cinematic__intro { margin-top: 42px; }
  .hero-cinematic__facts { grid-template-columns: 1fr; bottom: 0; }
  .hero-cinematic__facts > div { grid-template-columns: 60px 1fr; min-height: 70px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .hero-cinematic__facts > div + div { padding-left: 0; }
  .hero-cinematic__facts strong { font-size: 1.7rem; }
  .hero-cinematic__scroll { display: none; }

  .intro-editorial { display: block; padding-block: 110px; }
  .intro-editorial__body { margin-top: 36px; }
  .intro-editorial__image { min-height: 580px; margin-top: 70px; }
  .intro-editorial__image img { min-height: 580px; }
  .intro-editorial__aside { margin-top: 48px; padding: 38px 0 0; border-top: 1px solid var(--line); border-left: 0; }

  .practice-cinema { height: auto; }
  .practice-cinema__sticky { position: relative; min-height: auto; padding-block: 110px; }
  .practice-cinema__head { grid-template-columns: 1fr; gap: 28px; }
  .practice-cinema__viewport { overflow: visible; }
  .practice-cinema__track { display: grid; grid-template-columns: repeat(2, 1fr); width: var(--shell); height: auto; margin-inline: auto; padding: 0; transform: none !important; }
  .practice-card { min-width: 0; min-height: 520px; }
  .practice-card--final { min-height: 520px; }
  .practice-cinema__progress { display: none; }

  .counsel-portrait { grid-template-columns: 1fr; }
  .counsel-portrait__media { width: min(720px, 90%); }
  .counsel-portrait__caption { right: -30px; }
  .client-pathway { min-height: auto; }
  .client-pathway__content { grid-template-columns: 1fr; min-height: auto; padding-block: 110px; }
  .principles-stage__heading { grid-template-columns: 1fr; }
  .principles-stage__grid { grid-template-columns: 1fr; }
  .principles-stage__grid article { min-height: 260px; padding: 30px 0; }
  .principles-stage__grid article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .principles-stage__grid h3 { margin-top: 54px; }
  .enquiry-panel { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__base { grid-template-columns: 1fr; align-items: start; }
  .site-footer__base p { max-width: 440px; }
  .practice-archive { grid-template-columns: 1fr; }
  .practice-content { grid-template-columns: 1fr; }
  .practice-content__aside { position: static; }
  .contact-ledger { grid-template-columns: repeat(2, 1fr); }
  .contact-ledger > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .contact-ledger > div:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --header-height: 76px; }
  body { font-size: 15px; }
  .site-brand { width: min(270px, 72vw); padding: 8px 10px; }
  .site-header.is-sticky .site-brand { width: min(250px, 70vw); }
  .menu-toggle__label { display: none; }
  .hero-cinematic { min-height: 980px; }
  .hero-cinematic__copy { min-height: 830px; padding-top: 145px; padding-bottom: 290px; }
  .hero-cinematic__headline h1 { font-size: clamp(3.65rem, 17vw, 5.6rem); line-height: .84; }
  .hero-cinematic__image--primary { height: 48%; }
  .hero-cinematic__image--secondary { display: none; }
  .hero-cinematic__intro > p { font-size: 1rem; }
  .hero-cinematic__actions { align-items: stretch; }
  .hero-cinematic__actions .button { width: 100%; }
  .hero-cinematic__facts > div { grid-template-columns: 50px 1fr; }
  .intro-editorial__heading h2, .principles-stage__heading h2, .nassau-stage__content h2, .site-footer__statement h2 { font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .intro-editorial__image, .intro-editorial__image img { min-height: 460px; }
  .intro-editorial__image figcaption { right: 10px; bottom: 10px; left: 10px; max-width: none; }
  .practice-cinema__sticky { padding-block: 90px; }
  .practice-cinema__head h2 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
  .practice-cinema__track { grid-template-columns: 1fr; }
  .practice-card, .practice-card--final { min-height: 500px; }
  .practice-card__content h3 { font-size: clamp(3rem, 13vw, 4.3rem); }
  .counsel-portrait { padding-block: 100px; }
  .counsel-portrait__media { width: 100%; }
  .counsel-portrait__caption { position: static; width: 100%; }
  .counsel-portrait__content h2 { font-size: clamp(4rem, 17vw, 6rem); }
  .counsel-portrait__credentials > div { grid-template-columns: 42px 1fr; }
  .client-pathway__content { padding-block: 90px; }
  .client-pathway__heading h2 { font-size: clamp(3.8rem, 16vw, 5.4rem); }
  .client-pathway__steps li { grid-template-columns: 38px 1fr; gap: 16px; }
  .client-pathway__steps h3 { font-size: 1.9rem; }
  .nassau-stage, .nassau-stage__content { min-height: 760px; }
  .nassau-stage__content { padding-block: 80px; }
  .nassau-stage__content > div:last-child { display: block; }
  .nassau-stage__content .text-link { margin-top: 28px; }
  .enquiry-section { width: 100%; padding-block: 0; }
  .enquiry-panel { gap: 54px; padding: 82px 20px; }
  .enquiry-panel__intro h2 { font-size: clamp(3.7rem, 17vw, 5.4rem); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .insights-section { padding-top: 100px; }
  .insights-section__head { align-items: start; flex-direction: column; }
  .insights-list a { grid-template-columns: 1fr 24px; gap: 18px; }
  .insights-list time { grid-column: 1 / -1; }
  .site-footer__details { grid-template-columns: 1fr; }
  .site-footer__main { padding-block: 90px; }
  .site-footer__logo { width: 230px; }
  .page-hero, .page-hero__inner, .practice-hero, .practice-hero__inner { min-height: 720px; }
  .page-hero__inner, .practice-hero__inner { padding-bottom: 70px; }
  .page-hero h1, .practice-hero h1 { font-size: clamp(4rem, 17vw, 6rem); }
  .about-story, .credentials { grid-template-columns: 1fr; gap: 60px; padding-block: 90px; }
  .credentials { padding-top: 0; }
  .mission-band { padding-block: 90px; }
  .practice-archive { padding-block: 80px 110px; }
  .practice-archive__item { min-height: 500px; }
  .practice-content { padding-block: 90px; }
  .contact-ledger { grid-template-columns: 1fr; margin-top: 70px; }
  .contact-ledger > div + div, .contact-ledger > div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .contact-ledger > div { min-height: 190px; }
  .simple-page-header { padding-top: calc(var(--header-height) + 90px); }
  .journal__item a { grid-template-columns: 1fr 24px; }
  .journal__item time { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-orbit, .hero-cinematic__webgl { display: none; }
  .practice-cinema { height: auto; }
  .practice-cinema__sticky { position: relative; }
  .practice-cinema__track { transform: none !important; }
}

/* Additional editorial layouts */
.about-gallery { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.72fr); grid-template-rows: auto auto; gap: 26px 5vw; padding-block: 130px 40px; }
.about-gallery figure { margin: 0; overflow: hidden; background: var(--paper-2); }
.about-gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery__large { grid-row: 1 / 3; min-height: 780px; }
.about-gallery__large img { min-height: 780px; }
.about-gallery__statement { align-self: end; padding: 20px 0 42px; }
.about-gallery__statement h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(3.6rem, 5.7vw, 6rem); font-weight: 400; line-height: .91; }
.about-gallery__statement > p:last-child { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.about-gallery__small { min-height: 360px; }
.about-gallery__small img { min-height: 360px; }
.contact-visual { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.65fr); gap: 7vw; align-items: end; padding-block: 100px 0; }
.contact-visual figure { min-height: 600px; margin: 0; overflow: hidden; background: var(--paper-2); }
.contact-visual figure img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.contact-visual h2 { margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 5.8vw, 6.3rem); font-weight: 400; line-height: .9; }
.image-load-failed { background: linear-gradient(135deg, var(--forest), #1b7357); }
.image-load-failed img { opacity: 0; }

@media (max-width: 980px) {
  .about-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-gallery__large { grid-row: auto; min-height: 620px; }
  .about-gallery__large img { min-height: 620px; }
  .contact-visual { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-gallery { padding-block: 90px 0; }
  .about-gallery__large, .about-gallery__large img { min-height: 520px; }
  .about-gallery__small, .about-gallery__small img { min-height: 300px; }
  .contact-visual { padding-top: 70px; }
  .contact-visual figure, .contact-visual figure img { min-height: 440px; }
}

/* ========================================================================
   V4 — REFINED CINEMATIC SYSTEM
   ======================================================================== */

/* Header: white mark over transparent/dark heroes, brand-colour mark once solid. */
.cursor-orbit { display: none !important; }
.site-header { height: 98px; }
.site-header::before { background: rgba(250, 247, 239, .94); backdrop-filter: blur(20px) saturate(1.05); }
.site-header.is-sticky { height: 78px; }
.site-header__inner { width: min(1540px, calc(100vw - 72px)); }
.site-brand,
.site-header.is-sticky .site-brand {
  position: relative;
  width: min(310px, 28vw);
  height: 68px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-brand__logo {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.site-brand__logo--light { opacity: 0; }
.site-brand__logo--color { opacity: 1; }
.has-dark-hero .site-header:not(.is-sticky) .site-brand__logo--light,
.site-header.menu-active .site-brand__logo--light { opacity: 1; }
.has-dark-hero .site-header:not(.is-sticky) .site-brand__logo--color,
.site-header.menu-active .site-brand__logo--color { opacity: 0; }
.site-header.is-sticky .site-brand__logo--light { opacity: 0; }
.site-header.is-sticky .site-brand__logo--color { opacity: 1; }
.site-header.is-sticky .site-brand__logo { transform: translateY(-50%) scale(.92); transform-origin: left center; }
body:not(.has-dark-hero) .site-header:not(.is-sticky) .primary-nav .menu a,
body:not(.has-dark-hero) .site-header:not(.is-sticky) .menu-toggle__label { color: var(--ink); }
.primary-nav .menu a { font-size: .73rem; font-weight: 620; letter-spacing: .075em; text-transform: uppercase; }
.nav-enquiry { min-height: 48px; padding-inline: 19px; background: rgba(255,253,247,.92); }
.site-header.is-sticky .nav-enquiry { min-height: 46px; }

/* Homepage film hero. */
.hero-film {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #05291f;
  isolation: isolate;
}
.hero-film__media,
.hero-film__poster,
.hero-film__video,
.hero-film__shade,
.hero-film__grain { position: absolute; inset: 0; }
.hero-film__media { z-index: -4; overflow: hidden; background: #05291f; }
.hero-film__poster { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.7) contrast(1.08); transform: scale(1.035); transition: opacity 1.2s ease, transform 8s ease; }
.hero-film__media.is-video-ready .hero-film__poster { opacity: .38; transform: scale(1.08); }
.hero-film__video {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.02);
  transition: opacity 1.2s ease;
}
.hero-film__media.is-video-ready .hero-film__video { opacity: 1; }
.hero-film__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(4, 30, 23, .1), rgba(4, 30, 23, .54) 62%, rgba(4, 30, 23, .78) 100%),
    linear-gradient(180deg, rgba(3,22,17,.42) 0%, rgba(3,22,17,.12) 40%, rgba(3,22,17,.78) 100%);
}
.hero-film__grain { z-index: 1; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-film__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  max-width: 1260px;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 170px;
  text-align: center;
}
.hero-film__content .eyebrow { margin-bottom: 28px; }
.hero-film h1 {
  max-width: 1180px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.3vw, 9.1rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.052em;
  text-wrap: balance;
  text-shadow: 0 12px 50px rgba(0,0,0,.18);
}
.hero-film__lead { max-width: 760px; margin: 34px auto 0; color: rgba(255,253,247,.82); font-size: clamp(1.05rem, 1.45vw, 1.32rem); line-height: 1.6; text-wrap: balance; }
.hero-film__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; margin-top: 42px; }
.hero-film__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-film__rail > div { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 18px; align-items: center; min-height: 112px; padding: 18px 34px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-film__rail > div:first-child { padding-left: 0; }
.hero-film__rail > div:last-child { border-right: 0; padding-right: 0; }
.hero-film__rail strong { font-family: var(--display); font-size: 2.1rem; font-weight: 400; line-height: 1; }
.hero-film__rail span { max-width: 230px; color: rgba(255,255,255,.66); font-family: var(--mono); font-size: .61rem; letter-spacing: .065em; line-height: 1.5; text-transform: uppercase; }
.hero-film__scroll { position: absolute; right: 28px; bottom: 140px; z-index: 4; display: grid; place-items: center; width: 42px; height: 72px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; }
.hero-film__scroll span { width: 3px; height: 3px; border-radius: 50%; background: #fff; animation: heroScroll 2s infinite var(--ease); }
@keyframes heroScroll { 0% { transform: translateY(-14px); opacity: 0; } 30% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
.js [data-hero-copy] { opacity: 0; transform: translateY(36px); }
body.is-ready [data-hero-copy] { opacity: 1; transform: none; transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }

/* Seamless marquees: two identical groups, no empty travel. */
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; will-change: transform; animation: marqueeSeamless 34s linear infinite; }
.marquee__group { display: flex; flex: none; align-items: center; gap: 28px; padding: 18px 28px 18px 0; }
.practice-marquee > div,
.site-footer__marquee > div { gap: 0; padding: 0; }
.practice-marquee .marquee__group span { font-family: var(--display); font-size: 1.25rem; }
.practice-marquee .marquee__group i { color: var(--clay); font-style: normal; }
.site-footer__marquee .marquee__track { animation-duration: 40s; }
.site-footer__marquee .marquee__group { padding-block: 24px; }
.site-footer__marquee .marquee__group span { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 4rem); }
.site-footer__marquee .marquee__group i { color: var(--acid); font-style: normal; }
@keyframes marqueeSeamless { to { transform: translateX(-50%); } }

/* Horizontal practice section is measured by JS so vertical and horizontal travel end together. */
.practice-cinema { height: calc(100vh + 5200px); }
.practice-cinema__sticky { height: 100svh; min-height: 720px; padding-top: clamp(100px, 11vh, 126px); }
.practice-cinema__head { margin-bottom: clamp(28px, 4vh, 46px); }
.practice-cinema__viewport { flex: 1; min-height: 0; max-height: 58svh; }
.practice-cinema__track { height: 100%; padding-left: max(40px, calc((100vw - min(1440px, calc(100vw - 80px))) / 2)); padding-right: 12vw; }
.practice-card { min-height: 0; height: 100%; isolation: isolate; background: #0a392d; }
.practice-card__media { z-index: -2; }
.practice-card__media img { filter: saturate(.82) contrast(1.04); }
.practice-card__overlay { z-index: -1; background: linear-gradient(180deg, rgba(1,21,15,.02) 0%, rgba(1,21,15,.18) 42%, rgba(1,21,15,.9) 100%); transition: background .55s ease; }
.practice-card:hover .practice-card__overlay { background: linear-gradient(180deg, rgba(1,21,15,0) 0%, rgba(1,21,15,.1) 38%, rgba(1,21,15,.78) 100%); }
.practice-card__number,
.practice-card__content { z-index: 2; }
.practice-card__content p { font-size: .94rem; }

/* Practice archive: actual image layers replace the broken negative-z pseudo layer. */
.practice-archive-intro { display: grid; grid-template-columns: .35fr 1fr; gap: 9vw; padding-top: 120px; }
.practice-archive-intro h2 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 6vw, 6.2rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.practice-archive-intro div > p { max-width: 760px; color: var(--ink-soft); font-size: 1.08rem; }
.practice-archive { padding-top: 90px; }
.practice-archive__item { isolation: isolate; background: #0b4334; }
.practice-archive__item a { z-index: 1; display: block; padding: 0; background: transparent; }
.practice-archive__media,
.practice-archive__shade { position: absolute; inset: 0; margin: 0; }
.practice-archive__media { z-index: -2; overflow: hidden; }
.practice-archive__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transform: scale(1.015); transition: transform 1s var(--ease), filter .65s ease; }
.practice-archive__shade { z-index: -1; background: linear-gradient(180deg, rgba(3,24,18,.05) 12%, rgba(3,24,18,.22) 48%, rgba(3,24,18,.94) 100%); transition: background .5s ease; }
.practice-archive__number { position: absolute; top: 28px; left: 28px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-family: var(--mono); font-size: .64rem; }
.practice-archive__copy { position: absolute; right: 34px; bottom: 34px; left: 34px; }
.practice-archive__copy h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 400; line-height: .9; }
.practice-archive__copy p { max-width: 580px; margin: 20px 0 24px; color: rgba(255,255,255,.76); }
.practice-archive__copy > span { font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.practice-archive__item:hover .practice-archive__media img { transform: scale(1.075); filter: saturate(1) contrast(1.04); }
.practice-archive__item:hover .practice-archive__shade { background: linear-gradient(180deg, rgba(3,24,18,0) 12%, rgba(3,24,18,.14) 48%, rgba(3,24,18,.82) 100%); }
.practice-crossing { display: flex; justify-content: space-between; gap: 80px; align-items: end; padding-bottom: 140px; }
.practice-crossing h2 { max-width: 960px; margin: 0; font-family: var(--display); font-size: clamp(3.3rem, 5.5vw, 5.9rem); font-weight: 400; line-height: .93; }
.practice-crossing .button { flex: 0 0 auto; }

/* Long-form practice pages. */
.practice-content { grid-template-columns: minmax(0, 1fr) 360px; }
.practice-content__article { max-width: 900px; }
.practice-content__aside { padding: 34px; box-shadow: 0 30px 80px rgba(4,30,23,.14); }
.practice-content__aside ul { margin: 28px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.practice-content__aside li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }
.practice-content__aside small { display: block; margin-top: 24px; color: rgba(255,255,255,.5); font-size: .68rem; line-height: 1.55; }
.matter-path { padding-bottom: 150px; }
.matter-path__head { display: grid; grid-template-columns: .34fr 1fr; gap: 9vw; margin-bottom: 75px; }
.matter-path__head h2 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 6vw, 6.2rem); font-weight: 400; line-height: .92; }
.matter-path__steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-block: 1px solid var(--line); list-style: none; }
.matter-path__steps li { min-height: 340px; padding: 30px 34px 40px 0; }
.matter-path__steps li + li { padding-left: 34px; border-left: 1px solid var(--line); }
.matter-path__steps span { color: var(--clay); font-family: var(--mono); font-size: .64rem; }
.matter-path__steps h3 { margin: 90px 0 18px; font-family: var(--display); font-size: 2.65rem; font-weight: 400; line-height: 1; }
.matter-path__steps p { max-width: 360px; margin: 0; color: var(--ink-soft); }
.related-practices { padding-bottom: 150px; }
.related-practices__head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 60px; }
.related-practices__head h2 { max-width: 920px; margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 5.6vw, 5.8rem); font-weight: 400; line-height: .93; }
.related-practices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-practices__grid article { background: var(--paper); }
.related-practices__grid a { display: block; }
.related-practices__grid figure { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; }
.related-practices__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.related-practices__grid article:hover img { transform: scale(1.06); }
.related-practices__grid article div { padding: 26px; }
.related-practices__grid h3 { margin: 0; font-family: var(--display); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.related-practices__grid p { color: var(--ink-soft); }
.related-practices__grid div > span { color: var(--forest); font-family: var(--mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; }

/* Homepage insight cards. */
.insights-showcase { padding-block: clamp(120px, 13vw, 190px); }
.insights-showcase__head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 70px; }
.insights-showcase__head h2 { max-width: 920px; margin: 0; font-family: var(--display); font-size: clamp(3.8rem, 6vw, 6.2rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.insights-showcase__grid,
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card figure,
.journal-card figure { aspect-ratio: 4 / 3; margin: 0 0 24px; overflow: hidden; background: var(--paper-2); }
.insight-card img,
.journal-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .8s var(--ease), filter .5s ease; }
.insight-card:hover img,
.journal-card:hover img { transform: scale(1.055); filter: saturate(1); }
.insight-card__meta,
.journal-card__meta { display: flex; justify-content: space-between; gap: 18px; color: var(--forest); font-family: var(--mono); font-size: .58rem; letter-spacing: .075em; text-transform: uppercase; }
.insight-card h3,
.journal-card h2,
.journal-card h3 { margin: 22px 0 14px; font-family: var(--display); font-size: clamp(2.2rem, 3vw, 3.35rem); font-weight: 400; line-height: .96; letter-spacing: -.025em; }
.insight-card p,
.journal-card p { margin: 0; color: var(--ink-soft); }
.insight-card__link,
.journal-card__link { display: inline-block; margin-top: 25px; padding-bottom: 6px; border-bottom: 1px solid currentColor; color: var(--forest); font-family: var(--mono); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }

/* Full insights archive. */
.journal-hero,
.article-hero { position: relative; overflow: hidden; color: var(--white); background: var(--forest); isolation: isolate; }
.journal-hero { min-height: 74svh; }
.journal-hero::before,
.article-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--page-image); background-position: center; background-size: cover; filter: saturate(.62) contrast(1.03); transform: scale(1.04); }
.journal-hero::after,
.article-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,25,19,.95), rgba(3,25,19,.62) 62%, rgba(3,25,19,.26)); }
.journal-hero__inner { display: grid; align-content: end; min-height: 74svh; padding-top: calc(var(--header-height) + 70px); padding-bottom: 90px; }
.journal-hero h1 { max-width: 1100px; margin: 0; font-family: var(--display); font-size: clamp(4.7rem, 8vw, 8.6rem); font-weight: 400; line-height: .86; letter-spacing: -.052em; }
.journal-hero p:last-child { max-width: 760px; margin: 32px 0 0; color: rgba(255,255,255,.76); font-size: 1.12rem; }
.journal-editorial { padding-block: 120px 150px; }
.journal-feature { margin-bottom: 100px; }
.journal-feature > a { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.68fr); gap: 7vw; align-items: center; }
.journal-feature figure { min-height: 650px; margin: 0; overflow: hidden; background: var(--paper-2); }
.journal-feature figure img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; filter: saturate(.75); transition: transform 1s var(--ease), filter .5s ease; }
.journal-feature:hover figure img { transform: scale(1.045); filter: saturate(1); }
.journal-feature__copy h2 { margin: 24px 0; font-family: var(--display); font-size: clamp(3.8rem, 5.9vw, 6.2rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.journal-feature__copy > p { color: var(--ink-soft); font-size: 1.08rem; }
.journal-pagination { margin-top: 70px; }
.insight-disclaimer { display: grid; grid-template-columns: 180px 1fr; gap: 50px; padding-block: 34px; border-block: 1px solid var(--line); margin-bottom: 140px; }
.insight-disclaimer span { color: var(--clay); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.insight-disclaimer p { max-width: 850px; margin: 0; color: var(--ink-soft); }
.empty-state { padding-block: 140px; }
.empty-state h2 { margin: 0; font-family: var(--display); font-size: 5rem; font-weight: 400; }

/* Single insight article. */
.article-hero { min-height: 86svh; }
.article-hero::after { background: linear-gradient(90deg, rgba(3,25,19,.96), rgba(3,25,19,.68) 62%, rgba(3,25,19,.32)); }
.article-hero__inner { display: grid; align-content: end; min-height: 86svh; padding-top: calc(var(--header-height) + 70px); padding-bottom: 90px; }
.back-link--light { color: rgba(255,255,255,.8); }
.article-hero__meta { display: flex; gap: 30px; margin: 55px 0 22px; color: var(--acid); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.article-hero h1 { max-width: 1180px; margin: 0; font-family: var(--display); font-size: clamp(4.5rem, 8vw, 8.8rem); font-weight: 400; line-height: .86; letter-spacing: -.052em; }
.article-hero p { max-width: 780px; margin: 32px 0 0; color: rgba(255,255,255,.78); font-size: 1.15rem; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 820px); gap: 9vw; align-items: start; justify-content: center; padding-block: 130px 110px; }
.article-sidebar { position: sticky; top: 120px; }
.article-sidebar > div { padding: 18px 0; border-top: 1px solid var(--line); }
.article-sidebar > div:last-of-type { border-bottom: 1px solid var(--line); }
.article-sidebar span { color: var(--clay); font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.article-sidebar p { margin: 7px 0 0; color: var(--ink-soft); font-size: .82rem; }
.article-sidebar .text-link { margin-top: 32px; }
.article-modern__content { max-width: 820px; font-size: 1.1rem; }
.article-modern__content > p:first-child { color: var(--ink); font-family: var(--display); font-size: clamp(1.8rem, 2.5vw, 2.6rem); line-height: 1.2; }
.article-modern__notice { display: grid; grid-template-columns: 190px 1fr; gap: 50px; padding-block: 30px; border-block: 1px solid var(--line); }
.article-modern__notice span { color: var(--clay); font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.article-modern__notice p { max-width: 780px; margin: 0; color: var(--ink-soft); font-size: .8rem; }
.related-insights { padding-block: 140px; }
.related-insights__head { margin-bottom: 60px; }
.related-insights__head h2 { margin: 0; font-family: var(--display); font-size: clamp(3.8rem, 6vw, 6rem); font-weight: 400; line-height: .92; }

/* About and contact page depth. */
.about-pillars { padding-bottom: 150px; }
.about-pillars__head { display: grid; grid-template-columns: .34fr 1fr; gap: 9vw; margin-bottom: 70px; }
.about-pillars__head h2 { max-width: 980px; margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 5.8vw, 6rem); font-weight: 400; line-height: .92; }
.about-pillars__grid,
.contact-preparation__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.about-pillars__grid article,
.contact-preparation__grid article { min-height: 310px; padding: 30px 42px 40px 0; border-bottom: 1px solid var(--line); }
.about-pillars__grid article:nth-child(even),
.contact-preparation__grid article:nth-child(even) { padding-left: 42px; border-left: 1px solid var(--line); }
.about-pillars__grid span,
.contact-preparation__grid span { color: var(--clay); font-family: var(--mono); font-size: .62rem; }
.about-pillars__grid h3,
.contact-preparation__grid h3 { margin: 68px 0 18px; font-family: var(--display); font-size: 2.9rem; font-weight: 400; line-height: 1; }
.about-pillars__grid p,
.contact-preparation__grid p { max-width: 520px; margin: 0; color: var(--ink-soft); }
.vision-split { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 780px; color: var(--white); background: var(--forest); }
.vision-split figure { min-height: 780px; margin: 0; overflow: hidden; }
.vision-split figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.66); }
.vision-split > div { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(50px, 7vw, 120px); }
.vision-split h2 { margin: 0; font-family: var(--display); font-size: clamp(3.8rem, 5.8vw, 6.4rem); font-weight: 400; line-height: .91; }
.vision-split div > p:last-child { max-width: 650px; color: rgba(255,255,255,.7); }
.contact-preparation { padding-block: 130px 40px; }
.contact-preparation__head { display: grid; grid-template-columns: .34fr 1fr; gap: 9vw; margin-bottom: 70px; }
.contact-preparation__head h2 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 5.8vw, 6rem); font-weight: 400; line-height: .92; }
.contact-visual > div > p:last-child { max-width: 600px; color: var(--ink-soft); }

/* Inner hero image defaults are local and reliable. */
.page-hero::before,
.practice-hero::before { background-image: var(--page-image, url('../images/editorial/office.webp')); }
.page-hero--about { --page-image: url('../images/editorial/hero-alt.webp'); }
.page-hero--practice { --page-image: url('../images/editorial/practice-litigation.webp'); }
.page-hero--contact { --page-image: url('../images/editorial/location.webp'); }
.page-hero::after,
.practice-hero::after { background: linear-gradient(90deg, rgba(4,30,23,.96), rgba(4,30,23,.58) 65%, rgba(4,30,23,.24)); }
.page-hero__inner,
.practice-hero__inner { padding-bottom: 90px; }
.practice-hero__inner .eyebrow { margin: 28px 0 20px; }

/* Reveal timing and scroll polish. */
.js [data-reveal] { transform: translateY(42px); }
.js [data-reveal].is-visible { transition-duration: 1s; transition-delay: calc(var(--reveal-index, 0) * 55ms); }
.image-reveal { isolation: isolate; }

@media (max-width: 1180px) {
  .site-header__inner { width: min(100% - 48px, 1440px); }
  .hero-film h1 { font-size: clamp(4.2rem, 8.5vw, 7.5rem); }
  .practice-cinema__head h2 { font-size: clamp(3.1rem, 5.4vw, 5.4rem); }
  .journal-feature > a { grid-template-columns: 1fr .75fr; gap: 5vw; }
}

@media (max-width: 980px) {
  .site-brand,
  .site-header.is-sticky .site-brand { width: min(300px, 64vw); height: 58px; }
  .site-header.menu-active .site-brand__logo--light { opacity: 1; }
  .site-header.menu-active .site-brand__logo--color { opacity: 0; }
  .primary-nav__surface { padding-top: 130px; }

  .hero-film { min-height: 920px; }
  .hero-film__content { min-height: 800px; padding-top: 130px; padding-bottom: 260px; }
  .hero-film__video { display: none; }
  .hero-film__poster { opacity: 1 !important; }
  .hero-film h1 { font-size: clamp(4rem, 11.5vw, 6.7rem); }
  .hero-film__lead { max-width: 650px; }
  .hero-film__rail { grid-template-columns: 1fr; }
  .hero-film__rail > div { grid-template-columns: 56px 1fr; min-height: 68px; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.19); }
  .hero-film__rail > div:last-child { border-bottom: 0; }
  .hero-film__rail strong { font-size: 1.65rem; }
  .hero-film__scroll { display: none; }

  .practice-cinema { height: auto !important; }
  .practice-cinema__sticky { position: relative; height: auto; min-height: auto; padding-block: 110px; }
  .practice-cinema__viewport { max-height: none; overflow: visible; }
  .practice-cinema__track { display: grid; grid-template-columns: repeat(2, 1fr); width: var(--shell); height: auto; margin-inline: auto; padding: 0; transform: none !important; }
  .practice-card { height: auto; min-height: 540px; }

  .practice-archive-intro,
  .matter-path__head,
  .about-pillars__head,
  .contact-preparation__head { grid-template-columns: 1fr; gap: 28px; }
  .practice-crossing { align-items: flex-start; flex-direction: column; }
  .practice-content { grid-template-columns: 1fr; }
  .practice-content__aside { position: static; }
  .matter-path__steps { grid-template-columns: 1fr; }
  .matter-path__steps li { min-height: 250px; padding: 28px 0; }
  .matter-path__steps li + li { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .matter-path__steps h3 { margin-top: 50px; }
  .related-practices__grid,
  .insights-showcase__grid,
  .journal-grid { grid-template-columns: repeat(2, 1fr); }

  .journal-feature > a { grid-template-columns: 1fr; }
  .journal-feature figure,
  .journal-feature figure img { min-height: 560px; }
  .article-layout { grid-template-columns: 1fr; gap: 60px; justify-content: stretch; }
  .article-sidebar { position: static; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .article-sidebar .text-link { grid-column: 1 / -1; justify-self: start; }
  .vision-split { grid-template-columns: 1fr; }
  .vision-split figure { min-height: 600px; }
  .vision-split > div { min-height: 620px; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; }
  .site-header.is-sticky { height: 68px; }
  .site-header__inner { width: calc(100% - 28px); }
  .site-brand,
  .site-header.is-sticky .site-brand { width: min(255px, 72vw); height: 50px; }
  .nav-enquiry { display: none; }

  .hero-film { min-height: 900px; }
  .hero-film__content { min-height: 700px; padding: 120px 10px 250px; }
  .hero-film h1 { font-size: clamp(3.45rem, 15.4vw, 5.25rem); line-height: .87; }
  .hero-film__lead { margin-top: 26px; font-size: .98rem; }
  .hero-film__actions { width: 100%; flex-direction: column; gap: 20px; margin-top: 34px; }
  .hero-film__actions .button { width: 100%; }
  .hero-film__rail > div { grid-template-columns: 48px 1fr; }
  .hero-film__rail span { font-size: .56rem; }

  .marquee__group { gap: 20px; padding-right: 20px; }
  .practice-marquee .marquee__group span { font-size: 1.05rem; }

  .practice-cinema__track { grid-template-columns: 1fr; }
  .practice-card { min-height: 510px; }
  .practice-card__content { right: 22px; bottom: 24px; left: 22px; }
  .practice-card__content h3 { font-size: clamp(2.9rem, 13vw, 4.2rem); }

  .practice-archive-intro { padding-top: 85px; }
  .practice-archive { padding-block: 60px 100px; }
  .practice-archive__item { min-height: 500px; }
  .practice-archive__copy { right: 24px; bottom: 26px; left: 24px; }
  .practice-crossing { padding-bottom: 100px; }
  .matter-path,
  .related-practices { padding-bottom: 100px; }
  .related-practices__grid,
  .insights-showcase__grid,
  .journal-grid { grid-template-columns: 1fr; }
  .related-practices__head,
  .insights-showcase__head { align-items: flex-start; flex-direction: column; }

  .journal-hero,
  .journal-hero__inner { min-height: 690px; }
  .journal-hero__inner { padding-bottom: 70px; }
  .journal-hero h1 { font-size: clamp(3.9rem, 16vw, 5.7rem); }
  .journal-editorial { padding-block: 85px 110px; }
  .journal-feature { margin-bottom: 75px; }
  .journal-feature figure,
  .journal-feature figure img { min-height: 430px; }
  .journal-feature__copy h2 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
  .insight-disclaimer { grid-template-columns: 1fr; gap: 18px; margin-bottom: 100px; }

  .article-hero,
  .article-hero__inner { min-height: 760px; }
  .article-hero__inner { padding-bottom: 65px; }
  .article-hero h1 { font-size: clamp(3.8rem, 15.5vw, 5.6rem); }
  .article-hero__meta { margin-top: 38px; flex-wrap: wrap; }
  .article-layout { padding-block: 90px; }
  .article-sidebar { grid-template-columns: 1fr; gap: 0; }
  .article-modern__notice { grid-template-columns: 1fr; gap: 16px; }
  .related-insights { padding-block: 100px; }

  .about-pillars { padding-bottom: 100px; }
  .about-pillars__grid,
  .contact-preparation__grid { grid-template-columns: 1fr; }
  .about-pillars__grid article,
  .about-pillars__grid article:nth-child(even),
  .contact-preparation__grid article,
  .contact-preparation__grid article:nth-child(even) { min-height: 250px; padding: 26px 0; border-left: 0; }
  .about-pillars__grid article + article,
  .contact-preparation__grid article + article { border-top: 0; }
  .about-pillars__grid h3,
  .contact-preparation__grid h3 { margin-top: 48px; }
  .vision-split figure { min-height: 440px; }
  .vision-split > div { min-height: 560px; padding: 70px 22px; }
  .contact-preparation { padding-top: 95px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film__video { display: none; }
  .hero-film__poster { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation-play-state: paused; }
}


/* ========================================================================
   V6.1 — MOBILE NAVIGATION HARDENING
   ======================================================================== */
@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 34px;
    padding:
      calc(var(--header-height) + 42px + env(safe-area-inset-top, 0px))
      max(28px, env(safe-area-inset-right, 0px))
      max(32px, env(safe-area-inset-bottom, 0px))
      max(28px, env(safe-area-inset-left, 0px));
    background:
      radial-gradient(circle at 82% 12%, rgba(255,255,255,.055), transparent 34%),
      linear-gradient(180deg, #063f31 0%, #043629 100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -18px, 0);
    transition: opacity .38s var(--ease), transform .38s var(--ease), visibility .38s;
  }

  .primary-nav.is-open,
  body.menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .primary-nav__surface {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .primary-nav__eyebrow {
    margin-bottom: 28px;
    color: rgba(255,253,247,.58);
  }

  .primary-nav .menu {
    display: block;
    width: 100%;
  }

  .primary-nav .menu > li {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .primary-nav .menu > li:first-child {
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .primary-nav .menu a,
  .site-header.is-sticky .primary-nav .menu a {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 13px 0;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2.45rem, 9vw, 4.35rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.035em;
    text-transform: none;
  }

  .primary-nav .menu a::after { display: none; }

  .primary-nav .sub-menu {
    margin: -2px 0 14px;
    padding: 0 0 0 18px;
    list-style: none;
    border-left: 1px solid rgba(255,255,255,.16);
  }

  .primary-nav .sub-menu a,
  .site-header.is-sticky .primary-nav .sub-menu a {
    min-height: 44px;
    padding: 8px 0;
    color: rgba(255,255,255,.72);
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .02em;
  }

  .primary-nav__meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
    color: rgba(255,255,255,.58);
    font-size: .76rem;
    line-height: 1.6;
  }

  .primary-nav__meta address { font-style: normal; }
  .primary-nav__meta a { color: rgba(255,255,255,.82); }

  .primary-nav .nav-enquiry {
    display: inline-flex;
    flex: 0 0 auto;
    width: 100%;
    min-height: 58px;
    color: var(--forest);
    background: var(--paper);
  }

  .site-header.menu-active::before { opacity: 0; }

  .site-header.menu-active .site-brand,
  .site-header.is-sticky.menu-active .site-brand {
    width: min(250px, 64vw);
    height: 54px;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .site-header.menu-active .site-brand__logo--light,
  .site-header.is-sticky.menu-active .site-brand__logo--light {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .site-header.menu-active .site-brand__logo--color,
  .site-header.is-sticky.menu-active .site-brand__logo--color {
    opacity: 0;
  }

  .site-header.menu-active .menu-toggle,
  .site-header.is-sticky.menu-active .menu-toggle {
    color: var(--white);
  }

  .menu-toggle {
    min-width: 46px;
    min-height: 46px;
    justify-content: flex-end;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle__lines { width: 28px; }
  .menu-toggle__lines i { height: 1.5px; }
}

@media (max-width: 640px) {
  .primary-nav {
    gap: 26px;
    padding:
      calc(var(--header-height) + 30px + env(safe-area-inset-top, 0px))
      max(22px, env(safe-area-inset-right, 0px))
      max(24px, env(safe-area-inset-bottom, 0px))
      max(22px, env(safe-area-inset-left, 0px));
  }

  .primary-nav__eyebrow { margin-bottom: 20px; }

  .primary-nav .menu a,
  .site-header.is-sticky .primary-nav .menu a {
    min-height: 62px;
    font-size: clamp(2.25rem, 11.5vw, 3.8rem);
  }

  .site-header.menu-active .site-brand,
  .site-header.is-sticky.menu-active .site-brand {
    width: min(225px, 62vw);
    height: 48px;
  }

  .primary-nav .nav-enquiry {
    display: inline-flex;
    min-height: 56px;
  }
}

/* ========================================================================
   V6.3 — ABOUT HERO MOBILE COMPOSITION FIX
   Keeps user-selected portrait imagery cinematic without clipping copy.
   ======================================================================== */
.page-hero--about {
  width: 100%;
  max-width: 100%;
  isolation: isolate;
}

.page-hero--about::before {
  background-position: var(--about-image-position, 68% center);
}

.page-hero--about .page-hero__inner {
  width: min(1440px, calc(100% - 80px));
  max-width: calc(100% - 80px);
}

.page-hero--about h1,
.page-hero--about .page-hero__inner > p {
  max-width: min(100%, 1120px);
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 980px) {
  .page-hero--about,
  .page-hero--about .page-hero__inner {
    min-height: clamp(720px, 100svh, 920px);
  }

  .page-hero--about::before {
    background-position: var(--about-image-position-tablet, 66% center);
    transform: scale(1.025);
  }

  .page-hero--about::after {
    background:
      linear-gradient(180deg, rgba(4,30,23,.30) 0%, rgba(4,30,23,.46) 32%, rgba(4,30,23,.88) 76%, rgba(4,30,23,.97) 100%),
      linear-gradient(90deg, rgba(4,30,23,.78) 0%, rgba(4,30,23,.18) 72%);
  }

  .page-hero--about .page-hero__inner {
    align-content: end;
    width: min(100% - 48px, 760px);
    max-width: calc(100% - 48px);
    margin-inline: auto;
    padding-top: calc(var(--header-height) + 84px);
    padding-bottom: 72px;
  }

  .page-hero--about h1 {
    max-width: 680px;
    font-size: clamp(3.7rem, 10.2vw, 5.6rem);
    line-height: .9;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .page-hero--about .page-hero__inner > p:last-child {
    max-width: 620px;
    margin-top: 26px;
    font-size: 1.02rem;
    line-height: 1.55;
  }
}

@media (max-width: 640px) {
  .page-hero--about,
  .page-hero--about .page-hero__inner {
    min-height: max(720px, 100svh);
  }

  .page-hero--about::before {
    background-position: var(--about-image-position-mobile, 65% center);
    filter: saturate(.72) contrast(.98);
    transform: scale(1.01);
  }

  .page-hero--about::after {
    background:
      linear-gradient(180deg, rgba(4,30,23,.28) 0%, rgba(4,30,23,.42) 28%, rgba(4,30,23,.84) 68%, rgba(4,30,23,.97) 100%),
      linear-gradient(90deg, rgba(4,30,23,.72) 0%, rgba(4,30,23,.10) 80%);
  }

  .page-hero--about .page-hero__inner {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 54px;
  }

  .page-hero--about .eyebrow {
    margin-bottom: 16px;
    font-size: .67rem;
    letter-spacing: .13em;
  }

  .page-hero--about h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(3.05rem, 13.2vw, 4.25rem);
    line-height: .91;
    letter-spacing: -.042em;
    text-wrap: balance;
  }

  .page-hero--about .page-hero__inner > p:last-child {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    color: rgba(255,255,255,.82);
    font-size: .97rem;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .page-hero--about .page-hero__inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-bottom: 46px;
  }

  .page-hero--about h1 {
    font-size: clamp(2.9rem, 12.7vw, 3.45rem);
    line-height: .92;
  }

  .page-hero--about .page-hero__inner > p:last-child {
    font-size: .94rem;
  }
}

/* ========================================================================
   V6.5 — MOBILE OVERFLOW FIX ONLY
   This patch intentionally leaves the desktop practice-area cinema, its
   horizontal measurements, imagery and all other presentation untouched.
   ======================================================================== */
@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  @supports not (overflow: clip) {
    html,
    body { overflow-x: hidden; }
  }

  body,
  #page,
  .site,
  main,
  .site-header,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  /* 100vw includes the scrollbar/visual viewport on some mobile browsers.
     Pinning the overlay to both edges prevents the hidden menu from widening
     the document even while it is closed. */
  .primary-nav {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }

  .site-header__inner,
  .section-shell,
  .page-hero__inner {
    min-width: 0;
  }

  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100%;
  }
}
