@font-face {
  font-family: "Contralto";
  src: url("assets/fonts/contralto-regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-book.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #222423;
  --forest: #323836;
  --taupe: #665e5b;
  --mauve: #8a8081;
  --sand: #d9bda5;
  --stone: #d3c9c2;
  --paper: #efefef;
  --white: #f8f7f4;
  --line: rgba(34, 36, 35, 0.18);
  --serif: "Contralto", "Didot", "Times New Roman", serif;
  --sans: "Gotham", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(1.4rem, 4vw, 5.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--taupe);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-120%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    height 300ms ease,
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 78px;
  color: var(--ink);
  background: rgba(239, 239, 239, 0.95);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  width: 146px;
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 300ms ease;
}

.site-header.scrolled .brand img,
.site-header.menu-active .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
}

.site-nav > a:not(.nav-enquire)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

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

.nav-enquire {
  padding: 0.8rem 1.15rem;
  border: 1px solid currentColor;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  width: 42px;
  height: 42px;
  display: none;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 10rem var(--page-pad) clamp(5rem, 9vh, 8rem);
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  background:
    url("assets/images/hero-lifestyle-hd.jpg") center 52% / cover no-repeat,
    var(--taupe);
  transform: scale(1.04);
  animation: hero-arrive 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 25, 24, 0.72) 0%, rgba(24, 25, 24, 0.28) 56%, rgba(24, 25, 24, 0.08) 100%),
    linear-gradient(0deg, rgba(24, 25, 24, 0.58) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 86%);
}

.eyebrow {
  margin: 0 0 1.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  width: 2.4rem;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 1.9rem;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.4vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

h1 em,
h2 em {
  font-weight: inherit;
  color: var(--stone);
}

.hero-intro {
  max-width: 500px;
  margin-bottom: 2rem;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  min-width: 245px;
  padding: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: gap 250ms ease;
}

.text-link:hover {
  gap: 4.2rem;
}

.link-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 12px;
  color: currentColor;
}

.link-arrow::before,
.link-arrow::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.link-arrow::before {
  top: 5px;
  left: 1px;
  width: 11px;
  height: 1px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.link-arrow::after {
  top: 1px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
}

.link-arrow-down {
  transform: rotate(90deg);
}

.link-arrow-left {
  transform: rotate(-90deg);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 3.6rem;
  display: flex;
  gap: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue i {
  width: 60px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  animation: line-pulse 2.4s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
  scroll-margin-top: 78px;
}

.section-number {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-title {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.display-title em {
  color: var(--taupe);
}

.story {
  min-height: 970px;
  display: grid;
  grid-template-columns: 0.5fr 1.25fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
  background: var(--paper);
}

.story-copy {
  padding-top: 5rem;
}

.story-body {
  max-width: 610px;
  columns: 2;
  column-gap: 3rem;
  font-size: 0.9rem;
}

.story-body p {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.story-image {
  align-self: center;
  margin: 0;
}

.story-image img {
  width: 100%;
  height: min(62vw, 690px);
  object-fit: cover;
}

.story-image figcaption {
  padding-top: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.monogram-watermark {
  position: absolute;
  bottom: 1rem;
  left: -7vw;
  width: 31vw;
  opacity: 0.035;
  pointer-events: none;
}

.statement {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  color: var(--white);
  background: var(--taupe);
}

.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.statement-copy h2 {
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.statement-copy h2 em {
  color: var(--sand);
}

.statement-copy > p:last-child {
  max-width: 520px;
  font-size: 0.92rem;
}

.purpose {
  background: var(--stone);
}

.purpose-heading {
  max-width: 900px;
  margin: 4rem 0 5rem 16%;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.purpose-card {
  min-height: 460px;
  padding: clamp(2rem, 4vw, 4.2rem);
  border: 1px solid rgba(34, 36, 35, 0.22);
}

.purpose-card > span,
.brand-statement > span {
  display: block;
  margin-bottom: 5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purpose-card h3 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.purpose-card p {
  max-width: 390px;
  font-size: 0.85rem;
}

.purpose-card-dark {
  color: var(--white);
  background: var(--ink);
}

.purpose-card-image {
  padding: 0;
  overflow: hidden;
}

.purpose-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin: 7rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(34, 36, 35, 0.35);
}

.brand-statement > span {
  margin: 0;
}

.brand-statement p {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.services {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 8vw, 10rem);
  color: var(--white);
  background: var(--forest);
}

.services-intro .section-number {
  margin-bottom: 7rem;
}

.services-intro .display-title em {
  color: var(--sand);
}

.services-lead {
  max-width: 510px;
  font-size: 0.9rem;
}

.service-list {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    color 250ms ease,
    padding 250ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  color: var(--sand);
  padding-left: 0.6rem;
  outline: 0;
}

.service-index {
  padding-top: 0.45rem;
  color: var(--sand);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.service-item h3 {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.service-item p {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.service-link {
  display: inline-block;
  margin-top: 1.1rem;
  padding-bottom: 0.25rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.way {
  min-height: 900px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 9vw, 11rem);
  padding-bottom: 5rem;
  background: var(--paper);
}

.way-media img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.way-copy {
  align-self: center;
}

.way-copy h2 {
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.way-copy h2 em {
  color: var(--taupe);
}

.way-copy > p {
  max-width: 580px;
}

.way-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 600px;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
}

.way-principles span {
  padding: 1.1rem 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.way-note {
  grid-column: 1 / -1;
  margin: 3rem 0 0 auto;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.08;
}

.portfolio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 9vw, 12rem);
  background: var(--white);
}

.portfolio-copy {
  align-self: center;
}

.portfolio-copy .section-number {
  margin-bottom: 6rem;
}

.portfolio-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 3rem;
}

.portfolio-visual {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: var(--sand);
}

.portfolio-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  color: var(--white);
  background: rgba(34, 36, 35, 0.82);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.contact {
  color: var(--white);
  background: var(--taupe);
}

.contact-top {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 4rem;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.contact-top h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.contact-top h2 em {
  color: var(--sand);
}

.contact-details {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 310px;
  font-size: 0.78rem;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-details address {
  margin: 0.35rem 0 0;
  font-style: normal;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-wide {
  grid-column: span 3;
}

.form-field label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  outline: 0;
  background: transparent;
  appearance: none;
}

.form-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--white) 50%),
    linear-gradient(135deg, var(--white) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--white);
}

.form-field textarea {
  resize: vertical;
}

.submit-button {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1.1rem 1.4rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(34, 36, 35, 0.22);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.submit-button:hover {
  color: var(--ink);
  border-color: var(--stone);
  background: var(--stone);
}

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

.submit-button.is-loading .link-arrow {
  animation: submit-pulse 900ms ease-in-out infinite alternate;
}

.form-status {
  grid-column: 1 / 3;
  min-height: 1.6rem;
  align-self: center;
  margin-top: 1rem;
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--white);
}

.form-status.is-error {
  color: #f5d8d0;
}

.form-status a {
  border-bottom: 1px solid currentColor;
}

.form-privacy {
  grid-column: 1 / 3;
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  line-height: 1.65;
}

@keyframes submit-pulse {
  to {
    transform: translate(3px, -3px);
  }
}

.circle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 10vw, 12rem);
  align-items: center;
  background: var(--stone);
}

.circle-intro h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.circle-intro h2 em {
  color: var(--taupe);
}

.circle-intro > p:last-child {
  max-width: 520px;
}

.circle-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
}

.circle-email {
  grid-column: 1 / -1;
  display: block;
}

.circle-email > span {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.circle-email input {
  width: 100%;
  padding: 1.15rem 0;
  border: 0;
  border-bottom: 1px solid rgba(34, 36, 35, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.circle-email input::placeholder {
  color: rgba(34, 36, 35, 0.4);
}

.circle-email input:focus {
  border-bottom-color: var(--ink);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: 0.66rem;
  line-height: 1.55;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 0.15rem 0 0;
  accent-color: var(--ink);
}

.circle-submit {
  min-width: 185px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.circle-submit:hover {
  color: var(--ink);
  background: transparent;
}

.circle-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.circle-status {
  grid-column: 1 / -1;
  margin-top: 0;
  color: var(--ink);
}

.circle-status.is-success {
  color: var(--forest);
}

.circle-status.is-error {
  color: #7c342d;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  gap: 5rem;
  padding: 5rem var(--page-pad) 2rem;
  color: var(--white);
  background: var(--ink);
}

.footer-brand img {
  width: min(340px, 80%);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 0.8rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social {
  align-content: start;
}

.footer-social p {
  margin-bottom: 1.2rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-social > span {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
  background: var(--stone);
  border-color: var(--stone);
  outline: 0;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reveal,
.image-reveal {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-reveal {
  transform: translateY(35px);
}

.reveal.is-visible,
.image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@keyframes hero-arrive {
  to {
    transform: scale(1);
  }
}

@keyframes line-pulse {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1050px) {
  .story {
    grid-template-columns: 0.35fr 1.15fr 0.8fr;
  }

  .story-body {
    columns: 1;
  }

  .services,
  .way,
  .portfolio {
    gap: 4rem;
  }

  .purpose-card {
    min-height: 400px;
    padding: 2.4rem;
  }

  .purpose-card > span {
    margin-bottom: 3rem;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 80px;
  }

  .site-header.menu-active {
    height: 100dvh;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 19px;
    overflow: hidden;
    background: var(--paper);
    backdrop-filter: none;
  }

  .brand {
    width: 122px;
  }

  .menu-toggle {
    display: block;
    border: 1px solid currentColor;
    background: rgba(34, 36, 35, 0.16);
    backdrop-filter: blur(5px);
  }

  .site-header.scrolled .menu-toggle,
  .site-header.menu-active .menu-toggle {
    background: transparent;
  }

  .site-nav {
    position: absolute;
    z-index: 101;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 3.5rem var(--page-pad) max(2rem, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
    font-size: clamp(2.7rem, 13vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: none;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 250ms ease,
      transform 250ms ease;
  }

  .site-nav > a {
    display: block;
    padding: 0.65rem 0 0.8rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-enquire)::after {
    display: none;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-enquire {
    width: 100%;
    margin-top: auto;
    padding: 1rem 0;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-index,
  .scroll-cue {
    display: none;
  }

  .story {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 1rem;
  }

  .story-image {
    width: 78%;
    margin-left: auto;
  }

  .story-image img {
    height: 520px;
  }

  .statement {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .statement-image {
    height: 500px;
  }

  .purpose-heading {
    margin-left: 0;
  }

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

  .purpose-card-image {
    grid-column: span 2;
    height: 500px;
  }

  .brand-statement {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services,
  .way,
  .portfolio {
    grid-template-columns: 1fr;
  }

  .services-intro .section-number,
  .portfolio-copy .section-number {
    margin-bottom: 4rem;
  }

  .way-media {
    width: 80%;
  }

  .way-media img {
    height: 620px;
  }

  .way-note {
    grid-column: auto;
  }

  .portfolio-visual {
    min-height: 600px;
  }

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

  .contact-details {
    align-self: auto;
    max-width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .form-field-wide {
    grid-column: span 2;
  }

  .submit-button {
    grid-column: 2;
  }

  .form-privacy {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
    padding-bottom: 4.5rem;
  }

  .hero-media {
    background-position: 62% center;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.6rem);
  }

  .hero-intro {
    max-width: 90%;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .display-title {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .story {
    gap: 2rem;
  }

  .story-image {
    width: 100%;
  }

  .story-image img {
    height: 460px;
  }

  .statement-image {
    height: 400px;
  }

  .statement-copy {
    padding: 4.5rem var(--page-pad);
  }

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

  .purpose-card-image {
    grid-column: auto;
    height: 430px;
  }

  .brand-statement {
    margin-top: 5rem;
  }

  .service-item {
    grid-template-columns: 34px 1fr;
    gap: 0.7rem;
  }

  .way-media {
    width: 100%;
  }

  .way-media img {
    height: 520px;
  }

  .way-principles {
    grid-template-columns: 1fr;
  }

  .portfolio-visual {
    min-height: 500px;
  }

  .portfolio-caption {
    flex-direction: column;
    gap: 0.4rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide,
  .submit-button {
    grid-column: auto;
  }

  .form-status {
    grid-column: auto;
  }

  .form-privacy {
    grid-column: auto;
  }

  .circle-form {
    grid-template-columns: 1fr;
  }

  .circle-email,
  .circle-status {
    grid-column: auto;
  }

  .circle-submit {
    width: 100%;
  }

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

  .footer-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-meta {
    grid-column: auto;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .footer-meta span:last-child {
    max-width: 280px;
    line-height: 1.5;
  }
}

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

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

  .reveal,
  .image-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Service detail pages */
.service-page {
  background: var(--paper);
}

.service-hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  color: var(--white);
  background: var(--forest);
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem var(--page-pad) clamp(5rem, 8vw, 8rem);
}

.service-breadcrumb {
  margin-bottom: auto;
  padding-top: 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
}

.service-hero h1 {
  margin-bottom: 2rem;
  font-size: clamp(4.2rem, 7vw, 8.6rem);
}

.service-hero h1 em {
  color: var(--sand);
}

.service-hero-copy > p {
  max-width: 640px;
}

.service-hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(50, 56, 54, 0.16), transparent 40%);
}

.service-overview {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.service-overview-copy > p:first-child {
  max-width: 930px;
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.service-overview-columns {
  max-width: 900px;
  columns: 2;
  column-gap: 4rem;
}

.service-overview-columns p {
  break-inside: avoid;
}

.service-process {
  color: var(--white);
  background: var(--taupe);
}

.service-process-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.service-process-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.service-process-head h2 em {
  color: var(--sand);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.process-step {
  min-height: 350px;
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

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

.process-step > span {
  display: block;
  margin-bottom: 5rem;
  color: var(--sand);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.process-step p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 0.84rem;
}

.service-scope {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 12rem);
  background: var(--stone);
}

.service-scope h2 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.service-scope h2 em {
  color: var(--taupe);
}

.scope-list {
  border-top: 1px solid rgba(34, 36, 35, 0.3);
}

.scope-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(34, 36, 35, 0.3);
  list-style: none;
}

.scope-list span {
  color: var(--taupe);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.service-cta {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 4rem;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.service-cta h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.service-next {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.service-next span {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-next a {
  font-family: var(--serif);
  font-size: 2rem;
}

@media (max-width: 800px) {
  .service-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    min-height: 690px;
    padding-top: 8rem;
  }

  .service-breadcrumb {
    padding-top: 0;
  }

  .service-hero-media {
    min-height: 520px;
  }

  .service-overview,
  .service-process-head,
  .service-scope,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .service-overview-columns {
    columns: 1;
  }

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

  .process-step {
    min-height: 0;
    padding: 2.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process-step > span {
    margin-bottom: 2rem;
  }

  .service-cta {
    gap: 5rem;
  }
}
