:root {
  --ink: #07130f;
  --ink-soft: #0d1d16;
  --ink-raised: #13271e;
  --cream: #f1eee4;
  --cream-soft: #d7d6c9;
  --sage: #9caf99;
  --sage-dark: #6f846d;
  --gold: #d8b56b;
  --gold-dark: #a67730;
  --hydrangea: #c8a0b7;
  --line: rgba(241, 238, 228, 0.15);
  --line-dark: rgba(7, 19, 15, 0.15);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 40px));
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(.2, .75, .25, 1);
  --z-header: 30;
  --z-menu: 40;
  --z-mobile: 50;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(216, 181, 107, .18) 0, transparent 26%),
    radial-gradient(circle at 78% 54%, rgba(111, 132, 109, .16) 0, transparent 30%);
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 15, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.08em;
}

.brand-mark span {
  color: var(--gold);
  font-size: .66em;
  margin-inline: .08em;
}

.brand-name {
  max-width: 150px;
  padding-left: 14px;
  color: var(--cream-soft);
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
  color: var(--cream-soft);
  font-size: 13px;
  font-weight: 500;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: #e7c77f;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 150px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  top: 10%;
  right: 45%;
  bottom: 16%;
  z-index: -1;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.hero-glow {
  position: absolute;
  top: -18vw;
  left: -18vw;
  width: 48vw;
  height: 48vw;
  min-width: 620px;
  min-height: 620px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(41, 84, 60, .33), transparent 68%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 64px 80px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.1vw, 118px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.058em;
}

.hero h1 em,
.section-heading h2 em,
.work-heading h2 em,
.approach h2 em,
.quote-panel h2 em {
  color: var(--hydrangea);
  font-weight: 400;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 38px;
  color: var(--cream-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 14px 12px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 234px;
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: #e7c77f;
}

.button-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-size: 15px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  color: var(--cream);
  border-bottom: 1px solid rgba(241, 238, 228, .36);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  margin: 0;
  justify-self: end;
}

.image-frame {
  position: relative;
  max-width: 520px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 270px 270px 22px 22px;
}

.image-frame::before {
  position: absolute;
  inset: 25px;
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: inherit;
}

.image-frame img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: 258px 258px 14px 14px;
  filter: saturate(.88) contrast(1.03);
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 12px 0;
  color: var(--sage);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.photo-label {
  color: var(--gold);
}

.hero-stamp {
  position: absolute;
  bottom: 86px;
  left: -58px;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  gap: 2px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(7, 19, 15, .18);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-stamp span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 18px 24px;
  color: var(--cream-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.proof-strip p + p {
  border-left: 1px solid var(--line);
}

.proof-strip span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0;
}

.section {
  padding-block: clamp(96px, 12vw, 170px);
}

.services {
  background:
    radial-gradient(circle at 78% 20%, rgba(200, 160, 183, .08), transparent 30%),
    var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, .58fr);
  column-gap: 9vw;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.work-heading h2,
.approach h2,
.quote-panel h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.work-heading > p,
.approach-intro > p {
  margin-bottom: 3px;
  color: var(--sage);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: minmax(320px, auto);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: background 220ms ease, transform 220ms var(--ease), border-color 220ms ease;
}

.service-card:hover {
  background: var(--ink-raised);
  border-color: rgba(216, 181, 107, .36);
  transform: translateY(-4px);
}

.service-card-wide {
  grid-row: span 2;
}

.service-card-wide::before {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  content: "";
  border: 1px solid rgba(216, 181, 107, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(216, 181, 107, .025),
    0 0 0 76px rgba(216, 181, 107, .02);
}

.card-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 21px;
}

.card-label {
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}

.service-card p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--cream-soft);
  font-size: 14px;
  line-height: 1.7;
}

.card-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 75%);
}

.service-card-image {
  padding: 0;
  border: 0;
}

.service-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  filter: saturate(.82);
  transition: transform 400ms var(--ease), filter 250ms ease;
}

.service-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 40%, rgba(7, 19, 15, .9));
}

.service-card-image:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.image-card-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 26px;
}

.image-card-copy span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.image-card-copy strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.service-card-accent {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.service-card-accent:hover {
  color: var(--ink);
  background: #e3c27a;
  border-color: #e3c27a;
}

.service-card-accent .card-number,
.service-card-accent .card-label,
.service-card-accent p:last-child {
  color: rgba(7, 19, 15, .72);
}

.service-card-accent a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(7, 19, 15, .4);
  font-size: 13px;
  font-weight: 600;
}

.work {
  color: var(--ink);
  background: var(--cream);
}

.work .section-kicker {
  color: var(--gold-dark);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: clamp(54px, 7vw, 88px);
}

.work-heading > p {
  color: #4f5e53;
}

.work-heading h2 em {
  color: #76586b;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .62fr .62fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #c7c7bb;
  border-radius: var(--radius-sm);
}

.gallery-feature {
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.83) contrast(1.04);
  transition: transform 500ms var(--ease), filter 250ms ease;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent 58%, rgba(7, 19, 15, .78));
}

.gallery-item figcaption {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
}

.gallery-item figcaption span {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1;
}

.gallery-item figcaption small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.approach {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 49.9%, var(--line) 50%, transparent 50.1%),
    var(--ink-soft);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
}

.approach-intro {
  align-self: start;
  position: sticky;
  top: 140px;
}

.approach-intro h2 {
  margin-bottom: 34px;
}

.approach-intro > p {
  max-width: 530px;
  margin-bottom: 26px;
}

.text-link-light {
  color: var(--gold);
  border-color: rgba(216, 181, 107, .4);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding-block: 38px;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps > li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.steps p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--sage);
}

.quote-section {
  background: var(--ink);
}

.quote-panel {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 8vw, 110px);
  padding: clamp(34px, 6vw, 86px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 255, 255, .5), transparent 25%),
    var(--gold);
  border-radius: var(--radius-lg);
}

.quote-panel::after {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 540px;
  height: 540px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(7, 19, 15, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(7, 19, 15, .035),
    0 0 0 108px rgba(7, 19, 15, .025);
}

.quote-copy,
.enquiry-form {
  position: relative;
  z-index: 1;
}

.quote-panel .section-kicker {
  color: rgba(7, 19, 15, .65);
}

.quote-panel h2 {
  margin-bottom: 28px;
}

.quote-panel h2 em {
  color: #65485b;
}

.quote-copy > p {
  max-width: 490px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.contact-list a,
.contact-list p {
  min-height: 50px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-block: 8px;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.contact-list span {
  color: rgba(7, 19, 15, .56);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-list a:hover {
  color: #5e3f52;
}

.enquiry-form {
  align-self: center;
  padding: clamp(26px, 4vw, 46px);
  background: var(--cream);
  border: 1px solid rgba(7, 19, 15, .12);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(57, 37, 13, .18);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 19px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #2d3c31;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(7, 19, 15, .2);
  border-radius: 8px;
  outline: 0;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 116px;
}

.field input:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(166, 119, 48, .18);
}

.button-dark {
  width: 100%;
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  background: #173024;
}

.button-dark .button-arrow {
  color: var(--ink);
  background: var(--gold);
}

.form-note {
  margin: 12px 0 0;
  color: #58655b;
  font-size: 10px;
  line-height: 1.5;
}

.form-status {
  min-height: 1.5em;
  margin: 6px 0 0;
  color: #315b3e;
  font-size: 11px;
  font-weight: 600;
}

.site-footer {
  padding-block: 70px 110px;
  background: #050d0a;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand p {
  max-width: 210px;
  margin: 2px 0 0;
  color: var(--cream-soft);
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.footer-contact p {
  margin-bottom: 16px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
}

.footer-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream-soft);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.footer-contact a:hover,
.footer-meta a:hover {
  color: var(--gold);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
}

.footer-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
}

.footer-meta p {
  margin: 0;
  color: var(--sage-dark);
  font-size: 10px;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 32px, 900px);
  }

  .hero-grid {
    grid-template-columns: 1fr .72fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(60px, 8vw, 90px);
  }

  .image-frame img {
    min-height: 520px;
  }

  .hero-stamp {
    left: -32px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-wide {
    grid-row: auto;
  }

  .service-card-image {
    min-height: 320px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 260px 260px;
  }

  .gallery-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: calc(var(--z-menu) + 1);
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: var(--cream);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: var(--z-menu);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 100px 28px;
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 20%, rgba(200, 160, 183, .15), transparent 35%),
      var(--ink);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 0s linear 250ms, opacity 250ms ease, transform 250ms var(--ease);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav > a:not(.nav-cta) {
    font-family: var(--font-display);
    font-size: clamp(34px, 11vw, 54px);
    font-weight: 400;
    line-height: 1;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
  }

  .hero {
    padding-top: 102px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    padding-block: 44px 16px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(55px, 17vw, 82px);
    line-height: .9;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    width: 100%;
    justify-self: stretch;
  }

  .image-frame {
    max-width: none;
    border-radius: 210px 210px 18px 18px;
  }

  .image-frame img {
    min-height: 470px;
    border-radius: 198px 198px 12px 12px;
  }

  .hero-stamp {
    right: 20px;
    bottom: 60px;
    left: auto;
    width: 100px;
    height: 100px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .proof-strip p {
    min-height: 60px;
  }

  .proof-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 92px;
  }

  .section-heading,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .work-heading h2,
  .approach h2,
  .quote-panel h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card-image {
    min-height: 380px;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 220px 220px;
  }

  .gallery-feature {
    grid-column: 1 / -1;
  }

  .gallery-item figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-item figcaption span {
    font-size: 20px;
  }

  .approach {
    background: var(--ink-soft);
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .approach-intro {
    position: static;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
  }

  .quote-panel {
    padding: 26px 18px 18px;
    border-radius: 22px;
  }

  .contact-list a,
  .contact-list p {
    grid-template-columns: 54px 1fr;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .footer-meta {
    align-items: flex-start;
    gap: 28px;
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-mobile);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(7, 19, 15, .94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-actions a:first-child {
    color: var(--cream);
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--gold);
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: clamp(49px, 16vw, 68px);
  }

  .image-frame img {
    min-height: 420px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 360px repeat(4, 240px);
  }

  .gallery-feature {
    grid-column: auto;
  }

  .contact-list a {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
