/* ==========================================================================
   ACP Jaya Consultancy
   Palette taken from the business card: deep navy, royal blue, silver, white.
   ========================================================================== */

:root {
  --navy-950: #0A112F;
  --navy-900: #0E1742;
  --navy-800: #132158;
  --navy-700: #192A6C;
  --navy-600: #22367E;
  --royal-500: #2D4899;
  --royal-200: #B9C6E8;
  --silver-50: #F7F8FA;
  --silver-100: #F0F2F6;
  --silver-200: #E2E6ED;
  --silver-300: #CAD0DA;
  --silver-400: #A8B0BD;
  --silver-500: #858E9F;
  --ink-900: #0E1430;
  --ink-800: #1E2540;
  --ink-700: #3A4157;
  --ink-500: #5F677B;
  --gold-500: #A3865A;
  --white: #FFFFFF;

  --line: var(--silver-200);
  --line-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-mark: "Cinzel", "Cormorant Garamond", serif;

  --container: 1280px;
  --gutter: clamp(20px, 4.4vw, 64px);
  --section-y: clamp(88px, 10vw, 150px);
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

/* ---------- Base ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-700);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg,
picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
  font-variant-numeric: lining-nums;
}

.statement,
.honours__title,
.topics__title,
.pillar__text,
.letter__body p,
.bio__quote { font-variant-numeric: lining-nums; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--navy-700); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--royal-500);
  outline-offset: 3px;
}

.section--navy :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible,
.cta-band :focus-visible { outline-color: var(--white); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--navy-700);
  color: var(--white);
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type ---------- */

.label {
  display: block;
  margin: 0 0 22px;
  color: var(--royal-500);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}
.label--light { color: var(--silver-300); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.9vw, 3.5rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
}

.section-title--sm { font-size: clamp(2rem, 3vw, 2.75rem); }

.lead {
  color: var(--ink-800);
  font-size: clamp(1.125rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.65;
}

.statement {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.9vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.muted { color: var(--ink-500); }

/* ---------- Buttons and links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn--light { background: var(--white); color: var(--navy-700); }
.btn--light:hover { background: var(--silver-100); }

.btn--outline-light { border-color: rgba(255, 255, 255, 0.42); color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }

.btn--navy { background: var(--navy-700); color: var(--white); }
.btn--navy:hover { background: var(--navy-900); }

.btn--outline { border-color: var(--navy-700); color: var(--navy-700); }
.btn--outline:hover { background: var(--navy-700); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  color: var(--navy-700);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}
.link-arrow::after {
  content: "";
  width: 34px;
  height: 9px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 9'%3E%3Cpath d='M0 4.5h32.5M28.5.5l4 4-4 4' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 9'%3E%3Cpath d='M0 4.5h32.5M28.5.5l4 4-4 4' fill='none' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.35s var(--ease);
}
.link-arrow:hover::after { transform: translateX(6px); }
.link-arrow--light { color: var(--white); }

/* ---------- Brand lockup ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-700);
  text-decoration: none;
}
.brand__shield { width: 34px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__acp {
  font-family: var(--font-mark);
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.9;
}
.brand__name {
  margin-top: 7px;
  color: var(--ink-500);
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand--reverse { color: var(--white); }
.brand--reverse .brand__name { color: var(--silver-300); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(255, 255, 255, 0.9); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); }
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--header-h);
}

.site-nav__list { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 42px); }
.site-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: var(--ink-800);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--navy-700);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--navy-700); }

.site-nav a.site-nav__cta {
  margin-left: 6px;
  padding: 14px 24px;
  border: 1px solid var(--navy-700);
  color: var(--navy-700);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.site-nav a.site-nav__cta::after { display: none; }
.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta[aria-current="page"] { background: var(--navy-700); color: var(--white); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border: 0;
  background: none;
  color: var(--navy-700);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-toggle__bars { position: relative; width: 26px; height: 10px; }
.menu-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.menu-toggle__bars span:first-child { top: 0; }
.menu-toggle__bars span:last-child { top: 8px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:first-child { top: 4px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:last-child { top: 4px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px var(--gutter) 48px;
  background: var(--navy-700);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__list li { border-bottom: 1px solid var(--line-dark); }
.mobile-menu__list a {
  display: block;
  padding: 16px 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}
.mobile-menu__list a[aria-current="page"] { color: var(--royal-200); }
.mobile-menu__contact { display: grid; gap: 8px; margin-top: 40px; }
.mobile-menu__contact a { color: var(--silver-300); font-size: 0.95rem; text-decoration: none; }

body.menu-open { overflow: hidden; }

/* ---------- Sections ---------- */

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(72px, 8vw, 112px); }
.section--tint { background: var(--silver-50); }
.section--navy { background: var(--navy-700); color: rgba(255, 255, 255, 0.76); }
.section--navy h2,
.section--navy h3,
.section--navy dt { color: var(--white); }
.section--navy .label { color: var(--silver-300); }
.section + .section--tint,
.section--tint + .section:not(.section--navy):not(.section--tint) { border-top: 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head__text { max-width: 760px; }
.section-head__text .lead { margin-top: 24px; }

.split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
}

/* ---------- Home: hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 12% 108%, rgba(46, 72, 153, 0.55) 0%, rgba(25, 42, 108, 0) 62%),
    var(--navy-700);
  color: var(--white);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(640px, calc(100vh - var(--header-h)), 900px);
}
.hero__content {
  width: 56%;
  max-width: 720px;
  padding-block: clamp(72px, 9vw, 128px);
  padding-right: clamp(24px, 4vw, 64px);
}
.hero__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.55vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.hero__title span { display: block; white-space: nowrap; }
.hero__title .hero__line { overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__subtitle {
  margin: 30px 0 0;
  color: var(--royal-200);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}
.hero__text {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  background: var(--navy-800);
}
.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}
.hero__media img { object-fit: cover; object-position: 50% 32%; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 47, 0) 58%, rgba(10, 17, 47, 0.72) 100%);
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  left: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 40px);
  z-index: 2;
  margin: 0;
  color: var(--white);
  line-height: 1.4;
}
.hero__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.hero__caption span {
  display: block;
  margin-top: 4px;
  color: var(--silver-300);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ---------- Home: introduction ---------- */

.intro .split { align-items: end; row-gap: 40px; }
.intro__text { grid-column: 1 / span 4; margin: 0; color: var(--ink-500); font-size: 1rem; }
.intro__statement { grid-column: 6 / span 7; margin: 0; }

/* ---------- Home: services index ---------- */

.service-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 88px);
  counter-reset: service;
}
.service-index li { border-top: 1px solid var(--line); }
.service-index li:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.service-index a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  height: 100%;
  padding: 34px 0 36px;
  text-decoration: none;
}
.service-index__num,
.num {
  color: var(--silver-500);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  line-height: 1.6;
}
.service-index__title {
  display: block;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.9vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.service-index__text { display: block; margin-top: 12px; color: var(--ink-500); font-size: 1rem; line-height: 1.65; }
.service-index a:hover .service-index__title { color: var(--royal-500); }

/* ---------- Home: why ---------- */

.why__intro { margin-bottom: clamp(56px, 6vw, 88px); }
.why__photos {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(56px, 7vw, 96px);
}
.why__photos .photo:nth-child(2) picture { aspect-ratio: 10 / 9; }
.why__list { margin: 0; border-top: 1px solid var(--line-dark); }
.why__row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line-dark);
}
.why__row dt {
  grid-column: 1 / span 5;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  font-weight: 500;
  line-height: 1.25;
}
.why__row dd { grid-column: 6 / span 7; margin: 0; color: rgba(255, 255, 255, 0.72); }

/* ---------- Photographs ---------- */

.photo { margin: 0; }
.photo picture { overflow: hidden; background: var(--silver-100); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--mono img { filter: grayscale(1) contrast(1.06) brightness(1.02); }
.photo figcaption {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.section--navy .photo figcaption { color: var(--silver-400); }
.section--navy .photo picture { background: var(--navy-800); }
.ratio-3x2 picture { aspect-ratio: 3 / 2; }
.ratio-4x3 picture { aspect-ratio: 4 / 3; }
.ratio-4x5 picture { aspect-ratio: 4 / 5; }
.ratio-16x9 picture { aspect-ratio: 16 / 9; }

/* ---------- Home: founder feature ---------- */

.founder-feature .split { align-items: center; row-gap: 48px; }
.founder-feature__media { grid-column: 1 / span 5; position: relative; }
.founder-feature__body { grid-column: 7 / span 6; }
.founder-feature__name { margin-bottom: 8px; }
.role {
  display: block;
  margin: 0 0 32px;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.founder-feature__body .link-arrow { margin-top: 18px; }

.teaser__text { margin: 24px 0 0; color: var(--ink-500); }
.teaser__link { margin-top: 18px; }

.portrait-frame { position: relative; }
.portrait-frame picture { aspect-ratio: 419 / 560; overflow: hidden; background: var(--white); box-shadow: 0 0 0 1px var(--silver-200); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

/* ---------- Honours list ---------- */

.honours { border-top: 1px solid var(--line); }
.honours li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.honours__year {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-variant-numeric: lining-nums;
}
.honours__title {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
}
.honours__text { display: block; margin-top: 8px; color: var(--ink-500); font-size: 1rem; }

/* ---------- Topics ---------- */

.topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.topics li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 180px;
  padding: 28px 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.topics__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.topic-icon {
  flex: none;
  width: 38px;
  height: 38px;
  margin: -4px -4px 0 0;
  color: var(--navy-700);
}
.topic-icon .icon-dot { fill: currentColor; stroke: none; }
.topics__title {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.22;
}

/* ---------- Articles ---------- */

.articles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.4vw, 36px); }
.article-card a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.3s var(--ease);
}
.article-card a:hover { border-color: var(--navy-700); }
.article-card__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--royal-500); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.article-card__title { color: var(--ink-900); font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1.2; }
.article-card__summary { color: var(--ink-500); font-size: 0.98rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-700);
  color: rgba(255, 255, 255, 0.78);
}
.cta-band .split { align-items: end; row-gap: 40px; }
.cta-band__body { grid-column: 1 / span 7; }
.cta-band__body .section-title { color: var(--white); }
.cta-band__body p:not(.label) { max-width: 620px; margin-top: 26px; font-size: 1.125rem; font-weight: 300; }
.cta-band__action { grid-column: 9 / span 4; display: flex; justify-content: flex-end; }
.cta-band__pearls {
  position: absolute;
  right: -140px;
  top: 50%;
  width: 520px;
  aspect-ratio: 1;
  background: url("../img/brand/pearls.svg") no-repeat center / contain;
  opacity: 0.12;
  transform: translateY(-50%) scaleX(-1);
  pointer-events: none;
}

/* ---------- Inner page header ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 144px) clamp(64px, 8vw, 112px);
  background: var(--silver-50);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.4vw, 4.75rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.page-hero .lead { max-width: 740px; margin-top: 30px; }
.page-hero__mark {
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  top: 50%;
  width: clamp(160px, 18vw, 250px);
  opacity: 0.07;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-index {
  display: none;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 44px;
}
.page-index a {
  color: var(--ink-700);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--silver-300);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.page-index a:hover { color: var(--navy-700); border-color: var(--navy-700); }

/* ---------- About ---------- */

.statement--sm { font-size: clamp(1.6rem, 2.4vw, 2.15rem); line-height: 1.3; }
.about-intro__note { margin: 30px 0 0; color: var(--ink-500); font-size: 1rem; }
.belief .split { align-items: center; row-gap: 48px; }
.belief__text { grid-column: 1 / span 6; }
.belief__photo { grid-column: 8 / span 5; }


.about-intro .split { row-gap: 40px; }
.about-intro__lead { grid-column: 1 / span 5; }
.about-intro__list { grid-column: 7 / span 6; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  border-top: 1px solid var(--line);
}
.check-list li {
  position: relative;
  padding: 15px 0 15px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-800);
  font-size: 1rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.45em;
  width: 8px;
  height: 1px;
  background: var(--royal-500);
}
.check-list--single { grid-template-columns: 1fr; }
.section--navy .check-list,
.cta-band .check-list { border-color: var(--line-dark); }
.section--navy .check-list li { border-color: var(--line-dark); color: rgba(255, 255, 255, 0.86); }
.section--navy .check-list li::before { background: var(--silver-400); }

.statement-block { max-width: 980px; }
.statement-block .statement { margin: 0; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 96px);
}
.pillar .label { margin-bottom: 20px; }
.pillar__text {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.32;
}
.section--navy .pillar__text { color: var(--white); }
.pillar__text + p { margin-top: 22px; }
.section--navy .pillar p:not(.pillar__text):not(.label) { color: rgba(255, 255, 255, 0.72); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(28px, 3.5vw, 56px);
  row-gap: clamp(48px, 5vw, 72px);
}
.item .num { display: block; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.item h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.22;
}
.item p { color: var(--ink-500); font-size: 1rem; }

.values .split { row-gap: 48px; }
.values__head { grid-column: 1 / span 4; }
.values__head .section-title { position: sticky; top: calc(var(--header-h) + 40px); }
.values__list { grid-column: 6 / span 7; border-top: 1px solid var(--line); }
.values__list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 2fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.values__list h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}
.values__list p { margin: 0; color: var(--ink-500); font-size: 1rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink-900);
}
.steps li { padding: 32px clamp(16px, 1.6vw, 28px) 8px 0; }
.steps li + li { padding-left: clamp(16px, 1.6vw, 28px); border-left: 1px solid var(--line); }
.steps .num { display: block; margin-bottom: 36px; }
.steps h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.steps p { color: var(--ink-500); font-size: 0.95rem; line-height: 1.65; }

/* ---------- Services ---------- */

.services-layout .split { align-items: start; }
.services-nav { grid-column: 1 / span 3; position: sticky; top: calc(var(--header-h) + 40px); }
.services-nav ol { border-top: 1px solid var(--line); }
.services-nav li { border-bottom: 1px solid var(--line); }
.services-nav a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px;
  padding: 12px 0;
  color: var(--ink-500);
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s;
}
.services-nav a span:first-child { color: var(--silver-500); font-family: var(--font-display); font-size: 0.95rem; }
.services-nav a:hover,
.services-nav a.is-active { color: var(--navy-700); }
.services-nav a.is-active span:first-child { color: var(--navy-700); }
.services-list { grid-column: 5 / span 8; }

.service {
  padding-block: 0 clamp(64px, 7vw, 96px);
  margin-bottom: clamp(64px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.service:last-child { margin-bottom: 0; border-bottom: 0; padding-bottom: 0; }
.service__num { display: block; margin-bottom: 18px; }
.service__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.service__intro { margin: 22px 0 34px; max-width: 640px; }
.service__lead {
  margin-bottom: 4px;
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.service .photo { margin-top: 48px; }

.tracks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}
.track { padding-top: 28px; border-top: 1px solid var(--ink-900); }
.track h3 {
  min-height: 2.5em;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.22;
}
.track .check-list { grid-template-columns: 1fr; }
.track .check-list li { font-size: 0.95rem; }
.delivery { margin-top: clamp(72px, 8vw, 112px); align-items: center; row-gap: 40px; }
.delivery__text { grid-column: 1 / span 7; margin: 0; }
.delivery__photo { grid-column: 9 / span 4; }

.audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.audiences li {
  padding: 34px clamp(20px, 2.4vw, 36px) 38px 0;
  border-bottom: 1px solid var(--line);
}
.audiences li:not(:nth-child(3n + 1)) { padding-left: clamp(20px, 2.4vw, 36px); border-left: 1px solid var(--line); }
.audiences h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.22;
}
.audiences p { color: var(--ink-500); font-size: 1rem; }

/* ---------- Founder ---------- */

.founder-hero { padding-block: clamp(64px, 8vw, 120px); background: var(--silver-50); border-bottom: 1px solid var(--line); }
.founder-hero .split { align-items: center; row-gap: 56px; }
.founder-hero__media { grid-column: 1 / span 5; }
.founder-hero__body { grid-column: 7 / span 6; }
.founder-hero__body .page-hero__title { font-size: clamp(2.6rem, 4.6vw, 4.25rem); }
.founder-hero__body .role { margin-top: 18px; }

.bio .split { row-gap: 32px; align-items: start; }
.bio__aside { grid-column: 1 / span 4; position: sticky; top: calc(var(--header-h) + 40px); }
.bio__photo picture { aspect-ratio: 684 / 1000; overflow: hidden; }
.bio__photo img { object-position: 50% 40%; }
.bio__body { grid-column: 6 / span 7; max-width: 720px; }
.bio__body p { font-size: 1.0625rem; }
.bio__body .bio__quote {
  margin: 48px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.gallery .photo:nth-child(1) { grid-column: 1 / span 7; }
.gallery .photo:nth-child(2) { grid-column: 8 / span 5; }
.gallery .photo:nth-child(3) { grid-column: 1 / span 5; }
.gallery .photo:nth-child(4) { grid-column: 6 / span 7; }
.gallery .photo picture { aspect-ratio: 3 / 2; }

.letter { max-width: 780px; margin-inline: auto; }
.letter__body p {
  color: var(--ink-800);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
}
.signature {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
.signature strong {
  display: block;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.signature span { display: block; color: var(--ink-500); font-size: 0.95rem; }

.recognition .split { row-gap: 56px; }
.recognition__head { grid-column: 1 / span 5; align-self: start; position: sticky; top: calc(var(--header-h) + 40px); }
.recognition__head .lead { margin-top: 28px; }
.recognition__intro { max-width: 460px; margin: 28px 0 0; color: var(--ink-500); }
.recognition__list { grid-column: 7 / span 6; }
.recognition__photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(56px, 6vw, 88px);
}
.recognition__photos .photo:nth-child(2) picture { aspect-ratio: 15 / 14; }
.recognition__close { max-width: 820px; margin-top: clamp(48px, 5vw, 72px); }

/* ---------- Contact ---------- */

.contact-layout .split { align-items: start; row-gap: 72px; }
.contact-aside { grid-column: 1 / span 4; }
.contact-main { grid-column: 6 / span 7; }

.contact-card { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.contact-card__name {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}
.contact-card dl { display: grid; gap: 18px; margin: 0; }
.contact-card dt {
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-card dd { margin: 4px 0 0; color: var(--ink-900); font-size: 1.02rem; line-height: 1.55; }
.contact-card dd a { text-decoration: none; border-bottom: 1px solid var(--silver-300); }
.contact-card dd a:hover { border-color: var(--navy-700); }
.contact-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-social a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--silver-300);
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.contact-social a:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

.work-with-us { padding-top: 40px; }
.work-with-us h2 { margin-bottom: 20px; }
.work-with-us p { color: var(--ink-500); font-size: 1rem; }
.work-with-us .service__lead { margin: 28px 0 0; color: var(--ink-900); font-size: 0.72rem; }
.work-with-us .check-list { margin-top: 14px; }
.work-with-us .check-list li { font-size: 0.95rem; }

/* ---------- Enquiry form ---------- */

.form-intro { margin-bottom: 48px; }
.form-intro p:not(.label) { margin-top: 22px; color: var(--ink-500); }

.enquiry-form fieldset { margin: 0 0 44px; padding: 0; border: 0; min-width: 0; }
.enquiry-form legend,
.fieldset-title {
  display: block;
  width: 100%;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-900);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}
.fieldset-hint { margin: -10px 0 18px; color: var(--ink-500); font-size: 0.875rem; }

.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.field label,
.field .field__label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 0.875rem;
  font-weight: 500;
}
.req { color: var(--royal-500); }
.field label.option,
.field label.consent { display: flex; margin-bottom: 0; color: var(--ink-800); font-size: 0.95rem; font-weight: 400; }
.field label.consent { margin: 8px 0 32px; color: var(--ink-700); }
.enquiry-form legend { padding: 0 0 14px; }

.input,
.select,
.textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--silver-300);
  border-radius: 0;
  background: var(--white);
  color: var(--ink-900);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder,
.textarea::placeholder { color: #8A91A2; opacity: 1; }
.input:hover,
.select:hover,
.textarea:hover { border-color: var(--silver-500); }
.input:focus,
.select:focus,
.textarea:focus { border-color: var(--navy-700); outline: none; box-shadow: 0 0 0 3px rgba(25, 42, 108, 0.12); }
.textarea { min-height: 170px; resize: vertical; }
.select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23192A6C' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  cursor: pointer;
}
.select:invalid { color: #8A91A2; }

.options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 24px; }
.option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: var(--ink-800);
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}
.option input {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid var(--silver-500);
  border-radius: 0;
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.option input[type="radio"] { border-radius: 50%; }
.option input:checked { border-color: var(--navy-700); background: var(--navy-700); }
.option input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9.5l3 3 6-7' fill='none' stroke='%23fff' stroke-width='1.6'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.option input[type="radio"]:checked { box-shadow: inset 0 0 0 4px var(--white); }
.option input:focus-visible { outline: 2px solid var(--royal-500); outline-offset: 2px; }
.options--inline { display: flex; flex-wrap: wrap; gap: 2px 28px; }

.consent {
  display: flex;
  gap: 14px;
  margin: 8px 0 32px;
  padding: 22px 24px;
  background: var(--silver-50);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
}
.consent a { color: var(--navy-700); }
.consent .option { padding: 0; }
.is-invalid .consent { border-color: #D9A5A5; }
.enquiry-form fieldset.is-invalid legend { border-bottom-color: #A12A2A; }

.field-error { display: block; margin-top: 8px; color: #A12A2A; font-size: 0.85rem; }
.is-invalid .input,
.is-invalid .select,
.is-invalid .textarea { border-color: #A12A2A; }
.form-alert {
  margin-bottom: 32px;
  padding: 18px 22px;
  border: 1px solid #E3B9B9;
  background: #FBF3F3;
  color: #7A1F1F;
  font-size: 0.95rem;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form-actions .btn { min-width: 230px; }
.form-actions__note { margin: 0; color: var(--ink-500); font-size: 0.85rem; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

.form-success {
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--silver-50);
}
.form-success__mark { width: 40px; height: auto; margin-bottom: 26px; }
.form-success p {
  margin: 0;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Partners ---------- */

.partner .split { align-items: center; row-gap: 48px; }
.partner__mark { grid-column: 1 / span 5; }
.partner__body { grid-column: 7 / span 6; }
.partner-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  padding: 40px;
  background: var(--silver-50);
  border: 1px solid var(--line);
  color: #111111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.partner-mark__name { font-size: clamp(2.4rem, 4.2vw, 3.6rem); letter-spacing: 0.03em; }
.partner-mark__sub { margin-top: 0.22em; font-size: clamp(1.6rem, 2.8vw, 2.4rem); letter-spacing: 0.05em; }
.partner__focus { margin: 24px 0 18px; }
.partner__description { color: var(--ink-500); }
.partner__capabilities { margin-top: 30px; }
.partner__link { margin-top: 30px; }

/* ---------- Legal pages ---------- */

.prose { max-width: 760px; }
.prose h2 {
  margin: 56px 0 18px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.15em; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 8px; height: 1px; background: var(--royal-500); }
.prose a { color: var(--navy-700); }
.prose .updated { color: var(--ink-500); font-size: 0.9rem; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}
.site-footer__pearls {
  position: absolute;
  left: -180px;
  bottom: -220px;
  width: 620px;
  aspect-ratio: 1;
  background: url("../img/brand/pearls.svg") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}
.site-footer .container { position: relative; }
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: clamp(72px, 8vw, 104px) 0 64px;
}
.site-footer__brand .brand__shield { width: 40px; }
.site-footer__brand .brand__acp { font-size: 1.9rem; }
.site-footer__name {
  margin: 34px 0 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}
.site-footer__tagline { max-width: 320px; color: var(--silver-400); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.45; }
.site-footer__heading {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.site-footer__col li + li { margin-top: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; transition: color 0.25s; }
.site-footer a:hover { color: var(--white); }
.site-footer__address { line-height: 1.6; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.site-footer__social li + li { margin-top: 0; }
.site-footer__social a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 3px;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 28px; margin: 0; }
.site-footer__policies { display: flex; flex-wrap: wrap; gap: 6px 26px; }
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 64px;
  padding: 0 0 44px;
}
.site-footer__disclaimer {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.7;
}
.site-footer__credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.7;
}
.site-footer__credit a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ---------- 404 ---------- */

.not-found { padding-block: clamp(96px, 14vw, 180px); }
.not-found .page-hero__title { margin-bottom: 28px; }

/* ---------- Motion ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: 0.1s; }
.js [data-reveal-delay="2"] { transition-delay: 0.2s; }
.js [data-reveal-delay="3"] { transition-delay: 0.3s; }
.js:not(.motion) [data-reveal] { animation: reveal-failsafe 0.6s ease 2.5s forwards; }
@keyframes reveal-failsafe { to { opacity: 1; transform: none; } }

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

/* ---------- Details: motion that stays quiet ---------- */

/* Page transitions (Chrome, Edge and Safari; other browsers simply navigate) */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}
.site-header { view-transition-name: site-header; }
::view-transition-old(root) { animation: 0.28s var(--ease) both vt-fade-out; }
::view-transition-new(root) { animation: 0.5s var(--ease) both vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; } }

/* Reading progress along the foot of the header */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--navy-700);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
  pointer-events: none;
}

@keyframes fade-in { from { opacity: 0; } }
@keyframes fade-rise { from { opacity: 0; transform: translate3d(0, 14px, 0); } }
@keyframes line-rise { from { transform: translate3d(0, 108%, 0); } }
@keyframes photo-settle { from { opacity: 0; transform: scale(1.07); } }
@keyframes seal-in { from { opacity: 0; transform: scale(0.6) rotate(-10deg); } }
@keyframes shield-glint {
  0% { opacity: 0; transform: translateX(0); }
  20%, 80% { opacity: 1; }
  100% { opacity: 0; transform: translateX(190px); }
}
@keyframes shield-glint-again {
  0% { opacity: 0; transform: translateX(0); }
  20%, 80% { opacity: 1; }
  100% { opacity: 0; transform: translateX(190px); }
}
@keyframes sheen {
  from { transform: translateX(-160%) skewX(-18deg); }
  to { transform: translateX(330%) skewX(-18deg); }
}
@keyframes orbit { to { transform: rotate(1turn); } }
@keyframes orbit-mirrored {
  from { transform: translateY(-50%) scaleX(-1) rotate(0turn); }
  to { transform: translateY(-50%) scaleX(-1) rotate(1turn); }
}
@keyframes draw-x { from { transform: scaleX(0); } }
@keyframes draw-stroke { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

/* Buttons: a faint sheen passes on hover */
.btn--light,
.btn--navy { position: relative; overflow: hidden; isolation: isolate; }
.btn--light { --sheen: rgba(25, 42, 108, 0.1); }
.btn--navy { --sheen: rgba(255, 255, 255, 0.22); }
.btn--light::after,
.btn--navy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 45%;
  background: linear-gradient(100deg, transparent 0%, var(--sheen) 50%, transparent 100%);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}

/* Service list: a small shift on hover */
.service-index__num { transition: color 0.4s var(--ease); }
.service-index__title,
.service-index__text { transition: color 0.3s var(--ease), transform 0.6s var(--ease-out); }
.service-index a:hover .service-index__num { color: var(--navy-700); }
.service-index a:hover .service-index__title,
.service-index a:hover .service-index__text { transform: translateX(6px); }

/* Documentary photographs warm to colour under the pointer */
@media (hover: hover) {
  .photo--mono img { transition: filter 1.1s var(--ease), transform 2s var(--ease-out); }
  .photo--mono:hover img { filter: grayscale(0) contrast(1) brightness(1); }
}

/* Soft light that follows the pointer across navy sections */
@property --glow-x { syntax: "<length>"; inherits: true; initial-value: 0px; }
@property --glow-y { syntax: "<length>"; inherits: true; initial-value: 0px; }
.has-glow { position: relative; isolation: isolate; }
.has-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(560px circle at var(--glow-x) var(--glow-y), rgba(104, 136, 222, 0.17), transparent 65%);
  opacity: 0;
  transition: opacity 0.9s var(--ease), --glow-x 0.7s var(--ease-out), --glow-y 0.7s var(--ease-out);
  pointer-events: none;
}
.has-glow.is-glowing::before { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  /* Home: the opening choreography */
  .js .hero .label { animation: fade-in 0.8s var(--ease) 0.05s both; }
  .js .hero__line > span { animation: line-rise 1.15s var(--ease-out) 0.12s both; }
  .js .hero__line:nth-child(2) > span { animation-delay: 0.22s; }
  .js .hero__line:nth-child(3) > span { animation-delay: 0.32s; }
  .js .hero__subtitle { animation: fade-rise 1s var(--ease-out) 0.55s both; }
  .js .hero__text { animation: fade-rise 1s var(--ease-out) 0.65s both; }
  .js .hero__actions { animation: fade-rise 1s var(--ease-out) 0.75s both; }
  .js .hero__media img { animation: photo-settle 1.9s var(--ease-out) both; }
  .js .hero__caption { animation: fade-rise 1s var(--ease-out) 1s both; }

  /* Inner pages: the heading block settles in */
  .js .page-hero__inner > *,
  .js .founder-hero__body > * { animation: fade-rise 1s var(--ease-out) both; }
  .js .page-hero__inner > :nth-child(2),
  .js .founder-hero__body > :nth-child(2) { animation-delay: 0.08s; }
  .js .page-hero__inner > :nth-child(3),
  .js .founder-hero__body > :nth-child(3) { animation-delay: 0.16s; }
  .js .page-hero__inner > :nth-child(n + 4),
  .js .founder-hero__body > :nth-child(n + 4) { animation-delay: 0.24s; }
  .js .founder-hero__media img { animation: photo-settle 1.6s var(--ease-out) both; }
  .js .page-hero__mark { animation: fade-in 1.6s var(--ease) 0.3s both; }

  /* Shield: a metallic glint on arrival, and again on hover */
  .site-header .shield-glint { animation: shield-glint 1.5s var(--ease) 1.1s both; }
  .brand:hover .shield-glint,
  .brand:focus-visible .shield-glint { animation: shield-glint-again 1.2s var(--ease) both; }

  .btn--light:hover::after,
  .btn--navy:hover::after { animation: sheen 1s var(--ease) both; }

  /* The pearl arcs orbit, almost imperceptibly */
  .cta-band__pearls { animation: orbit-mirrored 240s linear infinite; }
  .site-footer__pearls { animation: orbit 300s linear infinite; }

  /* Hairlines draw across as their content arrives */
  .motion .why__row,
  .motion .values__list li,
  .motion .honours li,
  .motion .audiences li,
  .motion [data-reveal] .check-list li,
  .motion .check-list[data-reveal] li {
    border-bottom-color: transparent;
    background: linear-gradient(var(--rule, var(--line)), var(--rule, var(--line))) no-repeat left bottom / 0 1px;
    transition: background-size 1.3s var(--ease-out) var(--rule-delay, 0s);
  }
  .motion .service-index li,
  .motion .track {
    border-top-color: transparent;
    background: linear-gradient(var(--rule, var(--line)), var(--rule, var(--line))) no-repeat left top / 0 1px;
    transition: background-size 1.3s var(--ease-out) var(--rule-delay, 0s);
  }
  .motion .why__row,
  .motion .section--navy .check-list li { --rule: var(--line-dark); }
  .motion .track { --rule: var(--ink-900); }
  .motion .why__row.is-visible,
  .motion .values__list li.is-visible,
  .motion .honours.is-visible li,
  .motion .audiences li.is-visible,
  .motion [data-reveal].is-visible .check-list li,
  .motion .check-list[data-reveal].is-visible li,
  .motion .service-index li.is-visible,
  .motion .track.is-visible { background-size: 100% 1px; }
  .motion .check-list li:nth-child(2), .motion .honours li:nth-child(2) { --rule-delay: 0.06s; }
  .motion .check-list li:nth-child(3), .motion .honours li:nth-child(3) { --rule-delay: 0.12s; }
  .motion .check-list li:nth-child(4), .motion .honours li:nth-child(4) { --rule-delay: 0.18s; }
  .motion .check-list li:nth-child(5), .motion .honours li:nth-child(5) { --rule-delay: 0.24s; }
  .motion .check-list li:nth-child(6), .motion .honours li:nth-child(6) { --rule-delay: 0.30s; }
  .motion .check-list li:nth-child(7), .motion .honours li:nth-child(7) { --rule-delay: 0.36s; }
  .motion .check-list li:nth-child(8), .motion .honours li:nth-child(8) { --rule-delay: 0.42s; }
  .motion .check-list li:nth-child(9), .motion .honours li:nth-child(9) { --rule-delay: 0.48s; }
  .motion .check-list li:nth-child(10), .motion .honours li:nth-child(10) { --rule-delay: 0.54s; }
  .motion .check-list li:nth-child(11), .motion .honours li:nth-child(11) { --rule-delay: 0.60s; }
  .motion .check-list li:nth-child(12), .motion .honours li:nth-child(12) { --rule-delay: 0.66s; }
  .motion .check-list li:nth-child(13), .motion .honours li:nth-child(13) { --rule-delay: 0.72s; }
  .motion .check-list li:nth-child(14), .motion .honours li:nth-child(14) { --rule-delay: 0.78s; }
  .motion .check-list li:nth-child(15), .motion .honours li:nth-child(15) { --rule-delay: 0.84s; }
  .motion .check-list li:nth-child(16), .motion .honours li:nth-child(16) { --rule-delay: 0.90s; }

  /* Photographs open like a shutter */
  .motion .photo[data-reveal] { opacity: 1; transform: none; }
  .motion .photo[data-reveal] picture,
  .motion [data-reveal] > .photo picture,
  .motion [data-reveal] > .portrait-frame picture {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.4s var(--ease-out);
  }
  .motion .photo[data-reveal] img,
  .motion [data-reveal] > .photo img,
  .motion [data-reveal] > .portrait-frame img {
    transform: scale(1.1);
    transition: transform 2s var(--ease-out), filter 1.1s var(--ease);
  }
  .motion .photo[data-reveal].is-visible picture,
  .motion [data-reveal].is-visible > .photo picture,
  .motion [data-reveal].is-visible > .portrait-frame picture { clip-path: inset(0); }
  .motion .photo[data-reveal].is-visible img,
  .motion [data-reveal].is-visible > .photo img,
  .motion [data-reveal].is-visible > .portrait-frame img { transform: none; }
  .motion .photo[data-reveal] figcaption { opacity: 0; transition: opacity 1s var(--ease) 0.6s; }
  .motion .photo[data-reveal].is-visible figcaption { opacity: 1; }

  /* Insights topics: each icon draws itself as its tile arrives */
  .motion .topics li .topic-icon :is(path, rect, circle:not(.icon-dot)) { stroke-dasharray: 1; stroke-dashoffset: 1; }
  .motion .topics li.is-visible .topic-icon :is(path, rect, circle:not(.icon-dot)) { animation: draw-stroke 1.8s var(--ease-out) 0.3s both; }
  .motion .topics li[data-reveal-delay="1"].is-visible .topic-icon :is(path, rect, circle:not(.icon-dot)) { animation-delay: 0.42s; }
  .motion .topics li[data-reveal-delay="2"].is-visible .topic-icon :is(path, rect, circle:not(.icon-dot)) { animation-delay: 0.54s; }
  .motion .topics li .topic-icon .icon-dot { opacity: 0; }
  .motion .topics li.is-visible .topic-icon .icon-dot { opacity: 1; animation: fade-in 0.6s var(--ease) 1.3s both; }

  /* Enquiry received: the shield seals in */
  .form-success:not([hidden]) .form-success__mark { animation: seal-in 1s var(--ease-out) both; }
  .form-success:not([hidden]) .shield-glint { animation: shield-glint 1.4s var(--ease) 0.7s both; }
  .form-success:not([hidden]) p { animation: fade-rise 1s var(--ease-out) 0.3s both; }
}

/* About page: the process line fills as it scrolls into view */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .steps { position: relative; border-top-color: var(--line); }
    .steps::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--ink-900);
      transform-origin: 0 50%;
      animation: draw-x linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 45%;
    }
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .site-nav__list { gap: 22px; }
  .site-nav a { letter-spacing: 0.13em; }
}

@media (max-width: 1080px) {
  :root { --header-h: 76px; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero__content { width: 60%; }
  .tracks { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps li:nth-child(4) { padding-left: 0; border-left: 0; }
  .site-footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero__inner { display: block; min-height: 0; }
  .hero__media { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 4.4; max-height: 78vh; }
  .hero__media img { object-position: 50% 26%; }
  .hero__content { width: 100%; max-width: none; padding: 56px 0 72px; }

  .split > * { grid-column: 1 / -1 !important; }
  .intro__statement { order: -1; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .service-index { grid-template-columns: 1fr; }
  .service-index li:nth-last-child(2) { border-bottom: 0; }
  .why__row dt,
  .why__row dd { grid-column: 1 / -1; }
  .why__row dd { margin-top: 12px; }
  .grid-3,
  .audiences,
  .topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audiences li { padding-left: 0 !important; border-left: 0 !important; padding-right: 24px; }
  .audiences li:nth-child(2n) { padding-left: 24px !important; border-left: 1px solid var(--line) !important; }
  .pillars { grid-template-columns: 1fr; }
  .services-nav { position: static; display: none; }
  .page-index { display: flex; }
  .recognition__head { position: static; }
  .bio__aside { position: static; max-width: 420px; }
  .articles { grid-template-columns: 1fr; }
  .values__head .section-title { position: static; }
  .cta-band__action { justify-content: flex-start; }
  .founder-feature__media,
  .founder-hero__media { max-width: 460px; }
  .page-hero__mark { opacity: 0.05; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand__acp { font-size: 1.45rem; }
  .brand__shield { width: 30px; }
  .menu-toggle__label { display: none; }
  .hero__title { font-size: 2.3rem; }
  .hero__title span { white-space: normal; }
  .hero__actions .btn { width: 100%; }
  .check-list,
  .options,
  .field-row,
  .grid-3,
  .audiences,
  .topics,
  .tracks,
  .steps,
  .why__photos,
  .recognition__photos { grid-template-columns: 1fr; }
  .audiences li,
  .audiences li:nth-child(2n) { padding: 28px 0 !important; border-left: 0 !important; }
  .steps li,
  .steps li + li { padding: 26px 0; border-left: 0; }
  .steps li + li { border-top: 1px solid var(--line); }
  .steps .num { margin-bottom: 14px; }
  .topics li { min-height: 0; gap: 20px; }
  .values__list li { grid-template-columns: 1fr; gap: 8px; }
  .honours li { grid-template-columns: 1fr; gap: 6px; }
  .gallery .photo { grid-column: 1 / -1 !important; }
  .service-index a { grid-template-columns: 44px minmax(0, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .site-footer__contact { grid-column: 1 / -1; }
  .form-actions .btn { width: 100%; }
}

@media print {
  .site-header, .site-footer, .cta-band, .menu-toggle { display: none !important; }
  body { color: #000; }
  .hero, .section--navy { background: none !important; color: #000 !important; }
  .hero__title, .section--navy h2 { color: #000 !important; }
}
