:root {
  --plum: #74274d;
  --teal: #276973;
  --ink: #0b0b0d;
  --paper: #f0eee9;
  --white: #fff;
  --line: rgba(255,255,255,.18);
  --pad: clamp(22px, 4.25vw, 68px);
  --section-y: clamp(78px, 9vw, 138px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 82px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; background: white; color: black; padding: .75rem 1rem; z-index: 100; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  padding: 0 clamp(20px, 2.2vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s, height .35s, border-color .35s;
}
.site-header.scrolled {
  height: 82px;
  background: rgba(11,11,13,.88);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.12);
}
.brand { width: clamp(142px, 8.8vw, 170px); display: block; line-height: 0; flex: 0 0 auto; transition: width .35s; }
.brand img { width: 100%; height: auto; filter: brightness(2.2); }
.site-header.scrolled .brand { width: 108px; }
.site-nav { display: flex; align-items: center; gap: clamp(24px,3vw,48px); font: 500 .75rem/1 Arial, sans-serif; text-transform: uppercase; letter-spacing: .11em; }
.site-nav a { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: white; transition: width .25s; }
.site-nav > a:hover::after { width: 100%; }
.site-nav .is-current::after { width: 100% !important; }
.nav-cta { border: 0; border-bottom: 1px solid rgba(255,255,255,.65); padding: 10px 0; }
.nav-cta span { margin-left: 14px; }
.menu-toggle { display: none; background: none; border: 0; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; background: #09090b; }
.hero-media { position: absolute; inset: -1%; width: 102%; height: 102%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.035); transition: opacity 1.4s ease; }
.hero-media.is-active { opacity: 1; z-index: 1; animation: heroDrift 7s ease-out both; }
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) { .hero-video { animation: none; } }
@keyframes heroDrift { from { transform: scale(1.075); } to { transform: scale(1.02); } }
.hero-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(3,3,6,.86) 0%, rgba(3,3,6,.36) 48%, rgba(3,3,6,.17) 100%), linear-gradient(0deg, rgba(3,3,6,.78) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 3; width: 100%; padding: 150px var(--pad) 54px; }
.eyebrow, .section-label { margin: 0 0 30px; font: 500 .72rem/1 Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before, .section-label::before { content: ""; display: inline-block; width: 34px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 12px; }
.hero h1, h2, h3 { font-family: Arial, sans-serif; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 1100px; font-size: clamp(4.2rem, 9.4vw, 9.6rem); line-height: .79; letter-spacing: -.018em; font-weight: 900; }
.hero-solid { display: block; }
.hero-outline { display: block; width: 7.8em; max-width: 100%; height: 1.1em; margin-block: -.14em; overflow: visible; }
.hero-outline text {
  fill: #fff;
  stroke: none;
  font-family: Arial, sans-serif;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-transform: uppercase;
}
.hero-bottom { display: grid; grid-template-columns: minmax(280px, 530px) 130px; justify-content: space-between; align-items: end; margin-top: 54px; }
.hero-bottom p { margin: 0; font-size: clamp(1rem,1.5vw,1.22rem); max-width: 520px; }
.round-link { width: auto; height: auto; border: 0; border-bottom: 1px solid rgba(255,255,255,.65); padding: 0 0 10px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font: 500 .7rem/1 Arial; letter-spacing: .11em; text-transform: uppercase; transition: border-color .25s; }
.round-link:hover { border-color: white; }
.round-link b, .round-link strong { font-size: 1rem; font-weight: 400; }
.hero-index { position: absolute; right: 20px; top: 50%; z-index: 3; transform: rotate(90deg); transform-origin: right; font: 500 .68rem Arial; letter-spacing: .18em; }

.section-pad { padding: var(--section-y) var(--pad); }
.intro { background: var(--paper); color: var(--ink); overflow: hidden; }
.intro-copy { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6vw; align-items: end; }
.intro h2, .services h2, .work h2, .about h2, .contact h2 { margin: 0; font-size: clamp(3rem, 6.8vw, 7rem); line-height: .88; letter-spacing: -.055em; font-weight: 900; }
.intro-copy > p { max-width: 500px; margin: 0 0 .6rem; font-size: clamp(1rem,1.6vw,1.3rem); }
.capability-marquee { width: calc(100% + (var(--pad) * 2)); margin: clamp(64px,8vw,110px) calc(var(--pad) * -1) -3vw; overflow: hidden; }
.capability-track { display: flex; width: max-content; animation: capability-scroll 28s linear infinite; will-change: transform; }
.capability-ticker { flex: none; display: flex; gap: clamp(28px,3vw,58px); align-items: center; padding-right: clamp(28px,3vw,58px); font: 900 clamp(3.8rem,10vw,10rem)/1 Arial; text-transform: uppercase; letter-spacing: -.055em; color: var(--plum); white-space: nowrap; }
.capability-ticker i, .capability-ticker em { font-size: .25em; color: var(--teal); font-style: normal; }
@keyframes capability-scroll { to { transform: translateX(-50%); } }

.services { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--teal); }
.services-sticky { min-height: min(88vh, 820px); position: sticky; top: 0; align-self: start; padding: var(--section-y) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.services-sticky h2 { font-size: clamp(3rem,5vw,6.5rem); }
.services-sticky > p:not(.section-label) { max-width: 380px; margin: 34px 0; }
.text-link { font: 500 .76rem Arial; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 12px; align-self: flex-start; }
.text-link span { margin-left: 25px; }
.service-list { border-left: 1px solid rgba(255,255,255,.2); }
.service-card { min-height: 270px; padding: 44px clamp(26px,4vw,64px); display: grid; grid-template-columns: 56px 1fr 80px; gap: 20px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); transition: background .3s, color .3s; }
.service-card:hover { background: var(--paper); color: var(--ink); }
.service-no { align-self: start; font: 500 .7rem Arial; letter-spacing: .1em; }
.service-card h3 { margin: 0 0 18px; font-size: clamp(2rem,4vw,4.3rem); letter-spacing: -.045em; }
.service-card p { max-width: 480px; margin: 0; }
.service-icon { font: 500 clamp(1.8rem,3vw,3.2rem) Arial; text-align: right; opacity: .65; }

.work { background: var(--ink); }
.work-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 7vw; align-items: end; margin-bottom: clamp(52px,6vw,82px); }
.work-heading > p { margin: 0; max-width: 430px; color: #bbb; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(300px, 34vw, 520px);
  gap: clamp(14px, 1.5vw, 24px);
}
.project { margin: 0; position: relative; overflow: hidden; min-height: 0; background: #17171a; }
.project-wide, .project-tall { grid-row: auto; aspect-ratio: auto; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.8); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.project:hover img { transform: scale(1.045); filter: saturate(1) brightness(.9); }
.project figcaption { position: absolute; inset: auto 0 0; min-height: 92px; padding: 38px clamp(18px,2vw,28px) 21px; display: flex; justify-content: space-between; gap: 20px; align-items: end; background: linear-gradient(transparent,rgba(0,0,0,.88)); }
.project figcaption span { font: 700 1.05rem Arial; text-transform: uppercase; }
.project figcaption b, .project figcaption strong { font: 500 .65rem Arial; letter-spacing: .09em; text-transform: uppercase; }

.manifesto { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 100px var(--pad); overflow: hidden; }
.manifesto > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.manifesto-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,.9), rgba(116,39,77,.45)); }
.manifesto .section-label, .manifesto blockquote, .manifesto-copy { position: relative; }
.manifesto blockquote { margin: 35px 0; font: 900 clamp(3.2rem,7vw,7.5rem)/.91 Arial; letter-spacing: -.055em; text-transform: uppercase; }
.manifesto blockquote em { color: #e2a3c4; font-style: normal; }
.manifesto-copy { width: min(420px,100%); margin-left: auto; font-size: 1.1rem; }

.about { background: var(--paper); color: var(--ink); display: grid; grid-template-columns: 1.15fr .65fr; gap: 8vw; align-items: start; }
.about-story > p:not(.section-label) { max-width: 700px; font-size: 1.06rem; }
.about-story h2 { margin-bottom: 48px; }
.stats { margin-top: 52px; padding-top: 25px; border-top: 1px solid rgba(0,0,0,.22); display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stats div { display: flex; flex-direction: column; }
.stats strong { font: 900 clamp(2.1rem,4vw,4rem) Arial; color: var(--plum); }
.stats span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.about-location { border-top: 1px solid rgba(0,0,0,.25); padding-top: 25px; position: sticky; top: 105px; }
.about-location > span { font: 500 .7rem Arial; text-transform: uppercase; letter-spacing: .12em; color: var(--plum); }
.about-location strong { display: block; margin: 24px 0; font: 900 clamp(1.8rem,3.2vw,3.5rem)/.95 Arial; text-transform: uppercase; letter-spacing: -.045em; }
.about-location p { color: #555; }
.dark-link { color: var(--ink); border-color: rgba(0,0,0,.35); margin-top: 20px; display: inline-block; }

.team { background: #dfe3e1; color: var(--ink); }
.team-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 7vw; align-items: end; margin-bottom: clamp(48px,6vw,80px); }
.team-heading > p { margin: 0; max-width: 460px; }
.team h2, .seo-content h2, .faq h2 { margin: 0; font: 900 clamp(3rem,6.3vw,6.7rem)/.88 Arial; text-transform: uppercase; letter-spacing: -.055em; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,28px); }
.team-card { min-width: 0; }
.team-card img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: center 28%; background: white; filter: contrast(1.03); }
.team-card div { padding: 20px 0 0; border-top: 4px solid var(--plum); }
.team-card h3 { margin: 0; font-size: clamp(1.35rem,2.2vw,2.2rem); letter-spacing: -.03em; }
.team-card p { margin: 6px 0 0; color: #555; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

.mosaic { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1.25fr; height: 45vw; max-height: 680px; min-height: 380px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); transition: filter .4s, flex .4s; }
.mosaic .mosaic-line-array { object-position: 73% center; }

.home-areas { background: #dfe3e1; color: var(--ink); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px,8vw,120px); }
.home-areas-heading h2 { margin: 0; font: 900 clamp(3rem,6.3vw,6.7rem)/.88 Arial,sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
.home-areas-heading > p:last-child { max-width: 560px; margin-top: 32px; }
.home-area-links { border-top: 4px solid var(--plum); }
.home-area-links a { display: grid; grid-template-columns: .7fr 1.3fr; gap: 25px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.22); transition: color .2s, padding .2s; }
.home-area-links a:hover { color: var(--plum); padding-left: 10px; }
.home-area-links strong { font: 900 clamp(1.25rem,2vw,2rem)/1 Arial,sans-serif; text-transform: uppercase; }
.home-area-links span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.mosaic img:hover { filter: saturate(1); }

.seo-content { background: var(--paper); color: var(--ink); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.seo-content h2 { font-size: clamp(2.6rem,5vw,5.4rem); }
.seo-columns { columns: 2; column-gap: 38px; align-self: end; }
.seo-columns p { margin: 0 0 1rem; break-inside: avoid; }

.faq { background: var(--ink); display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq h2 { font-size: clamp(2.8rem,5vw,5.6rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 27px 0; display: flex; justify-content: space-between; gap: 25px; font: 500 clamp(.98rem,1.3vw,1.15rem) Arial; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -7px 0 28px; max-width: 680px; color: #bbb; }

.contact { background: var(--plum); min-height: 72vh; padding: var(--section-y) var(--pad); display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: center; }
.contact-copy > p:last-child { max-width: 480px; margin-top: 36px; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.5); }
.contact-main, .contact-sub { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,.5); transition: background .25s, padding .25s; }
.contact-main { padding: 38px 0; font: 500 clamp(1rem,2vw,1.7rem) Arial; }
.contact-main b, .contact-main strong { font-size: 2rem; }
.contact-sub { padding: 24px 0; }
.contact-sub b, .contact-sub strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-main:hover, .contact-sub:hover { background: rgba(255,255,255,.08); padding-left: 18px; padding-right: 18px; }
.address { display: flex; justify-content: space-between; padding-top: 38px; font-style: normal; }
.address span { font: 500 .72rem Arial; text-transform: uppercase; letter-spacing: .09em; }
.address p { margin: 0; }

.site-footer { min-height: 300px; padding: 52px var(--pad) 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.site-footer > img { width: 190px; height: auto; aspect-ratio: 2200 / 1094; object-fit: contain; filter: brightness(2); }
.site-footer > p { margin: 0; text-align: right; font: 500 .72rem Arial; text-transform: uppercase; letter-spacing: .14em; }
.footer-links { grid-column: 1 / -1; display: flex; gap: 38px; align-self: end; padding-top: 55px; border-top: 1px solid rgba(255,255,255,.18); font-size: .78rem; text-transform: uppercase; }
.green-hosting { font-size: .76rem; color: #aebdb7; }
.green-hosting span { margin-right: 6px; }
.site-footer small { grid-column: 2; text-align: right; color: #888; }

.hire-page { background: var(--paper); color: var(--ink); }
.hire-header { position: relative; background: var(--ink); color: var(--white); }
.hire-header .site-nav,
.hire-header .menu-toggle { color: var(--white); }
.hire-intro {
  padding: clamp(70px, 8vw, 120px) var(--pad) clamp(50px, 6vw, 82px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
}
.hire-intro h1 {
  margin: 0;
  font: 900 clamp(3.7rem, 7.5vw, 8rem)/.84 Arial, sans-serif;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hire-intro-copy { max-width: 560px; }
.hire-intro-copy p { margin: 0 0 28px; font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hire-intro-copy a {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.4);
  font: 500 .72rem Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.catalogue-shell {
  position: relative;
  width: calc(100% - (var(--pad) * 2));
  height: max(780px, calc(100vh - 100px));
  margin: 0 var(--pad) var(--pad);
  border: 1px solid rgba(0,0,0,.18);
  background: white;
  overflow: hidden;
}
.catalogue-shell iframe { display: block; width: 100%; height: 100%; border: 0; background: white; }
.hire-footer {
  padding: 28px var(--pad);
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  background: var(--ink);
  color: white;
  font-size: .78rem;
}
.hire-footer span { margin-right: auto; color: #aaa; }
.hire-footer a { border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; }

.chat-launch {
  position: fixed;
  right: 22px;
  bottom: 108px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  font: 700 .72rem/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chat-launch b, .chat-launch strong { font-size: 1rem; font-weight: 400; }
.chat-launch:hover { background: #8c315e; }

body.booking-open { overflow: hidden; }
.booking-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow: auto;
}
.booking-dialog::backdrop { background: rgba(7,7,9,.78); backdrop-filter: blur(8px); }
.booking-panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 650px; }
.booking-intro { padding: clamp(42px,6vw,78px); background: var(--plum); color: white; }
.booking-intro h2 { margin: 0; font: 900 clamp(2.8rem,5vw,5.5rem)/.88 Arial, sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
.booking-intro > p:not(.section-label) { margin-top: 34px; max-width: 390px; }
.booking-contact { display: grid; gap: 10px; margin-top: 48px; font-size: .85rem; }
.booking-contact a { width: max-content; border-bottom: 1px solid rgba(255,255,255,.5); }
.booking-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}
.booking-form { display: grid; gap: 22px; align-content: center; padding: clamp(54px,6vw,82px); }
.booking-form label { display: grid; gap: 8px; min-width: 0; }
.booking-form label > span:first-child { font: 700 .7rem/1 Arial, sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.35);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.booking-form textarea { resize: vertical; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 0; border-color: var(--plum); box-shadow: 0 1px 0 var(--plum); }
.booking-form .form-consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; font-size: .78rem; }
.booking-form .form-consent input { width: 16px; margin: 2px 0 0; }
.booking-form .form-consent span { font: inherit; letter-spacing: 0; text-transform: none; }
.booking-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 18px 20px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font: 700 .75rem Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.booking-submit:hover { background: var(--plum); }
.booking-note { margin: -10px 0 0; color: #666; font-size: .72rem; }
.booking-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-status { display:none; padding:14px 16px; font-size:.85rem; }
.booking-status.is-visible { display:block; }
.booking-status.success { background:#dcece5; color:#175c3d; }
.booking-status.error { background:#f8dfe4; color:#7a1730; }
.booking-submit[disabled] { opacity:.55; cursor:wait; }
.booking-form select option:disabled { color:#999; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 76px; }
  .brand { width: 122px; }
  .site-header.scrolled { height: 76px; }
  .site-header.scrolled .brand { width: 100px; }
  .menu-toggle { display: block; width: 48px; height: 48px; position: relative; padding: 0; cursor: pointer; }
  .menu-toggle i { position: absolute; left: 10px; width: 28px; height: 2px; background: white; transition: transform .25s, top .25s; }
  .menu-toggle i:nth-of-type(1) { top: 17px; }
  .menu-toggle i:nth-of-type(2) { top: 29px; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { top: 20px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 75px 0 auto; background: var(--ink); padding: 35px var(--pad) 50px; flex-direction: column; align-items: stretch; gap: 0; transform: translateY(-140%); transition: transform .35s; border-bottom: 1px solid #333; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 19px 0; border-bottom: 1px solid #333; font-size: 1rem; }
  .nav-cta { border-bottom: 1px solid #333; }
  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: clamp(3.7rem,15vw,7rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 35px; }
  .round-link { width: max-content; margin-left: auto; }
  .intro-copy, .work-heading, .about, .team-heading, .seo-content, .faq, .contact { grid-template-columns: 1fr; }
  .home-areas { grid-template-columns: 1fr; }
  .intro-copy > p { margin-top: 35px; }
  .services { grid-template-columns: 1fr; }
  .services-sticky { min-height: auto; position: relative; padding-top: 82px; padding-bottom: 68px; }
  .service-list { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .service-card { min-height: 230px; }
  .work-heading { gap: 35px; }
  .about { gap: 80px; }
  .about-location { position: relative; top: 0; max-width: 600px; }
  .team-heading, .seo-content, .faq { gap: 38px; }
  .seo-columns { columns: 1; max-width: 720px; }
  .mosaic { grid-template-columns: 1fr 1fr; height: 100vw; max-height: none; }
  .contact { gap: 70px; }
  .hire-intro { grid-template-columns: 1fr; gap: 36px; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-intro { padding-bottom: 42px; }
  .booking-contact { margin-top: 28px; }
  .booking-form { padding-top: 48px; }
}

@media (max-width: 620px) {
  .eyebrow { max-width: 260px; line-height: 1.4; }
  .hero-index { display: none; }
  .hero-bottom { margin-top: 40px; }
  .intro h2, .services h2, .work h2, .about h2, .contact h2 { font-size: clamp(2.7rem,13vw,4.2rem); }
  :root { --section-y: 72px; }
  .capability-marquee { margin-top: 62px; }
  .capability-ticker { font-size: 4.2rem; }
  .service-card { grid-template-columns: 34px 1fr; padding: 38px 24px; }
  .service-icon { display: none; }
  .project-grid { grid-template-columns: 1fr; }
  .project-grid { grid-auto-rows: auto; }
  .project-wide, .project-tall, .project { grid-row: auto; aspect-ratio: 1.05; }
  .project figcaption { flex-direction: column; align-items: flex-start; gap: 7px; }
  .manifesto { min-height: 80svh; }
  .manifesto blockquote { font-size: 3rem; }
  .manifesto-copy { margin-left: 0; }
  .stats { gap: 15px; }
  .stats strong { font-size: 2.4rem; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-card img { aspect-ratio: .9; }
  .mosaic { grid-template-columns: 1fr; height: auto; }
  .mosaic img { height: 72vw; }
  .contact-main { font-size: .95rem; }
  .address { flex-direction: column; gap: 18px; }
  .site-footer { grid-template-columns: 1fr; }
  .home-area-links a { grid-template-columns: 1fr; gap: 8px; }
  .site-footer > p { text-align: left; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .green-hosting, .site-footer small { grid-column: 1; text-align: left; }
  .catalogue-shell { width: 100%; height: calc(100vh - 76px); min-height: 680px; margin: 0; border-left: 0; border-right: 0; }
  .hire-footer { flex-direction: column; align-items: flex-start; }
  .hire-footer span { margin-right: 0; }
  .chat-launch { right: 14px; bottom: 14px; padding: 13px 15px; }
  .hero-video { object-position: 50% 50%; }
  .booking-dialog { width: 100%; max-height: 100dvh; height: 100dvh; }
  .booking-panel { min-height: 100%; }
  .booking-intro { padding: 54px 24px 34px; }
  .booking-intro h2 { font-size: 2.7rem; }
  .booking-form { padding: 38px 24px 48px; align-content: start; }
  .form-row { grid-template-columns: 1fr; }
  .booking-close { position: fixed; color: white; border-color: rgba(255,255,255,.5); }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .capability-track { transform: translateX(-8%); }
}
