:root {
  --ink: #101312;
  --cream: #f4ebdd;
  --jade: #2f8d73;
  --jade-bright: #3aa488;
  --paper: #f1eee7;
  --muted: #aaa399;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, video { max-width: 100%; }
[hidden] { display: none !important; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../images/opalina-capa-panorama.webp") 52% center / cover no-repeat;
  transform: scale(1.015);
  animation: heroZoom 12s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, .94) 0%, rgba(5, 7, 7, .72) 38%, rgba(5, 7, 7, .18) 72%, rgba(5, 7, 7, .28) 100%),
    linear-gradient(0deg, rgba(5, 7, 7, .72) 0%, transparent 48%);
}
.site-header {
  width: min(100% - 96px, 1480px);
  height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  border-bottom: 1px solid rgba(244, 235, 221, .22);
}
.brand {
  font: 400 42px/1 Georgia, "Times New Roman", serif;
  letter-spacing: .12em;
}
.site-header nav { display: flex; gap: 42px; }
.site-header nav a {
  position: relative;
  font-size: 15px;
  letter-spacing: .02em;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--jade-bright);
  transition: right .25s ease;
}
.site-header nav a:hover::after { right: 0; }
.menu-toggle { display: none; }
.header-cta {
  justify-self: end;
  border: 1px solid rgba(244, 235, 221, .5);
  padding: 14px 20px;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover { background: var(--cream); color: var(--ink); }

.standalone-section { display: none; }
.standalone-section:target {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: riseIn .24s ease-out both;
}
.detail-close {
  position: fixed;
  z-index: 1010;
  top: 24px;
  right: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(244,235,221,.42);
  background: rgba(7,10,9,.88);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease;
}
.detail-close:hover { background: var(--jade); border-color: var(--jade-bright); }

.hero-content {
  width: min(100% - 96px, 1480px);
  margin: 0 auto;
  padding: clamp(80px, 11vh, 140px) 0 96px;
  animation: riseIn .75s ease-out both;
}
.eyebrow {
  margin: 0 0 26px;
  color: #d3cdc3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #4f5754; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--cream);
  font: 400 clamp(72px, 8.2vw, 132px)/.88 Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: #ddd6cc;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; }
.button {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 16px;
  letter-spacing: .02em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button span { transition: transform .2s ease; }
.button:hover span { transform: translate(3px, -2px); }
.button-primary { background: var(--jade); color: white; }
.button-primary:hover { background: var(--jade-bright); transform: translateY(-2px); }
.button-secondary { border-color: rgba(244, 235, 221, .68); background: rgba(10, 12, 11, .18); }
.button-secondary:hover { background: var(--cream); color: var(--ink); }
.hero-facts {
  display: flex;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: #c6beb3;
  font-size: 14px;
}
.hero-facts li + li::before { content: "•"; margin: 0 16px; color: var(--jade-bright); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 235, 221, .3);
  border-radius: 50%;
  font-size: 22px;
  animation: pulse 2s infinite;
}

.spaces-section {
  padding: 120px max(48px, calc((100vw - 1480px) / 2));
  background: var(--paper);
  color: var(--ink);
}
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}
.section-intro h2 {
  margin: 0;
  font: 400 clamp(52px, 5.2vw, 82px)/.98 Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
}
.section-intro > p {
  max-width: 520px;
  margin: 0 0 8px auto;
  color: #4f5552;
  font-size: 18px;
  line-height: 1.7;
}
.spaces-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.space-card { overflow: hidden; background: #fff; }
.space-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  background: #252525;
  color: white;
  cursor: pointer;
}
.space-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.space-image-wrap::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(0deg, rgba(5,7,6,.86), transparent); pointer-events: none; }
.space-card:hover img { transform: scale(1.035); }
.space-number {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 12px;
  background: rgba(8, 10, 9, .75);
  color: white;
  font-size: 12px;
  letter-spacing: .08em;
}
.gallery-count {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(8, 10, 9, .78);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.gallery-count span { color: #78d1b7; font-size: 16px; }
.space-overlay { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; text-align: left; }
.space-overlay strong { font: 400 38px/1 Georgia, "Times New Roman", serif; }
.space-overlay small { padding-bottom: 3px; color: #d8ddd9; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.videos-section { padding: 120px max(48px, calc((100vw - 1480px) / 2)); background: #18201d; }
.videos-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.videos-heading h2 { margin: 0; font: 400 clamp(54px, 5.4vw, 86px)/.96 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.videos-heading > p { max-width: 520px; margin: 0 0 8px auto; color: #aeb9b4; font-size: 17px; line-height: 1.7; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { position: relative; overflow: hidden; aspect-ratio: 9 / 14; background: #0b0e0d; isolation: isolate; }
.video-card-wide { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
.video-card > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.video-card:hover > img { transform: scale(1.035); }
.video-player { position: absolute; inset: 0; width: 100%; height: 100%; background: #050706; object-fit: cover; }
.video-card.is-playing { background: #050706; }
.video-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(4,6,5,.92), rgba(4,6,5,.08) 68%); }
.video-trigger { position: absolute; z-index: 2; inset: 0; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.video-trigger:focus-visible { outline: 3px solid var(--jade-bright); outline-offset: -3px; }
.video-status { position: absolute; top: 20px; left: 20px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.36); background: rgba(5,7,6,.42); color: #f3ede3; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.video-play { position: absolute; z-index: 1; top: 50%; left: 50%; width: 70px; height: 70px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(11,14,13,.28); color: white; font-size: 20px; text-indent: 4px; transform: translate(-50%, -50%); backdrop-filter: blur(6px); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.video-trigger:hover .video-play { background: rgba(47,141,115,.88); transform: translate(-50%, -50%) scale(1.05); }
.video-play-disabled { cursor: default; }
.video-play-disabled:hover { background: rgba(11,14,13,.28); transform: translate(-50%, -50%); }
.video-caption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 26px; pointer-events: none; }
.video-card-wide .video-caption { max-width: 560px; }
.video-caption small { color: #70c9ae; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.video-caption h3 { margin: 10px 0 9px; font: 400 31px/1.08 Georgia, "Times New Roman", serif; }
.video-caption p { margin: 0; color: #c4cbc7; line-height: 1.5; }

.information-section {
  padding: 120px max(48px, calc((100vw - 1480px) / 2));
  background: #111513;
}
.information-heading {
  display: grid;
  grid-template-columns: .55fr 1fr .8fr;
  align-items: end;
  gap: 56px;
}
.information-heading .eyebrow { align-self: start; margin-top: 12px; }
.information-heading h2 { margin: 0; font: 400 clamp(54px, 5.2vw, 82px)/.98 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.information-heading > p:last-child { margin: 0 0 8px; color: #adb2ae; font-size: 17px; line-height: 1.65; }
.info-panels { display: grid; grid-template-columns: .62fr 1.38fr; gap: 22px; margin-top: 72px; }
.info-panel { padding: 38px; border: 1px solid #343a37; background: #171b19; }
.info-panel > span { display: block; margin-bottom: 30px; color: var(--jade-bright); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hours-panel dl { margin: 0; }
.hours-panel dl > div { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #353a38; }
.hours-panel dt, .hours-panel dd { margin: 0; }
.hours-panel dd { color: #c5ccc8; }
.hours-panel small { display: block; margin-top: 22px; color: #8f9692; line-height: 1.55; }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rule-card { min-height: 210px; padding: 26px; border: 1px solid #343a37; background: #171b19; }
.rule-card > span { color: var(--jade-bright); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.rule-card h3 { margin: 22px 0 12px; font: 400 25px/1.12 Georgia, "Times New Roman", serif; }
.rule-card p { margin: 0; color: #abb2ae; font-size: 14px; line-height: 1.6; }
.venue-guides { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.venue-guide { padding: 38px; border: 1px solid #343a37; background: #171b19; }
.venue-guide-heading > span { color: var(--jade-bright); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.venue-guide-heading h3 { max-width: 520px; margin: 24px 0 14px; color: #f0e9de; font: 400 31px/1.08 Georgia, "Times New Roman", serif; }
.venue-guide-heading p { margin: 0; color: #a8afab; font-size: 14px; line-height: 1.65; }
.venue-guide-list { margin: 32px 0 0; padding: 0; }
.venue-guide-list > div,
.venue-guide-bullets > li { display: grid; grid-template-columns: minmax(130px, .6fr) 1.4fr; gap: 24px; padding: 18px 0; border-top: 1px solid #353a38; }
.venue-guide-list dt,
.venue-guide-bullets strong { color: #ece6dc; font-size: 13px; font-weight: 700; line-height: 1.5; }
.venue-guide-list dd,
.venue-guide-bullets span { margin: 0; color: #9ea6a2; font-size: 13px; line-height: 1.6; }
.venue-guide-bullets { list-style: none; }
.rules-note { display: grid; grid-template-columns: .5fr 1fr auto; align-items: center; gap: 40px; margin-top: 22px; padding: 28px 34px; border: 1px solid #343a37; background: #171b19; }
.rules-note > span { color: #f0e8dd; font: 400 22px/1.2 Georgia, "Times New Roman", serif; }
.rules-note p { margin: 0; color: #9da5a1; font-size: 14px; line-height: 1.55; }
.rules-note a { color: var(--jade-bright); font-size: 13px; font-weight: 700; white-space: nowrap; }
.pricing-section {
  padding: 110px max(48px, calc((100vw - 1480px) / 2)) 120px;
  background: #111513;
}
.pricing-section .price-table-heading { padding-top: 0; border-top: 0; }
.price-intro { max-width: 560px; }
.price-intro > p { margin: 0 0 22px; color: #aeb5b1; font-size: 17px; line-height: 1.65; }
.payment-rules-home { grid-template-columns: repeat(3, 1fr); }
.payment-rules-home article { min-height: 230px; }
.costs-page { min-height: 100svh; background: #111513; }
.costs-header { width: min(100% - 96px, 1480px); height: 104px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #363c39; }
.costs-header nav { display: flex; gap: 36px; color: #c8cec9; font-size: 14px; }
.costs-header nav a:hover { color: var(--jade-bright); }
.costs-hero { display: grid; grid-template-columns: .55fr 1.1fr .85fr; align-items: end; gap: 56px; padding: 110px max(48px, calc((100vw - 1480px) / 2)) 90px; }
.costs-hero .eyebrow { align-self: start; margin-top: 14px; }
.costs-hero h1 { margin: 0; font: 400 clamp(62px, 6.4vw, 102px)/.9 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.costs-hero > p:last-child { margin: 0 0 8px; color: #aeb5b1; font-size: 17px; line-height: 1.7; }
.costs-content { padding: 0 max(48px, calc((100vw - 1480px) / 2)) 120px; }
.price-table-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; padding: 42px 0 34px; border-top: 1px solid #363c39; }
.price-table-heading h2 { margin: 0; font: 400 clamp(42px, 4.2vw, 68px)/.98 Georgia, "Times New Roman", serif; letter-spacing: -.04em; }
.price-legend { display: flex; flex-direction: column; gap: 12px; padding-bottom: 8px; color: #aeb5b1; font-size: 13px; }
.price-legend span { display: flex; align-items: center; gap: 10px; }
.legend-dot { width: 9px; height: 9px; display: inline-block; border-radius: 50%; }
.legend-dot.consumable { background: var(--jade-bright); }
.legend-dot.rental { background: #e0c39d; }
.price-table-wrap { overflow-x: auto; border: 1px solid #363c39; background: #171b19; }
.price-table { width: 100%; min-width: 880px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 24px 26px; border-right: 1px solid #343a37; border-bottom: 1px solid #343a37; text-align: left; vertical-align: middle; }
.price-table tr > *:last-child { border-right: 0; }
.price-table tbody tr:last-child > * { border-bottom: 0; }
.price-table thead th { background: #202623; color: #8e9994; font-size: 10px; font-weight: 700; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }
.price-table thead th:first-child { width: 21%; }
.price-table thead th:nth-child(2) { width: 25%; }
.price-table tbody th { color: #f0e9de; font: 400 21px/1.15 Georgia, "Times New Roman", serif; }
.price-table tbody td { color: #aeb5b1; font-size: 14px; }
.price-table tbody td strong { display: block; color: #f2ede4; font-size: 19px; font-weight: 400; }
.price-table tbody td small { display: block; margin-top: 6px; color: #6fc6ac; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-table tbody td:last-child small { color: #d2b991; }
.price-table tbody td .studio-included {
  margin-top: 10px;
  color: #aeb5b1;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}
.payment-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.payment-rules article { min-height: 250px; padding: 28px; border: 1px solid #363c39; background: #171b19; }
.payment-rules article > span { color: var(--jade-bright); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.payment-rules h3 { margin: 44px 0 14px; font: 400 26px/1.12 Georgia, "Times New Roman", serif; }
.payment-rules p { margin: 0; color: #a5ada9; font-size: 14px; line-height: 1.65; }
.payment-rules .studio-rule { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: 70px .7fr 1.3fr; align-items: center; gap: 24px; }
.payment-rules .studio-rule h3 { margin: 0; }
.costs-note { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 42px; padding: 34px; border: 1px solid #363c39; border-top: 0; background: #171b19; }
.costs-note > div > span { color: var(--jade-bright); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.costs-note p { margin: 9px 0 0; color: #9ca39f; font-size: 13px; line-height: 1.5; }
.costs-note .button { min-width: 230px; }
.availability-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 840px;
  background: #0b0e0d;
}
.availability-visual { position: relative; min-height: 760px; overflow: hidden; }
.availability-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,7,.92), rgba(5,7,7,.12) 72%); }
.availability-visual > img { width: 100%; height: 100%; object-fit: cover; }
.availability-visual > div { position: absolute; z-index: 1; left: clamp(28px, 5vw, 80px); right: 40px; bottom: 70px; }
.availability-visual h2 { margin: 0; font: 400 clamp(58px, 6vw, 96px)/.9 Georgia, "Times New Roman", serif; letter-spacing: -.055em; }
.availability-visual > div > p:last-child { max-width: 430px; margin: 28px 0 0; color: #cac4ba; font-size: 17px; line-height: 1.6; }
.availability-form { align-self: center; width: min(100% - 96px, 740px); margin: 70px auto; }
.form-heading { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 28px; border-bottom: 1px solid #323735; }
.form-heading span { color: var(--jade-bright); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.form-heading p { max-width: 390px; margin: 0; color: #9fa4a1; font-size: 14px; line-height: 1.55; }
.form-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 34px 0 42px; }
.progress-step { position: relative; display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid #343a37; color: #6f7672; }
.progress-step::before { content: ""; position: absolute; top: -2px; left: 0; width: 0; height: 3px; background: var(--jade-bright); transition: width .3s ease; }
.progress-step.is-active { color: #d9dedb; }
.progress-step.is-active::before { width: 100%; }
.progress-step > span { color: inherit; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.progress-step small { color: inherit; font-size: 11px; }
.form-step { display: none; min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step.is-active { display: block; animation: riseIn .35s ease-out both; }
.form-step legend { width: 100%; margin: 0; padding: 0; color: #f0e9de; font: 400 31px/1.15 Georgia, "Times New Roman", serif; }
.form-step legend small { display: block; margin-bottom: 10px; color: var(--jade-bright); font: 700 10px/1 Arial, Helvetica, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-top: 30px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #d9d4cb; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.field small { color: #767c78; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #3d4340;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  padding: 12px 0 14px;
  transition: border-color .2s ease;
  color-scheme: dark;
}
.field textarea { resize: vertical; }
.field select option { background: #171a19; }
.field input::placeholder, .field textarea::placeholder { color: #656b68; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--jade-bright); }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 34px; }
.form-actions .button { min-width: 180px; border: 0; cursor: pointer; }
.form-actions .button:disabled { cursor: wait; opacity: .65; }
.button-back { border: 1px solid #454b48 !important; background: transparent; color: #c4cac6; }
.button-back:hover { border-color: #777f7b !important; color: white; }
.consent-field { display: flex; align-items: flex-start; gap: 12px; color: #aeb5b1; font-size: 12px; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--jade); }
.submission-status { min-height: 24px; margin-top: 16px; text-align: right; }
.submission-status p { margin: 0; color: #aeb5b1; font-size: 12px; line-height: 1.5; }
.submission-status .is-success { color: #7dd8b8; }
.submission-status .is-error { color: #ff9b8f; }
.form-note { display: block; margin-top: 20px; color: #717773; line-height: 1.45; }

.reserve-section {
  padding: 120px max(48px, calc((100vw - 1480px) / 2));
  background: var(--ink);
  color: var(--cream);
}
.reserve-heading { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 60px; }
.reserve-heading .eyebrow { align-self: start; margin-top: 12px; }
.reserve-heading h2 { margin: 0; font: 400 clamp(54px, 5.4vw, 86px)/.98 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.steps-list { margin: 80px 0 48px; padding: 0; list-style: none; border-top: 1px solid #383d3b; }
.steps-list li { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid #383d3b; }
.steps-list > li > span { color: var(--jade-bright); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.steps-list h3 { margin: 0 0 8px; font: 400 28px/1.15 Georgia, "Times New Roman", serif; }
.steps-list p { max-width: 640px; margin: 0; color: #aaaead; line-height: 1.6; }
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 110px max(48px, calc((100vw - 1480px) / 2));
  background: var(--cream);
  color: var(--ink);
}
.location-section h2 { margin: 0; font: 400 clamp(52px, 5vw, 80px)/.98 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.location-details { align-self: end; padding-bottom: 8px; }
.location-details p { margin: 0 0 24px; color: #4f5552; font-size: 20px; line-height: 1.6; }
.location-details a { color: var(--jade); font-weight: 700; }
.site-footer {
  min-height: 150px;
  padding: 44px max(48px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: #080a09;
}
.site-footer .brand { font-size: 32px; }
.site-footer p { margin: 0; color: #8d918e; font-size: 13px; text-align: center; }
.site-footer > a:last-child { justify-self: end; color: #c9cdc9; font-size: 13px; }

.gallery-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 7, 6, .92);
  backdrop-filter: blur(10px);
}
.gallery-dialog { width: min(1120px, 100%); max-height: calc(100svh - 56px); display: flex; flex-direction: column; }
.gallery-header, .gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gallery-header { padding-bottom: 18px; }
.gallery-header span { color: #82cbb6; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery-header h2 { margin: 5px 0 0; font: 400 34px/1 Georgia, "Times New Roman", serif; }
.gallery-header button {
  width: 48px;
  height: 48px;
  border: 1px solid #59615d;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 30px;
  font-weight: 200;
  cursor: pointer;
}
.gallery-stage { position: relative; flex: 1; min-height: 0; background: #0a0c0b; }
.gallery-stage img { display: block; width: 100%; height: min(68svh, 760px); object-fit: contain; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 10, 9, .78);
  color: white;
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery-arrow:hover, .gallery-header button:hover { background: var(--jade); border-color: var(--jade); }
.gallery-previous { left: 18px; }
.gallery-next { right: 18px; }
.gallery-footer { padding-top: 18px; color: #aab0ac; font-size: 13px; }
.gallery-footer a { color: #74cbb1; font-weight: 700; }

@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1.015); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

@media (max-width: 900px) {
  .site-header { width: min(100% - 40px, 1480px); height: 82px; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; position: relative; }
  .brand { font-size: 34px; }
  .site-header nav {
    display: none;
    position: absolute;
    z-index: 20;
    top: 72px;
    left: 0;
    right: 0;
    padding: 18px;
    border: 1px solid rgba(244,235,221,.2);
    background: rgba(7,10,9,.96);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    backdrop-filter: blur(14px);
  }
  .site-header.is-menu-open nav { display: flex; }
  .site-header nav a { padding: 13px 4px; border-bottom: 1px solid rgba(244,235,221,.12); }
  .site-header nav a:last-child { border-bottom: 0; }
  .site-header nav a::after { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(244,235,221,.38);
    background: rgba(7,10,9,.34);
    color: var(--cream);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .header-cta { padding: 11px 14px; font-size: 12px; }
  .hero-image { background-position: 54% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,7,7,.95) 0%, rgba(5,7,7,.68) 72%, rgba(5,7,7,.45) 100%), linear-gradient(0deg, rgba(5,7,7,.8), transparent 60%); }
  .hero-content { width: min(100% - 40px, 1480px); padding-top: 100px; }
  .hero h1 { font-size: clamp(58px, 17vw, 86px); }
  .spaces-section { padding: 88px 20px; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; }
  .section-intro > p { margin: 0; }
  .spaces-grid { grid-template-columns: 1fr; }
  .videos-section { padding: 88px 20px; }
  .videos-heading { grid-template-columns: 1fr; gap: 28px; }
  .videos-heading > p { margin: 0; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-wide { grid-column: auto; aspect-ratio: 16 / 10; }
  .pricing-section { padding: 88px 20px; }
  .pricing-section .price-table-heading { grid-template-columns: 1fr; gap: 28px; }
  .price-intro { max-width: none; }
  .information-section { padding: 88px 20px; }
  .information-heading { grid-template-columns: 1fr; gap: 24px; }
  .information-heading .eyebrow { margin: 0; }
  .info-panels { grid-template-columns: 1fr; margin-top: 48px; }
  .venue-guides { grid-template-columns: 1fr; }
  .rules-note { grid-template-columns: 1fr; gap: 16px; }
  .costs-header { width: min(100% - 40px, 1480px); height: 82px; }
  .costs-header nav { gap: 18px; font-size: 12px; }
  .costs-hero { grid-template-columns: 1fr; gap: 22px; padding: 88px 20px 60px; }
  .costs-hero .eyebrow { margin: 0; }
  .costs-content { padding: 0 20px 88px; }
  .price-table-heading { grid-template-columns: 1fr; gap: 24px; }
  .payment-rules { grid-template-columns: 1fr 1fr; }
  .payment-rules-home { grid-template-columns: 1fr; }
  .payment-rules .studio-rule { grid-template-columns: 56px 1fr; }
  .payment-rules .studio-rule p { grid-column: 2; }
  .costs-note { grid-template-columns: 1fr; gap: 24px; border-top: 1px solid #363c39; }
  .costs-note .button { width: 100%; min-width: 0; }
  .availability-section { grid-template-columns: 1fr; }
  .availability-visual { min-height: 620px; }
  .availability-form { width: min(100% - 40px, 740px); }
  .reserve-section { padding: 88px 20px; }
  .reserve-heading { grid-template-columns: 1fr; gap: 24px; }
  .location-section { grid-template-columns: 1fr; gap: 40px; padding: 88px 20px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; padding: 44px 20px; }
  .site-footer p { text-align: left; }
  .site-footer > a:last-child { justify-self: start; }
  .detail-close { top: 14px; right: 14px; padding: 10px 12px; font-size: 11px; }
}

@media (max-width: 560px) {
  .hero { min-height: 820px; }
  .hero-content { padding-top: 90px; }
  .site-header .brand { font-size: 30px; }
  .header-cta { padding: 9px 10px; font-size: 10px; }
  .menu-toggle { padding: 9px 10px; font-size: 10px; }
  .hero h1 { font-size: 58px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-facts { flex-direction: column; gap: 10px; }
  .hero-facts li + li::before { content: none; }
  .space-overlay { align-items: flex-start; flex-direction: column; gap: 8px; }
  .space-overlay strong { font-size: 31px; }
  .video-card { aspect-ratio: 9 / 12; }
  .video-card-wide { aspect-ratio: 16 / 11; }
  .price-table-wrap { overflow: visible; border: 0; background: transparent; }
  .price-table { min-width: 0; border-collapse: separate; }
  .price-table thead { display: none; }
  .price-table tbody { display: grid; gap: 14px; }
  .price-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid #363c39;
    background: #171b19;
  }
  .price-table th,
  .price-table td {
    display: block;
    min-width: 0;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid #343a37;
  }
  .price-table tbody th {
    grid-column: 1 / -1;
    padding: 20px 18px 8px;
    border-bottom: 0;
    font-size: 24px;
  }
  .price-table tbody td:first-of-type {
    grid-column: 1 / -1;
    padding-top: 4px;
    color: #c1c7c3;
  }
  .price-table tbody td:not(:first-of-type)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 9px;
    color: #8e9994;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .price-table tbody td:nth-last-child(2) { border-right: 1px solid #343a37; border-bottom: 0; }
  .price-table tbody td:last-child { border-bottom: 0; }
  .price-table tbody td strong { font-size: 17px; overflow-wrap: anywhere; }
  .price-table tbody td small { font-size: 9px; line-height: 1.35; }
  .rules-grid { grid-template-columns: 1fr; }
  .info-panel { padding: 28px 22px; }
  .venue-guide { padding: 28px 22px; }
  .venue-guide-list > div,
  .venue-guide-bullets > li { grid-template-columns: 1fr; gap: 8px; }
  .costs-header nav a:not(:last-child) { display: none; }
  .costs-hero h1 { font-size: 58px; }
  .price-table-heading h2 { font-size: 42px; }
  .payment-rules { grid-template-columns: 1fr; }
  .payment-rules .studio-rule { display: block; }
  .payment-rules .studio-rule h3 { margin: 36px 0 14px; }
  .payment-rules .studio-rule p { grid-column: auto; }
  .menu-button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-heading { flex-direction: column; gap: 14px; }
  .progress-step { align-items: flex-start; flex-direction: column; gap: 4px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .submission-status { text-align: left; }
  .steps-list li { grid-template-columns: 48px 1fr; }
  .gallery-modal { padding: 12px; }
  .gallery-dialog { max-height: calc(100svh - 24px); }
  .gallery-stage img { height: 62svh; }
  .gallery-arrow { width: 44px; height: 44px; }
  .gallery-previous { left: 8px; }
  .gallery-next { right: 8px; }
}

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