:root {
  --orange: #f58220;
  --orange-deep: #9b3d00;
  --heineken-green: #0d7e3f;
  --black: #090909;
  --white: #ffffff;
  --grey: #6d6d6d;
  --line: rgba(10, 10, 10, 0.16);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 6.25rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--orange);
  transform: translateY(-120%);
  transition: transform .2s;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  height: 7.5rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  transition: background-color .35s var(--ease), color .35s var(--ease), height .35s var(--ease);
}

.site-header.is-scrolled {
  height: 6rem;
  color: var(--white);
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, .18);
}

.brand {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.5rem;
  padding: .3rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, .28);
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.brand img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  object-position: center;
  transition: width .35s var(--ease), height .35s var(--ease);
}

.site-header.is-scrolled .brand img {
  width: 3.7rem;
  height: 3.7rem;
}

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 0;
}

.desktop-nav a {
  display: grid;
  place-items: center;
  min-width: 7.1rem;
  padding-inline: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, .18);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: color .25s, background-color .25s;
}

.desktop-nav .nav-wordmark {
  min-width: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .08rem;
  padding: .65rem 1.4rem;
  text-align: center;
  text-transform: none;
}

.nav-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: .075em;
  line-height: .9;
}

.nav-wordmark span {
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--black);
  background: var(--white);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.header-contact,
.header-cta {
  display: grid;
  place-items: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.header-contact {
  width: 7.25rem;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, .18);
  transition: color .25s, background-color .25s;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--black);
  background: var(--white);
}

.header-cta {
  width: 13rem;
  color: var(--black);
  background: var(--orange);
  border-left: 1px solid rgba(255, 255, 255, .18);
  transition: background-color .25s;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: 5.25rem auto 1fr;
  color: var(--black);
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

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

.mobile-menu__top {
  display: grid;
  grid-template-columns: 1fr 5.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__top img {
  width: 9rem;
  height: 5.25rem;
  padding: .45rem 1.25rem;
  object-fit: cover;
  object-position: 50% 49%;
}

.menu-close {
  position: relative;
  border: 0;
  border-left: 1px solid var(--line);
  background: none;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 1px;
  background: var(--black);
}

.menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu nav {
  padding-inline: 1.25rem;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  min-height: 4.75rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 6vw, 2.2rem);
  font-weight: 400;
}

.mobile-menu nav span {
  color: var(--orange-deep);
  font-size: .72rem;
  font-weight: 700;
}

.mobile-menu__footer {
  align-self: end;
  display: grid;
  gap: .45rem;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
  font-size: .87rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-stage,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-stage {
  transform: scale(1.03);
  will-change: transform;
}

.hero-stage img,
.hero-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-stage video { display: block; }

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .08) 54%, rgba(0, 0, 0, .18) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 44%;
  left: 13.5%;
  width: min(48rem, 64vw);
  transform: translateY(-38%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -.08em;
  bottom: -.08em;
  left: -.03em;
  height: .12em;
  background: var(--orange);
  transform: skewX(-13deg);
}

.hero-copy > p {
  max-width: 35rem;
  margin: 2rem 0 1.75rem;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.arrow-link svg,
.submit-button svg {
  width: 3.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform .25s var(--ease);
}

.arrow-link:hover svg,
.arrow-link:focus-visible svg,
.submit-button:hover svg,
.submit-button:focus-visible svg {
  transform: translateX(.45rem);
}

.arrow-link--light svg {
  color: var(--orange);
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 2.75rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-index i {
  width: 5rem;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 2.2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-cue i {
  position: relative;
  width: 1.1rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 1rem;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: .3rem;
  left: 50%;
  width: 2px;
  height: .38rem;
  background: var(--orange);
  transform: translateX(-50%);
  animation: scroll-dot 1.5s infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: .3; }
  50% { transform: translate(-50%, .45rem); opacity: 1; }
}

.section-white {
  background: var(--white);
}

.section-number {
  color: var(--orange-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.section-number--light {
  color: var(--orange);
}

.section-label {
  margin: 0 0 1.5rem;
  color: var(--grey);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(255, 255, 255, .62);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 12.5% 37.5% 37.5% 12.5%;
  min-height: 53rem;
  border-bottom: 1px solid var(--line);
}

.intro > .section-number {
  grid-column: 1;
  padding: 7.5rem 0 0 var(--gutter);
}

.intro-heading {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: start;
  padding: 7.4rem 5vw 4rem;
}

.intro-heading h2,
.approach-title h2,
.faq-heading h2 {
  margin: 0;
  max-width: 68rem;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .98;
}

.intro-heading h2 span,
.approach-title h2 span,
.contact-heading h2 span {
  color: var(--orange-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.intro-body {
  grid-column: 3 / 5;
  grid-row: 2;
  display: grid;
  align-content: start;
  padding: .25rem 4.5vw 5.5rem 5vw;
  border-left: 1px solid var(--line);
}

.about-copy__lead {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.about-copy__label {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin: 0 0 1.2rem;
  color: var(--orange-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-copy__label span {
  width: 2.5rem;
  height: 2px;
  background: var(--orange);
  transform-origin: left;
  transition: transform .7s .15s var(--ease);
}

.intro-body .lead {
  max-width: 44rem;
  margin: 0;
  color: var(--black);
  font-size: clamp(1.6rem, 2.35vw, 2.75rem);
  letter-spacing: -.035em;
  line-height: 1.2;
}

.about-copy__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 2.4rem;
}

.about-copy__details p {
  max-width: 31rem;
  margin: 0;
  color: #4e4e4e;
  font-size: 1rem;
  line-height: 1.65;
}

.about-copy__details p + p {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line);
}

.js .intro-body.reveal:not(.is-visible) .about-copy__label span {
  transform: scaleX(0);
}

.about-disclosure {
  grid-column: 2 / 4;
  grid-row: 3;
  margin: 0 4.5vw 5.5rem;
  border: 1px solid var(--line);
  overflow: clip;
}

.about-disclosure__heading {
  display: grid;
  grid-template-columns: minmax(16rem, .8fr) minmax(18rem, 1.2fr);
  gap: 3rem;
  align-items: end;
  padding: 2.75rem 3rem;
  background: #f5f3ef;
  border-bottom: 1px solid var(--line);
}

.about-disclosure__heading .section-label {
  grid-column: 1;
  margin-bottom: .8rem;
}

.about-disclosure__heading h3 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1;
}

.about-disclosure__heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 31rem;
  margin: 0;
  color: #4a4a4a;
  font-size: 1.05rem;
}

.about-disclosure__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-topic-card {
  min-width: 0;
  background: var(--white);
}

.about-topic-card summary {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 2.75rem;
  gap: 1.25rem;
  align-items: center;
  min-height: 10rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  list-style: none;
  transition: color .35s var(--ease), background-color .35s var(--ease);
}

.about-topic-card summary::-webkit-details-marker {
  display: none;
}

.about-topic-card summary:hover,
.about-topic-card summary:focus-visible,
.about-topic-card[open] summary {
  color: var(--black);
  background: var(--orange);
}

.about-topic-card__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--orange-deep);
  background: #f4f2ee;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .35s var(--ease), background-color .35s var(--ease), transform .45s var(--ease);
}

.about-topic-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-topic-card summary:hover .about-topic-card__icon,
.about-topic-card summary:focus-visible .about-topic-card__icon,
.about-topic-card[open] .about-topic-card__icon {
  color: var(--orange);
  background: var(--black);
  transform: rotate(-6deg) scale(1.04);
}

.about-topic-card summary small,
.about-topic-card summary strong {
  display: block;
}

.about-topic-card summary small {
  margin-bottom: .5rem;
  color: var(--orange-deep);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-topic-card summary strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.about-topic-card summary > i {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color .35s var(--ease), background-color .35s var(--ease), transform .45s var(--ease);
}

.about-topic-card summary > i::before,
.about-topic-card summary > i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease);
}

.about-topic-card summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-topic-card summary:hover > i,
.about-topic-card summary:focus-visible > i,
.about-topic-card[open] summary > i {
  color: var(--orange);
  background: var(--black);
  transform: rotate(180deg);
}

.about-topic-card[open] summary > i::after {
  transform: translate(-50%, -50%);
}

.about-topic-card__content {
  padding: 2rem 2rem 2.5rem 6.75rem;
  border-top: 1px solid var(--line);
  animation: about-content-in .55s var(--ease) both;
}

.about-topic-card__content p {
  max-width: 32rem;
  margin: 0;
  color: #3f3f3f;
}

@keyframes about-content-in {
  from { opacity: 0; transform: translateY(-1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.client-experience {
  grid-column: 1 / -1;
  grid-row: 4;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  margin: 0;
  color: var(--white);
  background: var(--black);
  border: 0;
  isolation: isolate;
  overflow: hidden;
}

.client-experience__copy {
  position: relative;
  z-index: 1;
  padding: 4.5rem clamp(1.25rem, 8vw, 10rem);
}

.client-experience__copy h3 {
  max-width: 43rem;
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1;
}

.client-experience__copy h3 span {
  color: var(--heineken-green);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.client-experience__logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 19rem;
  margin: 0;
  padding: 2rem;
  background: var(--black);
}

.client-experience__logo img {
  width: min(100%, 26rem);
  height: auto;
}

@media (min-width: 821px) {
  .client-experience__logo {
    left: clamp(-4rem, -3.25vw, -2rem);
  }
}

.js .client-experience--reveal.reveal {
  opacity: 1;
  background: transparent;
  border-color: transparent;
  transform: none;
  transition: none;
}

.js .client-experience--reveal .client-experience__logo {
  background: transparent;
}

.js .client-experience--reveal.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.05s var(--ease);
}

.js .client-experience--reveal.reveal.is-visible::before {
  transform: scaleX(1);
}

.js .client-experience--reveal .client-experience__copy,
.js .client-experience--reveal .client-experience__logo {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.js .client-experience--reveal .client-experience__logo img {
  transform: scale(.9);
  transition: transform .8s var(--ease);
}

.js .client-experience--reveal.is-visible .client-experience__copy,
.js .client-experience--reveal.is-visible .client-experience__logo {
  opacity: 1;
  transform: translateY(0);
}

.js .client-experience--reveal.is-visible .client-experience__copy {
  transition-delay: .35s;
}

.js .client-experience--reveal.is-visible .client-experience__logo {
  transition-delay: .5s;
}

.js .client-experience--reveal.is-visible .client-experience__logo img {
  transform: scale(1);
  transition-delay: .5s;
}

.intro-visual {
  grid-column: 1 / 3;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.intro-media {
  flex: 0 0 auto;
  width: calc(100% - 4.5vw);
  aspect-ratio: 16 / 7;
  margin: 0;
  border: 1px solid var(--line);
  border-left: 0;
  overflow: hidden;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transition: transform .8s var(--ease);
}

.intro-media:hover img {
  transform: scale(1.025);
}

.about-motion {
  position: relative;
  flex: 1 1 auto;
  min-height: 22rem;
  color: var(--black);
  background: #f5f3ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.about-motion__meta {
  position: absolute;
  top: 1.75rem;
  right: 2.25rem;
  display: flex;
  gap: .6rem;
  align-items: center;
  color: #777;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-motion__meta i {
  color: var(--orange);
  font-style: normal;
}

.about-motion__stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 6rem), 43rem);
  min-height: 10rem;
  transform: translate(-50%, -50%);
}

.about-motion__wordmark {
  width: max-content;
  max-width: 100%;
  clip-path: inset(0 100% 0 0);
  animation: about-word-write 6.2s var(--ease) infinite;
}

.about-motion__wordmark strong,
.about-motion__wordmark span {
  display: block;
}

.about-motion__wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.2rem, 8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .8;
}

.about-motion__wordmark span {
  margin-top: 1.15rem;
  padding-left: .45rem;
  color: var(--orange-deep);
  font-size: clamp(.85rem, 1.2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .52em;
  line-height: 1;
}

.about-motion__pen {
  position: absolute;
  top: -.7rem;
  bottom: -.8rem;
  left: 0;
  width: 2px;
  background: var(--orange);
  opacity: 0;
  transform: translateX(-50%);
  animation: about-pen-write 6.2s var(--ease) infinite;
}

.about-motion__pen::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -.25rem;
  width: .55rem;
  height: .55rem;
  background: var(--orange);
  border-radius: 50%;
  transform: translateX(50%);
}

.about-motion__underline {
  position: absolute;
  right: 0;
  bottom: -1.65rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: about-underline-write 6.2s var(--ease) infinite;
}

.about-motion__caption {
  position: absolute;
  bottom: 1.35rem;
  left: 2.25rem;
  margin: 0;
  color: #777;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes about-word-write {
  0%, 8% { clip-path: inset(0 100% 0 0); }
  55%, 100% { clip-path: inset(0); }
}

@keyframes about-pen-write {
  0%, 8% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  55% { left: 100%; opacity: 1; }
  62%, 100% { left: 100%; opacity: 0; }
}

@keyframes about-underline-write {
  0%, 48% { transform: scaleX(0); }
  68%, 100% { transform: scaleX(1); }
}

.proof-strip {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof-strip div {
  min-height: 10rem;
  padding: 2rem var(--gutter);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child { border-right: 0; }
.proof-strip dt {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1;
}
.proof-strip dd {
  margin: .75rem 0 0;
  color: var(--grey);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.intro > .about-world {
  grid-column: 1 / -1;
  grid-row: 5;
}

.services {
  position: relative;
  display: grid;
  grid-template-columns: 37.5% 37.5% 25%;
  min-height: 58rem;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.service-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  padding: 7rem var(--gutter) 4rem;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.service-copy .section-number {
  margin-bottom: 5.5rem;
}

.service-copy h2,
.principles h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5vw, 5.7rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .98;
}

.service-summary {
  max-width: 25rem;
  min-height: 8rem;
  margin: 3rem 0 1.5rem;
  color: rgba(255, 255, 255, .67);
  font-size: 1.05rem;
}

.service-list {
  position: relative;
  z-index: 2;
  grid-column: 2 / 4;
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr 3rem;
  align-items: center;
  width: 100%;
  min-height: 8.7rem;
  padding: 0 var(--gutter);
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: color .35s var(--ease), background-color .35s var(--ease), padding-left .35s var(--ease);
}

.service-item:hover,
.service-item:focus-visible,
.service-item.is-active {
  color: var(--black);
  background: var(--orange);
  padding-left: calc(var(--gutter) + 1rem);
}

.service-item__number {
  font-size: .7rem;
  font-weight: 700;
}

.service-item__detail { display: none; }

.service-item strong {
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -.035em;
}

.service-item i {
  position: relative;
  width: 2rem;
  height: 2rem;
}

.service-item i::before,
.service-item i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}

.service-item i::after {
  width: .65rem;
  transform: rotate(45deg);
  transform-origin: right center;
}

.service-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: .3;
}

.service-visual__number {
  position: absolute;
  right: -2vw;
  bottom: -12vw;
  color: rgba(255, 255, 255, .08);
  font-size: 44vw;
  font-weight: 700;
  letter-spacing: -.12em;
  line-height: .75;
}

.service-visual__mark {
  position: absolute;
  top: 11%;
  right: 6%;
  width: 18rem;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 130, 32, .5);
  border-radius: 50%;
  transition: transform .65s var(--ease);
}

.service-visual__mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: rgba(245, 130, 32, .7);
  transform-origin: center;
}

.service-visual__mark span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.service-visual__mark span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.service-visual__mark span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); }

.pipework {
  padding: 7rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.pipework-heading {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
  column-gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
  padding-bottom: 4.5rem;
}

.pipework-heading .section-label {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.pipework-heading h2 {
  grid-column: 1;
  grid-row: 1 / 3;
  max-width: 52rem;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .98;
}

.pipework-heading h2 span {
  color: var(--orange-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.pipework-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  max-width: 28rem;
  margin: 1.5rem 0 0;
  color: var(--grey);
  font-size: 1.05rem;
}

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

.pipe-card {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  background: var(--white);
}

.pipe-card:nth-child(1) {
  grid-column: span 7;
}

.pipe-card:nth-child(2) {
  grid-column: span 5;
}

.pipe-card figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e9e9e9;
}

.pipe-card:nth-child(n + 3) figure {
  aspect-ratio: 4 / 3;
}

.pipe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}

.pipe-card:nth-child(1) img {
  object-position: center 64%;
}

.pipe-card:nth-child(2) img {
  object-position: center 56%;
}

.pipe-card:nth-child(3) img {
  object-position: center 64%;
}

.pipe-card:nth-child(4) img {
  object-position: center 48%;
}

.pipe-card:nth-child(5) img {
  object-position: center 52%;
}

.pipe-card:hover img {
  transform: scale(1.025);
}

.pipe-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 19rem;
  padding: 2rem;
}

.pipe-card__copy > span {
  display: block;
  margin-bottom: 2.75rem;
  color: var(--orange-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pipe-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.pipe-card p {
  max-width: 30rem;
  margin: 0 0 2rem;
  color: var(--grey);
}

.pipe-card__action {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: .7rem 0;
  color: var(--black);
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
  cursor: pointer;
}

.pipe-card__action svg {
  width: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform .3s var(--ease);
}

.pipe-card__action:hover svg,
.pipe-card__action:focus-visible svg {
  transform: translateX(.3rem);
}

.pipework-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 0;
}

.pipework-footer > p {
  max-width: 43rem;
  margin: 0;
  color: var(--grey);
  font-size: .85rem;
}

.pipework-footer .arrow-link {
  margin-top: 0;
}

.pipework-footer--cta-only {
  justify-content: flex-end;
}

.pipe-dialog {
  width: min(74rem, calc(100vw - 3rem));
  max-width: none;
  max-height: min(52rem, calc(100dvh - 3rem));
  margin: auto;
  padding: 0;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  overflow: hidden;
}

.pipe-dialog::backdrop {
  background: rgba(0, 0, 0, .84);
}

.pipe-dialog__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 42%) minmax(0, 58%);
  min-height: min(47rem, calc(100dvh - 3rem));
}

.pipe-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  color: var(--black);
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}

.pipe-dialog__close:hover,
.pipe-dialog__close:focus-visible {
  background: var(--white);
  transform: rotate(90deg);
}

.pipe-dialog__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pipe-dialog__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pipe-dialog__media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e9e9e9;
}

.pipe-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pipe-story-process .pipe-dialog__media img { object-position: center 62%; }
#pipe-story-control .pipe-dialog__media img { object-position: center 58%; }
#pipe-story-distribution .pipe-dialog__media img { object-position: center 62%; }
#pipe-story-overhead .pipe-dialog__media img { object-position: center; }
#pipe-story-access .pipe-dialog__media img { object-position: center 52%; }

.pipe-dialog__copy {
  max-height: min(47rem, calc(100dvh - 3rem));
  padding: 4rem clamp(2rem, 5vw, 5rem);
  overflow-y: auto;
}

.pipe-dialog__eyebrow {
  margin: 0 0 2rem;
  color: var(--orange-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pipe-dialog h2 {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .95;
}

.pipe-dialog__body {
  max-width: 37rem;
}

.pipe-dialog__body p {
  margin: 0 0 1.15rem;
  color: #3f3f3f;
  font-size: 1rem;
}

.pipe-dialog__body p:first-child {
  color: var(--black);
  font-size: 1.17rem;
}

.pipe-dialog__note {
  max-width: 37rem;
  margin: 2rem 0 0;
  padding: 1.25rem;
  color: #4d4d4d;
  font-size: .78rem;
  background: #f4f2ee;
  border-left: .2rem solid var(--orange-deep);
}

.pipe-dialog .arrow-link {
  margin-top: 2.25rem;
}

body.dialog-open {
  overflow: hidden;
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: 12.5% 37.5% 50%;
  min-height: 58rem;
}

.approach > .section-number {
  grid-column: 1;
  padding: 7.5rem 0 0 var(--gutter);
}

.approach-title {
  grid-column: 2 / 4;
  padding: 7.4rem 5vw 4rem;
}

.approach-progress {
  position: relative;
  grid-column: 1 / -1;
  height: 5rem;
}

.progress-track {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  left: var(--gutter);
  height: 2px;
  transform: translateY(-50%);
}

.progress-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.25s var(--ease) .15s;
}

.approach-progress.is-visible .progress-track::before {
  transform: scaleX(1);
}

.progress-track i {
  position: absolute;
  top: 50%;
  right: 0;
  width: .9rem;
  height: .9rem;
  border-top: 2px solid var(--orange-deep);
  border-right: 2px solid var(--orange-deep);
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity .25s ease 1.25s;
}

.approach-progress.is-visible .progress-track i { opacity: 1; }

.approach-flow {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.approach-flow article {
  min-height: 18rem;
  padding: 2.2rem var(--gutter);
  border-right: 1px solid var(--line);
}

.approach-flow article:last-child { border-right: 0; }
.approach-flow span {
  color: var(--orange-deep);
  font-size: .7rem;
  font-weight: 700;
}
.approach-flow h3 {
  margin: 4rem 0 .8rem;
  font-size: clamp(1.5rem, 2.1vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -.035em;
}
.approach-flow p {
  max-width: 15rem;
  margin: 0;
  color: var(--grey);
}

.world {
  position: relative;
  padding: 7rem 0 6.5rem;
  color: var(--black);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.world-heading {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: end;
  padding: 0 var(--gutter) 4rem;
}

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

.world-heading h2 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .95;
}

.world-heading h2 span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.world-heading > p:last-child {
  max-width: 32rem;
  margin: 0 0 .65rem auto;
  color: #5a5a5a;
  font-size: 1.05rem;
}

.world-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.world-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.js .world-track {
  animation: world-loop 48s linear infinite;
  animation-play-state: paused;
}

.js .world.is-moving .world-track { animation-play-state: running; }
.world-marquee:hover .world-track,
.world-marquee:focus-within .world-track { animation-play-state: paused; }

.world-sequence {
  display: flex;
  flex: none;
}

.world-frame {
  flex: none;
  width: clamp(13rem, 20vw, 18rem);
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #eceae6;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.world-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(.88) contrast(1.04);
  transition: opacity .35s ease, filter .45s var(--ease), transform .7s var(--ease);
}

.world.is-ready .world-frame img { opacity: 1; }

.world-frame:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

@keyframes world-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.principles {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.principles-intro {
  grid-column: 1;
  min-height: 34rem;
  padding: 7.5rem 8vw;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.principles-media {
  grid-column: 2;
  align-self: center;
  aspect-ratio: 4 / 3;
  margin: 4.5rem 6vw;
  border: 1px solid rgba(255, 255, 255, .24);
  overflow: hidden;
}

.principles-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transition: transform .8s var(--ease);
}

.principles-media:hover img { transform: scale(1.025); }

.principle {
  min-height: 28rem;
  padding: 4.2rem 8vw;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.principle--mission {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.principle > span {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.principle p {
  max-width: 35rem;
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.principles-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles-rail span {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  color: rgba(255, 255, 255, .74);
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.principles-rail span:last-child { border-right: 0; }

.faq {
  position: relative;
  display: grid;
  grid-template-columns: 12.5% 37.5% 50%;
  min-height: 52rem;
}

.faq > .section-number {
  padding: 7.5rem 0 0 var(--gutter);
}

.faq-heading {
  grid-column: 2;
  grid-row: 1;
  padding: 7.4rem 4vw;
}

.faq-media {
  aspect-ratio: 16 / 7;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-media--lead {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: start;
  margin: 0 4vw 5.5rem 0;
  border-left: 0;
}

.faq-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform .8s var(--ease);
}

.faq-media--lead img { object-position: 62% 32%; }

.faq-media:hover img { transform: scale(1.025); }

.faq-list {
  grid-column: 3;
  grid-row: 1 / 3;
  padding-top: 7.5rem;
  border-left: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  min-height: 7.2rem;
  padding: 1.5rem var(--gutter);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--orange-deep);
  transform: translate(-50%, -50%);
  transition: transform .25s;
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }

.faq-list details p {
  max-width: 40rem;
  margin: 0;
  padding: 0 var(--gutter) 2.4rem;
  color: var(--grey);
}

.faq-secondary-media {
  aspect-ratio: 16 / 7;
  margin: 0 0 2.5rem var(--gutter);
  border: 1px solid var(--line);
  border-right: 0;
  overflow: hidden;
}

.faq-secondary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 8%;
}

.contact {
  display: grid;
  grid-template-columns: 50% 50%;
  color: var(--black);
  background: var(--orange);
}

.contact-heading {
  min-height: 55rem;
  padding: 7rem var(--gutter);
  border-right: 1px solid rgba(0, 0, 0, .28);
}

.contact-heading .section-label {
  color: rgba(0, 0, 0, .65);
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.6vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .98;
}

.contact-heading h2 span {
  color: var(--black);
}

.direct-links {
  display: grid;
  gap: .75rem;
  margin-top: 2.5rem;
}

.contact-person {
  display: grid;
  gap: .35rem;
  margin-top: 4.5rem;
}

.contact-person strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.contact-person span {
  max-width: 30rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.contact-person span:last-child {
  margin-top: .45rem;
  color: rgba(0, 0, 0, .62);
}

.direct-links a {
  width: fit-content;
  border-bottom: 1px solid rgba(0, 0, 0, .48);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.enquiry-form {
  min-height: 55rem;
  padding: 7rem var(--gutter) 4rem;
  background: var(--white);
}

.form-note {
  margin: 0 0 2.5rem;
  padding: 1rem;
  color: #4a4a4a;
  border-left: 3px solid var(--orange);
  background: #f5f5f5;
  font-size: .8rem;
}

.operating-hours {
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}

.operating-hours > p {
  margin: 0;
  padding: 1rem 1.15rem;
  color: var(--orange-deep);
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.operating-hours dl {
  margin: 0;
}

.operating-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.operating-hours dl div:last-child {
  border-bottom: 0;
}

.operating-hours dt,
.operating-hours dd {
  margin: 0;
}

.operating-hours dt {
  color: #4a4a4a;
}

.operating-hours dd {
  font-weight: 700;
}

.hp-field,
.lead-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.enquiry-form label:not(.consent) {
  display: block;
  margin-bottom: 1.5rem;
}

.enquiry-form label > span:first-child {
  display: block;
  margin-bottom: .55rem;
  color: #4a4a4a;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: .65rem 0;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9a9a9a;
  border-radius: 0;
}

.enquiry-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 0;
  border-bottom-color: var(--orange-deep);
  box-shadow: 0 2px 0 var(--orange-deep);
}

.enquiry-form [aria-invalid="true"] {
  border-bottom-color: #b00020;
}

.consent {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: .75rem;
  align-items: start;
  margin: .5rem 0 2rem;
  color: #4a4a4a;
  font-size: .78rem;
}

.consent a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.consent input {
  width: 1.15rem;
  min-height: 1.15rem;
  margin: .1rem 0 0;
  accent-color: var(--orange-deep);
}

.submit-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding: 0 1.5rem;
  color: var(--white);
  background: var(--black);
  border: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .68;
}

.submit-button svg { color: var(--orange); }

.form-status {
  min-height: 3rem;
  padding-top: 1.25rem;
  font-size: .9rem;
  font-weight: 700;
}

.form-status.is-success { color: #17652b; }
.form-status.is-error { color: #9b001a; }
.form-status.is-pending { color: #4a4a4a; }

.site-footer {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  min-height: 22rem;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand,
.site-footer nav,
.footer-meta {
  padding: 3.5rem var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand img {
  width: 10rem;
  height: 7rem;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, .58);
}

.site-footer nav,
.footer-meta {
  display: grid;
  align-content: start;
  gap: .65rem;
  font-size: .84rem;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: var(--orange); }

.footer-link-button {
  width: fit-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible { color: var(--orange); }

.footer-meta {
  border-right: 0;
  color: rgba(255, 255, 255, .6);
}

.footer-meta p { margin: 0; }

.footer-credit {
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-credit a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: .3em;
  transition: color .25s var(--ease);
}

.footer-credit a:hover,
.footer-credit a:focus-visible { color: var(--orange); }

.consent-banner {
  position: fixed;
  z-index: 1200;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .34);
}

.consent-banner[hidden] { display: none; }

.consent-banner strong {
  display: block;
  margin-bottom: .35rem;
  font-size: .95rem;
}

.consent-banner p {
  max-width: 52rem;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1.55;
}

.consent-banner a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: .25em;
}

.consent-banner__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.consent-banner__actions button {
  min-height: 2.75rem;
  padding: .65rem .9rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .38);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.consent-banner__actions .consent-banner__accept {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.privacy-main {
  min-height: 100vh;
  padding-top: var(--header-height);
  color: var(--black);
  background: var(--white);
}

.privacy-hero {
  display: grid;
  grid-template-columns: 37.5% 62.5%;
  border-bottom: 1px solid var(--line);
}

.privacy-hero__aside,
.privacy-hero__copy {
  min-height: 34rem;
  padding: 8rem var(--gutter) 4rem;
}

.privacy-hero__aside {
  border-right: 1px solid var(--line);
}

.privacy-hero__copy h1 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -.065em;
  line-height: .92;
}

.privacy-hero__copy h1 span {
  color: var(--orange-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.privacy-hero__copy p {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--grey);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 25% 75%;
}

.privacy-toc {
  position: sticky;
  top: var(--header-height);
  align-self: start;
  min-height: calc(100vh - var(--header-height));
  padding: 4rem var(--gutter);
  border-right: 1px solid var(--line);
}

.privacy-toc a {
  display: block;
  padding: .65rem 0;
  color: var(--grey);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  color: var(--orange-deep);
}

.privacy-content {
  padding: 3rem var(--gutter) 7rem;
}

.privacy-section {
  display: grid;
  grid-template-columns: 28% 72%;
  gap: 2rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}

.privacy-section:last-child {
  border-bottom: 0;
}

.privacy-section h2 {
  margin: 0;
  color: var(--orange-deep);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.privacy-section p,
.privacy-section li {
  color: #2d2d2d;
}

.privacy-section p:first-child,
.privacy-section ul:first-child {
  margin-top: 0;
}

.privacy-section ul {
  padding-left: 1.25rem;
}

.privacy-section a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.privacy-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--orange);
  background: rgba(245, 130, 32, .08);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.media-unfold__inner {
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
}

.media-unfold--rtl .media-unfold__inner {
  clip-path: inset(0 0 0 100%);
}

.js .media-unfold.reveal {
  transform: none;
  transition: opacity .2s ease;
}

.js .media-unfold.reveal .media-unfold__inner {
  transition: clip-path 1.05s var(--ease);
}

.js .media-unfold.reveal.is-visible .media-unfold__inner {
  clip-path: inset(0);
}

/* Give the FAQ photography a calmer, more deliberate entrance than other media. */
.js .faq .media-unfold.reveal {
  transition-duration: .35s;
}

.js .faq .media-unfold.reveal .media-unfold__inner {
  transition-duration: 1.65s;
  transition-delay: .08s;
}

@media (max-width: 1120px) {
  .desktop-nav a { min-width: 5.8rem; padding-inline: .8rem; }
  .header-contact { width: 6.25rem; }
  .header-cta { width: 10rem; }
  .desktop-nav .nav-wordmark { min-width: 9.5rem; padding-inline: .8rem; }
  .nav-wordmark strong { font-size: 1.4rem; }
  .nav-wordmark span { font-size: .69rem; }
  .brand { width: 7rem; }
  .brand img { width: 4.2rem; height: 4.2rem; }
  .hero-copy { left: 12.5%; width: 72vw; }
  .services { grid-template-columns: 42% 58%; }
  .service-list { grid-column: 2; }
  .service-visual { display: none; }
  .about-disclosure__heading { grid-template-columns: minmax(14rem, .9fr) minmax(16rem, 1.1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 5.25rem; }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 5.25rem 1fr 5.25rem;
    height: 5.25rem;
  }

  .brand {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    width: auto;
    padding: .2rem .75rem .2rem 1.25rem;
    border: 0;
  }
  .brand img,
  .site-header.is-scrolled .brand img { width: 3.7rem; height: 3.7rem; }
  .desktop-nav { display: none; }
  .header-actions { display: none; }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    place-content: center;
    gap: .38rem;
    color: inherit;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .24);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 2.25rem;
    height: 1px;
    background: currentColor;
  }

  .hero-copy {
    top: 47%;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    transform: translateY(-32%);
  }

  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-copy > p { max-width: 31rem; font-size: 1rem; }
  .hero-stage img,
  .hero-stage video { object-position: 44% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .68)); }
  .hero-copy .arrow-link { margin-left: 5.25rem; }
  .scroll-cue { left: 1.25rem; }
  .hero-index { right: 1.25rem; }

  .intro,
  .approach,
  .faq {
    display: block;
    min-height: 0;
  }

  .intro > .section-number,
  .approach > .section-number,
  .faq > .section-number {
    padding: 5rem 1.25rem 0;
  }

  .intro-heading,
  .approach-title,
  .faq-heading {
    padding: 1.2rem 1.25rem 3.5rem;
  }

  .intro-heading h2,
  .approach-title h2,
  .faq-heading h2 { font-size: clamp(2.75rem, 11.5vw, 4.7rem); }

  .intro-visual { display: block; }
  .intro-media {
    width: auto;
    aspect-ratio: 16 / 7;
    margin: 0 1.25rem 3.5rem 0;
  }
  .about-motion { display: none; }
  .intro-body {
    padding: 0 1.25rem 4.5rem;
    border-left: 0;
  }
  .about-copy__lead {
    max-width: 45rem;
  }
  .about-copy__details {
    gap: 2rem;
  }
  .about-copy__details p + p {
    padding-left: 2rem;
  }

  .about-disclosure {
    margin: 0 1.25rem 4rem;
  }
  .about-disclosure__heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.5rem 1.25rem;
  }
  .about-disclosure__heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }
  .about-disclosure__topics {
    grid-template-columns: 1fr;
  }
  .about-topic-card summary {
    grid-template-columns: 3.25rem minmax(0, 1fr) 2.75rem;
    gap: 1rem;
    min-height: 8.5rem;
    padding: 1.25rem;
  }
  .about-topic-card__icon {
    width: 3.25rem;
    height: 3.25rem;
  }
  .about-topic-card__content {
    padding: 1.75rem 1.25rem 2.25rem 5.5rem;
  }

  .client-experience {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .client-experience__copy {
    padding: 3.5rem 1.25rem 2.5rem;
  }
  .client-experience__logo {
    min-height: 15rem;
    padding: 1.5rem;
  }
  .client-experience__logo img {
    width: min(100%, 19rem);
  }
  .js .client-experience--reveal.reveal::before {
    transform: scaleY(0);
    transform-origin: top;
  }
  .js .client-experience--reveal.reveal.is-visible::before {
    transform: scaleY(1);
  }

  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div {
    min-height: 8rem;
    padding: 1.75rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services {
    display: block;
    min-height: 0;
  }

  .service-copy {
    padding: 5rem 1.25rem 4rem;
    border-right: 0;
  }

  .service-copy .section-number { margin-bottom: 4rem; }
  .service-summary { min-height: 0; }
  .service-list { border-top: 1px solid rgba(255, 255, 255, .22); }
  .service-item {
    grid-template-columns: 3rem 1fr 2rem;
    min-height: 7rem;
    padding: 1.5rem 1.25rem;
    align-items: center;
  }
  .service-item:hover,
  .service-item:focus-visible,
  .service-item.is-active { padding-left: 1.75rem; }
  .service-item__number { grid-column: 1; grid-row: 1; }
  .service-item strong { grid-column: 2; grid-row: 1; }
  .service-item i { grid-column: 3; grid-row: 1; }
  .service-item i::after {
    width: 1.9rem;
    transform: rotate(90deg);
    transform-origin: center;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .service-item.is-active i::after {
    opacity: 0;
    transform: rotate(0);
  }
  .service-item__detail {
    display: block;
    grid-column: 2 / 4;
    grid-row: 2;
    max-height: 0;
    overflow: hidden;
    color: inherit;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0;
    transition: max-height .45s var(--ease), opacity .3s var(--ease), padding-top .45s var(--ease);
  }
  .service-item.is-active .service-item__detail {
    max-height: 8rem;
    padding-top: 1rem;
    opacity: 1;
  }

  .pipework {
    padding: 5rem 1.25rem;
  }
  .pipework-heading {
    display: block;
    padding-bottom: 3rem;
  }
  .pipework-heading .section-label {
    margin-bottom: 1.25rem;
    text-align: right;
  }
  .pipework-heading h2 {
    font-size: clamp(2.75rem, 11.5vw, 4.7rem);
  }
  .pipework-heading > p:last-child {
    margin-top: 1.5rem;
  }
  .pipework-grid {
    grid-template-columns: 1fr;
  }
  .pipe-card,
  .pipe-card:nth-child(1),
  .pipe-card:nth-child(2) {
    grid-column: 1;
  }
  .pipe-card__copy {
    min-height: 0;
    padding: 1.75rem 1.25rem 2.5rem;
  }
  .pipe-card__copy > span {
    margin-bottom: 2rem;
  }
  .pipework-footer {
    display: block;
  }
  .pipework-footer .arrow-link {
    margin-top: 2rem;
  }
  .pipework-footer--cta-only {
    display: flex;
    justify-content: flex-end;
  }
  .pipework-footer--cta-only .arrow-link {
    margin-top: 0;
  }

  .pipe-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border: 0;
  }
  .pipe-dialog__shell {
    display: block;
    height: 100%;
    min-height: 0;
    background: var(--white);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .pipe-dialog__media {
    height: 34dvh;
    min-height: 15rem;
  }
  .pipe-dialog__copy {
    max-height: none;
    padding: 3rem 1.25rem 4rem;
    overflow: visible;
  }
  .pipe-dialog h2 {
    padding-right: 2rem;
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }
  .pipe-dialog__close {
    position: fixed;
  }

  .approach-progress {
    height: 4rem;
    margin: 0;
  }
  .progress-track {
    top: 50%;
    right: 1.25rem;
    left: 1.25rem;
    width: auto;
    height: 2px;
  }

  .approach-flow { grid-template-columns: 1fr 1fr; }
  .approach-flow article {
    min-height: 15rem;
    padding: 1.75rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .world { padding: 5rem 0; }
  .world-heading {
    display: block;
    padding: 0 1.25rem 3rem;
  }
  .world-heading h2 { font-size: clamp(2.8rem, 12vw, 4.7rem); }
  .world-heading > p:last-child { margin: 1.5rem 0 0; }
  .world-frame { width: 15rem; }

  .principles { display: block; }
  .principles-intro {
    min-height: 0;
    padding: 4rem 1.25rem 3rem;
  }
  .principles-media { aspect-ratio: 3 / 2; margin: 0 1.25rem 2.75rem; }
  .principle {
    min-height: 0;
    padding: 3rem 1.25rem;
    border-right: 0;
  }
  .principle > span { margin-bottom: 1.75rem; }
  .principles-rail { display: grid; grid-template-columns: 1fr 1fr; }
  .principles-rail span { min-height: 5rem; border-bottom: 1px solid rgba(255, 255, 255, .18); }

  .faq-list {
    padding-top: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .faq-media--lead { aspect-ratio: 16 / 7; margin: 0 1.25rem 2.5rem 0; }
  .faq-list summary { padding: 1.35rem 1.25rem; min-height: 6rem; }
  .faq-list details p { padding: 0 1.25rem 2rem; }
  .faq-secondary-media { aspect-ratio: 16 / 7; margin: 0 0 2rem 1.25rem; }

  .contact { display: block; }
  .contact-heading,
  .enquiry-form {
    min-height: 0;
    padding: 5rem 1.25rem;
    border-right: 0;
  }
  .contact-heading { border-bottom: 1px solid rgba(0, 0, 0, .28); }
  .direct-links { margin-top: 4rem; }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }

  .privacy-hero,
  .privacy-layout,
  .privacy-section {
    display: block;
  }
  .privacy-hero__aside,
  .privacy-hero__copy {
    min-height: 0;
    padding: 5rem 1.25rem 2rem;
    border-right: 0;
  }
  .privacy-hero__aside {
    padding-bottom: 0;
  }
  .privacy-hero__copy {
    padding-top: 2rem;
  }
  .privacy-hero__copy h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .privacy-toc {
    position: static;
    min-height: 0;
    padding: 1.5rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .privacy-toc a {
    display: inline-block;
    margin-right: 1rem;
  }
  .privacy-content {
    padding: 0 1.25rem 4rem;
  }
  .privacy-section {
    padding: 3rem 0;
  }
  .privacy-section h2 {
    margin-bottom: 1.25rem;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consent-banner__actions { justify-content: flex-start; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: clamp(2.8rem, 12.7vw, 4rem); }
  .hero-copy > p { max-width: 21rem; }
  .hero-index { display: none; }

  .intro-body { padding: 0 1.25rem 4rem; }
  .intro-body .lead {
    font-size: clamp(1.55rem, 7.3vw, 2.2rem);
  }
  .about-copy__details {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-copy__details p {
    padding: 1.75rem 0;
  }
  .about-copy__details p + p {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .approach-flow { grid-template-columns: 1fr; }
  .approach-flow article { min-height: 13rem; border-right: 0; }
  .principles-rail { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { display: block; }
  .site-footer nav,
  .footer-meta { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .privacy-toc a {
    display: block;
    margin-right: 0;
  }
}

@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;
  }
  .hero-scene:not(.is-active) { display: none; }
  .reveal { opacity: 1; transform: none; }
  .media-unfold__inner { clip-path: none; }
  .js .client-experience--reveal.reveal::before { transform: none; }
  .js .client-experience--reveal .client-experience__copy,
  .js .client-experience--reveal .client-experience__logo {
    opacity: 1;
    transform: none;
  }
  .js .client-experience--reveal .client-experience__logo img { transform: none; }
  .world-marquee { overflow-x: auto; }
  .world-track { animation: none !important; transform: none !important; }
}
