:root {
  --ink: #111111;
  --charcoal: #1b1b18;
  --soft-black: #24241f;
  --olive: #5f6f3f;
  --olive-dark: #3f4b2b;
  --silver: #c9c6bd;
  --mist: #f5f3ee;
  --paper: #ffffff;
  --stone: #dedbd2;
  --muted: #747068;
  --line: rgba(17, 17, 17, 0.13);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.13);
  --radius: 8px;
  --wide: min(1420px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Century Gothic", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body::selection {
  background: var(--olive);
  color: var(--paper);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slow-scale {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

.hero img,
.hero video,
.atelier-main img,
.atelier-small img,
.venue-slide img,
.finale > img,
.cinema-strip img,
.room-story-media img,
.feature-image img,
.card img,
.event-row img,
.gallery img,
.proof-image img,
.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: clamp(2.05rem, 3.7vw, 4.05rem);
}

h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.8rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  animation: line-grow 700ms ease both;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.32), rgba(17, 17, 17, 0.04));
  color: var(--paper);
  backdrop-filter: blur(8px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(95, 111, 63, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: "Century Gothic", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--silver);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle::before {
  width: 17px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  background: var(--paper);
  color: var(--paper);
  isolation: isolate;
}

.hero.video-hero {
  min-height: 100vh;
  background: #f8f7f2;
}

.hero.compact {
  min-height: 68vh;
}

.hero.compact .hero-content {
  align-self: center;
  padding: 128px 0 72px;
}

.hero.light-hero::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26));
}

.events-hero > img {
  object-position: center 52%;
  filter: brightness(1.08) saturate(0.98);
}

.events-hero-content,
.centered-hero-content {
  display: flex;
  width: min(760px, calc(100% - 32px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  text-align: center;
}

.events-hero-content h1,
.events-hero-content .hero-copy,
.centered-hero-content h1,
.centered-hero-content .hero-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero::before,
.image-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.24);
  content: "";
}

.hero > img,
.hero-video,
.image-band > img {
  position: absolute;
  top: -70px;
  right: 0;
  bottom: -70px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 140px);
  object-fit: cover;
  object-position: center;
}

.hero-video {
  top: 0;
  bottom: 0;
  height: 100%;
  animation: none;
  opacity: 1;
  transform: none;
  transform-origin: center;
}

.image-hero > img {
  right: -6vw;
  left: -6vw;
  width: 112vw;
  max-width: none;
}

.image-hero {
  background-position: center var(--hero-bg-y, center);
  background-size: cover;
  background-repeat: no-repeat;
}

.oak-hall-hero {
  background-image: url("images/gallery/gallery-07.jpg");
}

.olive-terrace-hero {
  background-image: url("images/gallery/gallery-13.jpg");
}

.hero > img {
  transform: translate3d(0, var(--hero-image-y, 0), 0) scale(var(--hero-image-scale, 1.06));
  transform-origin: center;
  will-change: transform;
}

.hero.video-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.34)),
    rgba(0, 0, 0, 0.1);
}

.hero-content {
  align-self: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 80px;
  text-align: center;
}

.hero.video-hero .hero-content {
  width: var(--wide);
  padding: 128px 0 80px;
}

.hero-social {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 44px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.82rem;
  color: var(--paper);
  transform: translateY(-50%);
}

.hero-social-line {
  display: block;
  width: 1px;
  height: clamp(48px, 8vh, 82px);
  background: rgba(255, 255, 255, 0.58);
}

.hero-social-line-top {
  order: -1;
}

.hero-social-line-bottom {
  order: 2;
}

.social-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.social-icon:hover {
  background: var(--paper);
  color: var(--olive-dark);
  transform: translateY(-2px);
}

.hero-layout {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero .actions,
.hero-panel,
.hero-metrics {
  opacity: 0;
  animation: fade-up 820ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-kicker {
  animation-delay: 180ms;
}

.hero h1 {
  animation-delay: 300ms;
  animation-name: hero-title-in;
  animation-duration: 1050ms;
  letter-spacing: 0.035em;
}

.hero-copy {
  animation-delay: 430ms;
}

.hero .actions {
  animation-delay: 560ms;
}

.hero-panel {
  animation-delay: 680ms;
}

.hero-metrics {
  animation-delay: 780ms;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin-top: 1.35rem;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  letter-spacing: 0.045em;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(16px);
}

.hero-panel img {
  width: 100%;
  height: 210px;
  border-radius: 6px;
  object-fit: cover;
}

.hero-panel p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1px;
  width: var(--wide);
  margin: 2rem auto 0;
  background: rgba(255, 255, 255, 0.2);
}

.hero-metric {
  padding: 1.05rem;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(12px);
}

.hero-metric strong {
  display: block;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero-metric span {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--olive);
  border-radius: 999px;
  background: var(--olive);
  color: var(--paper);
  font-family: "Century Gothic", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: none;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  box-shadow: 0 12px 28px rgba(63, 75, 43, 0.16);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--paper);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.outline-dark {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.32);
  color: var(--ink);
}

.button.outline-dark:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.section {
  padding: clamp(64px, 9vw, 128px) 0;
}

.section.editorial {
  padding: clamp(82px, 11vw, 164px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms cubic-bezier(0.19, 1, 0.22, 1), transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

.section.flush-top {
  padding-top: 0;
}

.section.dark {
  background: var(--charcoal);
  color: var(--paper);
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.wide-container {
  width: var(--wide);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.intro-copy,
.intro-media {
  background: var(--paper);
}

.intro-copy {
  padding: clamp(1.5rem, 5vw, 5rem);
}

.intro-media {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0.75rem;
  padding: 0.75rem;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.intro-media img:first-child {
  margin-top: 2.5rem;
  min-height: 390px;
}

.intro-grid:hover .intro-media img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.02);
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.editorial-venue {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 5.5rem);
  align-items: start;
}

.editorial-label {
  position: sticky;
  top: 112px;
  min-height: 360px;
}

.editorial-label .number {
  display: block;
  color: var(--silver);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.8;
}

.editorial-label p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
}

.editorial-stack {
  display: grid;
  gap: 1.1rem;
}

.space-line {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) 120px;
  gap: 1.3rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.space-line:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.space-line img {
  width: 156px;
  height: 112px;
  border-radius: 4px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 520ms ease, filter 520ms ease;
}

.space-line:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.space-line h3 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.space-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.space-line .capacity {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.occasion-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.occasion-list {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}

.occasion-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.occasion-item span:first-child {
  color: var(--olive);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.occasion-item strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
}

.occasion-item em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.occasion-image-stack {
  position: relative;
  min-height: 620px;
}

.occasion-image-stack img {
  position: absolute;
  width: 72%;
  border-radius: 4px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.occasion-image-stack img:first-child {
  top: 0;
  right: 0;
  height: 410px;
}

.occasion-image-stack img:last-child {
  bottom: 0;
  left: 0;
  height: 360px;
}

.designer-note {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
  text-align: center;
}

.designer-note p {
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1;
}

.statement-section {
  padding: clamp(82px, 10vw, 138px) 0 clamp(40px, 5vw, 70px);
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.statement-copy h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.statement-text {
  max-width: 420px;
  padding-bottom: 0.8rem;
}

.statement-text p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cinema-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.16fr 0.9fr;
  gap: 1rem;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto clamp(66px, 9vw, 118px);
}

.cinema-strip img {
  width: 100%;
  height: clamp(280px, 38vw, 540px);
  border-radius: var(--radius);
  object-fit: cover;
}

.cinema-strip img:nth-child(1),
.cinema-strip img:nth-child(3) {
  margin-top: clamp(32px, 5vw, 76px);
  height: clamp(250px, 31vw, 440px);
}

.room-stories {
  background: var(--paper);
}

.room-story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: auto;
  border-top: 1px solid var(--line);
}

.room-story.light-story {
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--paper);
  color: var(--ink);
}

.room-story-media {
  position: relative;
  min-height: clamp(460px, 54vw, 680px);
  overflow: hidden;
}

.room-story-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.room-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 6vw, 6rem);
  color: var(--ink);
}

.room-story-copy span {
  margin-bottom: 1.15rem;
  color: var(--olive);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 9rem);
  line-height: 0.72;
}

.room-story-copy p {
  max-width: 560px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.light-story .room-story-copy p {
  color: var(--muted);
}

.events-marquee {
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--mist);
}

.marquee-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.4rem;
  background: var(--line);
}

.marquee-list a {
  display: flex;
  min-height: 110px;
  align-items: center;
  padding: 1rem 1.2rem;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  transition: color 220ms ease, background 220ms ease;
}

.marquee-list a:hover {
  background: #fbfaf7;
  color: var(--olive);
}

.proof-section {
  padding: clamp(70px, 9vw, 124px) 0;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.proof-image img {
  width: 100%;
  height: clamp(360px, 46vw, 650px);
  border-radius: var(--radius);
  object-fit: cover;
}

.proof-copy h2 {
  max-width: 820px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.2rem;
  background: var(--line);
}

.proof-stats div {
  padding: 1.15rem;
  background: var(--paper);
}

.proof-stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
}

.proof-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-feature {
  padding: clamp(80px, 10vw, 136px) 0;
  background: var(--charcoal);
  color: var(--paper);
  text-align: center;
}

.quote-feature p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--silver);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.quote-feature .actions {
  justify-content: center;
}

.atelier-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 150px) 0 clamp(70px, 9vw, 128px);
  background: #f8f7f2;
}

.atelier-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1320px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  align-items: center;
}

.atelier-wordmark {
  position: absolute;
  top: -0.08em;
  left: -0.03em;
  color: rgba(17, 17, 17, 0.045);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(7rem, 18vw, 20rem);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.atelier-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 620px;
  padding-bottom: clamp(2rem, 5vw, 5rem);
}

.atelier-copy h2 {
  font-size: clamp(2rem, 3.8vw, 4.3rem);
}

.atelier-copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.08rem;
}

.atelier-main,
.atelier-small {
  margin: 0;
}

.atelier-main {
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.atelier-main img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  border-radius: var(--radius);
  object-fit: cover;
}

.atelier-small {
  position: absolute;
  right: min(7vw, 92px);
  bottom: 0;
  z-index: 3;
  width: min(360px, 30vw);
  padding: 0.7rem;
  background: #f8f7f2;
}

.atelier-small img {
  width: 100%;
  height: 260px;
  border-radius: 6px;
  object-fit: cover;
}

.venue-scroll {
  display: grid;
  grid-template-columns: 0.74fr 1fr 1fr;
  min-height: 92vh;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue-scroll-copy {
  position: sticky;
  top: 78px;
  height: calc(100vh - 78px);
  padding: clamp(2rem, 5vw, 5rem);
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-scroll-copy p {
  max-width: 340px;
  color: var(--muted);
}

.venue-slide {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  margin: clamp(18px, 3vw, 42px) clamp(12px, 2vw, 28px);
  min-height: calc(92vh - clamp(36px, 6vw, 84px));
  border-radius: var(--radius);
}

.venue-slide::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(38, 43, 31, 0.02) 18%, rgba(36, 42, 27, 0.52) 100%);
  content: "";
}

.venue-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.04) saturate(0.96);
  transition: transform 800ms ease;
}

.venue-slide:hover img {
  transform: scale(1.035);
}

.venue-slide div {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
}

.venue-slide span,
.venue-slide p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.venue-slide h3 {
  max-width: 520px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
}

.occasion-studio {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 160px) 0;
  background: transparent;
}

.occasion-studio-head {
  text-align: center;
}

.occasion-studio-head h2 {
  max-width: 560px;
  font-size: clamp(1.8rem, 3.1vw, 3.45rem);
  line-height: 0.98;
}

.occasion-studio-head p {
  max-width: 440px;
  margin-top: 1.2rem;
  color: var(--olive-dark);
  font-size: 0.86rem;
}

.occasion-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}

.occasion-feature {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  color: var(--ink);
  transition: color 180ms ease, transform 180ms ease;
}

.occasion-feature:hover {
  color: var(--olive);
  transform: translateX(8px);
}

.occasion-feature img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  border-radius: var(--radius);
  object-fit: cover;
  filter: brightness(0.96) saturate(0.98);
  transition: filter 220ms ease, transform 520ms ease;
}

.occasion-feature:hover img {
  filter: brightness(1) saturate(1.04);
  transform: scale(1.015);
}

.occasion-feature span {
  color: var(--olive);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 0.85;
}

.occasion-feature em {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-family: "Century Gothic", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.occasion-feature h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
}

.occasion-feature p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.finale {
  position: relative;
  display: grid;
  min-height: 86vh;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.finale::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.1));
  content: "";
}

.finale > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finale-panel {
  width: min(620px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  color: var(--ink);
}

.finale-panel p {
  max-width: 440px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reviews-section {
  padding: clamp(70px, 9vw, 128px) 0;
  background: var(--paper);
}

.reviews-head {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.reviews-head h2 {
  max-width: 560px;
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.review-controls {
  display: flex;
  gap: 0.6rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.review-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--olive-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-btn:hover {
  background: var(--olive);
  color: var(--paper);
  transform: translateY(-2px);
}

.review-slider {
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.review-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.review-slide {
  min-width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.85rem, 1.7vw, 1.8rem);
  line-height: 1.35;
  text-align: center;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--stone);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.review-dot.is-active {
  width: 28px;
  background: var(--olive);
}

.signature-item {
  min-height: 120px;
  padding: 1.2rem;
  background: #fbfaf7;
  transition: background 220ms ease, transform 220ms ease;
}

.signature-item:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.signature-item span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signature-item strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.room-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 2.3rem;
  background: rgba(255, 255, 255, 0.18);
}

.room-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--paper);
  isolation: isolate;
}

.room-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.74));
  content: "";
}

.room-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.room-panel:hover img {
  transform: scale(1.045);
}

.room-panel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.room-panel-content p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: clamp(360px, 48vw, 610px);
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
}

.stat {
  min-height: 130px;
  padding: 1.3rem;
  background: var(--paper);
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.2rem;
}

.card,
.event-row {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.event-row:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 111, 63, 0.35);
  box-shadow: 0 22px 55px rgba(17, 17, 17, 0.1);
}

.card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.card-body {
  padding: 1.4rem;
}

.card-body p {
  color: var(--muted);
}

.text-link {
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.4rem;
  background: rgba(255, 255, 255, 0.18);
}

.quote {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
}

.quote strong {
  display: block;
  margin-top: 1rem;
  color: var(--silver);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-band {
  position: relative;
  min-height: 480px;
  color: var(--paper);
  isolation: isolate;
}

.image-band > img {
  transition: transform 900ms ease;
}

.image-band:hover > img {
  transform: scale(1.035);
}

.book-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.book-ribbon-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1px;
  width: var(--wide);
  margin: 0 auto;
  background: var(--line);
}

.book-cell {
  min-height: 98px;
  padding: 1rem 1.15rem;
  background: var(--paper);
}

.book-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-cell strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.image-band .container {
  position: relative;
  display: flex;
  min-height: 480px;
  align-items: end;
  padding-bottom: 4rem;
}

.image-band h2 {
  max-width: 760px;
}

.event-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.events-page {
  background: #fbfaf7;
}

.events-intro {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.event-feature-list {
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.event-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.event-feature {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(1.4rem, 3vw, 2.4rem) 0;
}

.event-feature + .event-feature {
  border-top: 1px solid var(--line);
}

.event-feature:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.event-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.event-feature:nth-child(even) figure {
  order: 2;
}

.event-feature figure {
  margin: 0;
  min-height: clamp(360px, 36vw, 520px);
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.event-row img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.event-feature img {
  min-height: 100%;
  transition: transform 650ms ease;
}

.event-feature:hover img {
  transform: scale(1.035);
}

.event-img-wedding {
  object-position: center 48%;
}

.event-img-wake {
  object-position: center center;
}

.event-img-hire {
  object-position: center 44%;
}

.event-img-terrace {
  object-position: center 38%;
}

.event-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.event-feature .event-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 0;
}

.event-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--olive);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.8;
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease;
}

.event-feature:hover .event-number {
  opacity: 1;
  transform: translateY(-4px);
}

.event-feature .event-copy h3 {
  transition: color 220ms ease, transform 220ms ease;
}

.event-feature:hover .event-copy h3 {
  color: var(--olive);
  transform: translateX(6px);
}

.event-feature .pill {
  border-color: transparent;
  padding-left: 0;
  color: var(--muted);
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.1rem 0;
}

.pill {
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--olive-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.gallery img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease, box-shadow 520ms ease;
}

.gallery img:hover {
  transform: translateY(-5px) scale(1.018);
  filter: saturate(1.1) contrast(1.03);
  box-shadow: var(--shadow);
}

.gallery img:nth-child(3n + 1) {
  height: 350px;
  grid-row: span 2;
}

.old-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.old-gallery-grid img,
.old-gallery-grid img:nth-child(3n + 1) {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  grid-row: auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.old-gallery-grid img:nth-child(6n + 1),
.old-gallery-grid img:nth-child(6n + 4) {
  aspect-ratio: 4 / 3;
}

.room-gallery-section {
  text-align: center;
}

.room-gallery-section .eyebrow {
  justify-content: center;
}

.room-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.terrace-gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.room-gallery-grid img,
.room-gallery-grid img:nth-child(3n + 1) {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  grid-row: auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

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

.image-lightbox img {
  width: auto;
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: 4px;
  object-fit: contain;
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 1.4rem;
  cursor: pointer;
}

.split .actions,
.contact-card .actions {
  justify-content: flex-start;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
}

.contact-card p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  background: #0f0f0d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 56px 0;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1.1rem;
}

.footer-grid h4 {
  margin: 0 0 0.8rem;
  color: var(--silver);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .social-icon:hover {
  background: var(--olive);
  color: var(--paper);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 24px 1.6rem;
    background: rgba(17, 17, 17, 0.96);
    animation: fade-in 180ms ease both;
  }

  .nav-links.open {
    display: flex;
  }

  .split,
  .hero-layout,
  .intro-grid,
  .intro-media,
  .editorial-venue,
  .occasion-editorial,
  .statement-grid,
  .atelier-frame,
  .venue-scroll,
  .occasion-studio,
  .room-story,
  .room-story.light-story,
  .proof-grid,
  .event-row,
  .event-feature,
  .event-feature:nth-child(even),
  .contact-panel,
  .book-ribbon-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-feature:nth-child(even) figure {
    order: 0;
  }

  .event-feature figure {
    min-height: 340px;
  }

  .card-grid,
  .room-showcase,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    align-items: center;
    flex-direction: column;
  }

  .review-controls {
    position: static;
  }

  .signature-strip,
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel {
    display: none;
  }

  .intro-media img,
  .intro-media img:first-child {
    min-height: 300px;
    margin-top: 0;
  }

  .room-panel {
    min-height: 480px;
  }

  .editorial-label {
    position: static;
    min-height: auto;
  }

  .space-line {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .space-line img {
    width: 112px;
    height: 92px;
  }

  .space-line .capacity {
    grid-column: 2;
    text-align: left;
  }

  .occasion-image-stack {
    min-height: 520px;
  }

  .cinema-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cinema-strip img,
  .cinema-strip img:nth-child(1),
  .cinema-strip img:nth-child(3) {
    height: 320px;
    margin-top: 0;
  }

  .cinema-strip img:nth-child(2) {
    grid-column: span 2;
    height: 420px;
  }

  .room-story,
  .room-story.light-story {
    min-height: auto;
  }

  .light-story .room-story-media {
    order: -1;
  }

  .room-story-media {
    min-height: 440px;
  }

  .marquee-list {
    animation-duration: 36s;
  }

  .atelier-frame {
    min-height: auto;
  }

  .atelier-main img {
    min-height: 480px;
  }

  .atelier-small {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 80vw);
    margin-top: -5rem;
    margin-left: auto;
  }

  .venue-scroll-copy {
    position: relative;
    top: auto;
    height: auto;
    padding: 4rem 1rem;
  }

  .venue-slide {
    min-height: 70vh;
  }

  .occasion-studio-head {
    position: static;
  }

  .occasion-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-feature {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .occasion-feature em {
    grid-column: auto;
  }

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .old-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terrace-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-content {
    padding-bottom: 72px;
  }

  .hero-social {
    top: auto;
    bottom: 34px;
    right: 50%;
    flex-direction: row;
    transform: translateX(50%);
  }

  .hero-social-line {
    width: 54px;
    height: 1px;
  }

}

@media (max-width: 560px) {
  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 86vh;
  }

  .signature-strip,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .book-cell {
    min-height: auto;
  }

  .hero.compact {
    min-height: 60vh;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .gallery,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .old-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .room-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .terrace-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-feature figure {
    min-height: 280px;
  }

  .event-feature .event-copy {
    padding: 1.4rem;
  }

  .space-line,
  .occasion-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .space-line img {
    width: 100%;
    height: 220px;
  }

  .occasion-item em {
    display: block;
  }

  .occasion-image-stack {
    min-height: auto;
  }

  .occasion-image-stack img {
    position: static;
    width: 100%;
    height: 300px;
    margin-bottom: 0.8rem;
  }

  .statement-copy h2 {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .cinema-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .cinema-strip img,
  .cinema-strip img:nth-child(1),
  .cinema-strip img:nth-child(2),
  .cinema-strip img:nth-child(3) {
    grid-column: auto;
    height: 310px;
  }

  .room-story-media {
    min-height: 340px;
  }

  .room-story-copy {
    padding: 2rem 1rem 3rem;
  }

  .marquee-list {
    display: grid;
    width: auto;
    gap: 0.25rem;
    animation: none;
  }

  .marquee-list a {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .atelier-wordmark {
    font-size: clamp(5rem, 24vw, 9rem);
  }

  .atelier-copy {
    padding-bottom: 0;
  }

  .atelier-main img {
    min-height: 340px;
  }

  .atelier-small {
    width: 86%;
    margin-top: -3rem;
  }

  .atelier-small img {
    height: 220px;
  }

  .venue-slide {
    min-height: 62vh;
  }

  .venue-slide div {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .occasion-studio {
    padding: 4rem 0;
  }

  .occasion-board {
    grid-template-columns: 1fr;
  }

  .occasion-feature {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .finale {
    min-height: 72vh;
  }

  .gallery img,
  .gallery img:nth-child(3n + 1) {
    height: 280px;
  }

  .old-gallery-grid img,
  .old-gallery-grid img:nth-child(3n + 1),
  .old-gallery-grid img:nth-child(6n + 1),
  .old-gallery-grid img:nth-child(6n + 4) {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .room-gallery-grid img,
  .room-gallery-grid img:nth-child(3n + 1) {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

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

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

  .hero-video {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero > img {
    transform: none !important;
  }
}
