/* ============================================================
   FONTS — self hosted.
   Same origin, so no DNS or TLS handshake to a third party before the
   headline can paint. Latin subset, weight axis only. Dropping Newsreader's
   optical-size axis took it from 129KB to 57KB for no visible difference at
   the sizes this site sets.
   ============================================================ */

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 400;
  font-display: swap;
  src: url('/assets/fonts/newsreader-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*
 * Bond Design Studio — new-home
 * Standalone stylesheet. See design-guide/current.md for the governing decisions.
 * Warm neutral ramp, serif display against a neutral grotesque, hairlines only.
 */

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  --paper:        #FAFAF8;
  --paper-raised: #FFFFFF;
  --nude:         #EDE7DF;
  --ink:          #111110;
  --ink-muted:    #6B6A66;
  --line:         #E4E2DC;
  --line-strong:  #C9BFB2;
  --scrim:        rgba(10, 10, 9, 0.42);

  --font-display: 'Newsreader', 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --measure: 62ch;
  --max: 1440px;
  --rhythm: clamp(4.25rem, 8.5vh, 7.25rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  color-scheme: light;
}

[data-theme='night'] {
  --paper:        #111110;
  --paper-raised: #191917;
  --nude:         #26231E;
  --ink:          #F2F0EB;
  --ink-muted:    #93908A;
  --line:         #2A2926;
  --line-strong:  #46433C;
  --scrim:        rgba(0, 0, 0, 0.5);

  color-scheme: dark;
}

/* ============================================================
   BASE
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.7s var(--ease), color 0.7s var(--ease);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--ink); color: var(--paper); }

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

/* over the hero photograph the ring has to be white to be seen at all */
.masthead[data-over='true'] :focus-visible,
.hero :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

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

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.shell {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--rhythm); }
.band--tight { padding-block: clamp(3.5rem, 7vh, 5.5rem); }
.band--raised { background: var(--paper-raised); }
.band--nude { background: var(--nude); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ============================================================
   TYPE
   ============================================================ */

.label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1;
  margin: 0 0 1.75rem;
}
.label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--line-strong);
  flex: none;
}

.display {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.022em;
  line-height: 1.03;
  margin: 0;
  text-wrap: balance;
}

.display--hero { font-size: clamp(2.5rem, 6.2vw, 5.9rem); }
.display--section { font-size: clamp(1.95rem, 4vw, 3.5rem); line-height: 1.08; }
.display--statement {
  font-size: clamp(1.5rem, 2.65vw, 2.5rem);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -0.012em;
}

.lede {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--ink-muted);
  max-width: 52ch;
}

p { max-width: var(--measure); }

/* ============================================================
   HEADER
   ============================================================ */

.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-block: 1.35rem;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  mix-blend-mode: normal;
}

.masthead__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.4rem);
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  padding-block: 0.35rem;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.nav a:hover::after,
.nav a:focus-visible::after { transform: scaleX(1); }

.masthead__end {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
}

/* Day / Night switch — content, not chrome */
.daynight {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  cursor: pointer;
  color: inherit;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.daynight__track {
  position: relative;
  width: 42px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}

.daynight:hover .daynight__track { opacity: 1; }

.daynight__dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.55s var(--ease);
}

[data-theme='night'] .daynight__dot { transform: translateX(25px); }

.daynight__label { line-height: 1; }

.enquire {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* Default: solid ground, ink type. Correct on every interior page before JS runs. */
.masthead {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-block: 0.85rem;
  color: var(--ink);
}

/* The exception: sitting over the home page photograph. */
.masthead[data-over='true'] {
  color: #fff;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
  padding-block: 1.35rem;
}

/* The drawer is paper, so the masthead drops its ground while it is open. */
.masthead[data-locked] {
  color: var(--ink);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* The logo: white over the photograph, black once the page has a white
   ground under it. At night it stays white, because the ground stays dark. */
.brand {
  position: relative;
  display: block;
  line-height: 0;
  flex: none;
}

.brand__mark {
  display: block;
  width: auto;
  height: var(--logo-h);
  transition: height 0.5s var(--ease), opacity 0.45s var(--ease);
}

.brand__mark--black {
  position: absolute;
  inset: 0;
  opacity: 0;
}

:root { --logo-h: 48px; }
.masthead[data-over='true'] { --logo-h: 68px; }

/* Black by day on a light ground, white over the photograph, and white at
   night because the ground stays dark either way. */
[data-theme='day'] .brand__mark--white { opacity: 0; }
[data-theme='day'] .brand__mark--black { opacity: 1; }
[data-theme='day'] .masthead[data-over='true'] .brand__mark--white { opacity: 1; }
[data-theme='day'] .masthead[data-over='true'] .brand__mark--black { opacity: 0; }

/* Mobile nav */
.burger {
  display: none;
  background: none;
  border: 0;
  padding: 0.95rem 0.6rem;
  margin-right: -0.6rem;
  cursor: pointer;
  color: inherit;
  width: 44px;
}
.burger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(2) { margin-top: 7px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.drawer[data-open='true'] { transform: translateY(0); visibility: visible; }
.drawer > a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 200;
  text-decoration: none;
  letter-spacing: -0.02em;
  padding-block: 0.4rem;
}
.drawer__foot {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.drawer__foot a { word-break: break-word; font-size: 0.9375rem; letter-spacing: 0; }
.drawer { padding-top: calc(var(--gutter) + 3.5rem); }

/* ============================================================
   HERO — one still photograph of a Bond house. The only motion is a
   slow parallax that gives the frame depth, and the type arriving.
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b0b0a;
}

.hero__media {
  position: absolute;
  inset: -7% 0;
  will-change: transform;
}
.hero__media picture { display: block; height: 100%; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 62%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.34) 13%, rgba(0,0,0,0.10) 33%, rgba(0,0,0,0.22) 56%, rgba(0,0,0,0.80) 100%),
    linear-gradient(to right, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0) 66%);
}

.hero__copy {
  position: relative;
  width: 100%;
  padding-bottom: clamp(3.25rem, 9vh, 6.5rem);
  color: #fff;
}

.hero__copy .label { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }
.hero__copy .label::before { background: rgba(255,255,255,0.7); }

.hero__title { max-width: 18ch; }

.hero__sub {
  margin: 1.75rem 0 0;
  max-width: 46ch;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
}

/* credit and scroll cue share the right edge */
.hero__aside {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.25rem, 9vh, 6.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero__credit { margin: 0; max-width: none; }

.hero__cue { display: flex; align-items: center; gap: 0.75rem; }

.hero__cue-line {
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
}
.hero__cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ============================================================
   STATEMENT — the studio block, directly under the light
   ============================================================ */

.statement {
  position: relative;
  padding-block: var(--rhythm);
}

.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

/* the tall render bleeds off the left edge */
.statement__figure {
  position: relative;
  margin-left: calc(var(--gutter) * -1);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--nude);
}
.statement__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement__caption {
  margin-top: 0.9rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.statement__body { padding-top: clamp(0.5rem, 3vw, 2.5rem); }
.statement__body p + p { margin-top: 1.5rem; }

.display--lead {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: -0.012em;
  max-width: 26ch;
}

.statement__meta {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: none;
}

/* ============================================================
   APPROACH + BENEFITS
   ============================================================ */

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.approach__figure {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--nude);
}
.approach__figure img { width: 100%; height: 100%; object-fit: cover; }

.benefits {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2.5rem, 6vw, 6rem);
}

.benefits > div {
  display: grid;
  grid-template-columns: minmax(0, 10rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: baseline;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.benefits dt {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.benefits dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ============================================================
   SERVICES — an index that opens, not a grid of cards
   ============================================================ */

.index {
  border-top: 1px solid var(--line);
}

.index__row { border-bottom: 1px solid var(--line); }

.index__head {
  width: 100%;
  background: none;
  border: 0;
  padding: clamp(1.5rem, 3.2vw, 2.5rem) 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(0, 0.9fr) 2rem;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  transition: opacity 0.4s var(--ease);
}

.index__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  transition: color 0.4s var(--ease);
}

.index__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.5rem, 3.1vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  transition: transform 0.55s var(--ease);
}

.index__teaser {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 34ch;
}

.index__sign {
  justify-self: end;
  align-self: center;
  width: 15px;
  height: 15px;
  position: relative;
  flex: none;
}
.index__sign::before,
.index__sign::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease);
}
.index__sign::before { left: 0; right: 0; top: 7px; height: 1px; }
.index__sign::after  { top: 0; bottom: 0; left: 7px; width: 1px; }

.index__head[aria-expanded='true'] .index__sign::after { transform: rotate(90deg); opacity: 0; }
.index__head[aria-expanded='true'] .index__num { color: var(--ink); }

@media (hover: hover) {
  .index__head:hover .index__title { transform: translateX(0.6rem); }
}

.index__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.65s var(--ease);
}
.index__panel[data-open='true'] { grid-template-rows: 1fr; }

.index__panel-inner { overflow: hidden; }

.index__panel-grid {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}
.index__panel-grid > :first-child { grid-column: 2; }

.index__panel figure { margin: 0; }
.index__panel figure img {
  aspect-ratio: 16 / 10;
  background: var(--nude);
}
.index__panel figure img { width: 100%; height: 100%; object-fit: cover; }
.index__panel figcaption {
  margin-top: 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.index__panel p { margin: 0 0 1.5rem; font-size: 0.9375rem; }

.textlink {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  transition: border-color 0.4s var(--ease);
}
.textlink:hover { border-color: var(--ink); }

/* ============================================================
   FULL BLEED — the page takes a breath and shows one whole house
   ============================================================ */

.bleed {
  margin: 0;
  position: relative;
}
.bleed img {
  width: 100%;
  height: clamp(320px, 62vh, 640px);
  object-fit: cover;
  display: block;
}
.bleed figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

/* ============================================================
   MANIFESTO — the page's one dark breath, between the index and the detail
   ============================================================ */

.manifesto {
  background: #111110;
  color: #F2F0EB;
  padding-block: clamp(6rem, 14vh, 11rem);
}
/* At night the breath is a warmer block with drawn edges, so it still
   reads as punctuation rather than disappearing into the page. */
[data-theme='night'] .manifesto {
  background: #1E1B16;
  border-block: 1px solid rgba(242,240,235,0.12);
}

.manifesto .label { color: rgba(242,240,235,0.55); }
.manifesto .label::before { background: rgba(242,240,235,0.35); }

.manifesto__line {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.8rem, 4.4vw, 3.9rem);
  line-height: 1.16;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 20ch;
}

.manifesto__sig {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,240,235,0.5);
  max-width: none;
}

/* ============================================================
   PROCESS — a plumb line, because the studio's output is drawings
   ============================================================ */

.process { position: relative; }

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.process__head { position: sticky; top: clamp(6rem, 14vh, 9rem); }

.process__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 clamp(1.75rem, 4vw, 3.5rem);
  margin-left: 1px;
}

.process__line {
  position: absolute;
  left: 0;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: var(--line);
}
.process__line::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  height: 100%;
  background: var(--ink);
  transform: scaleY(var(--draw, 0));
  transform-origin: top;
}

.process__list li {
  position: relative;
  padding-block: clamp(1.15rem, 2.4vw, 1.75rem);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: baseline;
}
.process__list li:last-child { border-bottom: 0; }

/* the tick lands on the numeral's baseline, so the line reads as a drawing
   rule against the stages rather than floating in the gutter */
.process__list li::before {
  content: '';
  position: absolute;
  left: calc(clamp(1.75rem, 4vw, 3.5rem) * -1);
  top: calc(clamp(1.15rem, 2.4vw, 1.75rem) + 0.42em);
  width: 11px;
  height: 1px;
  background: var(--line-strong);
}

.process__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.process__step h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.process__step p { margin: 0; font-size: 0.9375rem; color: var(--ink-muted); max-width: 46ch; }

/* ============================================================
   MONICA
   ============================================================ */

.monica__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.monica__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-raised);
}
.monica__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.8s var(--ease);
}
.monica__grid:hover .monica__portrait img { filter: grayscale(0); }

.monica__body p + p { margin-top: 1.35rem; }

.pedigree {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 2.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { text-align: left; }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: end;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  letter-spacing: -0.015em;
  text-decoration: none;
  line-height: 1.1;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.45s var(--ease), gap 0.45s var(--ease);
}
.action:hover { border-color: var(--ink); gap: 1.5rem; }
.action svg { flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #111110;
  color: #F2F0EB;
  padding-block: clamp(3.5rem, 8vh, 5.5rem) 2rem;
}
[data-theme='night'] .footer { background: #0A0A09; }

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,240,235,0.14);
}

.footer__brand { display: block; line-height: 0; }
.footer__brand img { height: 62px; width: auto; }

.footer a { text-decoration: none; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  font-size: 0.8125rem;
}
.footer__links a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer__links a:hover { border-bottom-color: currentColor; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,240,235,0.5);
}

/* ============================================================
   REVEALS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal][data-shown='true'] { opacity: 1; transform: none; }

[data-reveal-line] > * {
  display: block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal-line][data-shown='true'] > * { opacity: 1; transform: none; }
[data-reveal-line][data-shown='true'] > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-line][data-shown='true'] > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal-line][data-shown='true'] > *:nth-child(4) { transition-delay: 0.27s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .benefits { grid-template-columns: minmax(0, 1fr); }
  .statement__grid,
  .approach__grid,
  .process__grid,
  .monica__grid,
  .contact__grid { grid-template-columns: minmax(0, 1fr); }

  .process__head { position: static; }
  .statement__figure { aspect-ratio: 16 / 11; margin-right: calc(var(--gutter) * -1); }
  .monica__portrait { max-width: 26rem; }

  .index__head {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2rem;
    align-items: start;
  }
  .index__teaser {
    grid-column: 2;
    margin-top: 0.55rem;
    font-size: 0.875rem;
    max-width: 34ch;
  }
  .index__sign { grid-column: 3; grid-row: 1; align-self: start; margin-top: 0.5rem; }
  .index__panel-grid { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .index__panel-grid > :first-child { grid-column: 2; }
  .index__panel figure { grid-column: 2; }
}

@media (max-width: 640px) {
  .benefits > div { grid-template-columns: minmax(0, 1fr); gap: 0.25rem; }
}

@media (max-width: 800px) {
  .nav, .enquire { display: none; }
  .burger { display: block; }
  .hero__media img { object-position: 50% 55%; }
  :root { --logo-h: 40px; }
  .masthead[data-over='true'] { --logo-h: 52px; }
  .hero__cue { display: none; }
  /* the credit would sit on top of the sub line if it stayed pinned right */
  .hero { flex-direction: column; justify-content: flex-end; align-items: stretch; }
  .hero__copy { padding-bottom: 1.1rem; }
  .hero__aside {
    position: static;
    align-items: flex-start;
    padding: 0 var(--gutter) clamp(2rem, 6vh, 3rem);
  }
  .daynight__label { display: none; }
  .contact__grid { gap: 2.5rem; }
}

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

/* footer studio line */
.footer__tag {
  margin: 0.9rem 0 0;
  font-size: 0.8125rem;
  color: rgba(242, 240, 235, 0.55);
}

/* hero copy is driven by the scrub, so it must not also fade in on reveal */
.hero__copy { will-change: opacity, transform; }

/* ============================================================
   FAQ — open by default, because the answers are the point.
   The services index above already opens; this one stays read.
   ============================================================ */

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.faq__head { position: sticky; top: clamp(6rem, 14vh, 9rem); }

dl.faq {
  margin: 0;
  border-top: 1px solid var(--line);
}

dl.faq > div {
  padding-block: clamp(1.35rem, 2.6vw, 1.9rem);
  border-bottom: 1px solid var(--line);
}

dl.faq dt {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

dl.faq dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.66;
  color: var(--ink-muted);
  max-width: 64ch;
}

@media (max-width: 1024px) {
  .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .faq__head { position: static; }
}

/* ============================================================
   INTERIOR PAGES
   Title lands on paper first, then the photograph. Distinct from
   the home page, where the photograph comes first.
   ============================================================ */

.pagehead {
  padding-block: clamp(7rem, 16vh, 11rem) clamp(2.5rem, 5vw, 4rem);
}

.pagehead__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.pagehead h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}

.pagehead .lede { margin-top: 1.5rem; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line-strong); }

/* ============================================================
   PROSE — long form service copy
   ============================================================ */

.prose__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.prose__aside { position: sticky; top: clamp(6rem, 14vh, 9rem); }

.prose > * + * { margin-top: 1.25rem; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin-top: 2.75rem;
}
.prose h3:first-child { margin-top: 0; }
.prose p { max-width: 66ch; }

.prose ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  max-width: 66ch;
}
.prose ul li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 9px;
  height: 1px;
  background: var(--line-strong);
}

/* ============================================================
   COMPARISON — two paths side by side
   ============================================================ */

.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: 0.9375rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 0.85rem 1.5rem 0.85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -0.01em;
  border-bottom-color: var(--line-strong);
  padding-bottom: 0.75rem;
}
.compare tbody th {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  width: 9rem;
}
.compare td { color: var(--ink-muted); }
.tablewrap { overflow-x: auto; }

/* ============================================================
   FORM
   ============================================================ */

.form { display: grid; gap: 1.75rem; max-width: 34rem; }
.form__row { display: grid; gap: 1.75rem; }
@media (min-width: 40rem) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: block; position: relative; }
.field > span {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.35rem 0 0.7rem;
  border-radius: 0;
  transition: border-color 0.4s var(--ease);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 6.5rem; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

.field--select::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 1.1rem;
  width: 7px; height: 7px;
  border-right: 1px solid var(--ink-muted);
  border-bottom: 1px solid var(--ink-muted);
  transform: rotate(45deg);
  pointer-events: none;
}

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

button.submit {
  justify-self: start;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.25rem;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
button.submit:hover { background: transparent; color: var(--ink); }

.contact__detail {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}
.contact__detail a { text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }

@media (max-width: 1024px) {
  .pagehead__grid,
  .prose__grid { grid-template-columns: minmax(0, 1fr); }
  .prose__aside { position: static; }
  .compare tbody th { width: auto; }
}

/* ============================================================
   SERVICE BLOCKS — alternating, so the hub is not four identical cards
   ============================================================ */

.svc {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}
.index > .svc:first-child { border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 0; }

.svc--flip .svc__body { order: 2; }

.svc__body p { max-width: 46ch; margin-bottom: 1.75rem; }
.svc__body .display--section { margin-bottom: 1.5rem; }

.svc__figure { margin: 0; }
.svc__figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--nude);
}
.svc__figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .svc { grid-template-columns: minmax(0, 1fr); }
  .svc--flip .svc__body { order: 0; }
}

/* Monica opens on the nude band, so it needs the fixed masthead cleared */
.monica__grid--top { padding-top: clamp(4rem, 10vh, 7rem); }
.monica__name { margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact__page {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact__side { position: sticky; top: clamp(6rem, 14vh, 9rem); }
.contact__side .display--statement { max-width: 16ch; }

.pagehead--tall { padding-block: clamp(9rem, 22vh, 14rem) clamp(2.5rem, 5vw, 4rem); }

@media (max-width: 1024px) {
  .contact__page { grid-template-columns: minmax(0, 1fr); }
  .contact__side { position: static; order: -1; }
}

/* ============================================================
   MANIFESTO ON A PHOTOGRAPH
   Used on the process page, where the principle is about drawing
   and the picture is of the thing that got drawn.
   ============================================================ */

.manifesto--image {
  position: relative;
  isolation: isolate;
  background: #111110;
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
  z-index: -2;
}

.manifesto__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(10,10,9,0.88) 0%, rgba(10,10,9,0.72) 42%, rgba(10,10,9,0.34) 100%),
    linear-gradient(to bottom, rgba(10,10,9,0.30) 0%, rgba(10,10,9,0) 40%, rgba(10,10,9,0.40) 100%);
}

/* The photograph carries the contrast, so night mode keeps its own edges off it. */
[data-theme='night'] .manifesto--image { background: #0A0A09; border-block: 0; }

@media (max-width: 800px) {
  .manifesto__scrim {
    background:
      linear-gradient(to bottom, rgba(10,10,9,0.72) 0%, rgba(10,10,9,0.82) 100%);
  }
}

/* the signature has a photograph behind it, not flat ink, so it needs more weight */
.manifesto--image .manifesto__sig { color: rgba(242, 240, 235, 0.78); }
.manifesto--image .label { color: rgba(242, 240, 235, 0.78); }

/* ============================================================
   PHOTO BLEED — people, so the frame is shown rather than cropped
   ============================================================ */

.bleed--photo picture { display: block; }
.bleed--photo img {
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 800px) {
  .bleed--photo img { aspect-ratio: 4 / 5; }
}

/* a short line under a sticky process head, so a three step list does not
   leave the left column standing empty */
.process__note {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 26ch;
}
