/* ==========================================================================
   V Show Karaoke: velvet and brass
   Palette:  ink #12040D · velvet #1C0715 · plum #43123A
             gold #F7B52C · gold-hi #FFD98A · magenta #FF3D8A
             cream #F6ECE4 · mauve #A98096
   Type:     Big Shoulders Display (marquee) · Manrope (body) · DM Mono (data)
   Pages:    / (home) · /rooms/ · /about/
   ========================================================================== */

:root {
  --ink: #12040D;
  --velvet: #1C0715;
  --velvet-2: #240A1B;
  --plum: #43123A;
  --plum-line: rgba(255, 214, 236, 0.13);
  --gold: #F7B52C;
  --gold-hi: #FFD98A;
  --magenta: #FF3D8A;
  --cream: #F6ECE4;
  --mauve: #A98096;
  --mauve-dim: #7C5468;

  --shell: min(1180px, 100% - 2.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --f-display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --f-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --f-mono: "DM Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 400 clamp(1rem, .96rem + .2vw, 1.075rem)/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 700; line-height: .92; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }
img, svg, iframe { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: fixed; top: .6rem; left: .6rem; z-index: 100;
  transform: translateY(-160%);
  background: var(--gold); color: var(--ink);
  padding: .6rem 1rem; border-radius: var(--r-sm);
  font: 500 .85rem var(--f-mono); text-decoration: none;
}
.skip:focus { transform: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* ---------- shared bits ---------- */

.eyebrow {
  display: flex; align-items: flex-start; gap: .55rem;
  font: 500 .74rem/1.5 var(--f-mono);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--live { color: var(--mauve); }
.eyebrow--live .dot {
  flex: none; margin-top: .34rem;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--magenta);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 61, 138, .5); }
  70%  { box-shadow: 0 0 0 .7rem rgba(255, 61, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 138, 0); }
}

.h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 1.5rem + 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  max-width: 18ch;
}
.h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
}
.h2--wide { max-width: 32ch; }
.lede { max-width: 56ch; color: var(--mauve); font-size: 1.02rem; }
.fact { max-width: 60ch; }
.fact strong { color: var(--gold-hi); font-weight: 700; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 700 .82rem/1 var(--f-body);
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--plum-line); color: var(--cream);
  background: rgba(255, 236, 246, .03);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }
.btn--big { padding: 1.05rem 2rem; font-size: .95rem; }

/* ---------- header ---------- */

.bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  width: 100%; padding: .9rem max(1.25rem, calc((100% - var(--shell)) / 2));
  background: rgba(18, 4, 13, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--plum-line);
}

.mark {
  display: inline-flex; align-items: center;
  text-decoration: none; margin-right: auto;
}
.mark__img { display: block; width: auto; height: 2.65rem; }
.foot .mark__img { height: 3.2rem; }

.nav { display: flex; gap: 1.6rem; }
.nav a {
  position: relative;
  font: 500 .84rem/1 var(--f-body);
  letter-spacing: .04em; text-decoration: none;
  color: var(--mauve); padding-bottom: .2rem;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--cream); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.bar__cta { padding: .65rem 1.15rem; font-size: .74rem; }

.burger {
  display: none;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--plum-line); border-radius: var(--r-sm);
  background: transparent; cursor: pointer;
  padding: 0; place-items: center; gap: 6px; align-content: center;
}
.burger span {
  display: block; width: 1.1rem; height: 2px;
  background: var(--cream);
  transition: transform .25s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.drawer {
  position: sticky; top: 4.4rem; z-index: 49;
  display: grid; gap: .25rem;
  padding: 1rem 1.25rem 1.4rem;
  background: rgba(28, 7, 21, .97);
  border-bottom: 1px solid var(--plum-line);
}
.drawer[hidden] { display: none; }
.drawer a {
  padding: .7rem .2rem; text-decoration: none;
  font: 700 1.1rem/1 var(--f-display);
  letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid var(--plum-line);
}
.drawer__cta {
  margin-top: .6rem; border: 0 !important;
  background: var(--gold); color: var(--ink);
  border-radius: 999px; text-align: center; padding: .9rem !important;
}

/* ---------- home hero: the lyric screen ---------- */

.hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(92svh, 880px);
  padding: clamp(5rem, 16vh, 9rem) 0 clamp(2.5rem, 6vh, 4rem);
  background: var(--ink);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; display: block; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 78% 38%;
  display: block;
}
/* keeps the neon readable behind the type without washing the photo out */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(9, 2, 7, .92) 26%, rgba(9, 2, 7, .66) 46%, rgba(9, 2, 7, .22) 72%, rgba(9, 2, 7, .38) 100%),
    linear-gradient(100deg, rgba(9, 2, 7, .72) 0%, rgba(9, 2, 7, .3) 42%, rgba(9, 2, 7, 0) 70%);
}
.hero__inner { position: relative; width: var(--shell); margin-inline: auto; }
.hero__inner .eyebrow--live,
.hero__h1,
.hero__facts { text-shadow: 0 .08em .6em rgba(9, 2, 7, .85); }
.hero__inner .eyebrow--live { color: var(--cream); }

/* the signature: karaoke lyric fill */
.lyric {
  margin: 1.6rem 0 0;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, .9rem + 7.6vw, 6.25rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.lyric__line {
  display: block;
  background-image: linear-gradient(90deg, var(--gold-hi) 50%, rgba(246, 236, 228, .34) 50.05%);
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: lyricFill 13s linear infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 .12em .5em rgba(9, 2, 7, .75));
}
@keyframes lyricFill {
  0%   { background-position: 100% 0; }
  22%  { background-position: 0 0; }
  90%  { background-position: 0 0; }
  92%  { background-position: 100% 0; }
  100% { background-position: 100% 0; }
}

.track {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 1.4rem; max-width: 30rem;
  font: 400 .78rem/1 var(--f-mono); color: var(--mauve-dim);
}
.track__bar { flex: 1; height: 3px; border-radius: 2px; background: rgba(169, 128, 150, .25); overflow: hidden; }
.track__bar i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  animation: seek 13s linear infinite;
}
@keyframes seek {
  0% { width: 0; } 90% { width: 100%; } 92% { width: 0; } 100% { width: 0; }
}

.hero__h1 {
  margin-top: 1.5rem; max-width: 22ch;
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 700; line-height: 1;
  text-transform: uppercase; letter-spacing: .01em;
  color: var(--cream);
}
.hero__facts { margin-top: 1rem; max-width: 50ch; color: var(--cream); opacity: .85; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* ---------- sub-page header ---------- */

.pagehead {
  position: relative;
  padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(2.5rem, 6vh, 4rem);
  background: radial-gradient(110% 130% at 15% 0%, var(--plum) 0%, var(--velvet) 45%, var(--ink) 100%);
  border-bottom: 1px solid var(--plum-line);
}

/* photo-backed page header */
.pagehead--photo {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(66svh, 620px);
  padding-top: clamp(4.5rem, 14vh, 8rem);
  background: var(--ink);
  overflow: hidden;
}
.pagehead__media, .pagehead__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
.pagehead__media img { object-position: 50% 55%; }
.pagehead__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(9, 2, 7, .92) 24%, rgba(9, 2, 7, .62) 48%, rgba(9, 2, 7, .28) 74%, rgba(9, 2, 7, .42) 100%),
    linear-gradient(100deg, rgba(9, 2, 7, .72) 0%, rgba(9, 2, 7, .3) 44%, rgba(9, 2, 7, 0) 72%);
}
.pagehead--photo .pagehead__inner { position: relative; }
.pagehead--photo .eyebrow,
.pagehead--photo h1,
.pagehead--photo .lede { text-shadow: 0 .08em .6em rgba(9, 2, 7, .85); }
.pagehead--photo .eyebrow { color: var(--gold-hi); }
.pagehead__inner { width: var(--shell); margin-inline: auto; display: grid; gap: 1.1rem; }
.pagehead h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 1.4rem + 5vw, 5rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: -.01em;
  max-width: 20ch;
}

/* ---------- section frame ---------- */

.section { width: var(--shell); margin-inline: auto; padding-block: clamp(3.5rem, 9vh, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vh, 4.5rem); }
.section__head { display: grid; gap: 1.1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }

/* ---------- rooms ---------- */

.rooms {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.room {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--velvet-2), var(--velvet));
  overflow: hidden;
}
.room__photo { overflow: hidden; background: var(--velvet); }
.room__photo img {
  display: block; width: 100%; height: auto; aspect-ratio: 5 / 4;
  object-fit: cover;
}

.room__body {
  flex: 1;
  display: grid; gap: .8rem;
  grid-template-rows: auto 1fr auto;
  padding: 1.15rem 1.25rem 1.35rem;
}
.room__meta {
  font: 400 .72rem/1 var(--f-mono);
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}
.room__name {
  font-family: var(--f-display); font-size: 2.1rem; font-weight: 700;
  letter-spacing: .01em; text-transform: uppercase;
}
.room__size {
  align-self: end;
  margin-top: .35rem; padding-top: .9rem;
  border-top: 1px solid var(--plum-line);
  font: 500 1.15rem/1 var(--f-mono); color: var(--gold-hi);
}

/* detailed room rows (rooms page) */
.roomrow {
  display: grid; gap: clamp(1.25rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--plum-line);
}
/* the list opens straight after the page header, so the first row needs no rule */
.roomrow:first-of-type { border-top: 0; }
.roomrow__photo { overflow: hidden; border-radius: var(--r-md); }
.roomrow__photo img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.roomrow:hover .roomrow__photo img { transform: scale(1.03); }

/* wide shot under 'in every room' */
.banner {
  margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden; border-radius: var(--r-lg);
}
.banner img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 21 / 9; object-fit: cover;
}
.roomrow__body { display: grid; gap: .8rem; }
.roomrow__body h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.2rem);
  font-weight: 800; text-transform: uppercase;
}
.roomrow__cap {
  font: 500 .95rem/1 var(--f-mono);
  letter-spacing: .06em; color: var(--gold-hi);
}
.roomrow__copy { max-width: 52ch; color: var(--mauve); }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; align-content: start; }
.tags li {
  padding: .4rem .8rem;
  border: 1px solid var(--plum-line); border-radius: 999px;
  font: 500 .76rem/1 var(--f-body); color: var(--cream);
  background: rgba(255, 236, 246, .03);
}
.roomrow .tags { margin-top: .3rem; }

/* ---------- value props ---------- */

.props {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.prop {
  display: grid; gap: .7rem; align-content: start;
  padding: 1.7rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(36, 10, 27, .55);
}
.prop__icon { color: var(--magenta); }
.prop__icon svg { display: block; width: 2rem; height: 2rem; }
.prop h3 {
  font-family: var(--f-display); font-size: 1.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
}
.prop p { font-size: .93rem; color: var(--mauve); }

/* ---------- why V Show: photo cards ---------- */

.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.whycard {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--velvet);
}
.whycard__media, .whycard__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
.whycard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 2, 7, .94) 0%, rgba(9, 2, 7, .78) 22%, rgba(9, 2, 7, .25) 52%, rgba(9, 2, 7, .1) 100%);
}
.whycard__foot {
  position: absolute; z-index: 1;
  left: 1.1rem; right: 1.1rem; bottom: 1.1rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: .9rem;
}
.whycard__title {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 1.1rem + .7vw, 1.7rem);
  font-weight: 700; line-height: 1;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--cream);
  text-shadow: 0 .08em .5em rgba(9, 2, 7, .8);
}
.whycard__badge {
  flex: none;
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--gold); color: var(--ink);
}
.whycard__badge svg { width: 1.25rem; height: 1.25rem; }

/* keep the sign in frame on the portrait crop */
.whycard--location img { object-position: 34% 50%; }

@media (max-width: 1020px) {
  .why { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .why { grid-template-columns: 1fr; }
  .whycard { aspect-ratio: 4 / 3; }
}

/* ---------- call band ---------- */

.callband {
  width: var(--shell); margin-inline: auto;
  display: grid; gap: 1.25rem; justify-items: start;
  padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--velvet-2), rgba(18, 4, 13, .75));
}
.callband h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem);
  font-weight: 800; text-transform: uppercase; max-width: 18ch;
}
.callband p { color: var(--mauve); max-width: 46ch; }
.tel {
  display: inline-flex; align-items: center; gap: .6rem;
  font: 500 clamp(1.6rem, 1.1rem + 2.2vw, 2.4rem)/1 var(--f-mono);
  color: var(--gold-hi); text-decoration: none;
  letter-spacing: -.01em;
}
.tel:hover { color: var(--gold); }
.tel svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- map ---------- */

.map {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--velvet-2);
  line-height: 0;
}
.map iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(.25) contrast(1.05); }

/* ---------- find us (about) ---------- */

.find {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
/* address, hours, then the directions button pinned to the foot of the map */
.find__details {
  display: grid; gap: 1.5rem;
  grid-template-rows: auto auto 1fr;
}
.find__details > :last-child { align-self: end; }
.deflist { display: grid; gap: .1rem; }
.deflist div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--plum-line);
  font-size: .92rem;
}
.deflist dt { color: var(--mauve); }
.deflist dd { font: 400 .9rem var(--f-mono); color: var(--cream); text-align: right; }

.blocklabel {
  font: 500 .74rem/1 var(--f-mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .8rem;
}
address { font-style: normal; line-height: 1.8; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .1rem; max-width: 62rem; }
.faq details {
  border-bottom: 1px solid var(--plum-line);
  padding: .3rem 0;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer;
  font: 700 1.05rem/1.4 var(--f-body);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  font: 400 1.5rem/1 var(--f-mono); color: var(--gold);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-hi); }
.faq p { padding: 0 0 1.2rem; max-width: 62ch; color: var(--mauve); }
.faq p a { color: var(--gold-hi); }

/* ---------- contact form ---------- */

.contact {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
}
.contact__card {
  display: grid; gap: 1.25rem; align-content: start;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(67, 18, 58, .75), rgba(18, 4, 13, .9));
}
.contact__links { display: grid; gap: .6rem; }
.contact__links a { color: var(--gold-hi); font-size: .95rem; }

.formwrap {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--velvet-2), rgba(18, 4, 13, .8));
}
.form {
  display: grid; gap: 1.1rem 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}
.form[hidden] { display: none; }
.field { display: grid; gap: .45rem; align-content: start; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font: 500 .74rem/1 var(--f-mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--mauve);
}
.field .opt { letter-spacing: .06em; color: var(--mauve-dim); text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem;
  border: 1px solid var(--plum-line); border-radius: var(--r-sm);
  background: rgba(9, 2, 7, .6); color: var(--cream);
  font: 400 .95rem var(--f-body);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--mauve-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: rgba(9, 2, 7, .9);
}
.field select { appearance: none; cursor: pointer; }
.field input[type="date"] { color-scheme: dark; }
.field.is-bad input, .field.is-bad select { border-color: var(--magenta); }
.err { font: 400 .76rem/1.4 var(--f-mono); color: var(--magenta); }
.err:empty { display: none; }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .4rem; }
.form__note { font-size: .84rem; color: var(--mauve); }
.form__note a { color: var(--gold-hi); }

.sent {
  display: grid; gap: .8rem; justify-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--r-md);
  background: rgba(9, 2, 7, .55);
}
.sent[hidden] { display: none; }
.sent__label {
  font: 500 .72rem/1 var(--f-mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.sent h3 { font-family: var(--f-display); font-size: 2rem; text-transform: uppercase; }
.sent p { color: var(--mauve); max-width: 42ch; font-size: .95rem; }

/* ---------- footer ---------- */

.foot {
  border-top: 1px solid var(--plum-line);
  background: linear-gradient(180deg, rgba(28, 7, 21, .6), var(--ink));
}
.foot__inner {
  width: var(--shell); margin-inline: auto;
  display: grid; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  padding: clamp(2.5rem, 6vh, 4rem) 0 2rem;
}
.foot__col { display: grid; gap: .7rem; align-content: start; font-size: .92rem; }
.foot__col a { color: var(--cream); text-decoration-color: rgba(233, 180, 76, .45); }
.foot__col a:hover { color: var(--gold-hi); }
.foot__title {
  font: 500 .72rem/1 var(--f-mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.foot .mark { margin-right: 0; }
.foot__blurb { color: var(--mauve); font-size: .88rem; max-width: 30ch; }
.foot__hours { font: 400 .88rem var(--f-mono); color: var(--cream); }
.social {
  display: inline-flex; align-items: center; gap: .5rem;
  justify-self: start;
  color: var(--cream); text-decoration: none;
  font-size: .92rem;
  transition: color .2s var(--ease);
}
.social svg { flex: none; width: 1.2rem; height: 1.2rem; }
.social span { text-decoration: underline; text-decoration-color: rgba(247, 181, 44, .45); text-underline-offset: 2px; }
.social:hover { color: var(--gold-hi); }
.foot__bottom {
  width: var(--shell); margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  padding: 1.4rem 0 2.5rem;
  border-top: 1px solid var(--plum-line);
  font: 400 .74rem/1.6 var(--f-mono); color: var(--mauve-dim);
}
.foot__bottom a { color: var(--mauve); }

/* ---------- reveal on scroll ---------- */

.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.rooms .reveal:nth-child(2), .props .reveal:nth-child(2) { transition-delay: .08s; }
.rooms .reveal:nth-child(3), .props .reveal:nth-child(3) { transition-delay: .16s; }
.rooms .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .find, .contact { grid-template-columns: 1fr; }
  .roomrow { grid-template-columns: 1fr; gap: 1.25rem; }
  .roomrow__photo img { aspect-ratio: 3 / 2; }
  .banner img { aspect-ratio: 16 / 9; }
}

@media (max-width: 780px) {
  .nav, .bar__cta { display: none; }
  .burger { display: grid; }
  .hero { min-height: min(88svh, 700px); padding-top: clamp(3.5rem, 12vh, 6rem); }
  .lyric { font-size: clamp(2.3rem, 9.6vw, 3.6rem); }
  .mark__img { height: 2.25rem; }
  .hero__media img { object-position: 70% 34%; }
  .hero__scrim {
    background:
      linear-gradient(to bottom, rgba(9, 2, 7, .6) 0%, rgba(9, 2, 7, .35) 18%, rgba(9, 2, 7, .88) 52%, var(--ink) 100%);
  }
  .map iframe { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .lyric__line { background-position: 0 0; }
  .track__bar i { width: 45%; }
  .js .reveal { opacity: 1; transform: none; }
}
