:root {
  --white: #f4f2ed;
  --soft-white: rgba(244, 242, 237, 0.72);
  --faint-white: rgba(244, 242, 237, 0.44);
  --dark: #050505;
  --dark-soft: #0a0a0a;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.42);
  --gold: #b8a88d;
  --header-width: min(1480px, calc(100% - 88px));
  --content-width: min(1220px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
}

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

.section-shell {
  position: relative;
  z-index: 2;
  width: var(--content-width);
  margin-inline: auto;
}

/* =========================
   Sticky changing header
   ========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  padding: 28px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    padding 420ms var(--ease),
    background-color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease,
    backdrop-filter 420ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.78));
  transition: opacity 420ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-header.is-scrolled::before {
  opacity: 0.36;
}

.header-inner {
  position: relative;
  width: var(--header-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.desktop-nav--right {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding: 10px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  transition:
    transform 300ms var(--ease),
    width 420ms var(--ease),
    height 420ms var(--ease);
}

.site-header.is-scrolled .brand-mark {
  width: 56px;
  height: 56px;
}

.brand-mark:hover {
  transform: scale(1.045);
}

.brand-mark__circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition:
    width 420ms var(--ease),
    height 420ms var(--ease);
}

.site-header.is-scrolled .brand-mark__circle {
  width: 45px;
  height: 45px;
}

.brand-mark__circle::before,
.brand-mark__circle::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.64);
  transition: height 420ms var(--ease);
}

.site-header.is-scrolled .brand-mark__circle::before,
.site-header.is-scrolled .brand-mark__circle::after {
  height: 27px;
}

.brand-mark__circle::before {
  transform: rotate(42deg);
}
.brand-mark__circle::after {
  transform: rotate(-42deg);
}

.brand-mark__letters {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px #000;
  transition: font-size 420ms var(--ease);
}

.site-header.is-scrolled .brand-mark__letters {
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background: #fff;
  transition:
    transform 300ms var(--ease),
    opacity 300ms ease;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background-color: #111;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&fm=jpg&q=92&w=2600"),
    url("assets/images/hero-wow.svg");
  background-size: cover, cover, cover;
  background-position:
    center,
    center 52%,
    center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 50% 46%,
      transparent 0 28%,
      rgba(0, 0, 0, 0.15) 58%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42),
      transparent 25%,
      transparent 75%,
      rgba(0, 0, 0, 0.42)
    );
  pointer-events: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 100px;
  text-align: center;
  animation: heroReveal 1.1s var(--ease) both;
}

.hero-eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-content h1 {
  font-size: clamp(50px, 5.2vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.45);
}

.hero-line {
  width: min(860px, 64vw);
  height: 1px;
  margin: 18px 0 17px;
  background: rgba(255, 255, 255, 0.72);
  transform-origin: center;
  animation: lineReveal 1.25s 250ms var(--ease) both;
}

.hero-subtitle {
  margin-left: 0.7em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.1vw, 34px);
  letter-spacing: 0.7em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.contact-button {
  position: relative;
  isolation: isolate;
  min-width: 194px;
  margin-top: 50px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(53, 53, 53, 0.86);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    color 280ms ease,
    transform 280ms var(--ease),
    border-color 280ms ease;
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: translateY(102%);
  transition: transform 340ms var(--ease);
}

.contact-button:hover,
.contact-button:focus-visible {
  color: #111;
  border-color: #fff;
  transform: translateY(-3px);
}

.contact-button:hover::before,
.contact-button:focus-visible::before {
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* =========================
   Mobile menu
   ========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 34px 50px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(180, 162, 133, 0.11),
      transparent 38%
    ),
    rgba(5, 5, 5, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition:
    opacity 300ms ease,
    visibility 300ms ease,
    transform 350ms var(--ease);
}

.mobile-menu__links,
.mobile-menu__socials {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu__links {
  gap: 19px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(37px, 10vw, 58px);
  line-height: 1;
}

.mobile-menu__socials {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 58px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
}

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

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* =========================
   Shared heading
   ========================= */
.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}

.section-heading p {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading span {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0.08)
  );
}

/* =========================
   Elegant About Us
   ========================= */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(184, 168, 141, 0.055),
      transparent 28%
    ),
    #050505;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.03) 12%,
    rgba(255, 255, 255, 0.03) 88%,
    transparent
  );
  pointer-events: none;
}

.about-hero {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  align-items: start;
  max-width: 1020px;
  margin: 0 auto 110px;
}

.about-hero__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 14px;
}

.about-hero__label span {
  color: var(--faint-white);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-hero__label strong {
  margin-top: 8px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.about-hero__content h2 {
  max-width: 800px;
  margin-top: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(47px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.about-hero__content > p:last-child {
  max-width: 760px;
  margin-top: 31px;
  color: var(--soft-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.68;
}

.about-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-block {
  min-height: 380px;
  padding: 54px clamp(34px, 4.2vw, 65px) 64px;
}

/* .editorial-block + .editorial-block {
  border-left: 1px solid var(--line);
} */

.editorial-block__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-block__topline span {
  color: var(--faint-white);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.editorial-block__topline p {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial-block h3,
.about-approach h3 {
  max-width: 500px;
  margin-top: 42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.1vw, 47px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.editorial-block > p:last-child,
.about-approach > p:not(.section-kicker) {
  max-width: 540px;
  margin-top: 26px;
  color: var(--soft-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.68;
}

.about-quote {
  max-width: 980px;
  margin: 0 auto;
  padding: 116px 40px 112px;
  text-align: center;
}

.about-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(39px, 4.6vw, 67px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-quote footer {
  margin-top: 28px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-details {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-approach,
.about-services {
  min-height: 430px;
  padding: 66px clamp(34px, 4.2vw, 65px);
}

.about-services {
  /* border-left: 1px solid var(--line); */
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    gap 280ms var(--ease),
    color 280ms ease;
}

.text-link:hover {
  gap: 20px;
  color: var(--gold);
}

.about-services ul {
  margin-top: 28px;
  list-style: none;
}

.about-services li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.about-services li span {
  color: var(--faint-white);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.about-services li strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.about-stats div {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px clamp(24px, 4vw, 54px);
  align-items: center;
}

.about-stats div + div {
  /* border-left: 1px solid var(--line); */
}

.about-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(43px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  margin-top: 10px;
  color: var(--faint-white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================
   Gallery
   ========================= */
.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 135px;
  background: #040404;
}

.gallery-heading-wrap .section-heading {
  margin-bottom: 50px;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-meta h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.gallery-meta > p {
  color: var(--faint-white);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.gallery-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-panels {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.25fr 1.15fr 1.05fr;
  gap: 3px;
  height: clamp(410px, 34vw, 650px);
  background: #000;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.gallery-panels.is-switching {
  opacity: 0.72;
  transform: translate3d(0, 2px, 0) scale(0.997);
}

.gallery-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
  isolation: isolate;
  animation: galleryPanelIn 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--panel-delay, 0ms);
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  filter: grayscale(10%) contrast(1.02);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.gallery-panel__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.54);
  transition: background-color 420ms ease;
}

.gallery-panel--active {
  cursor: default;
}

.gallery-panel--active img {
  transform: scale(1);
  filter: none;
}

.gallery-panel--active .gallery-panel__shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 48%,
    rgba(0, 0, 0, 0.68)
  );
}

.gallery-panel:not(.gallery-panel--active):hover img {
  transform: scale(1.045);
}

.gallery-panel:not(.gallery-panel--active):hover .gallery-panel__shade {
  background: rgba(0, 0, 0, 0.38);
}

.gallery-panel__caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 380ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-panel--active .gallery-panel__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-panel__caption small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-panel__caption strong {
  margin-top: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 400;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(4, 4, 4, 0.45);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    background-color 250ms ease,
    color 250ms ease,
    transform 250ms var(--ease);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: #fff;
  color: #111;
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow--prev {
  left: 22px;
}
.gallery-arrow--next {
  right: 22px;
}

.gallery-controls {
  padding-top: 16px;
}

.gallery-thumbs-wrap {
  overflow: hidden;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 78px;
  height: 58px;
  overflow: hidden;
  border: 1px solid transparent;
  background: #111;
  cursor: pointer;
  opacity: 0.55;
  transition:
    opacity 250ms ease,
    border-color 250ms ease,
    transform 250ms var(--ease);
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.gallery-progress {
  width: 100%;
  height: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.gallery-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes galleryPanelIn {
  from {
    opacity: 0.72;
    transform: translate3d(0, 5px, 0) scale(1.004);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* =========================
   Contact
   ========================= */
.contact-preview {
  padding: 130px 0 150px;
  background: #050505;
  text-align: center;
}

.contact-preview h2 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(45px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.contact-preview__inner > a {
  display: inline-block;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--soft-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 32px);
  transition: color 220ms ease;
}

.contact-preview__inner > a:hover {
  color: #fff;
}

/* =========================
   Reveal and keyframes
   ========================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50%,
  100% {
    transform: translateY(100%);
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1180px) {
  :root {
    --header-width: calc(100% - 46px);
  }

  .desktop-nav {
    gap: 18px;
    font-size: 15px;
  }

  .gallery-panels {
    grid-template-columns: 0.85fr 1fr 1.35fr 1fr 0.85fr;
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-header.is-scrolled {
    padding: 12px 0;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-mark__circle,
  .site-header.is-scrolled .brand-mark__circle {
    width: 50px;
    height: 50px;
  }

  .brand-mark__circle::before,
  .brand-mark__circle::after,
  .site-header.is-scrolled .brand-mark__circle::before,
  .site-header.is-scrolled .brand-mark__circle::after {
    height: 30px;
  }

  .brand-mark__letters,
  .site-header.is-scrolled .brand-mark__letters {
    font-size: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 110;
    display: block;
  }

  .about-hero {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 42px;
  }

  .about-editorial,
  .about-details {
    grid-template-columns: 1fr;
  }

  .editorial-block + .editorial-block,
  .about-services {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .gallery-panels {
    grid-template-columns: 0.55fr 0.78fr 1.7fr 0.78fr 0.55fr;
    height: clamp(400px, 62vw, 580px);
  }

  .gallery-panel__caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-width: calc(100% - 28px);
    --content-width: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 130px 18px 125px;
  }

  .hero-eyebrow {
    max-width: 280px;
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-line {
    width: 84vw;
    margin-block: 15px;
  }

  .hero-subtitle {
    margin-left: 0.45em;
    font-size: 20px;
    letter-spacing: 0.42em;
  }

  .contact-button {
    min-width: 180px;
    margin-top: 37px;
    padding: 16px 23px;
    font-size: 16px;
  }

  .scroll-indicator {
    display: none;
  }

  .about-section,
  .gallery-section,
  .contact-preview {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 52px;
  }

  .section-heading p {
    font-size: 12px;
  }

  .about-section::before {
    display: none;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 72px;
  }

  .about-hero__label {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 0;
  }

  .about-hero__label strong {
    margin: 0;
    font-size: 32px;
  }

  .about-hero__content h2,
  .contact-preview h2 {
    font-size: clamp(39px, 12vw, 57px);
  }

  .about-hero__content > p:last-child {
    font-size: 18px;
  }

  .editorial-block,
  .about-approach,
  .about-services {
    min-height: auto;
    padding: 43px 24px 50px;
  }

  .editorial-block h3,
  .about-approach h3 {
    margin-top: 32px;
  }

  .about-quote {
    padding: 82px 8px 80px;
  }

  .about-quote p {
    font-size: clamp(36px, 11vw, 49px);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    min-height: 138px;
    padding: 30px 24px;
  }

  .about-stats div + div {
    border-left: 0;
    /* border-top: 1px solid var(--line); */
  }

  .gallery-meta {
    align-items: start;
    margin-bottom: 28px;
  }

  .gallery-meta h2 {
    font-size: 34px;
  }

  .gallery-panels {
    display: grid;
    grid-template-columns: 14vw 18vw 68vw 18vw 14vw;
    width: 132vw;
    height: 68svh;
    min-height: 470px;
    gap: 2px;
    transform: translateX(-16vw);
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .gallery-arrow--prev {
    left: 12px;
  }
  .gallery-arrow--next {
    right: 12px;
  }

  .gallery-panel__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-thumb {
    flex-basis: 67px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================
   World-class footer
   ========================= */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #060606 0%, #030303 58%, #000 100%);
  isolation: isolate;
}

.site-footer__glow {
  position: absolute;
  top: -360px;
  right: -260px;
  z-index: -1;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 168, 141, 0.12),
    rgba(184, 168, 141, 0.03) 40%,
    transparent 68%
  );
  filter: blur(14px);
  pointer-events: none;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  padding: 60px 0 0;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 42px;
  color: rgba(244, 242, 237, 0.58);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-status span {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9b99b;
  box-shadow: 0 0 0 5px rgba(169, 185, 155, 0.08);
}

.footer-status span::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(169, 185, 155, 0.4);
  border-radius: inherit;
  animation: footerPulse 2.5s ease-out infinite;
}

.footer-intro h2 {
  max-width: 900px;
  margin-top: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 7.2vw, 112px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.footer-intro h2 em {
  color: var(--gold);
  font-weight: 400;
}

.footer-cta {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(152px, 14vw, 198px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  transition:
    color 350ms ease,
    border-color 350ms ease,
    transform 450ms var(--ease);
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--white);
  transform: scale(0);
  transition: transform 500ms var(--ease);
}

.footer-cta span {
  max-width: 80px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-cta svg {
  position: absolute;
  right: 26%;
  bottom: 24%;
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 400ms var(--ease);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: #070707;
  border-color: var(--white);
  transform: rotate(-4deg) scale(1.03);
}

.footer-cta:hover::before,
.footer-cta:focus-visible::before {
  transform: scale(1);
}

.footer-cta:hover svg,
.footer-cta:focus-visible svg {
  transform: translate(4px, -4px);
}

.footer-divider {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.footer-divider span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(90deg, var(--gold), rgba(184, 168, 141, 0.08));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.95fr 1fr;
  gap: clamp(28px, 3.7vw, 66px);
  padding: 76px 0 82px;
}

.footer-brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 350ms var(--ease);
}

.footer-brand__mark::before,
.footer-brand__mark::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);
}

.footer-brand__mark::before {
  transform: rotate(42deg);
}
.footer-brand__mark::after {
  transform: rotate(-42deg);
}

.footer-brand__mark span {
  position: relative;
  z-index: 1;
}

.footer-brand__mark:hover,
.footer-brand__mark:focus-visible {
  background: var(--white);
  color: #050505;
  transform: rotate(6deg);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 30px;
  color: rgba(244, 242, 237, 0.54);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.62;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: rgba(244, 242, 237, 0.64);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
}

.footer-column__title {
  margin-bottom: 15px;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-column a {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding-bottom: 4px;
  color: rgba(244, 242, 237, 0.78);
  transition:
    color 250ms ease,
    transform 300ms var(--ease);
  border-radius: 13px;
}

.footer-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-column a span {
  color: rgba(244, 242, 237, 0.3);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.footer-contact__email {
  color: #fff !important;
  font-size: 20px;
}

.footer-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: "Manrope", Arial, sans-serif;
}

.footer-time span {
  color: rgba(244, 242, 237, 0.35);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-time strong {
  color: rgba(244, 242, 237, 0.86);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.footer-socials {
  min-width: 0;
}

.footer-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(64px, 1fr));
  gap: 10px;
  width: 100%;
}

.footer-social-link {
  position: relative;
  display: flex !important;
  min-width: 0;
  min-height: 76px;
  padding: 12px 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2px;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(244, 242, 237, 0.72) !important;
  text-align: center;
  isolation: isolate;
  transition:
    border-color 300ms ease,
    color 300ms ease,
    transform 350ms var(--ease),
    background-color 300ms ease !important;
}

.footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  transform: translateY(102%);
  transition: transform 420ms var(--ease);
}

.footer-social-link::after {
  display: none !important;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  transition: transform 350ms var(--ease);
}

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

.footer-social-link__image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 350ms var(--ease), filter 300ms ease;
}

.footer-social-link span {
  color: inherit !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 7px !important;
  font-weight: 500;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #050505 !important;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px) !important;
}

.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
  transform: translateY(0);
}

.footer-social-link:hover svg,
.footer-social-link:focus-visible svg,
.footer-social-link:hover .footer-social-link__image,
.footer-social-link:focus-visible .footer-social-link__image {
  transform: scale(1.12) rotate(-4deg);
}

.footer-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.8fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  padding: 86px 0;
}

.footer-newsletter h3 {
  max-width: 610px;
  margin-top: 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3.2vw, 47px);
  font-weight: 400;
  line-height: 1.03;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  transition: border-color 250ms ease;
}

.newsletter-form:focus-within {
  border-color: var(--white);
}

.newsletter-form input {
  min-width: 0;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
}

.newsletter-form input::placeholder {
  color: rgba(244, 242, 237, 0.38);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 18px 0 18px 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newsletter-form button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  transition: transform 300ms var(--ease);
}

.newsletter-form button:hover svg,
.newsletter-form button:focus-visible svg {
  transform: translateX(5px);
}

.newsletter-message {
  position: absolute;
  right: 0;
  bottom: 52px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 242, 237, 0.38);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-bottom a {
  transition: color 220ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-bottom a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 300ms var(--ease);
}

.footer-bottom a:hover span {
  transform: translateY(-4px);
}

.footer-wordmark {
  margin: 0 -0.045em -0.12em;
  color: transparent;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(88px, 15.5vw, 238px);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.065em;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(244, 242, 237, 0.15);
  user-select: none;
}

/* Floating back-to-top control */
.back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: clamp(16px, 2.2vw, 34px);
  bottom: clamp(16px, 2.2vw, 32px);
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) var(--scroll-progress),
    rgba(255, 255, 255, 0.14) 0deg
  );
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.86);
  transition:
    opacity 300ms ease,
    visibility 300ms ease,
    transform 420ms var(--ease);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top svg,
.back-to-top span {
  position: relative;
  z-index: 1;
}

.back-to-top svg {
  width: 17px;
  height: 17px;
  margin-top: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms var(--ease);
}

.back-to-top span {
  margin-top: -5px;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-5px) scale(1.04);
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .back-to-top {
    width: 52px;
    height: 52px;
  }
}

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

@keyframes footerPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.72);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, minmax(0, 0.8fr)) 1fr;
  }

  .footer-socials {
    grid-column: 2 / -1;
  }

  .footer-social-links {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    grid-column: 1 / -1;
  }

  .footer-social-links {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
  }

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

  .newsletter-message {
    position: static;
    grid-column: 1 / -1;
    margin-top: -20px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 90px;
  }

  .footer-intro {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 70px;
    justify-items: center;
    justify-content: center;
  }

  .footer-intro h2 {
    font-size: clamp(55px, 17vw, 82px);
  }

  .footer-cta {
    width: 145px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 62px 0;
  }

  .footer-brand p {
    max-width: 430px;
  }

  .footer-social-links {
    grid-template-columns: repeat(2, minmax(82px, 1fr));
  }

  .footer-newsletter {
    padding: 68px 0;
  }

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

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 18px 24px;
  }
}

@media (max-width: 460px) {
  .footer-social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .newsletter-form button {
    justify-self: start;
    padding: 10px 0 16px;
  }

  .footer-wordmark {
    font-size: 24vw;
  }
}

/* =========================================================
   Dedicated About page
   ========================================================= */
.inner-page {
  background: #080808;
}

.about-page main {
  overflow: hidden;
}

.about-page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b;
}

.about-page-hero__media {
  position: absolute;
  inset: -6%;
  z-index: -3;
  background-image:
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2600&q=92"),
    url("assets/images/about-hero.svg");
  background-position: center 56%, center;
  background-size: cover, cover;
  filter: saturate(0.72) contrast(1.04);
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.about-page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.55) 0%, rgba(3, 3, 3, 0.08) 35%, rgba(3, 3, 3, 0.72) 100%),
    radial-gradient(circle at 72% 46%, transparent 0 24%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 48%, rgba(0, 0, 0, 0.18));
}

.about-page-hero__inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
  padding-top: 170px;
  padding-bottom: clamp(58px, 7vw, 108px);
}

.about-page-hero__index {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-page-hero__index i {
  display: block;
  width: 1px;
  height: 74px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.82), rgba(255,255,255,0.12));
}

.about-page-hero__content {
  max-width: 1080px;
  animation: heroReveal 1.2s var(--ease) both;
}

.about-page-hero__content .hero-eyebrow {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.65);
}

.about-page-hero__content h1 {
  max-width: 1000px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 9.1vw, 146px);
  font-weight: 400;
  line-height: 0.79;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-page-hero__content h1 em {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 400;
}

.about-page-hero__foot {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-top: clamp(42px, 6vw, 82px);
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.about-page-hero__foot > p {
  color: rgba(255, 255, 255, 0.71);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.48;
}

.about-page-hero__discover {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-page-hero__discover svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 320ms var(--ease);
}

.about-page-hero__discover:hover svg,
.about-page-hero__discover:focus-visible svg {
  transform: translateY(5px);
}

.about-page-hero__location {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.inner-section-label {
  display: grid;
  grid-template-columns: auto auto minmax(70px, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(62px, 8vw, 118px);
  color: rgba(244, 242, 237, 0.48);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.inner-section-label span {
  color: var(--gold);
}

.inner-section-label i {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.04));
}

.about-story-section,
.about-manifesto-section,
.about-process-section,
.about-capabilities-section {
  position: relative;
  padding: clamp(110px, 13vw, 210px) 0;
}

.about-story-section {
  background:
    radial-gradient(circle at 18% 13%, rgba(184, 168, 141, 0.08), transparent 25%),
    #080808;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 155px);
  align-items: start;
}

.about-story-lead h2,
.about-process-heading h2,
.about-capabilities-intro h2 {
  margin-top: 19px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.about-story-copy {
  padding-top: 16px;
}

.about-story-copy__lead {
  max-width: 680px;
  color: rgba(244, 242, 237, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.65vw, 39px);
  line-height: 1.2;
}

.about-story-copy__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 58px);
  margin-top: clamp(42px, 6vw, 74px);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.about-story-copy__columns p,
.about-manifesto-copy p,
.about-process-heading > p:last-child,
.about-capabilities-intro > p {
  color: rgba(244, 242, 237, 0.57);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.68;
}

.about-image-composition {
  position: relative;
  min-height: clamp(680px, 72vw, 1040px);
  margin-top: clamp(90px, 13vw, 190px);
}

.about-image {
  position: absolute;
  overflow: hidden;
  background: #121212;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55));
}

.about-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 1.1s var(--ease), filter 600ms ease;
}

.about-image:hover img {
  transform: scale(1.025);
  filter: saturate(0.95) contrast(1.02);
}

.about-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-image figcaption strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.about-image--primary {
  inset: 0 10% 10% 0;
}

.about-image--secondary {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 44%;
  border: 12px solid #080808;
}

.about-image--detail {
  top: 8%;
  right: 0;
  width: 24%;
  height: 25%;
  border: 12px solid #080808;
}

.about-manifesto-section {
  background: #efede7;
  color: #111;
}

.about-manifesto-section .inner-section-label {
  color: rgba(17, 17, 17, 0.5);
}

.about-manifesto-section .inner-section-label i {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.42), rgba(17, 17, 17, 0.04));
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(100px, 0.34fr) minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(35px, 6vw, 95px);
  align-items: start;
}

.about-manifesto-number {
  color: rgba(17, 17, 17, 0.14);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(86px, 10vw, 154px);
  line-height: 0.78;
}

.about-manifesto-quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.about-manifesto-quote footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 42px;
  padding-left: 32px;
  border-left: 1px solid rgba(17, 17, 17, 0.32);
}

.about-manifesto-quote footer span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-manifesto-quote footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.about-manifesto-copy {
  display: grid;
  gap: 24px;
  padding-top: 10px;
}

.about-manifesto-copy p {
  color: rgba(17, 17, 17, 0.63);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(90px, 12vw, 170px);
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.about-principles article {
  min-height: 265px;
  padding: 34px clamp(20px, 2.7vw, 42px) 40px;
  border-right: 1px solid rgba(17, 17, 17, 0.16);
}

.about-principles article:first-child {
  padding-left: 0;
}

.about-principles article:last-child {
  border-right: 0;
}

.about-principles span {
  color: rgba(17, 17, 17, 0.34);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.about-principles h3 {
  margin-top: 54px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 500;
}

.about-principles p {
  margin-top: 15px;
  color: rgba(17, 17, 17, 0.56);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  line-height: 1.56;
}

.about-process-section {
  background:
    radial-gradient(circle at 88% 15%, rgba(184, 168, 141, 0.08), transparent 27%),
    #090909;
}

.about-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.44fr);
  column-gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.about-process-heading .section-kicker {
  grid-column: 1 / -1;
}

.about-process-heading h2 {
  margin-bottom: -4px;
}

.about-process-heading > p:last-child {
  max-width: 390px;
  padding-bottom: 3px;
}

.about-process-list {
  margin-top: clamp(78px, 10vw, 140px);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.about-process-list article {
  display: grid;
  grid-template-columns: 88px minmax(230px, 0.62fr) minmax(280px, 0.85fr);
  gap: clamp(25px, 5vw, 82px);
  align-items: center;
  min-height: 170px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: padding 420ms var(--ease), background-color 300ms ease;
}

.about-process-list article:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.about-process-list__number {
  color: rgba(244, 242, 237, 0.35);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.about-process-list h3 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 400;
}

.about-process-list article > p {
  max-width: 520px;
  color: rgba(244, 242, 237, 0.55);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.62;
}

.about-capabilities-section {
  background: #0d0d0d;
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.73fr) minmax(0, 1.27fr);
  gap: clamp(65px, 11vw, 175px);
  align-items: start;
}

.about-capabilities-intro {
  position: sticky;
  top: 125px;
}

.about-capabilities-intro h2 em {
  color: rgba(244, 242, 237, 0.52);
  font-weight: 400;
}

.about-capabilities-intro > p {
  max-width: 390px;
  margin-top: 32px;
}

.about-capabilities-intro .text-link {
  margin-top: 40px;
}

.about-capabilities-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-capabilities-list a {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.72fr) minmax(220px, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  min-height: 128px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: padding 390ms var(--ease), color 250ms ease;
}

.about-capabilities-list a:hover,
.about-capabilities-list a:focus-visible {
  padding-inline: 16px;
  color: #fff;
}

.about-capabilities-list a > span {
  color: rgba(244, 242, 237, 0.32);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.about-capabilities-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
}

.about-capabilities-list i {
  color: rgba(244, 242, 237, 0.45);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-style: normal;
}

.about-page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(110px, 14vw, 190px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-page-stats div {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px clamp(20px, 2.6vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-page-stats div:first-child {
  padding-left: 0;
}

.about-page-stats div:last-child {
  border-right: 0;
}

.about-page-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.about-page-stats span {
  color: rgba(244, 242, 237, 0.46);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-next-section {
  position: relative;
  min-height: min(820px, 86svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.about-next-section__media {
  position: absolute;
  inset: -5%;
  z-index: -3;
  background-image:
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2400&q=90"),
    url("assets/images/about-next.svg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.55);
  transform: scale(1.06);
  transition: transform 1.8s var(--ease);
}

.about-next-section:hover .about-next-section__media {
  transform: scale(1.02);
}

.about-next-section__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.61);
}

.about-next-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-next-section__content h2 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 8.2vw, 122px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.about-next-section__content h2 em {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.about-next-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-next-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: transform 340ms var(--ease);
}

.about-next-link:hover svg,
.about-next-link:focus-visible svg {
  transform: translate(5px, -5px);
}

@media (max-width: 1180px) {
  .about-page-hero__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-page-hero__location {
    display: none;
  }

  .about-manifesto-grid {
    grid-template-columns: 0.25fr 1fr;
  }

  .about-manifesto-copy {
    grid-column: 2;
    max-width: 640px;
  }

  .about-process-list article {
    grid-template-columns: 62px minmax(220px, 0.7fr) minmax(260px, 1fr);
  }
}

@media (max-width: 920px) {
  .about-page-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .about-page-hero__index {
    display: none;
  }

  .about-page-hero__foot {
    grid-template-columns: 1fr;
  }

  .about-page-hero__discover {
    justify-content: flex-start;
  }

  .about-story-grid,
  .about-process-heading,
  .about-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    padding-top: 0;
  }

  .about-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto-number {
    font-size: 82px;
  }

  .about-manifesto-copy {
    grid-column: auto;
  }

  .about-principles,
  .about-page-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-principles article:nth-child(2),
  .about-page-stats div:nth-child(2) {
    border-right: 0;
  }

  .about-principles article:nth-child(-n+2),
  .about-page-stats div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  }

  .about-page-stats div:nth-child(-n+2) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .about-process-heading > p:last-child {
    margin-top: 28px;
  }

  .about-process-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
  }

  .about-process-list article > p {
    grid-column: 2;
  }

  .about-capabilities-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .about-page-hero__inner {
    padding-bottom: 50px;
  }

  .about-page-hero__content h1 {
    font-size: clamp(57px, 20vw, 92px);
    line-height: 0.83;
  }

  .about-page-hero__foot {
    margin-top: 45px;
  }

  .about-story-section,
  .about-manifesto-section,
  .about-process-section,
  .about-capabilities-section {
    padding: 105px 0;
  }

  .inner-section-label {
    margin-bottom: 58px;
  }

  .about-story-copy__columns {
    grid-template-columns: 1fr;
  }

  .about-image-composition {
    display: grid;
    gap: 12px;
    min-height: 0;
    margin-top: 76px;
  }

  .about-image {
    position: relative;
    inset: auto;
    width: 100%;
    border: 0;
  }

  .about-image--primary {
    height: 68svh;
    min-height: 470px;
  }

  .about-image--secondary {
    height: 380px;
  }

  .about-image--detail {
    height: 270px;
  }

  .about-manifesto-quote p {
    font-size: clamp(43px, 13vw, 68px);
  }

  .about-principles,
  .about-page-stats {
    grid-template-columns: 1fr;
  }

  .about-principles article,
  .about-page-stats div {
    min-height: 190px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  }

  .about-page-stats div {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .about-principles article:last-child,
  .about-page-stats div:last-child {
    border-bottom: 0;
  }

  .about-principles h3 {
    margin-top: 36px;
  }

  .about-process-list article {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0;
  }

  .about-process-list article > p {
    grid-column: auto;
  }

  .about-capabilities-list a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    min-height: 118px;
  }

  .about-capabilities-list i {
    grid-column: 2;
    margin-top: -8px;
  }

  .about-next-section {
    min-height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-hero__media,
  .about-next-section__media,
  .about-image img {
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Dedicated Gallery page
   ========================= */
body.lightbox-open {
  overflow: hidden;
}

.gallery-page-hero {
  --hero-shift: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #070707;
}

.gallery-page-hero__media {
  position: absolute;
  inset: -8% 0;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.08) 54%, rgba(5, 5, 5, 0.26)),
    url("assets/images/gallery/gallery-hero.jpg"),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2400&q=92");
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(1.05);
  transform: translate3d(0, var(--hero-shift), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.gallery-page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.2), rgba(3, 3, 3, 0.08) 43%, rgba(3, 3, 3, 0.82)),
    radial-gradient(circle at 70% 40%, transparent 0 30%, rgba(0, 0, 0, 0.25) 75%);
}

.gallery-page-hero__inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 190px;
  align-items: end;
  padding: 160px 0 65px;
}

.gallery-page-hero__index,
.gallery-page-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-page-hero__index {
  align-self: center;
}

.gallery-page-hero__index i {
  display: block;
  width: 1px;
  height: 70px;
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.34);
}

.gallery-page-hero__content {
  max-width: 950px;
}

.gallery-page-hero__content .hero-eyebrow {
  margin-bottom: 22px;
}

.gallery-page-hero__content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(78px, 11.6vw, 176px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.055em;
}

.gallery-page-hero__content h1 em {
  display: inline-block;
  margin-left: 0.28em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.gallery-page-hero__foot {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  gap: 60px;
  align-items: end;
  margin-top: 70px;
}

.gallery-page-hero__foot > p {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.gallery-page-hero__discover {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-page-hero__discover svg {
  width: 28px;
  height: 28px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: transform 340ms var(--ease), background-color 300ms ease, color 300ms ease;
}

.gallery-page-hero__discover:hover svg,
.gallery-page-hero__discover:focus-visible svg {
  color: #060606;
  background: #fff;
  transform: translateY(5px);
}

.gallery-page-hero__meta {
  align-items: flex-end;
  align-self: end;
  text-align: right;
}

.gallery-archive {
  padding: 145px 0 155px;
  background: #f1efe9;
  color: #111;
}

.gallery-archive .inner-section-label {
  color: rgba(17, 17, 17, 0.56);
}

.gallery-archive .inner-section-label i {
  background: rgba(17, 17, 17, 0.17);
}

.gallery-archive__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: end;
  padding: 80px 0 95px;
}

.gallery-archive__intro h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.gallery-archive__intro > p {
  max-width: 440px;
  color: rgba(17, 17, 17, 0.62);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.62;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.gallery-filter button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, 0.64);
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, transform 280ms var(--ease);
}

.gallery-filter button span {
  color: rgba(17, 17, 17, 0.38);
  font-size: 8px;
}

.gallery-filter button:hover,
.gallery-filter button:focus-visible,
.gallery-filter button.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.gallery-filter button.is-active span,
.gallery-filter button:hover span,
.gallery-filter button:focus-visible span {
  color: rgba(255, 255, 255, 0.48);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(42px, 4.6vw, 72px);
  gap: clamp(8px, 0.9vw, 15px);
}

.gallery-page-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: #d9d5cd;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  isolation: isolate;
  transition: opacity 420ms ease, transform 620ms var(--ease);
}

.gallery-page-card--hero {
  grid-column: span 8;
  grid-row: span 8;
}

.gallery-page-card--portrait {
  grid-column: span 4;
  grid-row: span 8;
}

.gallery-page-card--landscape {
  grid-column: span 7;
  grid-row: span 5;
}

.gallery-page-card--wide {
  grid-column: span 8;
  grid-row: span 6;
}

.gallery-page-card--standard {
  grid-column: span 4;
  grid-row: span 6;
}

.gallery-page-card.is-filtered-out {
  display: none;
}

.gallery-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.gallery-page-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 36%, rgba(0, 0, 0, 0.78));
  transition: background-color 500ms ease, opacity 500ms ease;
}

.gallery-page-card__veil--video {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.gallery-page-card__number {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page-card__caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 480ms var(--ease);
}

.gallery-page-card__caption small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-page-card__caption strong {
  margin-top: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 0.95;
}

.gallery-page-card__caption i {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms ease, transform 420ms var(--ease);
}

.gallery-page-card__open {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(8px) rotate(-8deg);
  backdrop-filter: blur(8px);
  transition: opacity 350ms ease, transform 420ms var(--ease), background-color 300ms ease, color 300ms ease;
}

.gallery-page-card__open svg,
.gallery-page-card__play svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.gallery-page-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 92px);
  height: clamp(64px, 6vw, 92px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.2);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition: background-color 350ms ease, color 350ms ease, transform 450ms var(--ease);
}

.gallery-page-card__play svg {
  width: 28%;
  margin-left: 4px;
  fill: currentColor;
  stroke: none;
}

.gallery-page-card:hover img,
.gallery-page-card:focus-visible img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.055);
}

.gallery-page-card:hover .gallery-page-card__caption,
.gallery-page-card:focus-visible .gallery-page-card__caption {
  transform: translateY(-7px);
}

.gallery-page-card:hover .gallery-page-card__caption i,
.gallery-page-card:focus-visible .gallery-page-card__caption i,
.gallery-page-card:hover .gallery-page-card__open,
.gallery-page-card:focus-visible .gallery-page-card__open {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.gallery-page-card:hover .gallery-page-card__play,
.gallery-page-card:focus-visible .gallery-page-card__play {
  color: #080808;
  background: #fff;
  transform: translate(-50%, -50%) scale(1.07);
}

.gallery-archive__note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  color: rgba(17, 17, 17, 0.5);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-archive__note p {
  justify-self: end;
  max-width: 430px;
  text-align: right;
  line-height: 1.7;
}

.gallery-page-cta {
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.8)) center / cover,
    url("assets/images/gallery/image-10.jpg") center / cover,
    url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=2400&q=88") center / cover;
  text-align: center;
}

.gallery-page-cta h2 {
  margin-top: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(60px, 8.5vw, 128px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.045em;
}

.gallery-page-cta h2 em {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.gallery-page-cta a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page-cta a svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: background-color 300ms ease, color 300ms ease, transform 350ms var(--ease);
}

.gallery-page-cta a:hover svg,
.gallery-page-cta a:focus-visible svg {
  color: #070707;
  background: #fff;
  transform: translate(4px, -4px);
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 24px clamp(20px, 3vw, 52px) 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

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

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 3, 3, 0.97);
  backdrop-filter: blur(16px);
}

.gallery-lightbox__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-lightbox__topbar > div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gallery-lightbox__topbar > div p {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.gallery-lightbox__topbar button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-lightbox__topbar button svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: background-color 300ms ease, color 300ms ease, transform 320ms var(--ease);
}

.gallery-lightbox__topbar button:hover svg,
.gallery-lightbox__topbar button:focus-visible svg {
  color: #070707;
  background: #fff;
  transform: rotate(90deg);
}

.gallery-lightbox__stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 28px clamp(38px, 7vw, 115px) 18px;
}

.gallery-lightbox__image,
.gallery-lightbox__video-wrap {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 210px);
  object-fit: contain;
}

.gallery-lightbox__image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 240ms ease, transform 480ms var(--ease);
}

.gallery-lightbox.is-changing .gallery-lightbox__image,
.gallery-lightbox.is-changing .gallery-lightbox__video-wrap {
  opacity: 0;
  transform: scale(0.985);
}

.gallery-lightbox__video-wrap {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: opacity 240ms ease, transform 480ms var(--ease);
}

.gallery-lightbox__video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.gallery-lightbox__video-wrap.has-video::after {
  display: none;
}

.gallery-lightbox__video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.gallery-lightbox__video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 35px;
  text-align: center;
}

.gallery-lightbox__video-placeholder > span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.2);
}

.gallery-lightbox__video-placeholder svg {
  width: 24px;
  margin-left: 4px;
  fill: #fff;
}

.gallery-lightbox__video-placeholder strong {
  margin-top: 25px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
}

.gallery-lightbox__video-placeholder p {
  max-width: 510px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.gallery-lightbox__video-placeholder code {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.2);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background-color 300ms ease, color 300ms ease, transform 350ms var(--ease);
}

.gallery-lightbox__arrow--prev {
  left: clamp(20px, 3vw, 52px);
}

.gallery-lightbox__arrow--next {
  right: clamp(20px, 3vw, 52px);
}

.gallery-lightbox__arrow svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.gallery-lightbox__arrow:hover,
.gallery-lightbox__arrow:focus-visible {
  color: #070707;
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox__caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-lightbox__caption h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.gallery-lightbox__caption p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .gallery-page-hero__inner {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .gallery-page-hero__meta {
    display: none;
  }

  .gallery-page-hero__foot {
    gap: 34px;
  }

  .gallery-page-card--hero,
  .gallery-page-card--wide {
    grid-column: span 8;
  }

  .gallery-page-card--portrait,
  .gallery-page-card--standard {
    grid-column: span 4;
  }

  .gallery-page-card--landscape {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .gallery-page-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .gallery-page-hero__index {
    display: none;
  }

  .gallery-page-hero__content h1 {
    font-size: clamp(76px, 20vw, 132px);
  }

  .gallery-page-hero__foot {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .gallery-page-hero__discover {
    justify-self: start;
  }

  .gallery-archive {
    padding: 105px 0 115px;
  }

  .gallery-archive__intro {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0 70px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 72px;
  }

  .gallery-page-card--hero,
  .gallery-page-card--wide,
  .gallery-page-card--landscape {
    grid-column: span 2;
    grid-row: span 6;
  }

  .gallery-page-card--portrait,
  .gallery-page-card--standard {
    grid-column: span 1;
    grid-row: span 6;
  }

  .gallery-page-card__caption strong {
    font-size: clamp(23px, 4.4vw, 36px);
  }

  .gallery-page-cta {
    min-height: 650px;
  }

  .gallery-lightbox {
    padding-inline: 18px;
  }

  .gallery-lightbox__stage {
    padding-inline: 48px;
  }

  .gallery-lightbox__arrow--prev {
    left: 15px;
  }

  .gallery-lightbox__arrow--next {
    right: 15px;
  }
}

@media (max-width: 560px) {
  .gallery-page-hero__content h1 {
    font-size: clamp(70px, 24vw, 106px);
    line-height: 0.76;
  }

  .gallery-page-hero__content h1 em {
    margin-left: 0.12em;
  }

  .gallery-page-hero__foot > p {
    font-size: 18px;
  }

  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: calc((100vw - var(--content-width)) / -2);
    margin-left: calc((100vw - var(--content-width)) / -2);
    padding-right: 24px;
    padding-left: 24px;
    scrollbar-width: none;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter button {
    flex: 0 0 auto;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 70px;
    gap: 8px;
  }

  .gallery-page-card--hero,
  .gallery-page-card--wide,
  .gallery-page-card--landscape,
  .gallery-page-card--portrait,
  .gallery-page-card--standard {
    grid-column: 1;
    grid-row: span 6;
  }

  .gallery-page-card--portrait {
    grid-row: span 8;
  }

  .gallery-page-card__caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .gallery-page-card__caption strong {
    font-size: 29px;
  }

  .gallery-page-card__caption i,
  .gallery-page-card__open {
    opacity: 1;
    transform: none;
  }

  .gallery-page-card__open {
    width: 38px;
    height: 38px;
  }

  .gallery-archive__note {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-archive__note p {
    justify-self: start;
    text-align: left;
  }

  .gallery-page-cta {
    min-height: 570px;
  }

  .gallery-lightbox {
    padding: 15px 12px 18px;
  }

  .gallery-lightbox__topbar > div p,
  .gallery-lightbox__topbar button span {
    display: none;
  }

  .gallery-lightbox__stage {
    padding: 22px 0 12px;
  }

  .gallery-lightbox__image,
  .gallery-lightbox__video-wrap {
    max-height: calc(100svh - 205px);
  }

  .gallery-lightbox__arrow {
    top: auto;
    bottom: 77px;
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox__arrow--prev {
    left: 12px;
  }

  .gallery-lightbox__arrow--next {
    right: 12px;
  }

  .gallery-lightbox__caption {
    padding-right: 52px;
    padding-left: 52px;
  }

  .gallery-lightbox__caption h2 {
    font-size: 27px;
  }

  .gallery-lightbox__caption p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-page-hero__media,
  .gallery-page-card img,
  .gallery-lightbox__image,
  .gallery-lightbox__video-wrap {
    transform: none !important;
    transition: none !important;
  }
}


/* =========================
   Gallery page — swipe archive
   ========================= */
.gallery-showcase {
  overflow: hidden;
  padding: 145px 0 120px;
  background: #0a0a0a;
  color: #fff;
}

.gallery-showcase .inner-section-label {
  color: rgba(255, 255, 255, 0.48);
}

.gallery-showcase .inner-section-label i {
  background: rgba(255, 255, 255, 0.15);
}

.gallery-showcase__intro,
.gallery-films__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: end;
  padding: 78px 0 84px;
}

.gallery-showcase__intro h2,
.gallery-films__intro h2 {
  margin-top: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.gallery-showcase__intro h2 em,
.gallery-films__intro h2 em {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
}

.gallery-showcase__intro > p,
.gallery-films__intro > p {
  max-width: 455px;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.62;
}

.gallery-showcase__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 max(24px, calc((100vw - min(92vw, 1440px)) / 2)) 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  outline: none;
  overscroll-behavior-inline: contain;
}

.gallery-showcase__viewport::-webkit-scrollbar {
  display: none;
}

.gallery-showcase__viewport:active {
  cursor: grabbing;
}

.gallery-showcase__track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 1.25vw, 20px);
}

.gallery-showcase__slide {
  position: relative;
  flex: 0 0 clamp(310px, 39vw, 620px);
  height: clamp(430px, 58vw, 720px);
  overflow: hidden;
  border: 0;
  background: #1a1a1a;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  scroll-snap-align: center;
  isolation: isolate;
}

.gallery-showcase__slide--wide {
  flex-basis: clamp(390px, 55vw, 850px);
}

.gallery-showcase__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 650ms ease;
}

.gallery-showcase__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.78));
}

.gallery-showcase__index {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.gallery-showcase__caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 480ms var(--ease);
}

.gallery-showcase__caption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.gallery-showcase__caption strong {
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 0.95;
}

.gallery-showcase__slide:hover img,
.gallery-showcase__slide:focus-visible img {
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.055);
}

.gallery-showcase__slide:hover .gallery-showcase__caption,
.gallery-showcase__slide:focus-visible .gallery-showcase__caption {
  transform: translateY(-6px);
}

.gallery-showcase__controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  margin-top: 35px;
}

.gallery-showcase__progress {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.gallery-showcase__progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  transform-origin: left center;
  transition: width 450ms var(--ease);
}

.gallery-showcase__controls > p {
  min-width: 72px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
}

.gallery-showcase__arrows {
  display: flex;
  gap: 9px;
}

.gallery-showcase__arrows button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 330ms var(--ease);
}

.gallery-showcase__arrows button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.gallery-showcase__arrows button:hover,
.gallery-showcase__arrows button:focus-visible {
  color: #080808;
  background: #fff;
  transform: translateY(-2px);
}

/* Gallery page — YouTube films */
.gallery-films {
  padding: 145px 0 155px;
  background: #e9e5dd;
  color: #111;
}

.gallery-films .inner-section-label {
  color: rgba(17, 17, 17, 0.52);
}

.gallery-films .inner-section-label i {
  background: rgba(17, 17, 17, 0.16);
}

.gallery-films__intro h2 em {
  color: rgba(17, 17, 17, 0.42);
}

.gallery-films__intro > p {
  color: rgba(17, 17, 17, 0.58);
}

.gallery-films__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 38vw));
  gap: clamp(10px, 1vw, 16px);
}

.youtube-film {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: #1b1b1b;
  color: #fff;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}

.youtube-film--feature {
  grid-row: 1 / span 2;
}

.youtube-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.youtube-film__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.82));
}

.youtube-film__duration {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.youtube-film__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 94px);
  height: clamp(64px, 6vw, 94px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition: background-color 320ms ease, color 320ms ease, transform 420ms var(--ease);
}

.youtube-film__play svg {
  width: 28%;
  margin-left: 4px;
  fill: currentColor;
}

.youtube-film__copy {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 450ms var(--ease);
}

.youtube-film__copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.youtube-film__copy strong {
  margin-top: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 0.95;
}

.youtube-film:not(.youtube-film--feature) .youtube-film__copy strong {
  font-size: clamp(24px, 2.4vw, 38px);
}

.youtube-film__copy i {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.youtube-film:hover img,
.youtube-film:focus-visible img {
  filter: saturate(0.98) contrast(1.03);
  transform: scale(1.055);
}

.youtube-film:hover .youtube-film__play,
.youtube-film:focus-visible .youtube-film__play {
  color: #080808;
  background: #fff;
  transform: translate(-50%, -50%) scale(1.07);
}

.youtube-film:hover .youtube-film__copy,
.youtube-film:focus-visible .youtube-film__copy {
  transform: translateY(-6px);
}

.gallery-films__note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.gallery-films__note p {
  color: rgba(17, 17, 17, 0.54);
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-films__note code {
  padding: 2px 6px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.04);
  font-family: inherit;
  font-size: 8px;
}

.gallery-films__note a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: rgba(17, 17, 17, 0.72);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-films__note a svg {
  width: 34px;
  height: 34px;
  padding: 9px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: background-color 300ms ease, color 300ms ease, transform 340ms var(--ease);
}

.gallery-films__note a:hover svg,
.gallery-films__note a:focus-visible svg {
  color: #fff;
  background: #111;
  transform: translate(3px, -3px);
}

.gallery-lightbox__youtube-wrap {
  width: min(100%, 1280px);
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - 210px);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  opacity: 1;
  transform: scale(1);
  transition: opacity 240ms ease, transform 480ms var(--ease);
}

.gallery-lightbox__youtube-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-lightbox.is-changing .gallery-lightbox__youtube-wrap {
  opacity: 0;
  transform: scale(0.985);
}

@media (max-width: 900px) {
  .gallery-showcase,
  .gallery-films {
    padding: 105px 0 110px;
  }

  .gallery-showcase__intro,
  .gallery-films__intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 62px;
  }

  .gallery-showcase__intro > p,
  .gallery-films__intro > p {
    max-width: 580px;
  }

  .gallery-films__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .youtube-film,
  .youtube-film--feature {
    grid-row: auto;
    min-height: 58vw;
  }
}

@media (max-width: 640px) {
  .gallery-showcase,
  .gallery-films {
    padding: 84px 0 90px;
  }

  .gallery-showcase__viewport {
    padding-inline: 18px;
  }

  .gallery-showcase__slide,
  .gallery-showcase__slide--wide {
    flex-basis: min(84vw, 390px);
    height: 118vw;
    max-height: 590px;
  }

  .gallery-showcase__slide--wide {
    flex-basis: min(90vw, 430px);
  }

  .gallery-showcase__controls {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .gallery-showcase__controls > p {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .gallery-showcase__arrows button {
    width: 44px;
    height: 44px;
  }

  .youtube-film,
  .youtube-film--feature {
    min-height: 115vw;
    max-height: 620px;
  }

  .gallery-films__note {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-lightbox__youtube-wrap {
    width: 100%;
  }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
  background: #090909;
}

.contact-page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b;
}

.contact-page-hero__media,
.contact-closing-section__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-color: #151515;
  background-image:
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2600&q=90"),
    url("assets/images/hero-wow.svg");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  animation: contactMediaBreath 18s ease-in-out infinite alternate;
}

.contact-page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.91) 0%, rgba(4, 4, 4, 0.7) 43%, rgba(4, 4, 4, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.85));
}

.contact-page-hero__inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(55px, 8vw, 140px);
  padding-top: 170px;
  padding-bottom: clamp(115px, 13vh, 160px);
}

.contact-page-hero__heading {
  animation: heroReveal 1.1s var(--ease) both;
}

.contact-page-hero__heading .section-kicker {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-page-hero__heading h1 {
  max-width: 970px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 8.6vw, 145px);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: -0.035em;
}

.contact-page-hero__heading h1 em,
.contact-enquiry-intro h2 em,
.contact-studio-copy h2 em,
.contact-faq-intro h2 em,
.contact-closing-section__content h2 em {
  color: var(--gold);
  font-weight: 400;
}

.contact-page-hero__aside {
  max-width: 390px;
  padding: 28px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  animation: heroReveal 1.15s 180ms var(--ease) both;
}

.contact-page-hero__aside p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.9;
}

.contact-page-hero__aside a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page-hero__aside a svg,
.contact-map-link svg,
.contact-closing-section__content a svg {
  width: 42px;
  height: 42px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  transition: transform 360ms var(--ease), background-color 300ms ease, color 300ms ease;
}

.contact-page-hero__aside a:hover svg,
.contact-page-hero__aside a:focus-visible svg {
  color: #111;
  background: #fff;
  transform: translateY(5px);
}

.contact-page-hero__index {
  position: absolute;
  right: max(24px, calc((100vw - 1480px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page-hero__index i {
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.contact-enquiry-section {
  padding: clamp(105px, 12vw, 180px) 0 clamp(115px, 13vw, 200px);
  background: #eeeae2;
  color: #111;
}

.contact-enquiry-section .inner-section-label,
.contact-studio-section .inner-section-label {
  color: rgba(17, 17, 17, 0.58);
}

.contact-enquiry-section .inner-section-label i,
.contact-studio-section .inner-section-label i {
  background: rgba(17, 17, 17, 0.17);
}

.contact-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(70px, 9vw, 145px);
  align-items: start;
  margin-top: clamp(70px, 8vw, 115px);
}

.contact-enquiry-intro {
  position: sticky;
  top: 125px;
}

.contact-enquiry-intro h2,
.contact-studio-copy h2,
.contact-faq-intro h2 {
  margin-top: 19px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.contact-enquiry-intro > p:not(.section-kicker),
.contact-studio-copy > p:not(.section-kicker),
.contact-faq-intro > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 31px;
  color: rgba(17, 17, 17, 0.61);
  font-size: 12px;
  line-height: 1.9;
}

.contact-response-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.contact-response-card__pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #778c68;
  box-shadow: 0 0 0 7px rgba(119, 140, 104, 0.13);
}

.contact-response-card__pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(119, 140, 104, 0.4);
  border-radius: 50%;
  animation: contactPulse 2.2s ease-out infinite;
}

.contact-response-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-response-card small,
.contact-direct-list span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-response-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.contact-direct-list {
  display: grid;
  margin-top: 32px;
}

.contact-direct-list a {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.contact-direct-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
}

.contact-direct-list svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 300ms var(--ease);
}

.contact-direct-list a:hover svg,
.contact-direct-list a:focus-visible svg {
  transform: translate(3px, -3px);
}

.contact-project-form {
  position: relative;
  padding: clamp(30px, 4.5vw, 62px);
  background: #111;
  color: #f5f2eb;
  box-shadow: 0 34px 85px rgba(24, 20, 13, 0.15);
}

.contact-form-row {
  display: grid;
  gap: 28px;
}

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

.contact-form-row + .contact-form-row,
.contact-form-row + .contact-choice-group,
.contact-choice-group + .contact-form-row,
.contact-form-row + .contact-field,
.contact-field + .contact-file-field {
  margin-top: 37px;
}

.contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.contact-field > span,
.contact-choice-group legend {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 400;
  transition: border-color 260ms ease, background-color 260ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 51px;
  padding: 0 0 13px;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
  padding: 8px 0 15px;
  line-height: 1.42;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.29);
}

.contact-field select {
  appearance: none;
  padding-right: 35px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.4'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.contact-field select option {
  background: #111;
  color: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

.contact-field small,
.contact-choice-error {
  display: none;
  color: #d99887;
  font-size: 9px;
  line-height: 1.4;
}

.contact-project-form.was-validated .contact-field input:invalid,
.contact-project-form.was-validated .contact-field textarea:invalid {
  border-color: rgba(217, 152, 135, 0.88);
}

.contact-project-form.was-validated .contact-field input:invalid + small,
.contact-project-form.was-validated .contact-field textarea:invalid + small,
.contact-choice-group.has-error .contact-choice-error {
  display: block;
}

.contact-choice-group {
  margin-top: 42px;
  border: 0;
}

.contact-choice-group legend {
  margin-bottom: 18px;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.contact-choice-grid label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.contact-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-choice-grid span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, transform 280ms var(--ease);
}

.contact-choice-grid label:hover span,
.contact-choice-grid input:focus-visible + span {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  transform: translateY(-2px);
}

.contact-choice-grid input:checked + span {
  border-color: #f1eee7;
  background: #f1eee7;
  color: #111;
}

.contact-choice-group.has-error .contact-choice-grid {
  outline: 1px solid rgba(217, 152, 135, 0.7);
  outline-offset: 4px;
}

.contact-file-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.contact-file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-file-field__icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.contact-file-field__icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.contact-file-field__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.contact-file-field__copy strong {
  overflow: hidden;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-file-field__copy small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-file-field__action {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-file-field:hover .contact-file-field__icon {
  color: #111;
  background: #fff;
}

.contact-consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  cursor: pointer;
}

.contact-consent input {
  position: absolute;
  opacity: 0;
}

.contact-consent > span {
  position: relative;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.contact-consent > span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  opacity: 0;
  transform: rotate(45deg) scale(0.5);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.contact-consent input:checked + span {
  border-color: #fff;
  background: #fff;
}

.contact-consent input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.contact-project-form.was-validated .contact-consent input:invalid + span {
  border-color: #d99887;
}

.contact-consent p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  line-height: 1.7;
}

.contact-form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 43px;
}

.contact-form-submit > p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 260px;
  padding: 18px 23px;
  border: 1px solid #f4f1ea;
  background: #f4f1ea;
  color: #111;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: background-color 280ms ease, color 280ms ease, transform 300ms var(--ease);
}

.contact-form-submit button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: transform 300ms var(--ease);
}

.contact-form-submit button:hover,
.contact-form-submit button:focus-visible {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-submit button:hover svg,
.contact-form-submit button:focus-visible svg {
  transform: translate(3px, -3px);
}

.contact-form-submit button.is-loading {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
}

.contact-form-status {
  min-height: 18px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.07em;
}

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

.contact-channels-section {
  padding: clamp(105px, 12vw, 170px) 0;
  background: #090909;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(65px, 7vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-channel-card {
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px clamp(24px, 3vw, 45px) 37px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 350ms ease;
}

.contact-channel-card:last-child {
  border-right: 0;
}

.contact-channel-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% 30%;
  height: 260px;
  background: radial-gradient(circle, rgba(184, 168, 141, 0.24), transparent 68%);
  opacity: 0;
  transition: opacity 400ms ease, transform 600ms var(--ease);
}

.contact-channel-card > span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.contact-channel-card h3 {
  margin-top: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(37px, 3.5vw, 57px);
  font-weight: 400;
  line-height: 0.95;
}

.contact-channel-card small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.contact-channel-card > svg {
  position: absolute;
  right: clamp(24px, 3vw, 45px);
  bottom: 37px;
  width: 35px;
  height: 35px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 360ms var(--ease), background-color 300ms ease, color 300ms ease;
}

.contact-channel-card:hover,
.contact-channel-card:focus-visible {
  background: #111;
}

.contact-channel-card:hover::before,
.contact-channel-card:focus-visible::before {
  opacity: 1;
  transform: translate(-30px, -25px);
}

.contact-channel-card:hover > svg,
.contact-channel-card:focus-visible > svg {
  color: #111;
  background: #fff;
  transform: translate(4px, -4px);
}

.contact-studio-section {
  padding: clamp(110px, 13vw, 190px) 0;
  background: #e7e2d8;
  color: #111;
}

.contact-studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(65px, 8vw, 125px);
  align-items: center;
}

.contact-map-card {
  position: relative;
  min-height: clamp(530px, 57vw, 720px);
  overflow: hidden;
  background: #c9c1b3;
  box-shadow: 0 30px 75px rgba(33, 28, 20, 0.12);
}

.contact-map-card__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.contact-map-card__routes,
.contact-map-card__routes svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-map-card__routes path {
  fill: none;
  stroke: rgba(17, 17, 17, 0.37);
  stroke-width: 1.1;
  stroke-dasharray: 8 9;
}

.contact-map-card__pin {
  position: absolute;
  top: 48%;
  left: 54%;
  display: flex;
  flex-direction: column;
  min-width: 205px;
  padding: 19px 22px 18px;
  background: #111;
  color: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.contact-map-card__pin::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #111;
  transform: rotate(45deg);
}

.contact-map-card__pin > span {
  position: absolute;
  left: -40px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid #111;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.contact-map-card__pin > span::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 50%;
  animation: contactPulse 2.4s ease-out infinite;
}

.contact-map-card__pin strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.contact-map-card__pin small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-map-card__coordinate {
  position: absolute;
  left: 30px;
  bottom: 26px;
  padding: 10px 14px;
  background: rgba(231, 226, 216, 0.8);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.inner-section-label--compact {
  margin-bottom: 65px;
}

.contact-studio-details {
  margin-top: 42px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.contact-studio-details div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.contact-studio-details dt {
  color: rgba(17, 17, 17, 0.42);
  font-size: 8px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-studio-details dd {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 34px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-map-link svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-color: rgba(17, 17, 17, 0.32);
}

.contact-map-link:hover svg,
.contact-map-link:focus-visible svg {
  color: #fff;
  background: #111;
  transform: translate(3px, -3px);
}

.contact-faq-section {
  padding: clamp(105px, 12vw, 180px) 0;
  background: #0c0c0c;
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(65px, 9vw, 145px);
  margin-top: clamp(70px, 8vw, 110px);
}

.contact-faq-intro > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.48);
}

.contact-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
}

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

.contact-faq-list summary span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.contact-faq-list summary strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
}

.contact-faq-list summary i,
.contact-faq-list summary i::after {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 340ms var(--ease);
}

.contact-faq-list summary i::after {
  content: "";
  transform: rotate(90deg);
}

.contact-faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.contact-faq-list details > p {
  max-width: 620px;
  padding: 0 48px 32px 60px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.9;
}

.contact-closing-section {
  position: relative;
  min-height: min(78svh, 850px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.contact-closing-section__media {
  background-image:
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2400&q=90"),
    url("assets/images/about-next.svg");
  animation: none;
  transform: scale(1.02);
}

.contact-closing-section__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.62);
}

.contact-closing-section__content {
  padding: 130px 0;
  text-align: center;
}

.contact-closing-section__content h2 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.035em;
}

.contact-closing-section__content a {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  margin-top: 45px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-closing-section__content a:hover svg,
.contact-closing-section__content a:focus-visible svg {
  color: #111;
  background: #fff;
  transform: translate(3px, -3px);
}

@keyframes contactMediaBreath {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.7%, -0.5%, 0); }
}

@keyframes contactPulse {
  0% { opacity: 0.7; transform: scale(0.7); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 1100px) {
  .contact-page-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
    gap: 50px;
  }

  .contact-enquiry-layout,
  .contact-faq-layout {
    grid-template-columns: minmax(250px, 0.62fr) minmax(470px, 1.38fr);
    gap: 55px;
  }

  .contact-project-form {
    padding: 40px 34px;
  }

  .contact-studio-layout {
    gap: 58px;
  }
}

@media (max-width: 900px) {
  .contact-page-hero__inner,
  .contact-enquiry-layout,
  .contact-studio-layout,
  .contact-faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-hero__inner {
    align-content: end;
    align-items: end;
    gap: 52px;
  }

  .contact-page-hero__heading h1 {
    font-size: clamp(66px, 14vw, 112px);
  }

  .contact-page-hero__aside {
    max-width: 510px;
  }

  .contact-enquiry-intro {
    position: static;
  }

  .contact-enquiry-intro > p:not(.section-kicker) {
    max-width: 650px;
  }

  .contact-direct-list {
    max-width: 560px;
  }

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

  .contact-channel-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-channel-card:last-child {
    border-bottom: 0;
  }

  .contact-studio-layout {
    gap: 78px;
  }

  .contact-map-card {
    min-height: 590px;
  }

  .contact-studio-copy {
    max-width: 650px;
  }

  .contact-faq-intro {
    max-width: 580px;
  }
}

@media (max-width: 640px) {
  .contact-page-hero__media {
    background-position: 62% center;
  }

  .contact-page-hero__veil {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, 0.46) 0%, rgba(4, 4, 4, 0.68) 48%, rgba(4, 4, 4, 0.96) 100%);
  }

  .contact-page-hero__inner {
    padding-top: 130px;
    padding-bottom: 105px;
  }

  .contact-page-hero__heading h1 {
    font-size: clamp(58px, 18vw, 84px);
    line-height: 0.82;
  }

  .contact-page-hero__index {
    right: 24px;
    bottom: 24px;
  }

  .contact-enquiry-section,
  .contact-channels-section,
  .contact-studio-section,
  .contact-faq-section {
    padding-top: 88px;
    padding-bottom: 95px;
  }

  .contact-enquiry-layout,
  .contact-faq-layout {
    margin-top: 57px;
  }

  .contact-enquiry-intro h2,
  .contact-studio-copy h2,
  .contact-faq-intro h2 {
    font-size: clamp(45px, 14vw, 67px);
  }

  .contact-direct-list a {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .contact-direct-list strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-project-form {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 34px 23px;
  }

  .contact-form-row--two,
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    gap: 34px;
  }

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

  .contact-file-field {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-file-field__action {
    display: none;
  }

  .contact-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-submit > p {
    max-width: none;
  }

  .contact-form-submit button {
    width: 100%;
    min-width: 0;
  }

  .contact-channel-card {
    min-height: 240px;
    padding: 27px 24px 31px;
  }

  .contact-channel-card > svg {
    right: 24px;
    bottom: 31px;
  }

  .contact-map-card {
    min-height: 470px;
  }

  .contact-map-card__pin {
    left: 56%;
    min-width: 185px;
  }

  .contact-map-card__pin > span {
    left: -31px;
  }

  .contact-studio-details div {
    grid-template-columns: 92px 1fr;
  }

  .contact-faq-list summary {
    grid-template-columns: 28px 1fr 22px;
    gap: 11px;
    min-height: 84px;
  }

  .contact-faq-list summary strong {
    font-size: 21px;
    line-height: 1.15;
  }

  .contact-faq-list details > p {
    padding: 0 10px 28px 39px;
  }

  .contact-closing-section {
    min-height: 650px;
  }

  .contact-closing-section__content h2 {
    font-size: clamp(48px, 14vw, 70px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-hero__media,
  .contact-response-card__pulse::after,
  .contact-map-card__pin > span::after {
    animation: none;
  }
}

/* =========================================================
   PROJECTS PAGE — editorial project disciplines
   Inspired by the reference structure, adapted to this site's
   dark, cinematic visual identity.
   ========================================================= */
.projects-page {
  background: #050505;
}

.projects-page-hero {
  --hero-shift: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: stretch;
  background: #090909;
}

.projects-page-hero__media {
  position: absolute;
  inset: -7% -2%;
  z-index: -4;
  background-image:
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2600&q=92"),
    url("assets/images/project-09.svg");
  background-size: cover;
  background-position: center 54%;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.08);
  filter: saturate(0.66) contrast(1.04);
  animation: projectsHeroBreath 15s ease-in-out infinite alternate;
  will-change: transform;
}

.projects-page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 66% 40%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.34) 0%, rgba(3, 3, 3, 0.12) 38%, rgba(3, 3, 3, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.72) 0%, rgba(2, 2, 2, 0.14) 52%, rgba(2, 2, 2, 0.32) 100%);
}

.projects-page-hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.projects-page-hero__inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(45px, 7vw, 120px);
  align-items: end;
  padding-top: 150px;
  padding-bottom: 70px;
}

.projects-page-hero__index {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.projects-page-hero__index i {
  display: block;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.projects-page-hero__content {
  align-self: center;
  padding-top: 40px;
}

.projects-page-hero__content .hero-eyebrow {
  margin-bottom: 30px;
}

.projects-page-hero__content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(88px, 11vw, 180px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.36);
}

.projects-page-hero__content h1 em {
  display: inline-block;
  margin-left: 0.39em;
  color: rgba(244, 242, 237, 0.72);
  font-weight: 400;
}

.projects-page-hero__foot {
  align-self: end;
  max-width: 490px;
  padding-bottom: 12px;
}

.projects-page-hero__foot > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.82;
}

.projects-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.projects-primary-link,
.projects-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 205px;
  height: 58px;
  padding: 0 20px 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, transform 280ms var(--ease);
}

.projects-primary-link {
  background: #f3f0e9;
  color: #111;
  border-color: #f3f0e9;
}

.projects-secondary-link {
  min-width: 190px;
  background: rgba(5, 5, 5, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.projects-primary-link svg,
.projects-secondary-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 300ms var(--ease);
}

.projects-primary-link:hover,
.projects-primary-link:focus-visible,
.projects-secondary-link:hover,
.projects-secondary-link:focus-visible {
  transform: translateY(-3px);
}

.projects-primary-link:hover svg,
.projects-primary-link:focus-visible svg {
  transform: translateY(4px);
}

.projects-secondary-link:hover,
.projects-secondary-link:focus-visible {
  color: #111;
  border-color: #f3f0e9;
  background: #f3f0e9;
}

.projects-secondary-link:hover svg,
.projects-secondary-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.projects-page-hero__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  pointer-events: none;
}

.projects-intro-section {
  position: relative;
  padding: 135px 0 145px;
  overflow: hidden;
  background: #f0ede6;
  color: #111;
}

.projects-intro-section::before {
  content: "PROJECTS";
  position: absolute;
  right: -0.06em;
  top: 92px;
  color: rgba(17, 17, 17, 0.025);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(130px, 21vw, 340px);
  line-height: 0.7;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.projects-intro-section .inner-section-label {
  color: rgba(17, 17, 17, 0.52);
}

.projects-intro-section .inner-section-label i {
  background: rgba(17, 17, 17, 0.22);
}

.projects-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 0.77fr);
  gap: clamp(70px, 10vw, 155px);
  align-items: start;
  margin-top: 95px;
}

.projects-intro-lead h2 {
  max-width: 710px;
  margin-top: 25px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.045em;
}

.projects-intro-copy {
  padding-top: 13px;
}

.projects-intro-copy__lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 37px);
  line-height: 1.2;
}

.projects-intro-copy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 43px;
  color: rgba(17, 17, 17, 0.65);
  font-size: 12px;
  line-height: 1.8;
}

.projects-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.projects-stats > div {
  min-height: 160px;
  padding: 30px 28px;
  border-right: 1px solid rgba(17, 17, 17, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projects-stats > div:last-child {
  border-right: 0;
}

.projects-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.8;
}

.projects-stats span {
  color: rgba(17, 17, 17, 0.57);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-disciplines-section {
  padding: 140px 0 165px;
  background: #070707;
}

.projects-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}

.projects-section-head h2 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7.2vw, 105px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.projects-section-head h2 em {
  color: rgba(244, 242, 237, 0.56);
  font-weight: 400;
}

.projects-section-head > p {
  max-width: 400px;
  padding-bottom: 7px;
  color: rgba(244, 242, 237, 0.52);
  font-size: 12px;
  line-height: 1.82;
}

.projects-discipline-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.project-discipline {
  --move-x: 0px;
  --move-y: 0px;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px 30px 35px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 350ms ease, transform 500ms var(--ease);
}

.project-discipline--wide {
  grid-column: 1 / -1;
  min-height: min(78vh, 820px);
}

.project-discipline--large {
  grid-column: span 7;
  min-height: 720px;
}

.project-discipline--portrait {
  grid-column: span 5;
  min-height: 720px;
}

.project-discipline--cinema {
  grid-column: 1 / -1;
  min-height: min(72vh, 770px);
}

.project-discipline__media,
.project-discipline__veil {
  position: absolute;
  inset: 0;
}

.project-discipline__media {
  z-index: -3;
  overflow: hidden;
}

.project-discipline__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--move-x), var(--move-y), 0) scale(1.045);
  filter: saturate(0.72) contrast(1.02);
  transition: transform 900ms var(--ease), filter 700ms ease;
  will-change: transform;
}

.project-discipline__veil {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, transparent 42%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 58%);
  transition: background-color 400ms ease;
}

.project-discipline__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.project-discipline__top > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.project-discipline__top small {
  font: inherit;
}

.project-discipline__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 35px;
}

.project-discipline__content > p {
  position: absolute;
  left: 2px;
  bottom: calc(100% + 22px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-discipline__content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 7.3vw, 118px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
  text-shadow: 0 7px 32px rgba(0, 0, 0, 0.32);
}

.project-discipline--portrait .project-discipline__content h3,
.project-discipline--large .project-discipline__content h3 {
  font-size: clamp(52px, 5.6vw, 88px);
}

.project-discipline__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 280ms ease;
}

.project-discipline__link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 350ms var(--ease);
}

.project-discipline:hover,
.project-discipline:focus-visible {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.33);
  transform: translateY(-5px);
}

.project-discipline:hover .project-discipline__media img,
.project-discipline:focus-visible .project-discipline__media img {
  transform: translate3d(var(--move-x), var(--move-y), 0) scale(1.105);
  filter: saturate(0.92) contrast(1.04);
}

.project-discipline:hover .project-discipline__link svg,
.project-discipline:focus-visible .project-discipline__link svg {
  transform: translate(4px, -4px);
}

.project-discipline:hover .project-discipline__veil,
.project-discipline:focus-visible .project-discipline__veil {
  background-color: rgba(0, 0, 0, 0.06);
}

.projects-manifesto-section {
  padding: 145px 0 160px;
  background: #151412;
}

.projects-manifesto-grid {
  display: grid;
  grid-template-columns: 0.32fr minmax(0, 1.1fr) 0.38fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: start;
  margin-top: 95px;
}

.projects-manifesto-index {
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.8;
  text-transform: uppercase;
}

.projects-manifesto-grid blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.projects-manifesto-copy {
  color: rgba(244, 242, 237, 0.57);
  font-size: 12px;
  line-height: 1.82;
}

.projects-manifesto-copy a {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.projects-closing-section {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.projects-closing-section__media {
  position: absolute;
  inset: -5%;
  z-index: -3;
  background-image:
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2400&q=92"),
    url("assets/images/about-next.svg");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  transition: transform 3s var(--ease);
}

.projects-closing-section__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.65);
}

.projects-closing-section__content {
  padding: 140px 0;
  text-align: center;
}

.projects-closing-section__content h2 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.045em;
}

.projects-closing-section__content h2 em {
  color: rgba(244, 242, 237, 0.68);
  font-weight: 400;
}

.projects-closing-section__content a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 47px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.projects-closing-section__content a svg {
  width: 48px;
  height: 48px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: color 300ms ease, background-color 300ms ease, transform 350ms var(--ease);
}

.projects-closing-section__content a:hover svg,
.projects-closing-section__content a:focus-visible svg {
  color: #111;
  background: #fff;
  transform: translate(4px, -4px);
}

.projects-closing-section:hover .projects-closing-section__media {
  transform: scale(1.065);
}

@keyframes projectsHeroBreath {
  from { transform: translate3d(0, var(--hero-shift), 0) scale(1.08); }
  to { transform: translate3d(-0.6%, calc(var(--hero-shift) - 8px), 0) scale(1.115); }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: clamp(14px, 1.6vw, 26px);
    font-size: 16px;
  }

  .projects-page-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.56fr);
  }

  .projects-intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.78fr);
    gap: 70px;
  }

  .projects-section-head {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 55px;
  }

  .project-discipline--large,
  .project-discipline--portrait {
    min-height: 650px;
  }

  .projects-manifesto-grid {
    grid-template-columns: 0.25fr minmax(0, 1fr) 0.35fr;
    gap: 45px;
  }
}

@media (max-width: 920px) {
  .projects-page-hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    align-content: end;
    padding-top: 130px;
    padding-bottom: 86px;
  }

  .projects-page-hero__content {
    align-self: end;
  }

  .projects-page-hero__content h1 {
    font-size: clamp(92px, 19vw, 150px);
  }

  .projects-page-hero__foot {
    max-width: 620px;
    margin-top: 60px;
  }

  .projects-page-hero__meta {
    display: none;
  }

  .projects-intro-grid,
  .projects-section-head,
  .projects-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .projects-intro-grid {
    gap: 55px;
  }

  .projects-intro-copy {
    max-width: 680px;
  }

  .projects-stats {
    grid-template-columns: 1fr 1fr;
  }

  .projects-stats > div:nth-child(2) {
    border-right: 0;
  }

  .projects-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  }

  .projects-section-head {
    gap: 35px;
  }

  .projects-section-head > p {
    max-width: 650px;
  }

  .project-discipline--wide,
  .project-discipline--large,
  .project-discipline--portrait,
  .project-discipline--cinema {
    grid-column: 1 / -1;
    min-height: 700px;
  }

  .projects-manifesto-grid {
    gap: 45px;
  }

  .projects-manifesto-index,
  .projects-manifesto-copy {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .projects-page-hero__media {
    background-position: 63% center;
  }

  .projects-page-hero__veil {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.42) 0%, rgba(2, 2, 2, 0.44) 46%, rgba(2, 2, 2, 0.94) 100%),
      linear-gradient(90deg, rgba(2, 2, 2, 0.45), transparent);
  }

  .projects-page-hero__inner {
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .projects-page-hero__index {
    gap: 9px;
  }

  .projects-page-hero__index i {
    width: 42px;
  }

  .projects-page-hero__content {
    padding-top: 42px;
  }

  .projects-page-hero__content h1 {
    font-size: clamp(76px, 24vw, 112px);
    line-height: 0.75;
  }

  .projects-page-hero__content h1 em {
    margin-left: 0.22em;
  }

  .projects-page-hero__foot {
    margin-top: 48px;
  }

  .projects-page-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .projects-primary-link,
  .projects-secondary-link {
    width: 100%;
  }

  .projects-intro-section,
  .projects-disciplines-section,
  .projects-manifesto-section {
    padding-top: 92px;
    padding-bottom: 100px;
  }

  .projects-intro-grid {
    margin-top: 62px;
  }

  .projects-intro-lead h2,
  .projects-section-head h2 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .projects-intro-copy__columns {
    grid-template-columns: 1fr;
  }

  .projects-stats {
    margin-top: 75px;
  }

  .projects-stats > div {
    min-height: 138px;
    padding: 24px 18px;
  }

  .projects-stats span {
    font-size: 8px;
  }

  .projects-section-head {
    margin-bottom: 57px;
  }

  .projects-discipline-grid {
    gap: 12px;
  }

  .project-discipline--wide,
  .project-discipline--large,
  .project-discipline--portrait,
  .project-discipline--cinema {
    min-height: 570px;
  }

  .project-discipline {
    padding: 22px 21px 27px;
  }

  .project-discipline__top small {
    max-width: 130px;
    text-align: right;
  }

  .project-discipline__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-discipline__content h3,
  .project-discipline--portrait .project-discipline__content h3,
  .project-discipline--large .project-discipline__content h3 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .project-discipline__link {
    justify-self: start;
  }

  .projects-manifesto-grid {
    margin-top: 62px;
  }

  .projects-manifesto-grid blockquote {
    font-size: clamp(42px, 13vw, 62px);
  }

  .projects-closing-section {
    min-height: 660px;
  }

  .projects-closing-section__content h2 {
    font-size: clamp(50px, 15vw, 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-page-hero__media {
    animation: none;
  }

  .project-discipline__media img,
  .projects-closing-section__media {
    transition: none;
  }
}

/* =========================
   Project details page
   ========================= */
.project-details-page {
  background: #070707;
}

.project-detail-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0a;
}

.project-detail-hero__media,
.project-detail-hero__overlay {
  position: absolute;
  inset: 0;
}

.project-detail-hero__media {
  z-index: -3;
  overflow: hidden;
}

.project-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  animation: projectHeroReveal 1.45s var(--ease) both;
  will-change: transform;
}

@keyframes projectHeroReveal {
  from { opacity: 0; transform: scale(1.11); }
  to { opacity: 1; transform: scale(1.045); }
}

.project-detail-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.42) 72%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.18) 100%);
}

.project-detail-hero__inner {
  min-height: 100svh;
  padding: 148px 0 44px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.project-detail-back {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.project-detail-back svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  transition: transform 300ms var(--ease);
}

.project-detail-back:hover,
.project-detail-back:focus-visible { color: #fff; }
.project-detail-back:hover svg,
.project-detail-back:focus-visible svg { transform: translateX(-5px); }

.project-detail-hero__content {
  width: min(860px, 88%);
  align-self: end;
  padding-bottom: clamp(42px, 7vh, 88px);
}

.project-detail-hero__content .hero-eyebrow {
  margin-bottom: 18px;
}

.project-detail-hero__content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 10.1vw, 156px);
  font-weight: 400;
  line-height: .77;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.project-detail-hero__content h1 em {
  color: rgba(255,255,255,.72);
  font-weight: 400;
}

.project-detail-hero__summary {
  max-width: 610px;
  margin-top: 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.8;
}

.project-detail-hero__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) auto;
  gap: 26px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.project-detail-hero__footer > div {
  display: grid;
  gap: 7px;
}

.project-detail-hero__footer span {
  color: rgba(255,255,255,.48);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.project-detail-hero__footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .015em;
}

.project-detail-hero__footer > a {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 1px;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 300ms var(--ease);
}

.project-detail-hero__footer > a span {
  color: currentColor;
  font-size: 8px;
}

.project-detail-hero__footer > a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.project-detail-hero__footer > a:hover,
.project-detail-hero__footer > a:focus-visible {
  color: #080808;
  border-color: #f4f2ed;
  background: #f4f2ed;
  transform: translateY(-4px);
}

.project-story-section,
.project-concept-section,
.project-materials-section,
.project-gallery-section {
  padding: clamp(105px, 12vw, 190px) 0;
}

.project-story-section {
  background: #f1eee7;
  color: #111;
}

.project-story-section .inner-section-label,
.project-concept-section .inner-section-label,
.project-materials-section .inner-section-label {
  margin-bottom: clamp(58px, 7vw, 112px);
}

.project-story-section .inner-section-label i {
  background: rgba(17,17,17,.18);
}

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: start;
}

.project-story-heading h2,
.project-concept-copy h2,
.project-materials-intro h2,
.project-gallery-head h2 {
  margin-top: 15px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6.7vw, 104px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.045em;
}

.project-story-section .section-kicker {
  color: rgba(17,17,17,.52);
}

.project-story-copy {
  padding-top: 14px;
}

.project-story-copy__lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.project-story-copy__columns {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  color: rgba(17,17,17,.68);
  font-size: 13px;
  line-height: 1.9;
}

.project-facts {
  margin-top: clamp(72px, 9vw, 130px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17,17,17,.18);
  border-bottom: 1px solid rgba(17,17,17,.18);
}

.project-facts > div {
  min-height: 118px;
  padding: 26px 24px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border-right: 1px solid rgba(17,17,17,.16);
}

.project-facts > div:last-child { border-right: 0; }
.project-facts span {
  color: rgba(17,17,17,.44);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.project-facts strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.project-full-image {
  position: relative;
  height: min(86vw, 960px);
  min-height: 600px;
  overflow: hidden;
  background: #0b0b0b;
}

.project-image-button,
.project-concept-image,
.project-gallery-item {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  text-align: left;
}

.project-image-button {
  height: 100%;
}

.project-image-button img,
.project-concept-image img,
.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease), filter 700ms ease;
}

.project-image-button:hover img,
.project-image-button:focus-visible img,
.project-concept-image:hover img,
.project-concept-image:focus-visible img,
.project-gallery-item:hover img,
.project-gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: brightness(.88);
}

.project-image-button__hint {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 56px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.project-image-button__hint i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  position: relative;
}

.project-image-button__hint i::before,
.project-image-button__hint i::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.project-image-button__hint i::after { transform: translate(-50%, -50%) rotate(90deg); }

.project-concept-section {
  background: #090909;
}

.project-concept-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  grid-template-rows: auto auto;
  gap: clamp(24px, 3.5vw, 58px);
  align-items: start;
}

.project-concept-copy {
  position: sticky;
  top: 130px;
  padding: 22px 6vw 60px 0;
  grid-row: 1 / span 2;
}

.project-concept-copy p:last-child {
  max-width: 520px;
  margin-top: 36px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.9;
}

.project-concept-image {
  min-height: 560px;
}
.project-concept-image--tall { height: 780px; }
.project-concept-image--wide { height: 560px; }
.project-concept-image > span,
.project-gallery-item > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.project-materials-section {
  background: #151412;
}

.project-materials-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(60px, 9vw, 150px);
}

.project-materials-intro > p:last-child {
  max-width: 500px;
  margin-top: 34px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.9;
}

.project-material-list {
  border-top: 1px solid rgba(255,255,255,.16);
}

.project-material-list article {
  min-height: 126px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.project-material-list article > span {
  color: rgba(255,255,255,.38);
  font-size: 10px;
  letter-spacing: .16em;
}

.project-material-list h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
}

.project-material-list p {
  margin-top: 7px;
  color: rgba(255,255,255,.44);
  font-size: 11px;
  letter-spacing: .04em;
}

.project-gallery-section {
  background: #efede7;
  color: #111;
}

.project-gallery-head {
  margin-bottom: clamp(58px, 8vw, 112px);
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: end;
}

.project-gallery-head .section-kicker { color: rgba(17,17,17,.48); }
.project-gallery-head > p {
  color: rgba(17,17,17,.58);
  font-size: 12px;
  line-height: 1.8;
}

.project-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 42px;
  gap: clamp(14px, 2vw, 28px);
}

.project-gallery-item {
  grid-column: span 5;
  grid-row: span 11;
}
.project-gallery-item--large {
  grid-column: span 7;
  grid-row: span 17;
}
.project-gallery-item--portrait {
  grid-column: span 5;
  grid-row: span 14;
}
.project-gallery-item--wide {
  grid-column: span 7;
  grid-row: span 12;
}

.project-gallery-item > span {
  padding: 9px 12px;
  background: rgba(0,0,0,.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.project-quote-section {
  padding: clamp(120px, 15vw, 230px) 0;
  background: #070707;
  text-align: center;
}

.project-quote-section .section-shell {
  max-width: 1060px;
}

.project-quote-section .section-shell > span {
  display: block;
  height: 68px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.project-quote-section blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.project-quote-section p {
  margin-top: 34px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-next-section {
  height: min(74vw, 820px);
  min-height: 620px;
  background: #111;
}

.project-next-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  isolation: isolate;
}

.project-next-link__media,
.project-next-link__veil {
  position: absolute;
  inset: 0;
}
.project-next-link__media { z-index: -2; }
.project-next-link__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 700ms ease;
}
.project-next-link__veil {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.72));
}
.project-next-link__content {
  height: 100%;
  padding: clamp(55px, 7vw, 92px) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-next-link__content > p {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.65);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.project-next-link__content h2 {
  margin-top: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 10vw, 150px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.05em;
}
.project-next-link__action {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.project-next-link__action svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  transition: transform 300ms var(--ease);
}
.project-next-link:hover .project-next-link__media img,
.project-next-link:focus-visible .project-next-link__media img {
  transform: scale(1.045);
  filter: brightness(.84);
}
.project-next-link:hover .project-next-link__action svg,
.project-next-link:focus-visible .project-next-link__action svg {
  transform: translate(5px,-5px);
}

/* Full-screen project image viewer */
body.project-lightbox-open { overflow: hidden; }
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(3,3,3,.97);
  transition: opacity 320ms ease, visibility 320ms ease;
}
.project-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.project-lightbox__figure {
  width: min(1320px, 100%);
  height: min(82vh, 880px);
  margin-inline: auto;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
}
.project-lightbox__figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.project-lightbox__figure figcaption {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.52);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-lightbox__figure figcaption strong { color: rgba(255,255,255,.86); font-weight: 500; }
.project-lightbox__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.project-lightbox__close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 17px; height: 1px;
  background: #fff;
  transform: translate(-50%,-50%) rotate(45deg);
}
.project-lightbox__close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.project-lightbox__nav {
  width: 54px;
  height: 54px;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}
.project-lightbox__nav svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}
.project-lightbox__nav:hover,
.project-lightbox__nav:focus-visible,
.project-lightbox__close:hover,
.project-lightbox__close:focus-visible {
  color: #090909;
  background: #fff;
}
.project-lightbox__close:hover span,
.project-lightbox__close:focus-visible span { background: #090909; }

@media (max-width: 1100px) {
  .project-detail-hero__content { width: 95%; }
  .project-story-grid,
  .project-materials-grid { gap: 70px; }
  .project-concept-grid { grid-template-columns: .9fr 1.1fr; }
  .project-detail-hero__footer { grid-template-columns: repeat(3, 1fr); }
  .project-detail-hero__footer > a { display: none; }
}

@media (max-width: 820px) {
  .project-detail-hero__inner { padding-top: 122px; }
  .project-detail-hero__content { align-self: end; }
  .project-detail-hero__footer { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .project-detail-hero__footer strong { font-size: 15px; }
  .project-story-grid,
  .project-materials-grid,
  .project-gallery-head { grid-template-columns: 1fr; }
  .project-story-copy { padding-top: 0; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .project-facts > div:nth-child(2) { border-right: 0; }
  .project-facts > div:nth-child(-n+2) { border-bottom: 1px solid rgba(17,17,17,.16); }
  .project-full-image { min-height: 520px; }
  .project-concept-grid { grid-template-columns: 1fr; }
  .project-concept-copy { position: static; grid-row: auto; padding-right: 0; }
  .project-concept-image--tall { height: 650px; }
  .project-concept-image--wide { height: 460px; }
  .project-gallery-head { gap: 24px; }
  .project-gallery-head > p { max-width: 500px; }
  .project-gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .project-gallery-item,
  .project-gallery-item--large,
  .project-gallery-item--portrait,
  .project-gallery-item--wide { grid-column: auto; grid-row: auto; height: 420px; }
  .project-gallery-item--large,
  .project-gallery-item--wide { grid-column: 1 / -1; height: 500px; }
  .project-lightbox { grid-template-columns: 64px 1fr 64px; }
}

@media (max-width: 560px) {
  .project-detail-hero__inner { padding: 112px 0 26px; }
  .project-detail-hero__content { width: 100%; padding-bottom: 44px; }
  .project-detail-hero__content h1 { font-size: clamp(62px, 20vw, 88px); }
  .project-detail-hero__summary { margin-top: 24px; font-size: 13px; line-height: 1.7; }
  .project-detail-hero__footer { grid-template-columns: 1fr 1fr; }
  .project-detail-hero__footer > div:nth-child(3) { display: none; }
  .project-story-section,
  .project-concept-section,
  .project-materials-section,
  .project-gallery-section { padding: 88px 0; }
  .project-story-copy__columns { grid-template-columns: 1fr; gap: 20px; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts > div { min-height: 96px; border-right: 0; border-bottom: 1px solid rgba(17,17,17,.16); }
  .project-facts > div:last-child { border-bottom: 0; }
  .project-full-image { height: 82vh; min-height: 500px; }
  .project-concept-image--tall,
  .project-concept-image--wide { height: 530px; min-height: 0; }
  .project-material-list article { grid-template-columns: 48px 1fr; min-height: 108px; }
  .project-gallery-mosaic { grid-template-columns: 1fr; }
  .project-gallery-item,
  .project-gallery-item--large,
  .project-gallery-item--portrait,
  .project-gallery-item--wide { grid-column: auto; height: 430px; }
  .project-gallery-item--portrait { height: 540px; }
  .project-next-section { min-height: 540px; height: 78vh; }
  .project-next-link__content h2 { font-size: clamp(58px, 18vw, 90px); }
  .project-lightbox { grid-template-columns: 1fr; padding: 74px 18px 22px; }
  .project-lightbox__figure { height: calc(100vh - 118px); }
  .project-lightbox__nav {
    position: absolute;
    bottom: 28px;
    z-index: 2;
    background: rgba(0,0,0,.35);
  }
  .project-lightbox__nav--prev { left: 18px; }
  .project-lightbox__nav--next { right: 18px; }
  .project-lightbox__close { top: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-detail-hero__media img { animation: none; }
  .project-image-button img,
  .project-concept-image img,
  .project-gallery-item img,
  .project-next-link__media img { transition: none; }
}

/* =========================
   Dynamic CMS additions
   ========================= */
.brand-mark__image {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark__image {
  width: 46px;
  height: 46px;
}

.footer-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-services li a {
  color: inherit;
  text-decoration: none;
}

.about-services li a:hover strong {
  opacity: 0.68;
}

@media (max-width: 920px) {
  .brand-mark__image {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1101px) {
  .footer-grid {
    grid-template-columns: minmax(250px, 1.35fr) repeat(auto-fit, minmax(145px, 0.78fr));
  }
}


/* Part 08: optional project films */
.project-film-section { padding:clamp(90px,12vw,180px) 0; background:#090909; }
.project-film-section__heading { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:36px; border-bottom:1px solid rgba(255,255,255,.16); padding-bottom:22px; }
.project-film-section__heading span { color:rgba(255,255,255,.46); font-size:10px; letter-spacing:.18em; text-transform:uppercase; }
.project-film-section__heading h2 { margin:0; font-size:clamp(42px,7vw,94px); font-weight:400; }
.project-film-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.project-film-card { position:relative; min-height:420px; overflow:hidden; color:#fff; text-decoration:none; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; background:#171717; }
.project-film-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.2,.7,.2,1); }
.project-film-card__veil { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.8)); }
.project-film-card strong,.project-film-card em { position:relative; z-index:1; }
.project-film-card strong { font-family:var(--font-display,Georgia,serif); font-size:clamp(28px,4vw,52px); font-weight:400; }
.project-film-card em { margin-top:10px; font-style:normal; color:rgba(255,255,255,.64); font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
.project-film-card:hover img { transform:scale(1.045); }
@media (max-width:760px) { .project-film-grid { grid-template-columns:1fr; } .project-film-card { min-height:320px; } }
.contact-honeypot{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}.contact-form-errors{margin-bottom:18px;color:#ffb0b0}.contact-form-errors:empty{display:none}.contact-form-success{align-self:start;padding:clamp(34px,5vw,72px);border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.035)}.contact-form-success>span{display:grid;place-items:center;width:54px;height:54px;border:1px solid rgba(255,255,255,.25);border-radius:50%;margin-bottom:28px}.contact-form-success h2{font-family:var(--font-display);font-size:clamp(34px,5vw,62px);font-weight:400;margin:12px 0 22px}.contact-form-success p,.contact-form-success small{color:rgba(255,255,255,.62);line-height:1.7}.contact-project-form button[disabled]{opacity:.55;cursor:wait}

/* Part 10 — legal pages, newsletter workflow and final SEO surfaces */
.newsletter-honeypot {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.newsletter-message[data-state="error"] { color: #d8a39b; }
.newsletter-message[data-state="success"] { color: rgba(243, 239, 229, 0.82); }

.legal-hero {
  padding: clamp(170px, 22vw, 290px) 0 clamp(80px, 11vw, 150px);
  border-bottom: 1px solid rgba(243, 239, 229, 0.12);
  background: radial-gradient(circle at 82% 18%, rgba(151, 127, 91, 0.12), transparent 34%), #080808;
}

.legal-hero h1 {
  max-width: 960px;
  margin: 24px 0 30px;
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 170px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.legal-hero__intro {
  max-width: 760px;
  color: rgba(243, 239, 229, 0.66);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.65;
}

.legal-hero__date {
  margin-top: 44px;
  color: rgba(243, 239, 229, 0.38);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content { padding: clamp(80px, 12vw, 170px) 0; background: #0a0a0a; }
.legal-content__grid { display: grid; grid-template-columns: minmax(180px, 0.72fr) minmax(0, 2fr); gap: clamp(60px, 10vw, 180px); }
.legal-index { position: sticky; top: 130px; align-self: start; display: grid; gap: 17px; }
.legal-index span { margin-bottom: 8px; color: rgba(243, 239, 229, 0.32); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.legal-index a { color: rgba(243, 239, 229, 0.55); font-size: 12px; line-height: 1.5; text-decoration: none; }
.legal-index a:hover { color: #f3efe5; }
.legal-sections { display: grid; gap: 0; }
.legal-section { display: grid; grid-template-columns: 70px minmax(0, 1fr); padding: 0 0 clamp(70px, 9vw, 125px); margin-bottom: clamp(70px, 9vw, 125px); border-bottom: 1px solid rgba(243, 239, 229, 0.12); }
.legal-section > span { color: rgba(243, 239, 229, 0.3); font-family: var(--serif); font-size: 20px; }
.legal-section h2 { grid-column: 2; margin: 0 0 34px; font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -0.045em; }
.legal-section p { grid-column: 2; max-width: 760px; margin: 0 0 20px; color: rgba(243, 239, 229, 0.62); font-size: 16px; font-weight: 300; line-height: 1.85; }

.newsletter-result { display: grid; min-height: 78vh; padding: 180px 24px 100px; place-items: center; background: radial-gradient(circle at 50% 28%, rgba(151, 127, 91, 0.15), transparent 38%), #080808; }
.newsletter-result__card { max-width: 760px; text-align: center; }
.newsletter-result__mark { display: grid; width: 74px; height: 74px; margin: 0 auto 42px; place-items: center; border: 1px solid rgba(243, 239, 229, 0.24); border-radius: 50%; font-family: var(--serif); font-size: 30px; }
.newsletter-result h1 { margin: 22px 0 26px; font-family: var(--serif); font-size: clamp(54px, 8vw, 105px); font-weight: 400; line-height: 0.93; letter-spacing: -0.055em; }
.newsletter-result p { max-width: 600px; margin: 0 auto 40px; color: rgba(243, 239, 229, 0.62); font-size: 17px; line-height: 1.75; }
.newsletter-result a { display: inline-flex; padding-bottom: 7px; border-bottom: 1px solid rgba(243, 239, 229, 0.45); color: #f3efe5; font-size: 11px; letter-spacing: 0.14em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 800px) {
  .legal-content__grid { grid-template-columns: 1fr; gap: 70px; }
  .legal-index { position: static; }
  .legal-section { grid-template-columns: 42px minmax(0, 1fr); }
}


/* Part 11 — secure preview mode and resilient public error surfaces */
.preview-banner {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 22px;
  border-bottom: 1px solid rgba(243, 239, 229, 0.22);
  background: #8b6a3f;
  color: #fffaf0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.preview-banner strong { font-weight: 600; }
.preview-banner span { color: rgba(255, 250, 240, 0.74); }
.preview-banner time { color: rgba(255, 250, 240, 0.94); }
.preview-mode .site-header { top: 44px; }
.preview-mode .mobile-menu { padding-top: 44px; }

.public-error {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 150px);
  overflow: hidden;
  padding: clamp(150px, 18vw, 240px) clamp(24px, 7vw, 110px) clamp(90px, 10vw, 150px);
  background:
    radial-gradient(circle at 18% 26%, rgba(151, 127, 91, 0.16), transparent 30%),
    #080808;
}
.public-error__number {
  color: rgba(243, 239, 229, 0.08);
  font-family: var(--serif);
  font-size: clamp(180px, 31vw, 520px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.09em;
  user-select: none;
}
.public-error__copy { position: relative; z-index: 1; max-width: 760px; }
.public-error__copy h1 {
  margin: 22px 0 28px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.public-error__copy > p {
  max-width: 620px;
  color: rgba(243, 239, 229, 0.62);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 300;
  line-height: 1.75;
}
.public-error__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 42px 0 34px; }
.public-error__copy small {
  color: rgba(243, 239, 229, 0.32);
  font-size: 9px;
  letter-spacing: 0.12em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .preview-banner { align-items: flex-start; flex-direction: column; gap: 2px; padding: 8px 16px; }
  .preview-banner span { display: none; }
  .preview-mode .site-header { top: 54px; }
  .public-error { grid-template-columns: 1fr; gap: 30px; }
  .public-error__number { font-size: clamp(150px, 52vw, 280px); }
}
