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

:root {
  --void: #0c0b0a;
  --ink: #161412;
  --fog: #ece6de;
  --fog-dim: rgba(236, 230, 222, 0.62);
  --silk: #f7f2ea;
  --rose: #c9898a;
  --rose-hot: #d9a0a0;
  --line: rgba(236, 230, 222, 0.14);
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  font-family: var(--sans);
  background: var(--void);
  color: var(--fog);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

body.lock {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--silk);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
}

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

.site-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.1rem clamp(1.1rem, 3vw, 2rem);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}

.site-bar > * {
  pointer-events: auto;
}

.menu-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  padding: 0.15rem 0.1rem;
}

.menu-btn-wave {
  width: 2.4rem;
  height: 0.4rem;
  opacity: 0.7;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.menu-btn:hover .menu-btn-wave {
  opacity: 1;
  transform: translateY(1px);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 137, 138, 0.08), transparent 55%),
    var(--ink);
  display: grid;
  align-content: stretch;
  padding: 0;
  transform: translateY(-105%);
  transition: transform 0.5s var(--ease);
}

.drawer.open {
  transform: none;
}

.drawer-inner {
  width: min(420px, 100%);
  margin: 0 auto;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem) 2rem;
}

.drawer-close {
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fog-dim);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: var(--silk);
}

.drawer-links {
  display: grid;
  align-content: center;
  gap: 0;
}

.drawer-links a {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--fog);
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}

.drawer-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.drawer-links a:hover {
  color: var(--rose-hot);
  padding-left: 0.35rem;
}

.drawer-cta {
  justify-self: stretch;
  text-align: center;
}

.drawer-meta {
  color: var(--fog-dim);
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  padding-top: 0.25rem;
}

.drawer-meta a {
  color: var(--fog);
  transition: color 0.2s;
}

.drawer-meta a:hover {
  color: var(--rose-hot);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: var(--rose);
  color: var(--void);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s;
}

.pill:hover {
  transform: translateY(-2px);
  background: var(--rose-hot);
}

.pill-light {
  background: var(--silk);
}

.text-link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  color: var(--fog-dim);
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--silk);
}

.intro {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  --intro-dark: 0;
}

.intro-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  background: #e4e0d7;
}

.intro-media picture,
.intro-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
}

.intro-media img {
  object-fit: cover !important;
  object-position: center center;
  transform: none;
}

.intro-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.intro-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255, 250, 244, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 55%, rgba(154, 115, 92, 0.06) 100%);
}

.intro-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, rgba(138, 98, 76, 0.4) 0.65px, transparent 0.75px);
  background-size: 32px 32px;
  background-position: center;
  mask-image: radial-gradient(ellipse 62% 56% at 50% 42%, transparent 50%, #000 92%);
  -webkit-mask-image: radial-gradient(ellipse 62% 56% at 50% 42%, transparent 50%, #000 92%);
}

.intro-calm {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  animation: calm-in 1.4s var(--ease) 0.2s forwards;
}

@keyframes calm-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}

.intro-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 11, 10, 0) 0%,
    rgba(12, 11, 10, 0) 72%,
    rgba(12, 11, 10, 0.22) 88%,
    #0c0b0a 100%
  );
}

.intro-shade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(
    180deg,
    rgba(12, 11, 10, 0) 0%,
    rgba(12, 11, 10, 0.4) 55%,
    #0c0b0a 100%
  );
}

.intro-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 62%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15rem;
  padding: 0 clamp(1.1rem, 4vw, 3.5rem) clamp(1.5rem, 4.5vh, 2.75rem);
  max-width: 42rem;
  opacity: 0;
  animation: fade-up 1.1s var(--ease) 0.15s forwards;
}

.intro-line {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #c47878;
  margin: 0.35rem 0 0.55rem;
  padding-top: 0;
  font-weight: 500;
}

.intro-lead {
  color: var(--fog-dim);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  max-width: 30rem;
  margin: 0 0 1.25rem;
  font-weight: 400;
}

@keyframes fade-up {
  to {
    opacity: 1;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.story {
  padding: clamp(4.5rem, 12vh, 8rem) clamp(1.1rem, 4vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.story-kicker {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--rose);
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-variant-numeric: oldstyle-nums;
}

.story-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  max-width: 14ch;
}

.story-title span {
  font-style: italic;
  color: var(--rose-hot);
}

.story-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  max-width: 38rem;
}

.story-split > p {
  color: var(--fog-dim);
  font-size: 1.08rem;
  max-width: 38ch;
  padding-bottom: 0.5rem;
}

.film {
  padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(3rem, 7vh, 4.5rem);
  border-top: 1px solid var(--line);
}

.film-head {
  padding: 0 clamp(1.1rem, 4vw, 3.5rem) 1.8rem;
  max-width: 1200px;
}

.film-head h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.film-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem clamp(1.1rem, 4vw, 3.5rem) 0.5rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1.1rem, 4vw, 3.5rem);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
}

.film-rail::-webkit-scrollbar {
  display: none;
}

.film-rail::after {
  content: "";
  flex: 0 0 clamp(1.1rem, 4vw, 3.5rem);
}

.film-shot {
  flex: 0 0 auto;
  width: min(240px, 72vw);
  scroll-snap-align: start;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.film-shot img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.15rem;
  background: #2a2623;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.film-shot:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.film-shot figcaption {
  position: static;
  left: auto;
  bottom: auto;
  right: auto;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  color: var(--fog-dim);
  text-shadow: none;
  padding: 0 0.15rem;
}

.film-hint {
  margin: 1.15rem clamp(1.1rem, 4vw, 3.5rem) 0;
  color: var(--fog-dim);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drinks {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.drinks-head {
  max-width: 720px;
  margin: 0 auto 2.8rem;
  display: grid;
  gap: 0.65rem;
  text-align: center;
  justify-items: center;
}

.drinks-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.drinks-head h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.drinks-head p {
  color: var(--fog-dim);
  max-width: 36ch;
}

.bar-menu {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.8rem) clamp(2.5rem, 5vw, 4.5rem);
}

@media (min-width: 760px) {
  .bar-menu {
    grid-template-columns: 1fr 1fr;
  }

  .bar-group-wide {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

.bar-group h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  color: var(--silk);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.bar-group ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bar-group li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.bar-name {
  flex: 0 1 auto;
  color: var(--fog);
  max-width: 70%;
}

.bar-dots {
  flex: 1 1 auto;
  min-width: 1.25rem;
  height: 0;
  margin-bottom: 0.28em;
  border-bottom: 1px dotted rgba(236, 230, 222, 0.28);
}

.bar-price {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--fog-dim);
  font-size: 0.95em;
}

@media (max-width: 640px) {
  .intro-mesh {
    background-size: 22px 22px;
    opacity: 0.14;
  }

  .intro-media img {
    object-position: center 42%;
    transform: none;
  }

  .intro-copy {
    top: 58%;
    padding-bottom: clamp(1.25rem, 4vh, 2.25rem);
  }

  .intro-line {
    color: #c06f6f;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-calm {
    animation: none !important;
    opacity: 0.95;
  }
}

.menu {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.menu-head {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  display: grid;
  gap: 0.8rem;
}

.menu-head h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.menu-head p {
  color: var(--fog-dim);
  max-width: 40ch;
}

.menu-board {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
}

.menu-group-label {
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 0.55rem;
  padding-left: 0.1rem;
}

.menu-panel {
  border-top: 1px solid var(--line);
}

.menu-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-panel-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.05rem 0.1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  min-height: 52px;
  transition: color 0.2s;
}

.menu-panel-head:hover {
  color: var(--rose-hot);
}

.menu-panel-title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.menu-panel-count {
  font-family: var(--display);
  font-variant-numeric: oldstyle-nums;
  color: var(--fog-dim);
  font-size: 1rem;
}

.menu-panel-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease);
  opacity: 0.7;
  margin-right: 0.2rem;
}

.menu-panel.is-open .menu-panel-chevron {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.menu-panel-body {
  padding: 0 0 0.85rem;
}

.menu-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 0.85rem 0.1rem;
  border: 0;
  border-top: 1px solid rgba(236, 230, 222, 0.08);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-row:hover {
  color: var(--rose-hot);
}

.menu-row-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.menu-row-title {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.menu-row-meta {
  color: var(--fog-dim);
  font-size: 0.78rem;
}

.menu-cost {
  font-family: var(--display);
  font-variant-numeric: oldstyle-nums;
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--silk);
  padding-top: 0.05rem;
}

.menu-row:hover .menu-cost {
  color: var(--rose-hot);
}

.voices {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.1rem, 4vw, 3.5rem);
  background:
    linear-gradient(90deg, #0c0b0a 0%, transparent 18%, transparent 82%, #0c0b0a 100%),
    linear-gradient(180deg, #0c0b0a 0%, transparent 22%, transparent 78%, #0c0b0a 100%),
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201, 137, 138, 0.14), transparent 62%),
    var(--ink);
  text-align: center;
}

.news {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.news[hidden] {
  display: none !important;
}

.news-inner {
  max-width: 780px;
  margin: 0 auto;
}

.news-head {
  margin-bottom: 2rem;
}

.news-head h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.news-item:last-child {
  border-bottom: 1px solid var(--line);
}

.news-item time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.news-item h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.news-item p {
  color: var(--fog-dim);
  max-width: 42ch;
}

.voices-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
  font-weight: 600;
}

.voices-stage {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: clamp(14rem, 38vw, 18rem) auto;
  gap: 1.6rem;
  align-items: stretch;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.voices-stage.is-dragging {
  cursor: grabbing;
}

.voice {
  margin: 0;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.voice p {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  transition: opacity 0.25s ease;
  max-width: 28ch;
}

.voice.is-fading p {
  opacity: 0.35;
}

.voice footer {
  margin-top: 1.4rem;
  color: var(--fog-dim);
  font-size: 0.9rem;
  font-style: normal;
}

.voices-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  align-self: center;
}

.voices-prev,
.voices-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--fog);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.voices-prev:hover,
.voices-next:hover {
  border-color: var(--rose);
  color: var(--silk);
}

.voices-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.voices-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
}

.voices-dots button.on {
  background: var(--rose);
}

.place {
  border-top: 1px solid var(--line);
}

.place-copy {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.1rem, 4vw, 3.5rem);
  display: grid;
  align-content: center;
  gap: 1rem;
  max-width: 720px;
}

.place-copy h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
}

.place-addr {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--rose-hot);
  font-variant-numeric: oldstyle-nums;
}

.place-copy ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--fog-dim);
  margin: 0.5rem 0 0.8rem;
}

.place-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.book {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.1rem, 4vw, 3.5rem);
}

.book-cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.book-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.book-cta p {
  color: var(--fog-dim);
  max-width: 36ch;
}

.masters {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 10vh, 7rem) 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(201, 137, 138, 0.06), transparent 55%),
    var(--void);
}

.masters-head {
  max-width: 640px;
  margin: 0 clamp(1.1rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
}

.masters-head h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 0.7rem;
}

.masters-head p {
  color: var(--fog-dim);
  max-width: 32ch;
}

.masters-list {
  display: grid;
  gap: 0;
}

.master-row {
  display: grid;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas: "photo side";
}

.master-row.is-right {
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
  grid-template-areas: "side photo";
}

.master-row:last-child {
  border-bottom: 1px solid var(--line);
}

.master-photo {
  grid-area: photo;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 30%, #2a2420, #12100e 70%);
  border-radius: 1.25rem;
  position: relative;
  justify-self: start;
}

.master-row.is-right .master-photo {
  justify-self: end;
}

.master-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 11, 10, 0.28));
  mix-blend-mode: multiply;
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) contrast(1.05) saturate(0.75);
  transition: transform 0.7s var(--ease), filter 0.45s ease;
}

.master-row:hover .master-photo img {
  transform: scale(1.035);
  filter: grayscale(0.1) contrast(1.04) saturate(0.9);
}

.master-photo.is-empty {
  display: grid;
  place-items: center;
}

.master-photo.is-empty::after {
  display: none;
}

.master-monogram {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  color: rgba(201, 137, 138, 0.45);
  line-height: 1;
}

.master-side {
  grid-area: side;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0.55rem;
  align-content: start;
  padding-block: 0.4rem;
  min-height: 100%;
}

.master-index {
  font-family: var(--display);
  font-variant-numeric: oldstyle-nums;
  font-size: 0.95rem;
  color: var(--fog-dim);
  opacity: 0.7;
}

.master-role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.master-row h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--silk);
  margin-bottom: 0.4rem;
}

.master-about {
  margin-top: 0.6rem;
  color: var(--fog-dim);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  max-width: 38ch;
  align-self: stretch;
  border-left: 1px solid rgba(201, 137, 138, 0.4);
  padding-left: 1rem;
  padding-top: 0.15rem;
}

.master-row.is-right .master-about {
  border-left: 0;
  border-right: 1px solid rgba(201, 137, 138, 0.4);
  padding-left: 0;
  padding-right: 1rem;
}

.master-about.is-placeholder {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  opacity: 0.55;
  color: var(--fog);
}

.foot {
  padding: 1.5rem clamp(1.1rem, 4vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--line);
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--fog-dim);
  font-size: 0.88rem;
}

.foot-row strong {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--silk);
  font-weight: 500;
}

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: flex-end;
}

.foot-link {
  color: var(--fog-dim);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(236, 230, 222, 0.28);
  transition: color 0.25s var(--ease);
}

.foot-link:hover {
  color: var(--silk);
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 137, 138, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(201, 137, 138, 0.08), transparent 50%),
    var(--void);
}

.legal-page {
  width: min(42rem, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0 3.5rem;
}

.legal-header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--fog-dim);
  font-size: 0.9rem;
  transition: color 0.25s var(--ease);
}

.legal-back:hover {
  color: var(--silk);
}

.legal-kicker {
  margin-bottom: 0.55rem;
  color: var(--rose-hot);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-header h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--silk);
}

.legal-lead {
  margin-top: 0.75rem;
  color: var(--fog-dim);
  font-size: 1rem;
}

.legal-content section + section {
  margin-top: 1.75rem;
}

.legal-content h2 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--silk);
}

.legal-content p,
.legal-content li {
  color: var(--fog-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-content p + p,
.legal-content p + ul {
  margin-top: 0.65rem;
}

.legal-content ul {
  margin: 0.55rem 0 0 1.1rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--rose-hot);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-footer {
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.legal-footer a {
  color: var(--fog-dim);
  font-size: 0.92rem;
  transition: color 0.25s var(--ease);
}

.legal-footer a:hover {
  color: var(--silk);
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sheet.open {
  opacity: 1;
  pointer-events: auto;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.sheet-panel {
  position: relative;
  width: min(440px, 100%);
  max-height: min(88vh, 680px);
  overflow: auto;
  color: var(--fog);
  border-radius: 1.35rem;
  border: 1px solid rgba(236, 230, 222, 0.1);
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(42, 36, 32, 0.95), transparent 70%),
    linear-gradient(165deg, #1c1916 0%, #141210 48%, #100e0c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 64px rgba(0, 0, 0, 0.55);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}

.sheet.open .sheet-panel {
  transform: none;
}

.sheet-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(236, 230, 222, 0.14);
  border-radius: 50%;
  background: rgba(12, 11, 10, 0.45);
  color: var(--fog);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.sheet-x:hover {
  border-color: var(--rose);
  color: var(--silk);
}

.sheet-media {
  min-height: 0;
  background: #171411;
  border-radius: 1.35rem 1.35rem 0 0;
  overflow: hidden;
}

.sheet-media[hidden] {
  display: none !important;
}

.sheet-media img,
.sheet-ph {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sheet-ph {
  display: grid;
  place-items: center;
  color: var(--fog-dim);
  padding: 1rem;
  text-align: center;
}

.sheet-body {
  padding: 1.5rem 1.45rem 1.7rem;
  display: grid;
  gap: 0.55rem;
}

.sheet-cat {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.sheet-body h3 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--silk);
}

.sheet-price {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  font-variant-numeric: oldstyle-nums;
  color: var(--rose-hot);
}

.sheet-desc,
.sheet-time {
  color: var(--fog-dim);
}

.sheet-body .pill {
  margin-top: 0.75rem;
  justify-self: start;
}

@media (max-width: 860px) {
  .story-split {
    grid-template-columns: 1fr;
  }

  .film-shot {
    width: min(200px, 68vw);
  }
}

@media (max-width: 640px) {
  .intro-shade,
  .intro-shade::after {
    background: linear-gradient(
      180deg,
      rgba(12, 11, 10, 0) 0%,
      rgba(12, 11, 10, 0) 68%,
      rgba(12, 11, 10, 0.28) 86%,
      #0c0b0a 100%
    );
  }

  .intro-shade::after {
    height: 24%;
  }

  .master-row,
  .master-row.is-right {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "side";
    gap: 1.15rem;
    padding-block: 1.6rem;
  }

  .master-photo,
  .master-row.is-right .master-photo {
    justify-self: start;
    max-width: 320px;
    max-height: 380px;
  }

  .master-row.is-right .master-about {
    border-right: 0;
    border-left: 1px solid rgba(201, 137, 138, 0.4);
    padding-right: 0;
    padding-left: 1rem;
  }

  .film-shot {
    width: min(210px, 70vw);
    scroll-snap-align: center;
  }

  .film-rail {
    scroll-padding-inline: 1.1rem;
    padding-inline: 1.1rem;
  }
}

@media (max-width: 520px) {
  .site-bar {
    mix-blend-mode: difference;
    background: transparent;
    color: #fff;
  }

  .menu-row {
    gap: 0.75rem;
  }

  .menu-row-title {
    font-size: 0.92rem;
  }

  .menu-cost {
    font-size: 0.98rem;
  }
}
