:root {
  --black: #151819;
  --charcoal: #1b2021;
  --ink: #e7e1d6;
  --soft-ink: #cfc6b8;
  --muted: #8f8c86;
  --line: rgba(231, 225, 214, 0.13);
  --accent: #bda98b;
  --blue-black: #171d20;
  --page-x: clamp(24px, 3.8vw, 78px);
  --panel-y: clamp(88px, 10vw, 132px);
  --label-col: clamp(124px, 13vw, 220px);
  --section-screen: 100svh;
  --page-top: calc(86px + clamp(36px, 5vw, 72px));
  --page-bottom: clamp(72px, 8vw, 118px);
}

* {
  box-sizing: border-box;
}

html {
  background: #151819;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 0%, rgba(65, 74, 76, 0.34), transparent 38vw),
    linear-gradient(180deg, #181c1d 0%, #121516 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Inter, Arial, sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.opening-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #151819;
  color: var(--ink);
  animation: openingExit 1600ms ease 900ms forwards;
}

.opening-screen div {
  display: grid;
  gap: 14px;
  text-align: center;
  animation: openingText 1400ms ease forwards;
}

.opening-screen span {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 300;
}

.opening-screen p {
  margin: 0;
  color: rgba(231, 225, 214, 0.54);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}

@keyframes openingText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  35%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes openingExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--page-x);
  background: linear-gradient(180deg, rgba(21, 24, 25, 0.78), rgba(21, 24, 25, 0));
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(21, 24, 25, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(116px, 8.8vw, 158px);
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  gap: clamp(16px, 2.3vw, 34px);
  color: rgba(231, 225, 214, 0.72);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.desktop-nav a {
  position: relative;
  transform-origin: center;
  transition: color 220ms ease, transform 220ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 220ms ease, transform 260ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a.is-active {
  color: var(--ink);
  transform: scale(1.045);
}

.desktop-nav a.is-active::after {
  opacity: 0.86;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 92px 28px 28px;
  background: rgba(21, 24, 25, 0.96);
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 260ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 38px;
  line-height: 1;
}

.mobile-menu a.is-active {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: var(--section-screen);
  display: grid;
  place-items: center;
  padding: 116px var(--page-x) 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 24, 25, 0.12) 0%, rgba(21, 24, 25, 0.18) 58%, rgba(21, 24, 25, 0.52) 100%),
    rgba(21, 24, 25, 0.2);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video,
.hero-film img:not(.video-poster),
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.88) contrast(1.04);
}

.hero-video {
  opacity: 0;
  transition: opacity 1200ms ease;
}

.video-poster {
  opacity: 1;
}

.hero-film img:not(.video-poster) {
  opacity: 0;
  animation: heroFilm 24s infinite;
}

.hero.has-video .hero-video {
  opacity: 1;
}

.hero.has-video .video-poster,
.about-bg.has-video .video-poster,
.services-background.has-video .video-poster {
  opacity: 0;
}

.hero.has-video .hero-film img:not(.video-poster) {
  opacity: 0;
  animation: none;
}

.hero-film img:not(.video-poster):nth-child(1) {
  animation-delay: 0s;
}

.hero-film img:not(.video-poster):nth-child(2) {
  animation-delay: 8s;
}

.hero-film img:not(.video-poster):nth-child(3) {
  animation-delay: 16s;
}

@keyframes heroFilm {
  0% {
    opacity: 0;
    transform: scale(1.03) translateX(0);
  }

  8%,
  31% {
    opacity: 1;
  }

  41%,
  100% {
    opacity: 0;
    transform: scale(1.1) translateX(-1.2%);
  }
}

.hero-copy {
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: clamp(150px, 18vh, 230px);
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  animation-delay: 900ms;
}

.hero-copy::before,
.hero-copy::after {
  content: none !important;
  display: none !important;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(231, 225, 214, 0.46);
  font-size: 10px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.1vw, 72px);
  line-height: 0.98;
  font-weight: 260;
  letter-spacing: 0;
}

.editorial-title {
  color: var(--ink);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: clamp(12px, 1.4vw, 20px);
  font-size: clamp(27px, 2.2vw, 42px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.28em;
}

.hero-text {
  max-width: 560px;
  color: rgba(231, 225, 214, 0.62);
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.7;
}

.hero-statement {
  max-width: 900px;
  margin: 0;
  color: rgba(231, 225, 214, 0.78);
  font-size: clamp(15px, 1.25vw, 24px);
  line-height: 1.55;
  font-weight: 300;
}

.hero-view-link {
  margin-top: clamp(20px, 2.5vw, 38px);
  border-bottom: 1px solid rgba(231, 225, 214, 0.48);
  padding-bottom: 7px;
  color: rgba(231, 225, 214, 0.74);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-view-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.hero-actions a,
.text-link {
  display: inline-block;
  border-bottom: 1px solid rgba(231, 225, 214, 0.42);
  padding-bottom: 8px;
  color: rgba(231, 225, 214, 0.78);
  font-size: 11px;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-actions a:hover,
.text-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  right: var(--page-x);
  bottom: clamp(54px, 7vw, 96px);
  max-width: 420px;
  margin: 0;
  color: rgba(231, 225, 214, 0.64);
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.65;
}

.statement,
.studio-section,
.work-section,
.services-section,
.design-section,
.process-section,
.contact-section,
.booking-closing {
  padding: var(--panel-y) var(--page-x);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 360px);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  min-height: var(--section-screen);
  border-bottom: 1px solid var(--line);
}

.statement > p {
  max-width: 900px;
  font-size: clamp(28px, 3.25vw, 54px);
  line-height: 1.12;
  font-weight: 300;
}

.statement-aside {
  display: grid;
  align-content: end;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.statement-aside span {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.studio-section {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: var(--section-screen);
}

.studio-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21, 24, 25, 0.12) 0%, rgba(21, 24, 25, 0.2) 58%, rgba(21, 24, 25, 0.52) 100%),
    rgba(21, 24, 25, 0.2);
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--charcoal);
}

.about-bg img,
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.03);
}

.about-bg img {
  opacity: 1;
  animation: none;
}

.about-video {
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

.about-bg.is-video-ready .about-video,
.about-bg.has-video .about-video {
  opacity: 1;
}

.about-bg.is-video-ready .video-poster {
  opacity: 0;
}

.about-bg img:nth-child(1) {
  animation-delay: 0s;
}

.about-bg img:nth-child(2) {
  animation-delay: 8s;
}

.about-bg img:nth-child(3) {
  animation-delay: 16s;
}

.about-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(9px, 0.9vw, 14px);
  width: min(760px, calc(100% - (var(--page-x) * 2)));
  margin-top: clamp(320px, 38vh, 430px);
  text-align: center;
}

.about-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(231, 225, 214, 0.8);
  font-size: clamp(14px, 0.96vw, 18px);
  line-height: 1.5;
  font-weight: 300;
}

.social-icon-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 22px);
}

.social-icon-list a {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(231, 225, 214, 0.58);
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.social-icon-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: rgba(177, 38, 33, 0.78);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.social-icon-list a:hover {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.social-icon-list a:hover::after {
  width: 18px;
}

.social-icon-list svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-list .social-fill {
  fill: currentColor;
  stroke: none;
}

.social-icon-list span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.about-social {
  margin-top: clamp(20px, 3vh, 34px);
}

.work-section {
  position: relative;
  isolation: isolate;
  min-height: var(--section-screen);
  padding-top: clamp(120px, 13vw, 190px);
  background:
    radial-gradient(circle at 48% 0%, rgba(68, 76, 76, 0.14), transparent 34vw),
    linear-gradient(180deg, #151819 0%, #171c1d 100%);
}

.work-section::before,
.work-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.work-section::before {
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(5, 7, 7, 0.26) 78%, rgba(5, 7, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 7, 7, 0.68) 0%, transparent 18%, transparent 74%, rgba(5, 7, 7, 0.7) 100%);
}

.work-section::after {
  inset: auto 0 0;
  height: clamp(160px, 20vw, 300px);
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 7, 0.82) 100%);
}

.work-section .text-link {
  display: block;
  width: max-content;
  margin: clamp(42px, 5vw, 78px) auto 0;
}

.section-heading {
  display: grid;
  grid-template-columns: var(--label-col) minmax(0, 780px);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.work-section .section-heading {
  display: none;
}

.work-section .section-heading .eyebrow {
  margin: 0;
  color: rgba(189, 169, 139, 0.78);
}

.section-heading h2,
.design-copy h2,
.contact-copy h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.12;
  font-weight: 280;
}

.work-section .section-heading h2 {
  max-width: 620px;
  color: rgba(231, 225, 214, 0.74);
  font-size: clamp(16px, 1.25vw, 23px);
  line-height: 1.46;
  font-weight: 300;
}

.mobile-film-section {
  display: none;
}

.mobile-enquire-section {
  display: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 4vw, 64px) clamp(22px, 2.8vw, 48px);
  max-width: none;
  margin: 0 auto;
}

.project {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(112px, auto);
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.project::after {
  content: none;
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
}

.project-media img {
  position: absolute;
  inset: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 1200ms ease, filter 800ms ease, transform 2400ms ease;
}

.project-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.project:hover .project-media img.is-active {
  filter: saturate(1) contrast(1.03);
  opacity: 0.92;
}

.project-caption {
  position: static;
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
  padding-top: clamp(18px, 1.8vw, 26px);
  text-align: center;
}

.project-caption p {
  max-width: 520px;
  margin: 0 auto;
}

.process-list span {
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
}

.project-caption h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.18;
  font-weight: 300;
}

.project-caption p,
.design-copy p,
.process-list,
.contact-panel p {
  color: rgba(231, 225, 214, 0.66);
}

.project-caption p {
  color: rgba(231, 225, 214, 0.5);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.5;
}

.services-section {
  position: relative;
  min-height: var(--section-screen);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(214, 211, 204, 0.08);
  border-bottom: 1px solid rgba(214, 211, 204, 0.08);
  background: #101314;
}

.services-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 42%, rgba(42, 51, 55, 0.42), transparent 34vw),
    linear-gradient(180deg, #101516 0%, #070a0b 100%);
}

.services-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 46%, rgba(214, 211, 204, 0.08), transparent 26vw),
    linear-gradient(180deg, rgba(8, 10, 10, 0.38) 0%, rgba(8, 10, 10, 0.22) 42%, rgba(8, 10, 10, 0.66) 100%),
    linear-gradient(90deg, rgba(8, 10, 10, 0.5) 0%, rgba(8, 10, 10, 0.18) 48%, rgba(8, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.services-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.68);
  opacity: 0;
  transition: opacity 900ms ease;
}

.services-background.has-video .services-background-video {
  opacity: 1;
}

.service-kicker {
  margin: 0 0 clamp(16px, 2vw, 28px);
  color: rgba(194, 170, 139, 0.86);
  font-size: clamp(10px, 0.68vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-intro-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 4.6vw, 78px);
  line-height: 1.04;
  font-weight: 300;
}

.services-intro-copy > p:last-child {
  max-width: 620px;
  margin: clamp(22px, 2.5vw, 34px) 0 0;
  color: rgba(231, 225, 214, 0.78);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.65;
  font-weight: 300;
}

.services-intro-media {
  position: relative;
  min-height: clamp(360px, 46vw, 640px);
  margin: 0;
  overflow: hidden;
  background: #0f1212;
}

.services-intro-media::after,
.service-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 24, 25, 0.05), rgba(21, 24, 25, 0.18));
}

.services-intro-media img,
.service-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.services-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--section-screen);
  height: var(--section-screen);
  overflow: hidden;
  touch-action: pan-y;
  overscroll-behavior: contain;
  border: 0;
  background: transparent;
  outline: none;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: var(--section-screen);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 720ms ease;
}

.service-slide-overview {
  place-items: center;
  padding: clamp(102px, 11vh, 148px) var(--page-x) clamp(118px, 13vh, 164px);
}

.service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-slide-overview.is-active {
  transform: translateY(0);
}

.services-slider.is-overview .service-detail-slide,
.services-slider.is-overview .service-detail-slide .service-slide-media {
  visibility: hidden;
}

.service-overview-panel {
  display: grid;
  justify-items: center;
  width: min(1240px, 100%);
  margin-top: clamp(78px, 11vh, 132px);
  text-align: center;
}

.service-overview-panel h2 {
  max-width: 760px;
  margin: clamp(18px, 1.8vw, 26px) auto clamp(48px, 5.8vw, 86px);
  color: rgba(214, 211, 204, 0.82);
  font-size: clamp(19px, 1.45vw, 28px);
  line-height: 1.45;
  font-weight: 300;
}

.service-overview-panel .service-section-label {
  color: rgba(247, 243, 234, 0.86);
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 78px);
  width: 100%;
}

.service-icon-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 230px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #d6d3cc;
  cursor: pointer;
  text-align: center;
  opacity: 0.72;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.service-icon-card svg {
  width: clamp(92px, 8.2vw, 148px);
  height: clamp(76px, 6.8vw, 122px);
  margin-bottom: clamp(22px, 2.5vw, 34px);
  overflow: visible;
}

.service-icon-card svg path,
.service-icon-card svg circle,
.service-icon-card svg rect,
.service-detail-mark svg path,
.service-detail-mark svg circle,
.service-detail-mark svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.service-icon-card span,
.service-nav-item span {
  color: currentColor;
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-icon-card small {
  display: block;
  max-width: 230px;
  margin-top: clamp(10px, 1.1vw, 15px);
  color: rgba(214, 211, 204, 0.58);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.55;
  font-weight: 300;
}

.service-icon-card:hover,
.service-icon-card:focus-visible {
  color: #b48258;
  opacity: 1;
  transform: translateY(-3px);
  outline: none;
}

.service-detail-slide {
  grid-template-columns: 1fr;
  align-items: start;
  padding: clamp(104px, 12vh, 156px) var(--page-x) clamp(132px, 15vh, 184px);
}

.service-detail-mark {
  position: absolute;
  top: clamp(450px, 50vh, 565px);
  left: var(--page-x);
  z-index: 2;
  display: grid;
  justify-items: center;
  width: clamp(74px, 5.8vw, 104px);
  color: rgba(214, 211, 204, 0.7);
  pointer-events: none;
}

.service-detail-mark svg {
  width: 100%;
  height: auto;
}

.service-detail-mark span {
  display: block;
  margin-top: clamp(5px, 0.55vw, 8px);
  color: currentColor;
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.service-slide-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(560px, 100%);
  min-height: auto;
  margin-top: clamp(540px, 62vh, 660px);
  padding: 0;
  background: transparent;
  text-align: left;
}

.service-slide-overview .service-slide-copy {
  width: auto;
  min-height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
}

.service-slide-copy h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 243, 234, 0.92);
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: 0;
}

.service-slide-overview .service-overview-title {
  max-width: 680px;
  color: rgba(247, 243, 234, 0.94);
  font-size: clamp(36px, 4.9vw, 72px);
  line-height: 1.03;
}

.service-slide-overview .service-section-label {
  color: rgba(214, 211, 204, 0.82);
}

.service-slide-overview .service-intro {
  max-width: 570px;
  margin: clamp(22px, 2.4vw, 32px) 0 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.62;
  font-weight: 300;
}

.service-categories {
  max-width: 620px;
  margin: clamp(24px, 2.6vw, 38px) 0 0;
  color: rgba(247, 243, 234, 0.68);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-body {
  max-width: 500px;
  margin: 0;
  color: rgba(214, 211, 204, 0.74);
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.5;
  font-weight: 300;
}

.service-included {
  max-width: 620px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  border-top: 1px solid rgba(231, 225, 214, 0.16);
  padding-top: clamp(16px, 1.7vw, 22px);
  color: rgba(231, 225, 214, 0.68);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.service-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #0f1212;
}

.service-slide-media::after {
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.78) 0%, rgba(8, 10, 10, 0.44) 46%, rgba(8, 10, 10, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 10, 10, 0.3) 0%, rgba(8, 10, 10, 0.15) 52%, rgba(8, 10, 10, 0.58) 100%);
}

.service-slide-media img {
  filter: saturate(0.72) contrast(1.06) brightness(0.66);
  transform: scale(1.03);
}

.service-slider-controls {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4vw, 54px);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: clamp(18px, 2.7vw, 42px);
  align-items: center;
  justify-content: center;
  width: min(880px, calc(100% - (var(--page-x) * 2)));
  transform: translateX(-50%);
  pointer-events: auto;
}

.services-slider.is-overview .service-slider-controls {
  opacity: 0;
  pointer-events: none;
}

.service-nav-item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(214, 211, 204, 0.52);
  cursor: pointer;
  transition: color 220ms ease, opacity 220ms ease;
}

.service-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-nav-item:hover,
.service-nav-item:focus-visible,
.service-nav-item.is-active {
  color: #b48258;
  outline: none;
}

.service-nav-item.is-active::after {
  opacity: 0.76;
  transform: scaleX(1);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 44px);
}

.service-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(214, 211, 204, 0.28);
  padding: 0 18px;
  color: rgba(247, 243, 234, 0.82);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.service-actions a:hover {
  border-color: #b48258;
  background: rgba(180, 130, 88, 0.08);
  color: #f7f3ea;
}

.service-arrow {
  position: relative;
  width: 48px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(231, 225, 214, 0.7);
  cursor: pointer;
  pointer-events: auto;
  transition: color 180ms ease, transform 180ms ease;
}

.service-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.service-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.service-arrow-prev::before {
  left: 8px;
}

.service-arrow-prev::after {
  left: 8px;
  border-left: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}

.service-arrow-next::before {
  right: 8px;
}

.service-arrow-next::after {
  right: 8px;
  border-right: 1px solid currentColor;
}

.service-arrow:hover {
  color: var(--accent);
}

.service-arrow-prev:hover {
  transform: translateX(-2px);
}

.service-arrow-next:hover {
  transform: translateX(2px);
}

.services-cta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
  margin: clamp(8px, 2vw, 24px) auto 0;
  text-align: center;
}

.services-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3.7vw, 58px);
  line-height: 1.1;
  font-weight: 300;
}

.services-cta p {
  margin: clamp(14px, 1.8vw, 24px) 0 clamp(20px, 2.4vw, 34px);
  color: rgba(231, 225, 214, 0.68);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.6;
}

.design-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.5fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 92svh;
}

.design-media {
  min-height: 72svh;
}

.design-copy p:last-child {
  max-width: 560px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--black);
}

.process-list span {
  display: block;
  margin-bottom: 58px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 520px);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
  min-height: var(--section-screen);
}

.contact-panel {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-panel a {
  display: inline-block;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.7vw, 38px);
}

.booking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(231, 225, 214, 0.58);
  font-size: 13px;
}

.booking-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.booking-form {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 10px;
}

.booking-form span {
  color: rgba(231, 225, 214, 0.52);
  font-size: 10px;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 10px 0 14px;
  outline: none;
}

.booking-form select {
  color: rgba(231, 225, 214, 0.78);
}

.booking-form option {
  background: var(--black);
  color: var(--ink);
}

.booking-form textarea {
  min-height: 128px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-bottom-color: rgba(189, 169, 139, 0.72);
}

.form-submit {
  justify-self: start;
  min-height: 42px;
  border: 1px solid rgba(189, 169, 139, 0.58);
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.form-submit:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--black);
}

.social-line {
  margin-top: 22px;
  color: var(--accent) !important;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin: 8px 0 30px;
}

.contact-lines p {
  margin: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contact-links a {
  display: inline-block;
  margin: 0;
  color: rgba(231, 225, 214, 0.66);
  font-size: 11px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact-links a:hover {
  color: var(--ink);
}

.contact-closing {
  position: relative;
  display: grid;
  place-items: center;
  min-height: var(--section-screen);
  padding: 116px var(--page-x) 88px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.contact-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(21, 24, 25, 0.12), rgba(21, 24, 25, 0.44) 58%, rgba(21, 24, 25, 0.72) 100%),
    linear-gradient(180deg, rgba(21, 24, 25, 0.16), rgba(21, 24, 25, 0.3) 58%, rgba(21, 24, 25, 0.72) 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--charcoal);
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.03);
}

.contact-closing-copy {
  display: grid;
  justify-items: center;
  width: min(720px, 100%);
  margin-top: clamp(150px, 20vh, 240px);
  text-align: center;
}

.contact-location {
  margin: 0 0 clamp(14px, 1.5vw, 22px);
  color: rgba(194, 170, 139, 0.7);
  font-size: clamp(10px, 0.64vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-closing-copy h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(231, 225, 214, 0.9);
  font-size: clamp(27px, 2.2vw, 42px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.contact-email {
  margin-top: clamp(18px, 2.4vw, 36px);
  border-bottom: 1px solid rgba(231, 225, 214, 0.42);
  padding-bottom: 8px;
  color: rgba(231, 225, 214, 0.76);
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.7;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-email:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.contact-social {
  position: absolute;
  left: 50%;
  bottom: clamp(58px, 8vh, 96px);
  z-index: 3;
  width: min(720px, calc(100% - (var(--page-x) * 2)));
  transform: translateX(-50%);
}

.booking-closing {
  position: relative;
  display: grid;
  place-items: center;
  min-height: var(--section-screen);
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.booking-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 24, 25, 0.14) 0%, rgba(21, 24, 25, 0.2) 56%, rgba(21, 24, 25, 0.58) 100%),
    rgba(21, 24, 25, 0.22);
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--charcoal);
}

.booking-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.03);
}

.booking-panel {
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - (var(--page-x) * 2)));
  margin-top: clamp(150px, 18vh, 230px);
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.booking-panel .eyebrow {
  display: none;
}

.booking-panel h2 {
  max-width: 740px;
  margin: 0 0 clamp(13px, 1.4vw, 20px);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.08;
  font-weight: 280;
}

.booking-panel > p {
  max-width: 640px;
  margin: 0;
  color: rgba(231, 225, 214, 0.74);
  font-size: clamp(14px, 0.96vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}

.booking-pathways {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(34px, 4vw, 58px);
  background: transparent;
}

.booking-pathways a {
  display: grid;
  gap: 9px;
  min-width: min(310px, 100%);
  border-top: 1px solid rgba(231, 225, 214, 0.24);
  padding: 16px 0 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.booking-pathways a:hover {
  border-color: rgba(231, 225, 214, 0.72);
  opacity: 0.82;
}

.booking-pathways span {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 300;
}

.booking-pathways em {
  max-width: 300px;
  color: rgba(231, 225, 214, 0.56);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.compact-contact {
  min-height: 78svh;
  padding-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(160px, 1fr) minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px var(--page-x);
  border-top: 1px solid var(--line);
  color: rgba(231, 225, 214, 0.48);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(231, 225, 214, 0.56);
}

.site-footer span {
  justify-self: end;
}

.footer-logo {
  justify-self: start;
  width: 116px;
  height: auto;
  object-fit: contain;
}

.booking-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-form legend {
  margin-bottom: 14px;
  color: rgba(231, 225, 214, 0.52);
  font-size: 10px;
  text-transform: uppercase;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(231, 225, 214, 0.68);
  font-size: 13px;
}

.checkbox-grid input {
  width: auto;
  accent-color: var(--accent);
}

.booking-single {
  position: relative;
  min-height: var(--section-screen);
  display: grid;
  align-items: center;
  padding: clamp(112px, 10vw, 148px) var(--page-x) clamp(54px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}

.booking-single::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 23, 24, 0.72), rgba(18, 23, 24, 0.42) 48%, rgba(18, 23, 24, 0.76)),
    linear-gradient(180deg, rgba(18, 23, 24, 0.36), rgba(18, 23, 24, 0.62) 72%, rgba(18, 23, 24, 0.9));
}

.booking-page-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.booking-page-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.03);
}

.booking-single-panel {
  width: min(1120px, 100%);
  margin: clamp(16px, 5vh, 68px) auto 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}

.booking-single-copy {
  padding-top: 8px;
}

.booking-single-copy h1 {
  max-width: 410px;
  margin: 0 0 18px;
  font-size: clamp(30px, 3.25vw, 54px);
  line-height: 1.08;
  font-weight: 260;
  letter-spacing: 0;
}

.booking-single-copy p {
  max-width: 400px;
  margin: 0 0 24px;
  color: rgba(231, 225, 214, 0.66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
}

.booking-single-copy a {
  color: rgba(231, 225, 214, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-single-form {
  padding-top: 18px;
  border-top: 1px solid rgba(231, 225, 214, 0.18);
  gap: 14px;
}

.booking-single-form .form-row {
  gap: clamp(16px, 2vw, 28px);
}

.booking-single-form label {
  gap: 9px;
}

.booking-single-form span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.booking-single-form input,
.booking-single-form textarea {
  padding: 0 0 13px;
  font-size: 14px;
  color: rgba(231, 225, 214, 0.88);
}

.booking-single-form input::placeholder,
.booking-single-form textarea::placeholder {
  color: rgba(231, 225, 214, 0.36);
}

.booking-single-form textarea {
  min-height: 108px;
}

.booking-single-form .form-submit {
  justify-self: start;
  margin-top: 6px;
  padding: 13px 24px;
  background: rgba(18, 23, 24, 0.26);
}

.project-page {
  background: var(--black);
  min-height: var(--section-screen);
}

.projects-page {
  min-height: var(--section-screen);
  background: var(--black);
}

.projects-browser {
  padding: clamp(118px, 11vw, 168px) var(--page-x) clamp(90px, 12vw, 150px);
}

.project-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(58px, 7vw, 112px) clamp(34px, 4.8vw, 78px);
  max-width: min(1680px, 100%);
  margin: 0 auto;
}

.project-index-card {
  display: grid;
  gap: clamp(18px, 1.8vw, 26px);
  color: var(--ink);
  text-decoration: none;
}

.project-index-image {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: rgba(231, 225, 214, 0.04);
}

.project-index-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
}

.project-index-image img.is-active {
  opacity: 1;
}

.project-index-card:hover .project-index-image img.is-active {
  transform: scale(1.018);
}

.project-index-meta {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0;
  text-align: center;
}

.project-index-meta h2 {
  margin: 0;
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.16;
  font-weight: 300;
}

.project-index-meta p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(231, 225, 214, 0.48);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.55;
}

.project-hero-detail {
  display: grid;
  place-items: end center;
  min-height: clamp(360px, 44svh, 520px);
  padding: 124px var(--page-x) clamp(50px, 6vw, 82px);
  border-bottom: 0;
}

.project-hero-copy {
  display: grid;
  justify-items: center;
  width: min(680px, 100%);
  text-align: center;
}

.project-hero-detail h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.12;
  font-weight: 300;
}

.project-hero-detail p {
  max-width: 560px;
  margin: clamp(14px, 1.4vw, 20px) 0 0;
  color: rgba(231, 225, 214, 0.56);
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.62;
  font-weight: 300;
}

.project-summary {
  margin-top: clamp(16px, 1.8vw, 26px);
  color: rgba(231, 225, 214, 0.42);
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.5;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  padding: 0 var(--page-x) clamp(84px, 10vw, 150px);
  background: transparent;
}

.project-frame {
  position: relative;
  aspect-ratio: 1.35 / 1;
  min-height: 0;
  margin: 0;
  background: rgba(8, 10, 10, 0.72);
  cursor: zoom-in;
  overflow: hidden;
}

.project-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(0.98);
  transition: transform 700ms ease;
}

.project-frame:hover img {
  transform: scale(1.025);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 62px clamp(16px, 4vw, 54px);
  background: rgba(6, 7, 7, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1500px);
  max-height: 82svh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: rgba(231, 225, 214, 0.74);
  padding: 12px 14px;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.lightbox button:hover {
  color: var(--ink);
}

.lightbox-close {
  top: 22px;
  right: 22px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox p {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: rgba(243, 239, 231, 0.72);
  font-size: 12px;
}

.film-page,
.enquire-page {
  min-height: var(--section-screen);
  padding: var(--page-top) var(--page-x) var(--page-bottom);
  background:
    radial-gradient(circle at 84% 4%, rgba(75, 82, 82, 0.2), transparent 34vw),
    linear-gradient(180deg, #171b1c 0%, #111415 100%);
}

.film-page {
  padding-top: var(--page-top);
}

.film-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.film-intro {
  max-width: 430px;
  padding-bottom: 12px;
}

.film-intro h1 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 58px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.06;
}

.film-intro p:last-child {
  margin: 22px 0 0;
  color: rgba(231, 225, 214, 0.7);
  font-size: clamp(15px, 1.02vw, 18px);
  line-height: 1.7;
}

.film-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.film-card.is-unpublished {
  cursor: default;
}

.film-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: clamp(14px, 1.2vw, 22px);
  background: #0c0e0f;
}

.film-grid .film-media {
  aspect-ratio: 16 / 10;
}

.film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
  transition: transform 900ms ease, filter 500ms ease;
}

.film-card:hover .film-media img {
  transform: scale(1.018);
  filter: saturate(1) brightness(0.92);
}

.film-card.is-unpublished:hover .film-media img {
  transform: none;
  filter: saturate(0.9) brightness(0.82);
}

.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(48px, 4.2vw, 68px);
  height: clamp(48px, 4.2vw, 68px);
  transform: translate(-50%, -50%) scale(1);
  border: 1px solid rgba(231, 225, 214, 0.58);
  border-radius: 50%;
  background: rgba(12, 14, 14, 0.26);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  opacity: 0.72;
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-left: clamp(11px, 0.95vw, 15px) solid rgba(231, 225, 214, 0.84);
  border-top: clamp(7px, 0.58vw, 9px) solid transparent;
  border-bottom: clamp(7px, 0.58vw, 9px) solid transparent;
}

.film-card:hover .play-mark {
  opacity: 0.92;
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(180, 130, 88, 0.78);
}

.film-card.is-unpublished .play-mark {
  opacity: 0.42;
}

.film-card.is-unpublished:hover .play-mark {
  opacity: 0.48;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(231, 225, 214, 0.5);
}

.film-meta {
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1vw, 12px);
  align-items: center;
  padding-top: clamp(18px, 1.8vw, 26px);
}

.film-meta span:first-child {
  margin-bottom: 0;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 300;
  line-height: 1.18;
}

.film-meta span:nth-child(2) {
  color: rgba(231, 225, 214, 0.5);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.5;
}

.film-meta small {
  color: rgba(180, 130, 88, 0.78);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 4vw, 64px) clamp(22px, 2.8vw, 48px);
}

.film-more-link {
  display: block;
  width: max-content;
  margin: clamp(42px, 5vw, 78px) auto 0;
}

.film-cta {
  max-width: 520px;
  margin: clamp(64px, 8vw, 112px) auto 0;
  text-align: center;
}

.film-cta h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
}

.film-cta p {
  margin: 18px 0 30px;
  color: rgba(231, 225, 214, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.film-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: var(--page-x);
  background: rgba(5, 6, 6, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.film-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.film-lightbox-inner {
  display: grid;
  width: min(1180px, 92vw);
  aspect-ratio: 16 / 9;
  place-items: center;
  background: #080909;
}

.film-lightbox iframe {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-lightbox.has-video iframe {
  display: block;
}

.film-lightbox.has-video [data-film-empty] {
  display: none;
}

.film-lightbox p {
  color: rgba(231, 225, 214, 0.72);
}

.film-lightbox-close {
  position: absolute;
  top: 24px;
  right: var(--page-x);
  border: 0;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.enquire-page {
  min-height: var(--section-screen);
  padding: var(--page-top) var(--page-x) var(--page-bottom);
  background:
    radial-gradient(circle at 72% 8%, rgba(83, 88, 86, 0.16), transparent 34vw),
    linear-gradient(135deg, rgba(189, 169, 139, 0.035), transparent 34%),
    linear-gradient(180deg, #151918 0%, #101413 100%);
}

.enquire-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(520px, 0.6fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: start;
  min-height: calc(var(--section-screen) - 176px);
}

.enquire-copy {
  position: sticky;
  top: 118px;
  max-width: 520px;
}

.enquire-copy h1 {
  max-width: 620px;
  margin: 0;
  color: rgba(231, 225, 214, 0.96);
  font-size: clamp(44px, 4.6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
}

.enquire-copy > p {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(231, 225, 214, 0.66);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.72;
}

.enquire-contact {
  display: grid;
  gap: 10px;
  margin-top: clamp(40px, 5vw, 68px);
  color: rgba(231, 225, 214, 0.58);
  font-size: 15px;
  line-height: 1.5;
}

.enquire-contact a {
  width: max-content;
  color: rgba(231, 225, 214, 0.92);
  text-decoration: none;
}

.enquire-contact a:hover {
  color: var(--accent);
}

.enquire-copy .service-kicker {
  color: rgba(207, 198, 184, 0.62);
  letter-spacing: 0.18em;
}

.enquiry-form {
  display: grid;
  gap: clamp(26px, 2.4vw, 36px);
  padding-top: 4px;
}

.enquiry-form label {
  display: grid;
  gap: 14px;
  color: rgba(207, 198, 184, 0.56);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(231, 225, 214, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: rgba(231, 225, 214, 0.92);
  padding: 0 0 16px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 180ms ease, color 180ms ease;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(231, 225, 214, 0.42);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: rgba(180, 130, 88, 0.76);
}

.enquiry-form select {
  color: rgba(231, 225, 214, 0.72);
}

.enquiry-form option {
  color: #171817;
  background: #ede7dc;
}

.enquiry-form textarea {
  min-height: 156px;
  resize: vertical;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-control {
  display: flex;
  min-height: 43px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(231, 225, 214, 0.2);
  padding-bottom: 14px;
}

.file-upload-button {
  display: inline-grid;
  min-height: 34px;
  padding: 0 16px;
  place-items: center;
  border: 1px solid rgba(231, 225, 214, 0.24);
  color: rgba(231, 225, 214, 0.9);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.file-upload:hover .file-upload-button,
.file-upload:focus-within .file-upload-button {
  border-color: rgba(180, 130, 88, 0.82);
  color: rgba(231, 225, 214, 0.98);
}

.file-upload-status {
  color: rgba(231, 225, 214, 0.48);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.enquiry-form .form-submit {
  justify-self: start;
  min-height: 48px;
  margin-top: 4px;
  padding: 0 28px;
  border: 1px solid rgba(231, 225, 214, 0.28);
  background: transparent;
  color: rgba(231, 225, 214, 0.92);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.enquiry-form .form-submit:hover,
.enquiry-form .form-submit:focus-visible {
  border-color: rgba(180, 130, 88, 0.9);
  background: rgba(180, 130, 88, 0.14);
  color: rgba(231, 225, 214, 0.98);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--black);
}

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

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

@media (max-width: 940px) {
  :root {
    --section-screen: 100dvh;
    --page-top: 104px;
    --page-bottom: 86px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy {
    grid-column: 1;
  }

  .statement,
  .section-heading,
  .design-section,
  .contact-section,
  .contact-closing,
  .booking-closing {
    grid-template-columns: 1fr;
  }

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

  .services-section {
    padding: 0;
  }

  .mobile-film-section {
    position: relative;
    display: block;
    min-height: var(--section-screen);
    padding: var(--page-top) var(--page-x) var(--page-bottom);
    background:
      radial-gradient(ellipse at center, transparent 42%, rgba(5, 7, 7, 0.24) 78%, rgba(5, 7, 7, 0.56) 100%),
      linear-gradient(180deg, rgba(5, 7, 7, 0.92), rgba(9, 13, 13, 0.96));
    overflow: visible;
    isolation: isolate;
  }

  .mobile-film-section .section-heading {
    display: none;
  }

  .mobile-film-section .film-grid {
    grid-template-columns: 1fr;
  }

  .mobile-film-section .text-link {
    display: block;
    width: max-content;
    margin: clamp(40px, 9vw, 62px) auto 0;
  }

  .mobile-enquire-section {
    display: block;
    min-height: var(--section-screen);
    padding: var(--page-top) var(--page-x) var(--page-bottom);
    background:
      radial-gradient(circle at 22% 28%, rgba(179, 138, 102, 0.07), transparent 30%),
      linear-gradient(180deg, rgba(9, 13, 13, 0.98), rgba(13, 17, 17, 1));
  }

  .mobile-enquire-section .enquire-shell {
    min-height: auto;
    padding: 0;
  }

  .services-slider {
    height: var(--section-screen);
    min-height: var(--section-screen);
  }

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

  .service-slide-overview {
    display: grid;
    padding: 96px 18px 112px;
  }

  .service-overview-panel {
    margin-top: 38px;
  }

  .service-overview-panel h2 {
    max-width: 360px;
    margin-bottom: 34px;
  }

  .service-overview-panel .service-section-label {
    font-size: clamp(20px, 6.4vw, 30px);
  }

  .service-icon-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(320px, 100%);
  }

  .service-icon-card {
    grid-template-columns: 76px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 96px;
    text-align: left;
  }

  .service-icon-card svg {
    width: 62px;
    height: 52px;
    margin: 0;
  }

  .service-icon-card small {
    grid-column: 2;
    max-width: 230px;
    margin-top: 4px;
  }

  .service-slide-media {
    order: initial;
  }

  .service-slide-copy {
    order: initial;
    align-self: center;
    width: min(440px, 100%);
    margin-top: clamp(360px, 58vh, 520px);
    padding: 0;
  }

  .service-slide-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .service-body,
  .service-included {
    max-width: none;
  }

  .service-detail-slide {
    align-items: start;
    padding: 104px 22px 142px;
  }

  .service-detail-mark {
    top: clamp(265px, 42vh, 360px);
    left: 22px;
    width: 64px;
  }

  .service-detail-mark span {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .service-slider-controls {
    left: 18px;
    right: 18px;
    bottom: 28px;
    grid-template-columns: repeat(5, 1fr);
    width: auto;
    gap: 12px;
    transform: none;
  }

  .service-nav-item span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .services-cta {
    grid-template-columns: 1fr;
  }

  .contact-closing-copy {
    width: min(560px, calc(100% - 36px));
    margin-top: clamp(92px, 16vh, 132px);
  }

  .contact-closing-copy h2 {
    font-size: clamp(26px, 7.6vw, 38px);
    line-height: 1.14;
  }

  .contact-social {
    bottom: 46px;
    gap: 16px 22px;
  }

  .studio-section {
    grid-template-columns: 1fr;
    min-height: var(--section-screen);
  }

  .about-image {
    min-height: 420px;
  }

  .about-copy {
    margin-left: 0;
  }

  #about .about-copy,
  #about .about-copy p,
  #about .about-social a {
    color: #ffffff;
  }

  .project,
  .project-large,
  .design-media {
    grid-column: 1;
    min-height: 0;
  }

  .project-caption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-caption p {
    grid-column: auto;
  }

  .project-hero-detail,
  .project-gallery,
  .project-index-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-list {
    grid-template-columns: 1fr;
  }

  .booking-single {
    min-height: auto;
    padding-top: 110px;
    overflow: visible;
  }

  .booking-single-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 0;
  }

  .booking-single-copy h1,
  .booking-single-copy p {
    max-width: 100%;
  }

  .checkbox-grid,
  .booking-pathways {
    grid-template-columns: 1fr;
  }

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

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

  .footer-logo,
  .site-footer span {
    justify-self: start;
  }

  .film-page,
  .enquire-page {
    min-height: var(--section-screen);
    padding-top: var(--page-top);
    padding-bottom: var(--page-bottom);
  }

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

  .film-intro {
    max-width: 100%;
    padding-bottom: 0;
  }

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

  .film-media,
  .film-grid .film-media {
    aspect-ratio: 16 / 10.5;
  }

  .enquire-shell {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .enquire-copy {
    position: static;
  }

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

}

@media (max-width: 640px) {
  .hero {
    min-height: var(--section-screen);
  }

  h1 {
    font-size: 50px;
  }

  .statement > p {
    font-size: 34px;
  }
}
