/* ==========================================================================
   The Symphony Hotel — symphonyhotel.com
   A historic stay in Over-the-Rhine, Cincinnati. Est. 1871.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* palette — drawn from the building: burgundy logo, brass, antique cream */
  --cream: #f6f0e3;
  --cream-soft: #efe6d2;
  --paper: #faf6ec;
  --ink: #261b17;
  --ink-soft: #5d4d42;
  --wine: #5a1f2c;
  --wine-deep: #401520;
  --wine-ink: #2c0e16;
  --brass: #ab843f;
  --brass-bright: #d3aa5e;
  --brass-soft: #c49c52;
  --line: rgba(38, 27, 23, 0.16);
  --line-strong: rgba(38, 27, 23, 0.32);
  --dark: #1d1114;
  --dark-2: #271519;
  --cream-on-dark: #f1e8d6;
  --muted-on-dark: rgba(241, 232, 214, 0.68);
  --line-on-dark: rgba(241, 232, 214, 0.18);

  /* type */
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* rhythm */
  --space-section: clamp(5rem, 11vw, 9.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 78rem;
  --max-wide: 90rem;
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--wine);
  color: var(--cream);
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(2.9rem, 7.5vw, 6rem);
}

.display-lg {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.display-md {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.display-sm {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}

.lede {
  font-size: clamp(1.125rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 38em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}

.muted {
  color: var(--ink-soft);
}

em.accent {
  font-style: italic;
  color: var(--wine);
}

.on-dark em.accent {
  color: var(--brass-bright);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--max-wide);
}

.section {
  padding-block: var(--space-section);
}

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

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head .lede {
  margin-top: 1.25rem;
}

.section-head--center .lede {
  margin-inline: auto;
}

.on-dark {
  background: var(--dark);
  color: var(--cream-on-dark);
}

.on-dark .lede,
.on-dark .muted {
  color: var(--muted-on-dark);
}

.on-wine {
  background: var(--wine-deep);
  color: var(--cream-on-dark);
}

.bg-soft {
  background: var(--cream-soft);
}

/* ---------- Staff divider (five-line musical stave) ---------- */
.staff-divider {
  position: relative;
  height: 25px;
  max-width: 17rem;
  margin: clamp(2.25rem, 5vw, 3.5rem) auto;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line-strong) 0,
    var(--line-strong) 1px,
    transparent 1px,
    transparent 6px
  );
  background-size: 100% 25px;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.staff-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  padding-inline: 0.9rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brass);
  background: var(--cream);
}

.on-dark .staff-divider span {
  background: var(--dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1em 2.1em;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--wine);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--wine-deep);
}

.btn--brass {
  background: var(--brass);
  color: var(--wine-ink);
}

.btn--brass:hover {
  background: var(--brass-bright);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--ghost-light {
  border-color: rgba(246, 240, 227, 0.45);
  color: var(--cream);
  background: transparent;
}

.btn--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(246, 240, 227, 0.08);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wine);
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--brass);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover {
  gap: 0.9em;
  color: var(--wine-deep);
}

.on-dark .text-link {
  color: var(--brass-bright);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--wine-deep);
  color: var(--cream-on-dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem var(--gutter);
}

.announce a {
  color: var(--brass-bright);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 240, 227, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
}

/* backdrop-filter turns the header into the containing block for the
   fixed mobile nav, so drop it while the menu is open */
.header.menu-open {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: var(--cream);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 1rem var(--gutter);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex: none;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand__name .amp {
  color: var(--brass);
}

.brand__tag {
  margin-top: 0.45rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.4rem);
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.4rem;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link[aria-current="page"] {
  color: var(--wine);
}

.nav .btn {
  padding: 0.8em 1.6em;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 56rem) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.05rem;
    letter-spacing: 0.26em;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(34rem, 92svh, 60rem);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

/* heroes that host the RK search widget can't clip overflow, or they'd cut
   off the widget's calendar dropdown. They let it escape (and raise the hero
   above the following sections so it paints on top); the .hero__bg wrapper
   clips the parallax background image instead. */
.hero--search {
  overflow: visible;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero--short {
  min-height: clamp(26rem, 62svh, 40rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(29, 17, 20, 0.42) 0%,
    rgba(29, 17, 20, 0.18) 40%,
    rgba(29, 17, 20, 0.78) 100%
  );
}

.hero__inner {
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
}

.hero .eyebrow {
  color: var(--brass-bright);
}

.hero .eyebrow::before {
  background: var(--brass-bright);
}

.hero__title {
  max-width: 13em;
  text-shadow: 0 2px 30px rgba(29, 17, 20, 0.35);
}

.hero__sub {
  max-width: 36em;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(246, 240, 227, 0.88);
}

.hero .btn-row {
  margin-top: 2.25rem;
}

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.75);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 3.25rem;
  background: linear-gradient(to bottom, var(--brass-bright), transparent);
  animation: scroll-pulse 2.4s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.55);
    transform-origin: top;
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 48rem) {
  .hero__scroll {
    display: none;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--wine-deep);
  color: var(--brass-bright);
  border-block: 1px solid rgba(211, 170, 94, 0.25);
  overflow: hidden;
  padding-block: 0.95rem;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 36s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__track .note {
  color: rgba(211, 170, 94, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

/* ---------- Editorial split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split__media {
  grid-column: 1 / 8;
}

.split__body {
  grid-column: 8 / 13;
}

.split--reverse .split__media {
  grid-column: 6 / 13;
  order: 2;
}

.split--reverse .split__body {
  grid-column: 1 / 6;
  order: 1;
}

.split__body > * + * {
  margin-top: 1.4rem;
}

.split__body .btn-row,
.split__body .text-link {
  margin-top: 2.2rem;
}

@media (max-width: 56rem) {
  .split__media,
  .split__body,
  .split--reverse .split__media,
  .split--reverse .split__body {
    grid-column: 1 / -1;
    order: initial;
  }
}

/* framed image treatment — echoes the antique mirrors in the rooms */
.frame {
  position: relative;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(246, 240, 227, 0.5);
  border-radius: 2px;
  pointer-events: none;
}

.frame--tall img {
  aspect-ratio: 3 / 4;
}

.frame--wide img {
  aspect-ratio: 16 / 10;
}

.frame--square img {
  aspect-ratio: 1 / 1;
}

.frame__caption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* layered duo of images */
.duo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.duo__main {
  grid-column: 1 / 10;
  grid-row: 1;
}

.duo__inset {
  grid-column: 7 / 13;
  grid-row: 1;
  align-self: end;
  margin-bottom: -14%;
  box-shadow: 0 30px 60px rgba(38, 27, 23, 0.28);
}

@media (max-width: 56rem) {
  .duo__inset {
    margin-bottom: -8%;
  }
}

/* ---------- Stat band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.stat__value {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--wine);
  line-height: 1;
}

.stat__label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Room cards ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 60rem) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-inline: auto;
  }
}

.room-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.room-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.room-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.room-card:hover .room-card__media img {
  transform: scale(1.05);
}

.room-card__media::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(246, 240, 227, 0.45);
  border-radius: 2px;
  pointer-events: none;
}

.room-card__years {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 1;
  padding: 0.35em 0.9em;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: rgba(29, 17, 20, 0.62);
  color: var(--brass-bright);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.room-card__body {
  padding-top: 1.4rem;
}

.room-card__title {
  font-size: 1.45rem;
  transition: color 0.3s var(--ease);
}

.room-card:hover .room-card__title {
  color: var(--wine);
}

.room-card__desc {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.room-card__meta {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Full room listing (rooms page) ---------- */
.room-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.room-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.room-row__media {
  grid-column: 1 / 8;
}

.room-row__body {
  grid-column: 8 / 13;
}

.room-row:nth-child(even) .room-row__media {
  grid-column: 6 / 13;
  order: 2;
}

.room-row:nth-child(even) .room-row__body {
  grid-column: 1 / 6;
  order: 1;
}

@media (max-width: 56rem) {
  .room-row__media,
  .room-row__body,
  .room-row:nth-child(even) .room-row__media,
  .room-row:nth-child(even) .room-row__body {
    grid-column: 1 / -1;
    order: initial;
  }
}

.room-row__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brass);
}

.room-row__title {
  margin-top: 0.5rem;
}

.room-row__composer {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.room-row__desc {
  margin-top: 1.2rem;
  color: var(--ink-soft);
}

.room-row__features {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-row__features li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
}

.room-row .btn-row {
  margin-top: 1.9rem;
}

/* ---------- Hours table ---------- */
.hours {
  width: 100%;
  max-width: 26rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-on-dark);
  font-size: 0.95rem;
}

.hours--light li {
  border-bottom-color: var(--line);
}

.hours .day {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hours .time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}

.hours .closed .time {
  opacity: 0.45;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.gallery .frame:nth-child(1) {
  grid-column: 1 / 6;
}

.gallery .frame:nth-child(2) {
  grid-column: 6 / 10;
}

.gallery .frame:nth-child(3) {
  grid-column: 10 / 13;
}

.gallery .frame:nth-child(4) {
  grid-column: 1 / 4;
}

.gallery .frame:nth-child(5) {
  grid-column: 4 / 9;
}

.gallery .frame:nth-child(6) {
  grid-column: 9 / 13;
}

.gallery .frame img {
  aspect-ratio: auto;
  height: 100%;
}

.gallery .frame {
  min-height: clamp(12rem, 28vw, 22rem);
}

.gallery .frame img {
  position: absolute;
  inset: 0;
}

@media (max-width: 48rem) {
  .gallery .frame {
    grid-column: 1 / -1 !important;
    min-height: 16rem;
  }
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 44rem;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--brass), var(--line-strong));
}

.timeline li {
  position: relative;
  padding-left: 3rem;
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: var(--cream);
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 0.33rem;
  top: 0.83rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--brass);
}

.timeline__year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--wine);
}

.timeline__title {
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}

.timeline p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  max-width: 36em;
}

/* ---------- Neighborhood cards ---------- */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 60rem) {
  .places-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-inline: auto;
  }
}

.place-card {
  display: flex;
  flex-direction: column;
}

.place-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.place-card__media::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(246, 240, 227, 0.45);
  border-radius: 2px;
  pointer-events: none;
}

.place-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.place-card:hover .place-card__media img {
  transform: scale(1.05);
}

.place-card__body {
  padding-top: 1.3rem;
}

.place-card__distance {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.place-card__title {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

.place-card__desc {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* simple list of nearby places */
.places-list {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  max-width: 56rem;
}

@media (max-width: 48rem) {
  .places-list {
    columns: 1;
  }
}

.places-list li {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.places-list .name {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.places-list .dist {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
}

/* ---------- Pull quote ---------- */
.pullquote {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.pullquote blockquote::before {
  content: "“";
  color: var(--brass);
}

.pullquote blockquote::after {
  content: "”";
  color: var(--brass);
}

.pullquote cite {
  display: block;
  margin-top: 1.75rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ---------- Amenity grid ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.amenity__glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brass);
  line-height: 1;
}

.amenity__title {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--sans);
}

.amenity p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.on-dark .amenity {
  border-top-color: var(--line-on-dark);
}

.on-dark .amenity p {
  color: var(--muted-on-dark);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
  padding-block: clamp(6rem, 13vw, 11rem);
  overflow: hidden;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(44, 14, 22, 0.72);
}

.cta-band .eyebrow {
  color: var(--brass-bright);
}

.cta-band .eyebrow::before,
.cta-band .eyebrow::after {
  background: var(--brass-bright);
}

.cta-band .btn-row {
  justify-content: center;
  margin-top: 2.5rem;
}

.cta-band p.lede {
  color: rgba(246, 240, 227, 0.85);
  margin: 1.25rem auto 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
}

.contact-card__value {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  text-decoration: none;
}

a.contact-card__value:hover {
  color: var(--wine);
}

.contact-card p {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(22rem, 50vw, 30rem);
  border: 0;
  filter: sepia(0.25) saturate(0.85);
}

/* ---------- Detail list (policies etc.) ---------- */
.detail-list {
  max-width: 46rem;
}

.detail-list li {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 40rem) {
  .detail-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

.detail-list .term {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 0.25rem;
}

.detail-list .def {
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--cream-on-dark);
  padding-top: clamp(4.5rem, 9vw, 7.5rem);
}

.footer__cta {
  text-align: center;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line-on-dark);
}

.footer__cta .eyebrow {
  justify-content: center;
}

.footer__cta .eyebrow::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--brass);
}

.footer__cta .btn-row {
  justify-content: center;
  margin-top: 2.25rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 56rem) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 36rem) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand .brand__name {
  color: var(--cream-on-dark);
  font-size: 1.6rem;
}

.footer__brand p {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted-on-dark);
  max-width: 26em;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 1.4rem;
}

.footer__links li + li {
  margin-top: 0.75rem;
}

.footer__links a {
  font-size: 0.95rem;
  color: var(--muted-on-dark);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer__links a:hover {
  color: var(--cream-on-dark);
}

.footer address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted-on-dark);
  line-height: 1.8;
}

.footer address a {
  color: inherit;
  text-decoration: none;
}

.footer address a:hover {
  color: var(--cream-on-dark);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(241, 232, 214, 0.5);
}

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

.footer__bottom a:hover {
  color: var(--cream-on-dark);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.36s;
}

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

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

  .hero__scroll::after {
    animation: none;
  }

  .btn:hover,
  .room-card:hover .room-card__media img,
  .place-card:hover .place-card__media img {
    transform: none;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--wine);
  color: var(--cream);
  padding: 0.7em 1.4em;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Motion layer
   ========================================================================== */

/* ---------- Cross-page transitions (View Transitions API) ---------- */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: vt-fade-out 0.3s ease both;
}

::view-transition-new(root) {
  animation: vt-fade-in 0.45s ease both;
}

@keyframes vt-fade-out {
  to {
    opacity: 0;
  }
}

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

/* ---------- Scroll progress ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--brass), var(--brass-bright));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* ---------- Hero entrance ---------- */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero .eyebrow {
  animation: rise-in 0.9s var(--ease) 0.15s backwards;
}

.hero__title {
  animation: rise-in 1s var(--ease) 0.3s backwards;
}

.hero__sub {
  animation: rise-in 1s var(--ease) 0.45s backwards;
}

.hero .btn-row {
  animation: rise-in 1s var(--ease) 0.6s backwards;
}

/* slow Ken Burns settle on the hero image */
@keyframes kenburns {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero__media img {
  animation: kenburns 16s var(--ease) both;
}

/* ---------- Parallax media (driven by JS) ---------- */
.hero__media[data-parallax] {
  inset: -12% 0;
  will-change: transform;
}

.cta-band__media[data-parallax] {
  inset: -16% 0;
  will-change: transform;
}

/* ---------- Curtain-rise image reveal ---------- */
.js .frame {
  clip-path: inset(0 0 96% 0);
  transition: clip-path 1.15s var(--ease), opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.js .frame.is-revealed {
  clip-path: inset(0 0 0% 0);
}

/* stave divider draws itself in */
.js .staff-divider {
  transform: scaleX(0.25);
  opacity: 0;
  transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
}

.js .staff-divider.is-revealed {
  transform: scaleX(1);
  opacity: 0.55;
}

/* ---------- Button sheen ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}

.btn:hover::before {
  left: 130%;
}

/* ---------- Drifting music notes ---------- */
.notes-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

[data-notes] {
  position: relative;
}

[data-notes] > .container,
[data-notes] > .hero__inner {
  position: relative;
  z-index: 1;
}

.notes-layer span {
  position: absolute;
  bottom: -3rem;
  color: var(--brass-bright);
  opacity: 0;
  animation: note-rise linear infinite;
}

@keyframes note-rise {
  0% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
    opacity: 0;
  }
  8% {
    opacity: 0.3;
  }
  45% {
    transform: translate3d(1.4rem, -45vh, 0) rotate(7deg);
    opacity: 0.22;
  }
  85% {
    opacity: 0.08;
  }
  100% {
    transform: translate3d(-0.6rem, -95vh, 0) rotate(-5deg);
    opacity: 0;
  }
}

/* ---------- Live "open now" indicator ---------- */
.live-dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.7em;
  border-radius: 50%;
  background: var(--brass-bright);
  box-shadow: 0 0 0 0 rgba(211, 170, 94, 0.55);
  animation: live-pulse 2.2s ease-out infinite;
  vertical-align: 0.05em;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 170, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 0.55em rgba(211, 170, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(211, 170, 94, 0);
  }
}

/* highlight today's row in the hours table */
.hours .is-today {
  color: var(--brass-bright);
}

.hours--light .is-today {
  color: var(--wine);
}

.hours .is-today .day::after {
  content: "· Today";
  margin-left: 0.6em;
  font-size: 0.85em;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

/* ---------- Reduced motion: switch the whole layer off ---------- */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }

  .hero .eyebrow,
  .hero__title,
  .hero__sub,
  .hero .btn-row,
  .hero__media img {
    animation: none;
  }

  .js .frame {
    clip-path: none;
    transition: none;
  }

  .js .staff-divider {
    transform: none;
    opacity: 0.55;
    transition: none;
  }

  .btn::before {
    display: none;
  }

  .notes-layer {
    display: none;
  }

  .live-dot {
    animation: none;
  }
}

/* ==========================================================================
   Refinement layer
   ========================================================================== */

/* ---------- Film grain ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ---------- Brass italic accent inside hero titles ---------- */
.hero__title em {
  font-style: italic;
  color: var(--brass-bright);
}

/* ---------- Custom scrollbar ---------- */
html {
  scrollbar-color: var(--wine) var(--cream-soft);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--wine);
  border-radius: 6px;
  border: 3px solid var(--cream-soft);
}

/* ---------- Press strip ---------- */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3.5rem;
  justify-content: center;
}

.press-strip span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 46rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--brass);
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq .faq__a {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Footer watermark ---------- */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "Symphony";
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(6rem, 19vw, 17rem);
  line-height: 1;
  white-space: nowrap;
  color: rgba(241, 232, 214, 0.04);
  pointer-events: none;
}

.footer > .container {
  position: relative;
}

/* ---------- Gallery lightbox ---------- */
.gallery .frame img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgba(29, 17, 20, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  margin: 0;
  text-align: center;
}

.lightbox img {
  max-width: min(88vw, 68rem);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(241, 232, 214, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream-on-dark);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.lightbox__btn:hover {
  border-color: var(--brass-bright);
  background: rgba(211, 170, 94, 0.12);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 40rem) {
  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 1.5rem;
    transform: none;
  }

  .lightbox__prev {
    left: 30%;
  }

  .lightbox__next {
    right: 30%;
  }
}

/* ==========================================================================
   Signature motion layer
   ========================================================================== */

/* ---------- Cross-page header persistence ---------- */
.header {
  view-transition-name: site-header;
}

/* ---------- Hero slideshow ---------- */
[data-slideshow] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: none;
}

[data-slideshow] img.is-active {
  opacity: 1;
  animation: kenburns 16s var(--ease) both;
}

/* ---------- Word-by-word headline reveals ---------- */
.split-words .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(1.5deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--wi) * 0.045s);
}

.split-words.is-revealed .w {
  opacity: 1;
  transform: none;
}

.hero__title.split-words {
  animation: none;
}

.hero__title.split-words .w {
  transition-delay: calc(0.25s + var(--wi) * 0.055s);
}

/* ---------- The playable stave ---------- */
.stave {
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}

.stave__canvas {
  display: block;
  width: 100%;
  height: 150px;
  color: var(--brass);
  touch-action: pan-y;
  cursor: crosshair;
}

.stave__hint {
  margin-top: 0.5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------- 3D tilt cards ---------- */
.tilt {
  transition: transform 0.3s var(--ease);
  will-change: transform;
}

/* ---------- Self-drawing timeline ---------- */
.js .timeline::before {
  transform: scaleY(var(--tl, 0));
  transform-origin: top;
}

.js .timeline li::before,
.js .timeline li::after {
  opacity: 0.25;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.js .timeline li::after {
  transform: scale(0.4);
}

.js .timeline li.is-passed::before,
.js .timeline li.is-passed::after {
  opacity: 1;
}

.js .timeline li.is-passed::after {
  transform: scale(1);
}

/* ---------- Equalizer in the live bar status ---------- */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.8em;
  margin-right: 0.65em;
  vertical-align: -0.08em;
}

.eq i {
  width: 2px;
  height: 100%;
  background: var(--brass-bright);
  transform-origin: bottom;
  animation: eq-bounce 1.05s ease-in-out infinite;
}

.eq i:nth-child(2) {
  animation-delay: 0.22s;
}

.eq i:nth-child(3) {
  animation-delay: 0.44s;
}

@keyframes eq-bounce {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ---------- Reduced motion: switch the signature layer off ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-slideshow] img.is-active {
    animation: none;
  }

  .split-words .w {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .stave__canvas {
    cursor: default;
  }

  .js .timeline::before {
    transform: none;
  }

  .js .timeline li::before,
  .js .timeline li::after {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .eq i {
    animation: none;
    transform: scaleY(0.6);
  }
}

/* ==========================================================================
   Booking: ReservationKey search widget + sliding drawer
   ========================================================================== */

/* Wrapper/frame for the RK search-bar widget. RK renders its own controls
   inside and themes them via the script's data-accent-color (our brass);
   this just gives it an on-brand cream card and reserves height so the hero
   doesn't shift while the widget loads. */
.rk-search {
  max-width: 52rem;
  margin-top: 2rem;
  min-height: 66px;
  padding: 0.65rem;
  background: rgba(246, 240, 227, 0.94);
  border: 1px solid rgba(211, 170, 94, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(29, 17, 20, 0.28);
}

.hero .rk-search {
  animation: rise-in 1s var(--ease) 0.55s backwards;
}

/* ---------- Drawer ---------- */
.bk-drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
}

.bk-drawer[hidden] {
  display: none;
}

.bk-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 17, 20, 0.6);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.bk-drawer.is-open .bk-drawer__backdrop {
  opacity: 1;
}

.bk-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(960px, 100vw);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -24px 0 70px rgba(29, 17, 20, 0.4);
}

.bk-drawer.is-open .bk-drawer__panel {
  transform: none;
}

.bk-drawer__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  background: var(--wine-deep);
  color: var(--cream-on-dark);
}

.bk-drawer__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-right: auto;
}

.bk-drawer__newtab {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-bright);
  text-decoration: none;
  white-space: nowrap;
}

.bk-drawer__newtab:hover {
  text-decoration: underline;
}

.bk-drawer__close {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(246, 240, 227, 0.3);
  border-radius: 50%;
  color: var(--cream-on-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.bk-drawer__close:hover {
  border-color: var(--brass-bright);
  background: rgba(211, 170, 94, 0.12);
}

.bk-drawer__body {
  position: relative;
  flex: 1;
  background: var(--cream);
}

.bk-drawer__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bk-drawer__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 2px solid var(--line);
  border-top-color: var(--wine);
  border-radius: 50%;
  animation: bk-spin 0.8s linear infinite;
}

.bk-drawer.is-loaded .bk-drawer__spinner {
  display: none;
}

@keyframes bk-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-drawer__panel,
  .bk-drawer__backdrop {
    transition: none;
  }

  .hero .rk-search {
    animation: none;
  }

  .bk-drawer__spinner {
    animation-duration: 1.6s;
  }
}

/* ==========================================================================
   Legal pages (privacy, terms)
   ========================================================================== */
.legal {
  max-width: 46rem;
}

.legal__updated {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-top: 2.6rem;
  margin-bottom: 0.4rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal p + p {
  margin-top: 1rem;
}

.legal h2 + p {
  margin-top: 0.6rem;
}

.legal ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.legal li {
  margin-top: 0.55rem;
}

.legal a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--wine-deep);
}

.legal address {
  font-style: normal;
  margin-top: 0.6rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.footer__legal a {
  color: rgba(241, 232, 214, 0.5);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--cream-on-dark);
}
