/* ==========================================================================
   Brisdale Hotel — styles
   --------------------------------------------------------------------------
   THEME: change the accent in one place. Everything else (buttons, dots,
   links, map pins, hover rings) is derived from --accent via color-mix.
   Swap it for, say, #3f7a56 (green) or #2f4cf0 (blue) and the whole site
   re-tints. Neutral / surface colors sit just below if you want to tweak.
   ========================================================================== */
:root {
  /* >>> ACCENT — the only color you usually need to touch <<< */
  --accent: #c05f3c;

  /* derived accent shades (leave as-is) */
  --accent-dark: color-mix(in srgb, var(--accent), #000 20%);
  --accent-soft: color-mix(in srgb, var(--accent) 55%, #f3ece1);
  --accent-tint: color-mix(in srgb, var(--accent) 14%, transparent);

  /* surfaces & ink */
  --cream:    #f3ece1;
  --cream-2:  #e8ddcd;
  --dark:     #2b2320;
  --ink:      #2b2320;
  --ink-soft: #6b6055;
  --muted:    #8a7d6f;
  --line:     #e2d7c6;
  --line-dark:#43392f;
  --on-dark:  #f3ece1;
  --on-dark-soft: #b3a89b;

  /* type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;

  /* metrics */
  --wrap: 1200px;
  --header-h: 57px;
  --radius: 5px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
::selection { background: var(--accent); color: var(--cream); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; }

/* ---------- reveal animation ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js .reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--soft   { color: var(--accent-soft); }
.eyebrow--muted  { color: var(--muted); letter-spacing: 1.5px; }

.btn {
  display: inline-block;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s, color .25s, border-color .25s;
}
.btn--primary { background: var(--accent); color: var(--cream); }
.btn--primary:hover { background: var(--accent-dark); color: var(--cream); }
.btn--ghost { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.link-underline {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}
.header__brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .3px;
  color: var(--ink);
  line-height: 1;
}
.nav { display: flex; gap: 26px; }
.nav__link { font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.nav__link:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero { padding: 56px 24px 20px; }
.hero__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.hero__text {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__intro { flex: none; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: .98;
  letter-spacing: -1px;
  margin-top: 14px;
}
.hero__title-em { font-style: italic; color: var(--accent); }
.hero__lede {
  max-width: 90%;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero__strip {
  display: flex;
  gap: 14px;
  flex: 1;
  min-height: 200px;
}
.hero__strip-img {
  flex: 1;
  border-radius: var(--radius);
  background: var(--cream-2) center / cover no-repeat;
}
.hero__figure {
  flex: 0 1 clamp(300px, 34vw, 470px);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: var(--cream-2) center / cover no-repeat;
}

/* ---------- booking bar ---------- */
.booking { position: sticky; top: var(--header-h); z-index: 30; padding: 14px 24px 0; }
.booking__bar {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  box-shadow: 0 12px 30px -14px rgba(43,35,32,.55);
}
.booking__field { flex: 1 1 130px; display: flex; flex-direction: column; gap: 5px; }
.booking__label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-soft); }
.booking__input {
  background: #3a312c;
  border: 1px solid #4d423b;
  color: var(--on-dark);
  border-radius: 3px;
  padding: 9px 10px;
  font-size: 13px;
}
.booking__input:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.booking__input[type=date]::-webkit-calendar-picker-indicator { filter: sepia(1) saturate(3) hue-rotate(-10deg); }
.booking__submit { display: auto; }
.booking__status { flex: 1 1 100%; margin: 0; font-size: 12px; color: var(--accent-soft); min-height: 0; }
.booking__status--on { min-height: 18px; }

/* ---------- generic section ---------- */
.section { padding-block: 80px; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
}
.section__head--stack { display: block; margin-bottom: 40px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -.5px;
  margin-top: 8px;
}
.section__title--light { color: var(--on-dark); }
.section__note { max-width: 340px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.section__note--sm { font-size: 13px; color: var(--muted); letter-spacing: .3px; }

/* ---------- rooms ---------- */
.rooms { display: flex; flex-direction: column; gap: 22px; }
.room {
  display: flex;
  flex-wrap: wrap;
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.room--reverse { flex-direction: row-reverse; }
.room__media { flex: 1 1 340px; min-height: 280px; background: #d9cbb6 center / cover no-repeat; }
.room__body {
  flex: 1 1 340px;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.room__num {
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--accent-tint);
}
.room--reverse .room__num { right: auto; left: 26px; }
.room__name { font-family: var(--font-display); font-size: 32px; letter-spacing: -.5px; }
.room__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 12px 0 14px;
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--muted);
}
.room__specs i { color: #c9bda9; font-style: normal; }
.room__copy { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 420px; }
.room__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.room__price { font-family: var(--font-display); font-size: 30px; color: var(--ink); }
.room__price span { font-family: var(--font-body); font-size: 12px; color: var(--muted); }

/* ---------- dining ---------- */
.dining { display: flex; flex-wrap: wrap; gap: 20px; }
.dine-card {
  flex: 1 1 260px;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease;
}
.dine-card:hover { transform: translateY(-4px); }
.dine-card__media { height: 200px; background: #d9cbb6 center / cover no-repeat; }
.dine-card__body { padding: 20px; }
.dine-card__name { font-family: var(--font-display); font-size: 26px; margin: 6px 0 8px; }
.dine-card__copy { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.dine-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.dine-card__meta--top {
  margin-top: 0;
  margin-bottom: 14px;
  padding-top: 0;
  padding-bottom: 14px;
  border-top: none;
  border-bottom: 1px solid var(--line);
}
.dine-card__meta i { color: #c9bda9; font-style: normal; }
.dine-card__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- meetings ---------- */
.meetings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.meet-card {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark) center / cover no-repeat;
}
.meet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,35,32,.82), rgba(43,35,32,.05));
}
.meet-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 18px; color: var(--on-dark); }
.meet-card__cap { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-soft); }
.meet-card__name { font-family: var(--font-display); font-size: 24px; margin-top: 4px; }
.meet-pkg { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.meet-pkg__list {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 28px;
}
.meet-pkg__item { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.meet-pkg__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.meet-pkg__note { margin-top: 22px; font-size: 12px; font-style: italic; color: var(--muted); max-width: 560px; }

/* ---------- amenities ---------- */
.amenities { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 40px; }
.amenity {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 16px;
  color: color-mix(in srgb, var(--on-dark) 90%, #000);
}
.amenity__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- promotions ---------- */
.promos-wrap { position: relative; overflow: hidden; transition: max-height .6s cubic-bezier(.4,0,.2,1); }
.promos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.promos__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 150px;
  background: linear-gradient(to bottom, transparent, var(--cream) 88%);
  pointer-events: none;
  opacity: 1; transition: opacity .4s ease;
}
.promos-wrap--open .promos__fade { opacity: 0; }
.promos__more { display: flex; justify-content: center; margin-top: 24px; }
.promos__toggle { min-width: 220px; }
.promo {
  aspect-ratio: 4 / 5;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-2);
}
.promo__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.promo:hover .promo__img { transform: scale(1.05); }

/* ---------- contact ---------- */
.contact { display: flex; flex-direction: column; gap: 28px; }
.contact__lede { font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 520px; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.contact__card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.contact__card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact__val { font-family: var(--font-display); font-size: 24px; letter-spacing: -.3px; }
.contact__card:hover .contact__val { color: var(--accent); }
.contact__note { font-size: 13px; color: var(--muted); }

/* ---------- location ---------- */
.location { display: flex; flex-wrap: wrap; gap: 28px; }
.location__map { flex: 2 1 420px; }
.map { height: 440px; border-radius: var(--radius); overflow: hidden; background: #d9cbb6; border: 1px solid #d3c4af; }
.location__info { flex: 1 1 280px; display: flex; flex-direction: column; gap: 24px; }
.location__address { font-family: var(--font-display); font-size: 22px; line-height: 1.35; margin-top: 8px; }
.poi { list-style: none; margin: 6px 0 0; padding: 0; }
.poi__item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-top: 1px solid #d3c4af; }
.poi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; margin-top: 5px; }
.poi__body { flex: 1; }
.poi__row { display: flex; justify-content: space-between; gap: 10px; }
.poi__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.poi__dist { font-size: 12px; color: var(--muted); white-space: nowrap; }
.poi__desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--on-dark); }
.footer .wrap { padding-block: 64px 32px; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
.footer__col { flex: 1 1 180px; }
.footer__col:first-child { flex: 1 1 260px; }
.footer__brand { font-family: var(--font-display); font-size: 34px; line-height: 1; }
.footer__blurb { font-size: 14px; line-height: 1.6; color: var(--on-dark-soft); margin-top: 14px; max-width: 280px; }
.footer__lines { font-style: normal; font-size: 14px; line-height: 1.9; color: #d8cebf; margin-top: 12px; }
.footer__link { color: #d8cebf; }
.footer__link:hover { color: var(--on-dark); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #d8cebf; font-size: 12px; font-weight: 700;
}
.footer__social-link:hover { border-color: var(--accent); color: var(--accent-soft); }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: var(--muted); }

/* ---------- custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; }
.cursor__ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--accent);
  transition: width .22s, height .22s, background-color .22s, opacity .3s;
}
.cursor__dot { width: 6px; height: 6px; background: var(--accent); transition: opacity .3s; }
body.has-cursor { cursor: none; }
body.has-cursor .booking__input { cursor: auto; }
.cursor__ring--hover { width: 58px; height: 58px; background: var(--accent-tint); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(43,35,32,.86);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity .3s;
}
.lightbox[hidden] { display: none; }
.lightbox--open { opacity: 1; }
.lightbox__img {
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .3s;
}
.lightbox--open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243,236,225,.4);
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
}

/* ---------- legal modals ---------- */
.legal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; }
.legal[hidden] { display: none; }
.legal__backdrop {
  position: absolute; inset: 0;
  background: rgba(43,35,32,.86);
  opacity: 0; transition: opacity .3s;
}
.legal.legal--open .legal__backdrop { opacity: 1; }
.legal__panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: min(560px, 92vw);
  height: min(620px, 88vh);
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(43,35,32,.35);
  overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.98);
  transition: opacity .3s, transform .3s;
}
.legal__panel[hidden] { display: none; }
.legal.legal--open .legal__panel { opacity: 1; transform: none; }
.legal__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.legal__title { font-family: var(--font-display); font-size: 34px; letter-spacing: -.5px; margin-top: 2px; }
.legal__close {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-size: 15px; cursor: pointer; transition: background-color .2s, color .2s;
}
.legal__close:hover { background: var(--ink); color: var(--cream); }
.legal__body { padding: 22px 28px 28px; overflow-y: auto; overscroll-behavior: contain; }
.legal__meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.legal__lede { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin-top: 14px; }
.legal__h { font-family: var(--font-display); font-size: 20px; letter-spacing: -.3px; margin: 24px 0 6px; }
.legal__p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.legal__p a { border-bottom: 1px solid var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav { display: none; }
  .room__body { padding: 26px 24px; }
  .section { padding-block: 60px; }
  .promos { grid-template-columns: repeat(2, 1fr); }
  .meet-pkg__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .hero { padding-top: 40px; }
  .hero__figure { flex-basis: 100%; max-width: 320px; aspect-ratio: 3 / 4; }
  .room__num { font-size: 46px; top: 10px; }
  .map { height: 320px; }
  .booking__field { flex: 1 1 45%; }
  .booking__submit { flex: 1 1 100%; }
  .meetings { grid-template-columns: 1fr; }
  .meet-card { aspect-ratio: 3 / 2; }
}
@media (hover: none) {
  .cursor { display: none; }
}
