:root {
  --ink: #07090d;
  --panel: #0e1218;
  --paper: #f2efe8;
  --mist: #e8e2d6;
  --mist-soft: rgba(242, 239, 232, 0.72);
  --mist-faint: rgba(242, 239, 232, 0.42);
  --line: rgba(242, 239, 232, 0.1);
  --brand: #0077c8;
  --brand-soft: rgba(0, 119, 200, 0.16);
  --brand-line: rgba(0, 119, 200, 0.45);
  --glass: rgba(242, 239, 232, 0.06);
  --glass-border: rgba(242, 239, 232, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
/* Premium editorial: keep the arrow, no hand cursor */
a, button, [role="button"], .photo-card, .filter, .choice-button,
.location-card, .booking-nav, .lightbox-close, .lightbox-nav, .menu-button {
  cursor: default;
}
::selection { background: var(--brand); color: #fff; }

.site-shell { min-height: 100vh; background: var(--ink); overflow-x: hidden; }

/* Header: clean minimal, no floating pill */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.55), rgba(7, 9, 13, 0));
  transition: background 0.35s ease, height 0.35s ease;
}
.header.is-scrolled {
  height: 72px;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.brand-word {
  font-family: "Barlow Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-photo { color: var(--brand); }
.brand-grapharti { color: var(--paper); }
.brand-loc {
  margin-top: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.35);
}
.brand-footer .brand-mark { width: 40px; height: 40px; }
.brand-footer .brand-word { font-size: 24px; }
.brand-footer { margin-bottom: 18px; }

.nav { display: flex; align-items: center; gap: 42px; }
.nav a {
  color: var(--mist);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav a:hover,
.nav a.active { color: var(--brand); }
.menu-button {
  display: none;
  background: none;
  border: 0;
  color: white;
  width: 34px;
  height: 34px;
  position: relative;
  cursor: default;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-button span { top: 17px; }
.menu-button::before { top: 10px; }
.menu-button::after { top: 24px; }
.menu-button.open span { opacity: 0; }
.menu-button.open::before { transform: translateY(7px) rotate(45deg); }
.menu-button.open::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(20px);
  padding: 132px 36px 36px;
}
.mobile-nav.open { display: block; animation: fadeIn 0.26s ease both; }
.mobile-nav a {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.28;
  color: white;
  margin-bottom: 16px;
}
.mobile-nav a.active { color: var(--brand); }

/* Hero: same composition, brighter */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--panel);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: none;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero:hover .hero-media img { transform: scale(1.05); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0) 0%, rgba(7, 9, 13, 0.12) 55%, rgba(7, 9, 13, 0.62) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.18), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 82px;
  width: 100%;
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(242, 239, 232, 0.82);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-transform: none;
}
.hero-title {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  font-size: clamp(64px, 9.5vw, 138px);
  color: var(--paper);
}
.hero-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 232, 0.38);
}
.side-actions {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.vertical-link {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.62);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 0 10px 18px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.vertical-link:hover { color: var(--brand); border-color: var(--brand); }
.vertical-link.primary { color: var(--brand); border-color: var(--brand); }
.vertical-link.primary:hover { color: white; }
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateX(-50%) rotate(45deg);
  animation: drop 2s ease-in-out infinite;
}

/* Sections */
.section { padding: 108px 52px; position: relative; }
.section.narrow { padding-top: 92px; padding-bottom: 92px; }
.max { max-width: 1280px; margin: 0 auto; }
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--brand);
}
.eyebrow.center { justify-content: center; }
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-title {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.08;
  color: var(--paper);
}
.section-copy {
  color: var(--mist-soft);
  font-size: 17px;
  line-height: 1.8;
  max-width: 680px;
}
.feature-frame {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--panel);
}
.feature-frame.tall { height: 700px; }
.feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.8s ease;
}
.feature-frame:hover img { transform: scale(1.045); }
.line-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.line-note::before {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--brand);
}

.collections { overflow: hidden; }
.collection-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
}
.collection-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.95s ease;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 13, 0.72));
}
.collection-card:hover img {
  transform: scale(1.04);
}
.collection-card .card-copy span { display: none; }
.card-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 2;
}
.card-copy h3 { font-size: 30px; margin: 0 0 10px; }
.card-copy p {
  color: var(--mist-soft);
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}
.card-copy span {
  color: var(--brand);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.selected-grid { margin-top: 36px; }
.section-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section-row .section-title { margin-bottom: 0; }
.text-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.text-link:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.inline-link { color: var(--brand); }
.photo-card {
  --mx: 50%;
  --my: 40%;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  min-height: 360px;
  grid-column: span 4;
  cursor: default;
  border: 1px solid rgba(242, 239, 232, 0.12);
  outline: none;
  transition: border-color 0.35s ease;
}
.photo-card.size-wide { grid-column: span 8; min-height: 400px; }
.photo-card.size-tall { grid-column: span 4; min-height: 560px; }
.photo-card.is-portrait { min-height: 420px; }
.selected-grid .photo-card:nth-child(2),
.selected-grid .photo-card:nth-child(5) {
  transform: translateY(28px);
}
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(0, 119, 200, 0.28), transparent 55%);
  transition: opacity 0.45s ease;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 9, 13, 0.78));
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.photo-card:hover,
.photo-card:focus-visible {
  border-color: var(--brand-line);
}
.photo-card:hover::before,
.photo-card:focus-visible::before,
.photo-card:hover::after,
.photo-card:focus-visible::after { opacity: 1; }
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: none;
  transition: transform 0.75s ease;
}
.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.045);
}
.photo-card .caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  padding: 0;
  background: none;
  border: 0;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.photo-card:hover .caption,
.photo-card:focus-visible .caption {
  transform: translateY(0);
  opacity: 1;
}
.caption h4 { margin: 0 0 6px; font-size: 18px; }
.caption p {
  margin: 0;
  color: var(--brand);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: none;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 9, 13, 0.15), rgba(7, 9, 13, 0.58));
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.cta h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  margin: 0 0 20px;
}
.cta p {
  color: rgba(242, 239, 232, 0.8);
  line-height: 1.8;
  margin: 0 auto 32px;
  max-width: 560px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 0 42px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.button:hover { background: var(--brand-soft); }
.button.fill {
  background: var(--brand);
  color: #fff;
}
.button.fill:hover { background: rgba(0, 119, 200, 0.9); color: #fff; }

.page-hero {
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 140px 52px 72px;
  background: var(--panel);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.58));
}
.page-hero .max { position: relative; z-index: 2; width: 100%; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 34px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}
.filter {
  border: 0;
  background: none;
  color: rgba(242, 239, 232, 0.45);
  padding: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: default;
  border-radius: 0;
  position: relative;
  transition: color 0.25s ease;
}
.filter:hover { color: #fff; }
.filter.active { color: var(--brand); }
.filter.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brand);
}
.story-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 60px;
}
.story-card {
  border-top: 1px solid var(--brand-line);
  padding-top: 28px;
}
.story-card b {
  display: block;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 18px;
}
.story-card h3 { margin: 0 0 12px; font-size: 24px; }
.story-card p { margin: 0; color: var(--mist-soft); line-height: 1.7; }

.footer {
  background: #14161a;
  padding: 36px 52px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-slim .brand-footer { margin-bottom: 0; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: rgba(242, 239, 232, 0.4);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-meta > a:hover { color: var(--brand); }
.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(242, 239, 232, 0.45);
  transition: color 0.25s ease, transform 0.25s ease;
}
.social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social:hover {
  color: #fff;
  transform: translateY(-1px);
}

.sessions .section-copy { margin-bottom: 40px; }
.section-copy-tight { margin: -6px 0 36px; }
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.session-item {
  padding: 32px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}
.session-item + .session-item {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.session-item.is-featured h3 { color: var(--brand); }
.session-note {
  display: block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.session-item h3 {
  margin: 0 0 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}
.session-item p {
  margin: 0 0 18px;
  color: var(--mist-soft);
  line-height: 1.7;
  font-size: 15px;
  max-width: 300px;
}
.session-detail {
  color: rgba(242, 239, 232, 0.45);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.faq-desk { border-top: 1px solid var(--line); }
.faq-desk-grid { align-items: start; gap: 64px; }
.faq-list { margin-top: 28px; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: default;
  padding: 20px 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  margin: 0 0 22px;
  color: var(--mist-soft);
  line-height: 1.75;
  max-width: 520px;
  font-size: 15px;
}
.desk-block {
  padding: 36px 0 0;
  border-top: 1px solid var(--brand-line);
}
.desk-hours {
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.desk-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--mist-soft);
  line-height: 1.9;
  font-size: 15px;
}
.desk-points li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--brand);
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.booking-done[hidden],
.booking-live[hidden] { display: none !important; }
.booking-done { padding-top: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Booking */
.book-intro { padding: 150px 52px 42px; background: var(--ink); }
.booking-flow { padding-top: 28px; }
.booking-max { max-width: 960px; }
.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  color: rgba(242, 239, 232, 0.36);
  text-align: left;
  padding: 0;
  cursor: default;
}
.step-dot span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.45);
}
.step-dot em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.step-dot::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}
.step-dot.active span,
.step-dot.complete span { color: var(--brand); }
.step-dot.active,
.step-dot.complete { color: rgba(255, 255, 255, 0.78); }
.step-dot.complete::after { background: var(--brand); }
.booking-panels { min-height: 500px; }
.booking-step { display: none; animation: stepIn 0.36s ease both; }
.booking-step.active { display: block; }
.booking-step h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  margin: 0 0 10px;
}
.booking-step > p {
  color: rgba(242, 239, 232, 0.5);
  margin: 0 0 32px;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.location-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--panel);
  color: white;
  text-align: left;
  padding: 0;
  cursor: default;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.7s ease;
}
.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 13, 0.78));
}
.location-card:hover,
.location-card.selected { border-color: var(--brand); }
.location-card:hover img {
  transform: scale(1.05);
}
.location-card strong,
.location-card small {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 2;
}
.location-card strong {
  bottom: 48px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}
.location-card small {
  bottom: 24px;
  color: rgba(242, 239, 232, 0.62);
}
.choice-check {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  color: var(--brand);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.location-card.selected .choice-check { opacity: 1; }
.field-label {
  display: block;
  margin: 26px 0 12px;
  color: rgba(242, 239, 232, 0.55);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.choice-button,
.book-input,
.booking-form input,
.booking-form textarea {
  background: transparent;
  color: rgba(242, 239, 232, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  text-align: left;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.choice-button { cursor: default; }
.choice-button:hover,
.choice-button.selected,
.book-input:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  color: white;
  border-color: var(--brand);
  background: rgba(0, 119, 200, 0.1);
}
.time-choice { min-height: 86px; }
.time-choice strong,
.time-choice small { display: block; }
.time-choice small { margin-top: 8px; color: rgba(242, 239, 232, 0.45); }
.booking-form { display: grid; gap: 14px; }
.booking-form textarea { min-height: 140px; resize: vertical; }
.booking-form ::placeholder { color: rgba(255, 255, 255, 0.35); }
.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 24px;
}
.booking-nav {
  border: 0;
  cursor: default;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: color 0.25s ease, background 0.25s ease;
}
.booking-nav.ghost {
  background: transparent;
  color: rgba(242, 239, 232, 0.55);
}
.booking-nav.ghost:hover { color: white; }
.booking-nav.fill {
  background: var(--brand);
  color: #fff;
  border-radius: 0;
}
.booking-nav.fill:hover { background: rgba(0, 119, 200, 0.9); }
.booking-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--brand);
  font-size: 13px;
}

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 72px 24px 40px;
  background: rgba(7, 9, 13, 0.92);
}
.lightbox-figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.lightbox-figure img {
  max-height: calc(100vh - 150px);
  max-width: min(1080px, 90vw);
  width: auto;
  object-fit: contain;
}
.lightbox-figure figcaption {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-soft);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--mist);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: default;
}
.lightbox-close:hover { color: #fff; }
.lightbox-nav {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  width: 48px;
  height: 48px;
  font-size: 36px;
  cursor: default;
}
.lightbox-nav:hover { color: #fff; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drop {
  0%, 100% { transform: translate(-50%, -3px) rotate(45deg); opacity: 0.25; }
  50% { transform: translate(-50%, 7px) rotate(45deg); opacity: 0.8; }
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .photo-card img,
  .collection-card img,
  .reveal { transition: none !important; animation: none !important; }
  .hero:hover .hero-media img { transform: scale(1.02); }
}

@media (max-width: 960px) {
  .header { height: 76px; padding: 0 20px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-word { font-size: 22px; }
  .brand-loc { font-size: 8px; letter-spacing: 0.18em; }
  .nav { display: none; }
  .menu-button { display: block; }
  .hero-content { padding: 0 24px 76px; }
  .side-actions { display: none; }
  .hero-title { font-size: clamp(54px, 17vw, 96px); }
  .hero-sub { font-size: 12px; letter-spacing: 0.1em; }
  .section { padding-left: 24px; padding-right: 24px; }
  .grid-two,
  .footer-grid,
  .story-list { grid-template-columns: 1fr; gap: 42px; }
  .collection-row { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .selected-grid .photo-card:nth-child(2),
  .selected-grid .photo-card:nth-child(5) {
    transform: none;
  }
  .photo-card,
  .photo-card.size-wide,
  .photo-card.size-tall {
    grid-column: span 1;
    min-height: 300px;
  }
  .collection-card { min-height: 420px; }
  .session-grid { grid-template-columns: 1fr; }
  .session-item,
  .session-item + .session-item {
    padding: 28px 0;
    border-left: 0;
  }
  .faq-desk-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature-frame,
  .feature-frame.tall { height: 460px; }
  .page-hero { padding: 128px 24px 58px; }
  .footer { padding-left: 24px; padding-right: 24px; }
  .footer-slim { flex-direction: column; align-items: flex-start; }
  .book-intro { padding: 124px 24px 34px; }
  .stepper,
  .location-grid,
  .choice-grid { grid-template-columns: 1fr; }
  .step-dot::after { display: none; }
  .lightbox {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }
  .lightbox-nav {
    position: absolute;
    bottom: 22px;
  }
  .lightbox-nav.prev { left: 20px; }
  .lightbox-nav.next { right: 20px; }
}
