:root {
  --obsidian: #0f1412;
  --ink: #1a211e;
  --bone: #eee9e0;
  --ivory: #f8f4ed;
  --pearl: #ddd6ca;
  --stone: #a79d90;
  --smoke: #5b625e;
  --bronze: #a88960;
  --jade: #0d3a32;
  --jade-deep: #061f1b;
  --graphite: #232a27;
  --jade-light: #2f685c;
  --line: rgba(26, 33, 30, .16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --wrap: min(1380px, calc(100vw - 96px));
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  background: var(--obsidian);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 83% 7%, rgba(168, 137, 96, .11), transparent 25rem),
    var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(168, 137, 96, .9), transparent);
  pointer-events: none;
}

::selection {
  background: var(--jade);
  color: var(--ivory);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}

h1 em,
h2 em {
  color: var(--jade);
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--obsidian);
}

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

:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 4px;
}

.material-section :focus-visible,
.cta-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--bronze);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(26, 33, 30, .14);
  transition: transform .48s var(--ease), background .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
  will-change: transform;
}

body.header-hidden:not(.menu-open) .site-header {
  transform: translate3d(0, -100%, 0);
}

body.header-scrolled .site-header {
  background: rgba(238, 233, 224, .9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 20, 18, .08);
}

body.menu-open .site-header {
  transform: none;
}

.header-inner {
  width: var(--wrap);
  min-height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 44px;
  justify-content: center;
  color: var(--ink);
}

.brand-mark {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: .9;
  letter-spacing: -.025em;
}

.brand-amp {
  color: var(--jade);
  font-style: italic;
}

.brand-bottom {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.brand-bottom i {
  width: 18px;
  height: 1px;
  background: var(--bronze);
}

.brand-bottom span {
  color: var(--smoke);
  font-size: .69rem;
  letter-spacing: .06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--jade);
  transition: transform .45s var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(26, 33, 30, .2);
  border-radius: 999px;
  background: rgba(248, 244, 237, .42);
  box-shadow: 0 8px 20px rgba(15, 20, 18, .08), inset 0 1px 0 rgba(255, 255, 255, .58);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(248, 244, 237, .28);
  box-shadow: 0 10px 28px rgba(15, 20, 18, .1), inset 0 1px 0 rgba(255, 255, 255, .48), inset 0 -1px 0 rgba(15, 20, 18, .08);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .45s ease, background .45s ease, border-color .45s ease, box-shadow .45s ease, transform .45s var(--ease);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 1px 1px 52%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), transparent);
  pointer-events: none;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  line-height: 1;
  transition: transform .45s var(--ease), background .35s ease, color .35s ease;
}

.icon-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button-icon .icon-arrow {
  width: 14px;
  height: 14px;
}

.icon-arrow-down {
  width: 18px;
  height: 18px;
}

.button:hover .button-icon {
  transform: translate(2px, -1px) scale(1.05);
}

.button:active {
  transform: translateY(-1px) scale(.985);
}

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

.button.primary,
.button.small {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(15, 20, 18, .84);
  color: var(--ivory);
  box-shadow: 0 12px 30px rgba(15, 20, 18, .2), inset 0 1px 0 rgba(255, 255, 255, .12), inset 0 -1px 0 rgba(0, 0, 0, .22);
}

.button.primary:hover,
.button.small:hover {
  border-color: rgba(168, 137, 96, .72);
  background: rgba(13, 58, 50, .88);
}

.button.small {
  min-height: 44px;
  padding-inline: 18px;
  gap: 18px;
  font-size: .72rem;
}

.button.outline {
  border-color: rgba(26, 33, 30, .25);
  background: rgba(248, 244, 237, .32);
  color: var(--ink);
}

.button.outline:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(15, 20, 18, .84);
  color: var(--ivory);
}

.button.light {
  border-color: rgba(250, 246, 240, .45);
  background: rgba(248, 244, 237, .76);
  color: var(--obsidian);
}

.button.light:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(168, 137, 96, .82);
}

.button.text {
  min-height: 44px;
  padding: 0 18px;
  border-color: rgba(26, 33, 30, .22);
  background: rgba(248, 244, 237, .32);
}

.button.text:hover {
  border-color: rgba(13, 58, 50, .46);
  background: rgba(13, 58, 50, .1);
  color: var(--jade);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15, 20, 18, .14), inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -1px 0 rgba(15, 20, 18, .08);
  }

  .button.primary:hover,
  .button.small:hover {
    box-shadow: 0 16px 36px rgba(6, 31, 27, .26), inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(0, 0, 0, .2);
  }
}

.button:active,
.menu-toggle:active,
.whatsapp-float:active {
  transform: scale(.975);
  transition-duration: .12s;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--jade);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--jade);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.depth-media {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 32%;
  --parallax: 0px;
  --scroll-rx: 0deg;
  --scroll-ry: 0deg;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --scroll-image-y: 0px;
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.depth-frame {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(250, 246, 240, .35);
  background: #202824;
  transform: translate3d(0, var(--parallax), 0) rotateX(var(--rx)) rotateY(var(--ry)) rotateX(var(--scroll-rx)) rotateY(var(--scroll-ry));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
  box-shadow: 0 24px 52px rgba(15, 20, 18, .16);
}

.depth-media:hover .depth-frame {
  box-shadow: 0 32px 72px rgba(15, 20, 18, .25);
}

.depth-shadow {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: -8%;
  width: 60%;
  height: 46%;
  border-radius: 50%;
  background: rgba(6, 31, 27, .25);
  filter: blur(24px);
  transform: translateZ(-40px);
}

.depth-frame img {
  width: 100%;
  height: 112%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  transform: translate3d(var(--pointer-x), calc(-6% + var(--pointer-y) + var(--scroll-image-y)), 25px) scale(1.08);
  transition: transform 1s var(--ease), filter .6s ease;
}

.depth-media:hover img {
  filter: saturate(.96) contrast(1.04);
}

.depth-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, .18), transparent 28%, transparent 70%, rgba(13, 58, 50, .16)),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 245, 229, .19), transparent 28%);
  mix-blend-mode: screen;
  transform: translateZ(42px);
}

.depth-media figcaption {
  width: min(88%, 490px);
  margin: 18px 0 0 auto;
  color: var(--smoke);
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
  line-height: 1.35;
}

.depth-landscape {
  aspect-ratio: 4 / 3;
}

.depth-wide {
  aspect-ratio: 16 / 10;
}

.depth-portrait {
  aspect-ratio: 4 / 5.35;
}

.depth-service {
  aspect-ratio: 5 / 3.6;
}

.depth-industry {
  aspect-ratio: 4 / 3;
}

.cinema-media {
  position: relative;
  width: min(100%, 700px);
  margin: 0;
  isolation: isolate;
}

.cinema-media::before {
  position: absolute;
  z-index: -1;
  inset: 11% 0 -7% 9%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(168, 137, 96, .22), transparent 68%);
  filter: blur(26px);
  transform: translate3d(0, 10px, 0);
}

.cinema-frame {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(26, 33, 30, .2);
  background: var(--graphite);
  box-shadow: 20px 24px 55px rgba(15, 20, 18, .18);
  transform: perspective(1200px) rotateX(calc(1.5deg + var(--rx, 0deg) + var(--scroll-rx, 0deg))) rotateY(calc(-2.5deg + var(--ry, 0deg) + var(--scroll-ry, 0deg))) translateY(var(--parallax, 0px));
  transform-origin: 100% 55%;
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}

.cinema-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(13, 58, 50, .42), transparent 43%, rgba(168, 137, 96, .16));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cinema-poster,
.cinema-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--pointer-x, 0px), calc(var(--scroll-image-y, 0px) + var(--pointer-y, 0px)), 0) scale(1.02);
}

.cinema-poster {
  filter: saturate(.78) contrast(1.04);
  transition: transform 1s var(--ease), filter .8s ease, opacity .7s ease;
}

.cinema-frame video {
  opacity: 0;
  filter: saturate(.72) contrast(1.06);
  transition: opacity .8s ease, transform 1.2s var(--ease), filter .8s ease;
}

.cinema-media.is-playing .cinema-frame video {
  opacity: .96;
}

.cinema-media.is-playing .cinema-poster {
  opacity: 0;
}

.cinema-sheen {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 24%, rgba(248, 244, 237, .24) 48%, transparent 67%);
  transform: translateX(-120%);
  transition: transform .2s ease;
}

.cinema-media.is-depth-visible .cinema-sheen {
  animation: cinema-sheen 8s 1.4s var(--ease) infinite;
}

.cinema-media:hover .cinema-frame,
.cinema-media:focus-within .cinema-frame {
  box-shadow: 26px 30px 70px rgba(15, 20, 18, .24);
  transform: perspective(1200px) rotateX(calc(var(--rx, 0deg) + var(--scroll-rx, 0deg))) rotateY(calc(var(--ry, 0deg) + var(--scroll-ry, 0deg))) translateY(calc(-5px + var(--parallax, 0px)));
}

.cinema-media:hover .cinema-poster,
.cinema-media:hover .cinema-frame video {
  transform: translate3d(var(--pointer-x, 0px), calc(var(--scroll-image-y, 0px) + var(--pointer-y, 0px)), 0) scale(1.055);
  filter: saturate(.88) contrast(1.05);
}

.cinema-dark .cinema-frame {
  border-color: rgba(250, 246, 240, .23);
  box-shadow: 22px 28px 66px rgba(6, 31, 27, .4);
}

.cinema-dark .cinema-frame::after {
  background: linear-gradient(135deg, rgba(6, 31, 27, .58), transparent 45%, rgba(168, 137, 96, .22));
}

.media-knot .cinema-frame {
  aspect-ratio: 1 / .92;
}

.media-orbit .cinema-frame {
  aspect-ratio: 5 / 4;
}

.media-column .cinema-frame,
.media-aperture .cinema-frame,
.media-constellation .cinema-frame,
.media-rings .cinema-frame,
.media-balance .cinema-frame,
.media-slab .cinema-frame,
.media-facet .cinema-frame,
.media-fold .cinema-frame {
  aspect-ratio: 4 / 3;
}

@keyframes cinema-sheen {
  0%, 66% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .cinema-frame {
    transform: perspective(1200px) rotateX(calc(.7deg + var(--rx, 0deg) + var(--scroll-rx, 0deg))) rotateY(0deg) translateY(var(--parallax, 0px));
  }

  .cinema-media:hover .cinema-frame,
  .cinema-media:focus-within .cinema-frame {
    transform: perspective(1200px) rotateX(calc(var(--rx, 0deg) + var(--scroll-rx, 0deg))) rotateY(0deg) translateY(calc(-4px + var(--parallax, 0px)));
  }
}

.home-hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 105px);
  padding-block: clamp(50px, 7vh, 90px) 68px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  top: 3%;
  right: -17vw;
  width: min(67vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(13, 58, 50, .09);
  border-radius: 50%;
  content: "";
}

.home-hero-copy {
  position: relative;
  z-index: 3;
}

.home-hero h1 {
  margin-bottom: 32px;
  font-size: clamp(5rem, 8.4vw, 9.1rem);
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 35px;
  color: var(--smoke);
  font-size: 1.08rem;
}

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

.home-hero-art {
  width: min(54vw, 760px);
  justify-self: end;
  transform: none;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-index a {
  color: var(--jade);
  font-size: 1.25rem;
}

.opening-question,
.industries-intro {
  padding-block: clamp(110px, 13vw, 195px);
  display: grid;
  grid-template-columns: 1.18fr .72fr;
  gap: 10vw;
  align-items: end;
}

.opening-question h2,
.industries-intro h2,
.section-heading h2,
.definition-copy h2,
.photo-story-copy h2,
.material-copy h2,
.faq-section h2,
.cta-section h2,
.mosaic-copy h2,
.enquiry-panel h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 5.9vw, 6.6rem);
}

.opening-question > div:last-child,
.industries-intro > div:last-child {
  padding-bottom: 5px;
  color: var(--smoke);
  font-size: 1.02rem;
}

.editorial-split,
.definition-section {
  padding-block: clamp(90px, 10vw, 155px);
  display: grid;
  grid-template-columns: .91fr .88fr;
  gap: clamp(60px, 9vw, 155px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.editorial-image {
  width: 88%;
}

.editorial-copy h2 {
  margin-bottom: 35px;
  font-size: clamp(3.3rem, 5.5vw, 6rem);
}

.editorial-copy > p:not(.eyebrow),
.definition-copy > p:not(.eyebrow),
.photo-story-copy > p:not(.eyebrow),
.material-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--smoke);
}

.editorial-copy .button {
  margin-top: 20px;
}

.expertise-section,
.answer-section,
.faq-section,
.industry-gallery,
.faq-directory,
.contact-layout,
.legal-layout {
  padding-block: clamp(105px, 11vw, 170px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(60px, 7vw, 105px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 30px;
  color: var(--smoke);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 5vw;
}

.service-card:nth-child(even) {
  padding-top: 0;
}

.service-card-copy {
  position: relative;
  padding: 35px 0 0 55px;
}

.service-card-copy > span {
  position: absolute;
  top: 42px;
  left: 0;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 3.5vw, 4.1rem);
}

.service-card p {
  max-width: 520px;
  color: var(--smoke);
}

.service-card ul,
.large-list {
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li,
.large-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.service-card li::before {
  width: 8px;
  height: 8px;
  margin: 0 16px 1px 2px;
  display: inline-block;
  content: "";
  border: 1px solid currentColor;
  transform: rotate(45deg);
  color: var(--jade);
}

.material-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 11vw, 165px);
  color: var(--ivory);
}

.material-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image: repeating-linear-gradient(118deg, transparent 0 18px, rgba(255, 255, 255, .025) 18px 19px);
  pointer-events: none;
}

.material-jade {
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 137, 96, .2), transparent 29rem),
    linear-gradient(125deg, var(--jade-deep), var(--jade));
}

.material-graphite {
  background:
    radial-gradient(circle at 82% 30%, rgba(168, 137, 96, .17), transparent 26rem),
    linear-gradient(120deg, #101613, var(--graphite));
}

.material-smoke {
  background:
    radial-gradient(circle at 22% 26%, rgba(168, 137, 96, .18), transparent 27rem),
    linear-gradient(125deg, #151b18, #39413d);
}

.material-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 8vw;
  align-items: center;
}

.material-copy {
  position: relative;
  z-index: 2;
}

.material-copy .eyebrow {
  color: var(--bronze);
}

.material-copy h2 em {
  color: var(--bronze);
}

.material-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(250, 246, 240, .72);
}

.material-copy .large-list li {
  border-color: rgba(250, 246, 240, .18);
  color: rgba(250, 246, 240, .78);
}

.answer-grid,
.search-intent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.answer-block {
  min-height: 270px;
  padding: clamp(30px, 4vw, 62px);
  background: var(--bone);
}

.answer-block h3 {
  max-width: 480px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.02;
}

.answer-block p {
  margin-bottom: 0;
  color: var(--smoke);
}

.image-triptych {
  padding-block: 60px clamp(120px, 13vw, 200px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
  align-items: center;
}

.image-triptych > div:nth-child(2) {
  transform: translateY(70px);
}

.faq-section {
  display: grid;
  grid-template-columns: .72fr 1.1fr;
  gap: 9vw;
  border-top: 1px solid var(--line);
}

.faq-section h2 {
  margin-bottom: 30px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.2;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  color: var(--jade);
  transition: transform .35s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.faq-answer p {
  max-width: 700px;
  margin: 0;
  padding: 0 42px 26px 0;
  overflow: hidden;
  color: var(--smoke);
}

details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(95px, 10vw, 150px);
  background: var(--obsidian);
  color: var(--ivory);
}

.cta-section::after {
  position: absolute;
  right: -8vw;
  bottom: -32vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(168, 137, 96, .2);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .6fr;
  gap: 10vw;
  align-items: end;
}

.cta-section .eyebrow,
.cta-section h2 em {
  color: var(--bronze);
}

.cta-copy p {
  margin-bottom: 28px;
  color: rgba(250, 246, 240, .67);
}

.page-hero {
  min-height: min(830px, calc(100svh - 104px));
  padding-block: clamp(70px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  align-items: center;
  gap: 3vw;
}

.page-hero-copy {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  margin-bottom: 32px;
  font-size: clamp(4.6rem, 7.4vw, 8.2rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--smoke);
  font-size: 1.05rem;
}

.page-hero-art {
  width: min(44vw, 620px);
  justify-self: end;
}

.page-hero-art .cinema-media,
.home-hero-art .cinema-media {
  width: 100%;
}

.jump-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.jump-nav a {
  min-height: 150px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
  transition: background .35s ease, color .35s ease;
}

.jump-nav a:last-child {
  border-right: 0;
}

.jump-nav a:hover {
  background: var(--jade);
  color: var(--ivory);
}

.jump-nav span {
  color: var(--bronze);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.search-intent {
  margin-block: clamp(100px, 11vw, 165px) 0;
}

.engagement-map {
  padding-block: clamp(110px, 12vw, 180px);
  background: var(--pearl);
}

.engagement-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.engagement-steps li {
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.engagement-steps li:last-child {
  border-right: 0;
}

.engagement-steps span {
  color: var(--jade);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.engagement-steps h3 {
  margin: 70px 0 22px;
  font-size: 2.25rem;
  line-height: 1;
}

.engagement-steps p {
  color: var(--smoke);
}

.definition-copy h2,
.photo-story-copy h2 {
  margin-bottom: 35px;
}

.definition-section > .depth-media {
  width: 92%;
  justify-self: end;
}

.photo-story {
  padding-block: clamp(95px, 11vw, 175px);
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: 8vw;
  align-items: center;
  border-top: 1px solid var(--line);
}

.photo-story.reverse {
  grid-template-columns: .82fr 1.08fr;
}

.photo-story.reverse > div:first-child {
  order: 2;
}

.photo-story-copy ol {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.photo-story-copy li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.photo-story-copy li span {
  color: var(--jade);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.process-section {
  padding-block: clamp(105px, 11vw, 165px);
  background: var(--pearl);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 330px;
  padding: 35px 28px;
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--jade);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.process-grid h3 {
  margin: 70px 0 20px;
  font-size: 2rem;
}

.process-grid p {
  color: var(--smoke);
}

.principles-section {
  padding-block: clamp(100px, 11vw, 170px);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle-grid article {
  min-height: 340px;
  padding: clamp(30px, 4vw, 58px);
  background: var(--bone);
}

.principle-grid span {
  color: var(--bronze);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.principle-grid h3 {
  margin: 80px 0 24px;
  font-size: 2.5rem;
}

.principle-grid p {
  color: var(--smoke);
}

.photo-mosaic {
  padding-block: 60px clamp(120px, 13vw, 190px);
  display: grid;
  grid-template-columns: .78fr 1.12fr .72fr;
  gap: 3vw;
  align-items: center;
}

.mosaic-copy {
  padding-left: 2vw;
}

.mosaic-copy h2 {
  margin-bottom: 30px;
}

.mosaic-copy p {
  margin-bottom: 28px;
  color: var(--smoke);
}

.industry-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 5vw;
}

.industry-card:nth-child(even) {
  padding-top: 0;
}

.industry-card > div:last-child {
  position: relative;
  padding: 32px 0 0 54px;
}

.industry-card > div:last-child > span {
  position: absolute;
  top: 39px;
  left: 0;
  color: var(--bronze);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.industry-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 3.7vw, 4.4rem);
}

.industry-card h3 {
  margin-bottom: 22px;
  color: var(--jade);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.industry-card p {
  color: var(--smoke);
}

.faq-directory {
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 10vw;
  align-items: start;
}

.faq-directory aside {
  position: sticky;
  top: 40px;
}

.faq-directory aside > p {
  margin-bottom: 25px;
  color: var(--smoke);
}

.faq-directory aside .depth-media {
  width: 78%;
  margin-top: 55px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 8vw;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-information > .depth-media {
  width: 68%;
  margin-bottom: 55px;
}

.contact-channel {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 115px 1fr auto;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-channel:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-channel span {
  color: var(--smoke);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-weight: 500;
}

.contact-channel:hover {
  color: var(--jade);
}

.office-address,
.appointment-note {
  margin-top: 55px;
}

.office-address p,
.appointment-note p {
  color: var(--smoke);
}

.appointment-note h2 {
  margin-bottom: 15px;
  font-size: 2.4rem;
}

.enquiry-panel {
  padding: clamp(38px, 5vw, 72px);
  background: var(--graphite);
  color: var(--ivory);
  box-shadow: 24px 24px 0 rgba(13, 58, 50, .13);
}

.enquiry-panel h2 {
  margin-bottom: 25px;
}

.enquiry-panel h2 em {
  color: var(--bronze);
}

.enquiry-panel > p {
  color: rgba(250, 246, 240, .7);
}

.enquiry-panel form {
  margin-top: 40px;
}

.enquiry-panel label {
  margin-bottom: 22px;
  display: grid;
  gap: 9px;
  color: rgba(250, 246, 240, .72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(250, 246, 240, .28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ivory);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.enquiry-panel option {
  background: var(--graphite);
}

.enquiry-panel textarea {
  resize: vertical;
}

.enquiry-panel input:focus,
.enquiry-panel select:focus,
.enquiry-panel textarea:focus {
  border-color: var(--bronze);
}

.enquiry-panel ::placeholder {
  color: rgba(250, 246, 240, .4);
}

.form-help,
.form-status {
  color: rgba(250, 246, 240, .58);
  font-size: .75rem;
}

.form-status {
  min-height: 1.4em;
  margin-top: 15px;
}

.legal-layout {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 10vw;
  align-items: start;
  border-top: 1px solid var(--line);
}

.legal-layout aside {
  position: sticky;
  top: 30px;
}

.legal-layout aside .text-link {
  margin-top: 35px;
}

.legal-copy {
  max-width: 830px;
}

.legal-copy h2 {
  margin: 65px 0 20px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--smoke);
}

.legal-copy a {
  color: var(--jade);
  text-decoration: underline;
}

.site-footer {
  padding: clamp(58px, 6vw, 88px) max(48px, calc((100vw - min(1380px, calc(100vw - 96px))) / 2)) 28px;
  background: #0f0d0e;
  color: rgba(250, 246, 240, .72);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .62fr .55fr .9fr;
  gap: 6vw;
}

.site-footer .brand {
  color: var(--ivory);
}

.site-footer .brand-mark {
  filter: brightness(0) invert(1);
}

.footer-signature > p {
  margin-top: 38px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  line-height: .98;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-group h2 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-group a {
  font-size: .85rem;
}

.footer-group a:hover {
  color: var(--bronze);
}

.footer-group p {
  margin-top: 15px;
  font-size: .78rem;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(250, 246, 240, .16);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.whatsapp-float {
  position: fixed;
  z-index: 75;
  right: 25px;
  bottom: 24px;
  min-height: 54px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(168, 137, 96, .56);
  border-radius: 999px;
  background: rgba(6, 31, 27, .78);
  color: var(--ivory);
  box-shadow: 0 14px 38px rgba(6, 31, 27, .32), inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .45s var(--ease), background .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  border-color: var(--bronze);
  background: rgba(13, 58, 50, .9);
  box-shadow: 0 18px 42px rgba(6, 31, 27, .38), inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .2);
}

.whatsapp-float svg {
  width: 21px;
  fill: var(--bronze);
}

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

.reveal.is-visible {
  animation: reveal-up 1s var(--ease) both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  :root {
    --wrap: min(100% - 56px, 980px);
  }

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

  .site-nav {
    gap: 18px;
    font-size: .72rem;
  }

  .site-nav .button {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-block: 85px 90px;
  }

  .home-hero h1 {
    font-size: clamp(4.7rem, 9vw, 7rem);
  }

  .opening-question,
  .industries-intro,
  .editorial-split,
  .definition-section,
  .photo-story,
  .material-grid,
  .cta-grid,
  .faq-section,
  .contact-layout,
  .legal-layout {
    gap: 6vw;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .photo-mosaic {
    grid-template-columns: .8fr 1.2fr;
  }

  .photo-mosaic .mosaic-copy {
    grid-column: 1 / -1;
    max-width: 700px;
    padding: 30px 0 0;
  }

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

  .footer-top .footer-group:last-child {
    grid-column: 2 / -1;
    margin-top: 20px;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: calc(100vw - 42px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(238, 233, 224, .92);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body.menu-open .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 91;
    width: 82px;
    height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .menu-toggle i {
    position: relative;
    width: 22px;
    height: 14px;
    flex: 0 0 22px;
    display: block;
    background: transparent;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform .3s var(--ease), opacity .2s ease;
  }

  .menu-toggle i::before {
    top: 2px;
  }

  .menu-toggle i::after {
    top: 11px;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    z-index: 110;
    border-color: rgba(250, 246, 240, .34);
    background: rgba(15, 20, 18, .82);
    color: var(--ivory);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(0, 0, 0, .22);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 130px 34px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: var(--obsidian);
    color: var(--ivory);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: opacity .35s ease, transform .45s var(--ease), visibility .35s;
  }

  .depth-shadow {
    display: none;
  }

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

  .site-nav.is-open > a:not(.button) {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open > a:nth-child(1) { transition-delay: .04s; }
  .site-nav.is-open > a:nth-child(2) { transition-delay: .08s; }
  .site-nav.is-open > a:nth-child(3) { transition-delay: .12s; }
  .site-nav.is-open > a:nth-child(4) { transition-delay: .16s; }

  .site-nav .button {
    display: inline-flex;
    margin-top: 24px;
  }

  .site-nav > a:not(.button) {
    opacity: 0;
    transform: translateY(18px);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 9vw, 5rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.08;
    text-transform: none;
    transition: opacity .35s ease, transform .55s var(--ease), color .25s ease;
  }

  .home-hero,
  .page-hero {
    padding-block: 70px 105px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-hero-copy,
  .page-hero-copy {
    grid-row: 1;
  }

  .home-hero-art,
  .page-hero-art {
    grid-row: 2;
    width: min(92vw, 620px);
    margin-top: 32px;
    justify-self: center;
    transform: none;
    min-width: 0;
  }

  .cinema-frame {
    min-height: 0;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(4.4rem, 14vw, 7rem);
  }

  .home-hero-copy > p:not(.eyebrow),
  .page-hero-copy > p:not(.eyebrow) {
    max-width: 620px;
  }

  .hero-index {
    bottom: 25px;
  }

  .opening-question,
  .industries-intro,
  .editorial-split,
  .definition-section,
  .photo-story,
  .photo-story.reverse,
  .material-grid,
  .faq-section,
  .cta-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .opening-question,
  .industries-intro {
    align-items: start;
  }

  .editorial-image,
  .definition-section > .depth-media {
    width: min(88%, 620px);
  }

  .definition-section > .depth-media {
    justify-self: start;
  }

  .photo-story.reverse > div:first-child {
    order: 0;
  }

  .material-grid .cinema-media {
    max-width: 560px;
    margin-inline: auto;
  }

  .service-card-grid,
  .answer-grid,
  .search-intent,
  .industry-gallery {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even),
  .industry-card:nth-child(even) {
    padding-top: 0;
  }

  .service-card + .service-card,
  .industry-card + .industry-card {
    margin-top: 25px;
  }

  .image-triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .jump-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .jump-nav a:nth-child(2) {
    border-right: 0;
  }

  .jump-nav a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .engagement-steps,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .engagement-steps li,
  .principle-grid article {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .engagement-steps li:last-child,
  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .engagement-steps h3,
  .principle-grid h3 {
    margin-top: 40px;
  }

  .faq-directory {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .faq-directory aside,
  .legal-layout aside {
    position: static;
  }

  .faq-directory aside .depth-media,
  .legal-layout aside .depth-media {
    width: min(65%, 440px);
    margin-top: 45px;
  }

  .contact-information > .depth-media {
    width: min(67%, 430px);
  }

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

  .footer-top .footer-group:last-child {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 580px) {
  :root {
    --wrap: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-bottom {
    gap: 5px;
    font-size: .72rem;
  }

  .brand-bottom span {
    font-size: .69rem;
    display: none;
  }

  .button {
    min-height: 52px;
    padding-inline: 17px;
    gap: 18px;
  }

  .home-hero,
  .page-hero {
    padding-top: 48px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(3.85rem, 18.5vw, 5.8rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .home-hero-art,
  .page-hero-art {
    width: 100%;
    margin-left: 0;
  }

  .hero-index {
    grid-template-columns: 1fr auto;
  }

  .hero-index span:nth-child(2) {
    display: none;
  }

  .opening-question h2,
  .industries-intro h2,
  .section-heading h2,
  .definition-copy h2,
  .photo-story-copy h2,
  .material-copy h2,
  .faq-section h2,
  .cta-section h2,
  .mosaic-copy h2,
  .enquiry-panel h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .editorial-image,
  .definition-section > .depth-media,
  .faq-directory aside .depth-media,
  .legal-layout aside .depth-media,
  .contact-information > .depth-media {
    width: 100%;
  }

  .service-card-copy,
  .industry-card > div:last-child {
    padding-left: 38px;
  }

  .image-triptych {
    padding-top: 0;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }

  .image-triptych > div:nth-child(2) {
    transform: translateY(35px);
  }

  .image-triptych > div:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    transform: translateX(105%);
  }

  .jump-nav {
    grid-template-columns: 1fr;
  }

  .jump-nav a {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .jump-nav a:last-child {
    border-bottom: 0;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2) {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 35px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .photo-mosaic .mosaic-copy {
    grid-column: 1 / -1;
  }

  .contact-channel {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .contact-channel strong {
    overflow-wrap: anywhere;
    font-size: .82rem;
  }

  .enquiry-panel {
    margin-inline: -16px;
    box-shadow: none;
  }

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

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

  .footer-signature,
  .footer-top .footer-group:last-child {
    grid-column: 1 / -1;
  }

  .footer-signature > p {
    margin-top: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .button,
  .menu-toggle,
  .whatsapp-float {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .button::before {
    display: none;
  }

  .button.primary,
  .button.small {
    background: var(--obsidian);
  }

  .button.outline,
  .button.text {
    background: var(--bone);
  }

  .button.light {
    background: var(--ivory);
  }

  .menu-toggle {
    background: var(--bone);
  }

  .whatsapp-float {
    background: var(--jade-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.header-hidden:not(.menu-open) .site-header {
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .depth-media {
    perspective: 900px;
  }

  .depth-frame {
    transform: translate3d(0, var(--parallax), 0) rotateX(var(--scroll-rx)) rotateY(var(--scroll-ry));
    transition-duration: .24s;
  }

  .depth-frame img {
    transform: translate3d(0, calc(-6% + var(--scroll-image-y)), 14px) scale(1.08);
  }

  .cinema-frame {
    transform: perspective(900px) rotateX(var(--scroll-rx)) rotateY(var(--scroll-ry)) translateY(var(--parallax));
    transition-duration: .24s;
  }

  .cinema-poster,
  .cinema-frame video {
    transform: translate3d(0, var(--scroll-image-y), 0) scale(1.02);
  }

  .depth-media.is-depth-visible .depth-glass {
    animation: mobile-sheen 5.8s ease-in-out infinite alternate;
  }
}

@keyframes mobile-sheen {
  from { opacity: .72; transform: translate3d(-1.5%, 0, 42px); }
  to { opacity: 1; transform: translate3d(1.5%, 0, 42px); }
}

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

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

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

  .depth-frame,
  .depth-frame img,
  .cinema-frame,
  .cinema-poster,
  .cinema-frame video {
    transform: none;
  }
}
