:root {
  --gold: #BA9753;
  --gold-bright: #D4AF37;
  --gold-deep: #A37F3D;
  --onyx: #1E1E1E;
  --alabaster: #FCFAF6;
  --cream: #E6DFD3;
  --ink: #2C2C2C;
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #BA9753 50%, #A37F3D 100%);
  --ease: cubic-bezier(.16, .84, .24, 1);
  --serif: 'Playfair Display', serif;
  --sans: 'Montserrat', sans-serif;
  --exhibit-bg-1: #111111;
  --exhibit-bg-2: #171717;
  --exhibit-bg-3: #1C1C1C;
  --exhibit-surface-1: #232323;
  --exhibit-surface-2: #2B2B2B;
  --exhibit-accent: #C4A15A;
  --exhibit-text: #F7F5F2;
  --depth-shadow: 0 34px 64px -24px rgba(20, 15, 5, .38);
  --depth-shadow-soft: 0 20px 40px -25px rgba(20, 15, 5, .22);
  --tilt-ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  background: var(--alabaster);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--alabaster);
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: none;
}

input,
select {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--alabaster);
}

@media (max-width:860px) {
  body {
    cursor: auto;
  }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease),
    background-color .35s var(--ease), opacity .3s;
  mix-blend-mode: difference;
}

.cursor.active {
  width: 52px;
  height: 52px;
  background: rgba(186, 151, 83, .25);
}

@media (max-width:860px) {
  .cursor {
    display: none;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--onyx);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform-origin: center;
  will-change: opacity, transform;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}

.preloader-mark {
  position: relative;
  transform-origin: center;
}

.preloader-mark img {
  width: 64px;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(212, 175, 55, .35));
  opacity: .9;
  animation: pulseLogo 2.4s ease-in-out infinite;
}

@keyframes pulseLogo {

  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.preloader-bar {
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
}

.preloader-word {
  font-family: var(--serif);
  color: var(--cream);
  letter-spacing: .3em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .7;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

@media (max-width:520px) {
  .preloader {
    gap: 22px;
  }

  .preloader-bar {
    width: 160px;
  }

  .preloader-mark img {
    width: 52px;
  }

  .preloader-word {
    font-size: 10px;
    letter-spacing: .25em;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
  transition: padding .5s var(--ease), background-color .5s var(--ease),
    backdrop-filter .5s var(--ease);
}

.nav.scrolled {
  padding: 16px 5vw;
  background: rgba(252, 250, 246, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(30, 30, 30, .06);
}

.nav-mark img {
  height: 34px;
  opacity: 1;
  transition: filter .5s var(--ease);
  filter: brightness(0) invert(1);
  border-radius: 46%;
}

.nav.scrolled .nav-mark img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--alabaster);
  position: relative;
  padding-bottom: 4px;
  transition: color .4s;
}

.nav.scrolled .nav-links a {
  color: var(--onyx);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 20px !important;
  border-radius: 2px;
  transition: transform .35s var(--tilt-ease), box-shadow .35s var(--tilt-ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(212, 175, 55, .5);
}

.nav-cta:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 4px 10px -6px rgba(20, 15, 5, .3);
}

.nav-burger {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
}

.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--alabaster);
  transition: top .3s var(--ease), transform .3s var(--ease), opacity .3s var(--ease), background-color .3s;
  transform-origin: center;
}

.nav.scrolled .nav-burger span,
.nav.scrolled .nav-burger::before,
.nav.scrolled .nav-burger::after {
  background: var(--onyx);
}

.nav-burger::before {
  top: 0;
}

.nav-burger span {
  top: 8px;
}

.nav-burger::after {
  top: 16px;
}

.nav-burger.open::before {
  top: 8px;
  transform: rotate(45deg);
}

.nav-burger.open::after {
  top: 8px;
  transform: rotate(-45deg);
}

.nav-burger.open span {
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--onyx);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--alabaster);
}

@media (max-width:860px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: block;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--onyx);
}

.hero-video-frame {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-poster-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 12, .55) 0%, rgba(20, 17, 12, .35) 40%, rgba(20, 17, 12, .75) 100%);
}

.particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .8;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  max-width: 860px;
}

.hero-eyebrow {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--serif);
  color: var(--alabaster);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1.08;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-sub {
  color: rgba(252, 250, 246, .82);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  max-width: 460px;
  margin-top: 26px;
}

.hero-cta {
  display: none;
}

.hero-logo-stage {
  position: absolute;
  right: 6vw;
  bottom: 14vh;
  z-index: 4;
  width: 120px;
  opacity: .85;
  filter: drop-shadow(0 10px 40px rgba(212, 175, 55, .35));
}

.hero-logo {
  width: 100%;
  filter: brightness(0) invert(1);
  will-change: transform;
}

.scroll-cue {
  position: absolute;
  left: 6vw;
  bottom: 6vh;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.scroll-cue span {
  width: 1px;
  height: 44px;
  background: rgba(252, 250, 246, .4);
  position: relative;
  overflow: hidden;
}

.scroll-cue span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0%;
  }

  100% {
    top: 100%;
  }
}

.scroll-cue p {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .75;
}

@media (max-width:860px) {
  .hero-logo-stage {
    display: none;
  }
}

section {
  position: relative;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.eyebrow-light {
  color: var(--gold-bright);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.15;
  color: var(--onyx);
}

.studio {
  padding: min(18vh, 190px) 6vw;
  background: var(--alabaster);
}

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

.studio-text {
  margin-top: 26px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 460px;
}

.studio-stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
}

.studio-stats span {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  display: block;
}

.studio-stats p {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink);
  opacity: .7;
  margin-top: 6px;
}

.studio-visual {
  position: relative;
  height: 520px;
  perspective: 1400px;
  transform-style: preserve-3d;
  will-change: transform;
}

.studio-frame {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(30, 25, 15, .18);
}

.studio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-frame-a {
  width: 78%;
  height: 72%;
  top: 0;
  left: 0;
  border-radius: 2px;
}

.studio-frame-b {
  width: 52%;
  height: 48%;
  bottom: 0;
  right: 0;
  border-radius: 2px;
  border: 6px solid var(--alabaster);
  z-index: 2;
}

.studio-gold-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: .5;
  z-index: 1;
}

@media (max-width:960px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .studio-visual {
    height: 400px;
  }
}

@media (max-width:480px) {
  .studio-stats {
    flex-wrap: wrap;
    gap: 28px;
  }
}

.services {
  padding: min(16vh, 170px) 6vw min(4vh, 60px);
  background: var(--alabaster);
  perspective: 1600px;
}

.services-head {
  margin-bottom: min(10vh, 110px);
  max-width: 640px;
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 6vw;
  align-items: center;
  padding: min(9vh, 90px) 0;
  border-top: 1px solid rgba(30, 30, 30, .08);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(30, 30, 30, .08);
}

.service-row-reverse {
  grid-template-columns: .9fr 1.1fr;
}

.service-row-reverse .service-media {
  order: 2;
}

.service-row-reverse .service-copy {
  order: 1;
}

.service-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow .5s var(--tilt-ease);
}

.service-row:hover .service-media {
  box-shadow: var(--depth-shadow);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  transition: transform 1.1s var(--ease), filter .8s var(--ease);
  filter: saturate(.94) brightness(.98);
}

.service-row:hover .service-media img {
  transform: scale(1.02);
  filter: saturate(1.05) brightness(1.02);
}

.service-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .22) 45%, transparent 60%);
  transform: translateX(-140%);
  transition: transform 1.1s var(--ease);
}

.service-row:hover .service-shine {
  transform: translateX(140%);
}

.service-index {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .1em;
}

.service-copy h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  margin: 14px 0 16px;
}

.service-copy p {
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 400px;
}

@media (max-width:860px) {

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-row-reverse .service-media,
  .service-row-reverse .service-copy {
    order: initial;
  }
}

.gallery {
  background: var(--exhibit-bg-1);
  padding: min(16vh, 170px) 6vw min(10vh, 110px);
  color: var(--cream);
}

.gallery-head {
  max-width: 640px;
  margin-bottom: 8vh;
}

.gallery-head h2 {
  color: var(--alabaster);
}

.gallery-hint {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: black;
  opacity: .75;
}

.gallery-stage {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 480px;
  border-radius: 2px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 32%, var(--exhibit-bg-3) 0%, var(--exhibit-bg-2) 55%, var(--exhibit-bg-1) 100%);
}

.gallery-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width:860px) {
  .gallery-stage {
    height: 64vh;
    touch-action: none;
  }

  .gallery-hint {
    opacity: .55;
  }
}

.break {
  height: 78vh;
  position: relative;
  overflow: hidden;
  background: var(--onyx);
}

.break-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.break-veil {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 10, .5);
}

.break-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32vw;
  font-family: var(--serif);
  font-style: italic;
  color: var(--alabaster);
  font-size: clamp(22px, 3.4vw, 42px);
  line-height: 1.4;
  background: linear-gradient(45deg, black, transparent);
}

.break-quote span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 26px;
}

.break-quote span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 26px;
  background: black;
  border-bottom-left-radius: 11px;
  padding: 10px;
}

.story {
  padding: min(16vh, 170px) 0;
  background: var(--alabaster);
  overflow: hidden;
  perspective: 1400px;
}

.story .eyebrow {
  padding: 0 6vw;
  margin-bottom: min(8vh, 80px);
}

.story-track {
  display: flex;
  gap: 32px;
  padding: 0 6vw;
}

.story-card {
  flex: 0 0 min(420px, 80vw);
  background: var(--cream);
  padding: 44px 38px;
  border-radius: 2px;
  border-left: 2px solid var(--gold);
  box-shadow: var(--depth-shadow-soft);
  transform-style: preserve-3d;
  transition: transform .6s var(--tilt-ease), box-shadow .6s var(--tilt-ease);
}

.story-card:hover {
  transform: translateZ(16px) translateY(-4px);
  box-shadow: var(--depth-shadow);
}

.story-card p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  font-style: italic;
  color: var(--onyx);
}

.story-card span {
  display: block;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

@media (max-width:860px) {
  .story {
    padding: min(12vh, 110px) 0;
  }

  .story-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 26px;
    scrollbar-width: none;
  }

  .story-track::-webkit-scrollbar {
    display: none;
  }

  .story-card {
    scroll-snap-align: start;
  }
}

.booking {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: min(14vh, 140px) 6vw;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.42) saturate(1.05);
  transform: scale(1.06);
  will-change: transform;
}

.booking-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 5vw;
  align-items: start;
}

.booking-panel {
  background: rgba(252, 250, 246, .1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(252, 250, 246, .18);
  border-radius: 4px;
  padding: min(7vh, 64px) min(5vw, 52px);
}

.booking-panel h2 {
  color: var(--alabaster);
  margin-bottom: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(252, 250, 246, .35);
  color: var(--alabaster);
  font-size: 15px;
  padding: 10px 2px;
  outline: none;
  transition: border-color .4s;
  appearance: none;
}

.field select {
  cursor: pointer;
}

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

.field label {
  position: absolute;
  left: 2px;
  top: 10px;
  font-size: 13px;
  color: rgba(252, 250, 246, .55);
  pointer-events: none;
  transition: .3s var(--ease);
  letter-spacing: .02em;
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field select:focus+label,
.field select:valid+label {
  top: -14px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold-bright);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.booking-submit,
.booking-fb-btn {
  flex: 1 1 220px;
  position: relative;
  overflow: hidden;
  padding: 17px 24px;
  border-radius: 2px;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.booking-submit {
  background: var(--gradient-gold);
  color: var(--onyx);
  transition: transform .35s var(--tilt-ease), box-shadow .35s var(--tilt-ease);
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(212, 175, 55, .55);
}

.booking-submit:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 6px 14px -8px rgba(20, 15, 5, .35);
}

.booking-fb-btn {
  background: transparent;
  color: var(--alabaster);
  border: 1px solid rgba(252, 250, 246, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .4s, background-color .4s, transform .35s var(--tilt-ease), box-shadow .35s var(--tilt-ease);
}

.booking-fb-btn:active {
  transform: translateY(0) scale(.98);
}

.booking-fb-btn:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, .1);
  transform: translateY(-2px);
}

.booking-submit span,
.booking-fb-btn span {
  position: relative;
  z-index: 2;
}

.booking-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .55) 45%, transparent 65%);
  transform: translateX(-140%);
  transition: transform .8s var(--ease);
}

.booking-submit:hover::after {
  transform: translateX(140%);
}

.booking-note {
  font-size: 11.5px;
  color: rgba(252, 250, 246, .6);
  text-align: center;
}

.booking-note.sent {
  color: var(--gold-bright);
}

.contact-panel {
  background: rgba(30, 30, 30, .35);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(252, 250, 246, .18);
  border-radius: 4px;
  padding: min(7vh, 64px) min(5vw, 44px);
}

.contact-panel h2 {
  color: var(--alabaster);
  margin-bottom: 36px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-list li {
  padding-top: 20px;
  border-top: 1px solid rgba(252, 250, 246, .16);
}

.contact-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.contact-list a {
  font-size: 15px;
  font-weight: 300;
  color: var(--alabaster);
  word-break: break-word;
  transition: color .3s;
}

.contact-list a:hover {
  color: var(--gold-bright);
}

@media (max-width:960px) {
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width:860px) {

  .booking-panel,
  .contact-panel {
    padding: 40px 26px;
  }

  .booking-actions {
    flex-direction: column;
  }
}

.zoomable {
  position: relative;
  cursor: pointer;
}

.zoom-trigger {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 242, .4);
  background: rgba(17, 17, 17, .38);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
    border-color .35s, background-color .35s;
}

.zoom-trigger svg {
  width: 15px;
  height: 15px;
  stroke: var(--exhibit-text);
}

.zoomable:hover .zoom-trigger,
.zoom-trigger:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-trigger:hover,
.zoom-trigger:focus-visible {
  border-color: var(--exhibit-accent);
  background: rgba(17, 17, 17, .58);
}

@media (hover: none) and (pointer: coarse) {
  .zoom-trigger {
    opacity: 1;
    transform: translateY(0);
    background: rgba(17, 17, 17, .5);
  }
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}

.image-modal.open {
  opacity: 1;
  visibility: visible;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .86);
  backdrop-filter: blur(22px);
}

.image-modal-frame {
  position: relative;
  z-index: 2;
  max-width: min(1400px, 90vw);
  max-height: 84vh;
  transform: scale(.96);
  transition: transform .5s var(--ease);
}

.image-modal.open .image-modal-frame {
  transform: scale(1);
}

.image-modal-img {
  display: block;
  max-width: min(1400px, 90vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .55);
}

.image-modal-close {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 242, .3);
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background-color .3s, transform .4s var(--ease);
}

.image-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--exhibit-text);
}

.image-modal-close:hover,
.image-modal-close:focus-visible {
  border-color: var(--exhibit-accent);
  background: rgba(196, 161, 90, .12);
  transform: rotate(90deg);
}

@media (max-width:640px) {
  .zoom-trigger {
    width: 38px;
    height: 38px;
    right: 12px;
    bottom: 12px;
  }

  .image-modal-close {
    top: 20px;
    right: 20px;
  }

  .image-modal {
    padding: 6vh 5vw;
  }
}

.footer {
  background: var(--onyx);
  color: var(--cream);
  padding: min(10vh, 110px) 6vw 30px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 70px;
}

.footer-logo {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-top p {
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 80px;
  margin-bottom: 90px;
}

.footer-links h4 {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  opacity: .75;
  margin-bottom: 12px;
  transition: opacity .3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(252, 250, 246, .12);
  font-size: 11px;
  opacity: .5;
  letter-spacing: .03em;
}

@media (max-width:640px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

@media (max-width:860px) {

  :root {
    --m-edge: 20px;
    --m-gap-xs: 12px;
    --m-gap-sm: 16px;
    --m-gap-md: 24px;
    --m-gap-lg: 32px;
    --m-gap-xl: 48px;
    --m-gap-2xl: 64px;
    --m-radius: 18px;
    --m-radius-sm: 12px;
    --m-safe-b: env(safe-area-inset-bottom, 0px);
    --m-safe-t: env(safe-area-inset-top, 0px);
  }

  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  section {
    overflow: hidden;
  }

  body {
    padding-bottom: calc(72px + var(--m-safe-b) + 18px);
  }

  a,
  button,
  [role="button"] {
    -webkit-tap-highlight-color: transparent;
  }

  :focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }

  .nav {
    top: max(14px, var(--m-safe-t));
    left: var(--m-gap-sm);
    right: var(--m-gap-sm);
    padding: 12px 18px;
    background: rgba(20, 18, 14, .38);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(252, 250, 246, .16);
    border-radius: 999px;
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .55);
    transition: padding .4s var(--ease), background-color .4s var(--ease),
      border-radius .4s var(--ease), top .4s var(--ease);
  }

  .nav.scrolled {
    top: 10px;
    padding: 10px 16px;
    background: rgba(20, 18, 14, .62);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .5);
  }

  .nav-mark img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    opacity: 1;
    filter: brightness(0) invert(1);
  }

  .nav.scrolled .nav-mark img {
    filter: brightness(0) invert(1);
  }

  .nav-burger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-burger span,
  .nav-burger::before,
  .nav-burger::after {
    left: 9px;
    right: 9px;
    background: var(--alabaster);
  }

  .nav.scrolled .nav-burger span,
  .nav.scrolled .nav-burger::before,
  .nav.scrolled .nav-burger::after {
    background: var(--alabaster);
  }

  .nav-burger::before {
    top: 15px;
  }

  .nav-burger span {
    top: 22px;
  }

  .nav-burger::after {
    top: 29px;
  }

  .nav-burger.open::before {
    top: 22px;
  }

  .nav-burger.open::after {
    top: 22px;
  }

  .mobile-menu {
    gap: var(--m-gap-lg);
    padding: max(90px, calc(var(--m-safe-t) + 90px)) var(--m-gap-lg) var(--m-gap-lg);
  }

  .mobile-menu a {
    font-size: 26px;
    padding: 10px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero-video {
    display: none;
  }

  .hero-poster-mobile {
    display: block;
  }

  .hero-content {
    padding: 0 var(--m-edge);
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: min(14vh, 96px);
  }

  .hero-title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: var(--m-gap-sm);
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    margin-top: var(--m-gap-md);
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--m-gap-lg);
    padding: 16px 32px;
    min-height: 52px;
    width: 100%;
    max-width: 320px;
    background: var(--gradient-gold);
    color: var(--onyx);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 18px 36px -16px rgba(212, 175, 55, .5);
    transition: transform .3s var(--tilt-ease), box-shadow .3s var(--tilt-ease);
  }

  .hero-cta:active {
    transform: scale(.97);
    box-shadow: 0 8px 18px -10px rgba(212, 175, 55, .45);
  }

  .scroll-cue {
    display: none;
  }

  .studio {
    padding: var(--m-gap-2xl) var(--m-edge);
  }

  .studio-text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .studio-stats {
    gap: var(--m-gap-lg) var(--m-gap-xl);
    margin-top: var(--m-gap-xl);
  }

  .studio-stats span {
    font-size: 28px;
  }

  .studio-gold-ring {
    width: 120px;
    height: 120px;
    top: -24px;
    right: -24px;
  }

  .studio-frame-a,
  .studio-frame-b {
    border-radius: var(--m-radius-sm);
  }

  .services {
    padding: var(--m-gap-2xl) var(--m-edge) var(--m-gap-md);
  }

  .services-head {
    margin-bottom: var(--m-gap-xl);
  }

  .service-row,
  .service-row-reverse {
    background: var(--alabaster);
    border: 1px solid rgba(30, 30, 30, .08);
    border-radius: var(--m-radius);
    padding: var(--m-gap-md);
    box-shadow: var(--depth-shadow-soft);
    gap: var(--m-gap-md);
    margin-bottom: var(--m-gap-lg);
  }

  .service-row {
    border-top: 1px solid rgba(30, 30, 30, .08);
  }

  .service-row:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(30, 30, 30, .08);
  }

  .service-media {
    border-radius: var(--m-radius-sm);
  }

  .service-copy p {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .service-copy h3 {
    margin: 10px 0 12px;
  }

  .gallery {
    padding: var(--m-gap-2xl) var(--m-edge) var(--m-gap-xl);
  }

  .gallery-head {
    margin-bottom: var(--m-gap-lg);
  }

  .gallery-stage {
    border-radius: var(--m-radius);
    height: 58vh;
    min-height: 420px;
  }

  .gallery-hint {
    color: var(--cream);
  }

  .break {
    height: auto;
    min-height: 52vh;
    padding: var(--m-gap-2xl) 0;
  }

  .break-quote {
    position: relative;
    padding: 0 var(--m-gap-lg);
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .story {
    padding: var(--m-gap-2xl) 0;
  }

  .story .eyebrow {
    padding: 0 var(--m-edge);
  }

  .story-track {
    padding: 0 var(--m-edge);
    gap: var(--m-gap-md);
  }

  .story-card {
    flex-basis: min(360px, 82vw);
    padding: var(--m-gap-lg) var(--m-gap-md);
    border-radius: var(--m-radius);
  }

  .story-card p {
    font-size: 17px;
  }

  .booking {
    min-height: auto;
    padding: var(--m-gap-2xl) var(--m-edge);
  }

  .booking-wrap {
    gap: var(--m-gap-lg);
  }

  .booking-panel,
  .contact-panel {
    padding: var(--m-gap-lg) var(--m-gap-md);
    border-radius: var(--m-radius);
  }

  .contact-list a {
    font-size: 12px;
  }

  .booking-submit,
  .booking-fb-btn {
    min-height: 52px;
    border-radius: 999px;
  }

  .footer {
    padding: var(--m-gap-2xl) var(--m-edge) calc(var(--m-gap-lg) + var(--m-safe-b));
  }

  .footer-top {
    margin-bottom: var(--m-gap-xl);
  }

  .footer-links {
    margin-bottom: var(--m-gap-xl);
  }

  .footer-links a {
    padding: 4px 0;
  }

  .mobile-book-bar {
    position: fixed;
    left: var(--m-gap-sm);
    right: var(--m-gap-sm);
    bottom: calc(var(--m-gap-sm) + var(--m-safe-b));
    z-index: 480;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    background: var(--gradient-gold);
    color: var(--onyx);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 20px 40px -18px rgba(20, 15, 5, .5);
    transition: transform .35s var(--tilt-ease), box-shadow .35s var(--tilt-ease), opacity .3s ease;
  }

  .mobile-book-bar:active {
    transform: scale(.97);
  }

  .mobile-book-bar.is-hidden {
    opacity: 0;
    transform: translateY(140%);
    pointer-events: none;
  }
}

@media (min-width:861px) {
  .mobile-book-bar {
    display: none;
  }
}

@media (max-width:768px) {

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .studio-stats {
    row-gap: var(--m-gap-md);
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: var(--m-gap-lg);
  }
}

@media (max-width:480px) {
  :root {
    --m-edge: 18px;
  }

  .hero-title {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero-content {
    padding-bottom: min(12vh, 80px);
  }

  h2 {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .studio-stats {
    gap: var(--m-gap-md) var(--m-gap-lg);
  }

  .story-card {
    flex-basis: min(320px, 84vw);
    padding: var(--m-gap-md);
  }

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

@media (max-width:430px) {

  .service-row,
  .service-row-reverse {
    padding: var(--m-gap-sm);
  }

  .contact-panel,
  .booking-panel {
    padding: var(--m-gap-md) var(--m-gap-sm);
  }

  .mobile-book-bar {
    font-size: 11px;
  }
}

@media (max-width:375px) {
  :root {
    --m-edge: 16px;
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 38px);
  }

  .hero-sub {
    font-size: 15.5px;
  }

  h2 {
    font-size: clamp(24px, 7.8vw, 30px);
  }

  .studio-stats {
    gap: 18px 24px;
  }

  .studio-stats span {
    font-size: 24px;
  }

  .story-card {
    flex-basis: 84vw;
  }

  .break-quote {
    padding: 0 var(--m-gap-md);
    font-size: clamp(20px, 6.8vw, 26px);
  }

  .nav-mark img {
    height: 30px;
    width: 30.8px;
    border-radius: 50%;
  }
}