/**
 * layout.css — the site chrome: the maroon header with its gold halo, the
 * mobile drawer, and the footer. Shared by every public page.
 */

/* ================= HEADER ================= */
.site-header {
  position: relative;
  background: var(--maroon-800);
  color: var(--on-dark);
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 200% at 12% 50%, rgba(224, 163, 37, .3), transparent 70%);
  animation: om-halo 9s ease-in-out infinite;
}
.site-header__bar {
  position: relative;
  min-height: 76px;
  padding-block: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: .02em;
}
.brand:hover { color: var(--on-dark); }
.brand__mark {
  width: 36px;
  height: 25px;
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(224, 163, 37, .65));
}

.primary-nav {
  flex: 1 1 330px;
  min-width: 0;
}
.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(14px, 2vw, 28px);
  font-size: clamp(14px, 1.5vw, 15px);
}
.primary-nav__list a {
  color: rgba(255, 248, 240, .86);
  text-decoration: none;
  transition: color var(--t-fast);
}
.primary-nav__list a:hover { color: var(--gold); }
.primary-nav__list a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(224, 163, 37, .6);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 240, .4);
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 240, .08);
  color: var(--on-dark);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ================= MOBILE DRAWER ================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(36, 31, 26, .6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) ease, visibility var(--t) ease;
}
.mobile-nav[data-open="true"] { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(340px, 88vw);
  padding: 24px 22px 32px;
  background: var(--maroon-800);
  color: var(--on-dark);
  overflow-y: auto;
  transform: translateX(12px);
  transition: transform var(--t) var(--ease-out);
  box-shadow: -24px 0 60px -30px rgba(0, 0, 0, .9);
}
.mobile-nav[data-open="true"] .mobile-nav__panel { transform: none; }
.mobile-nav__close {
  width: 42px;
  height: 42px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 240, .3);
  border-radius: 50%;
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
}
.mobile-nav__close svg { width: 16px; height: 16px; }
.mobile-nav__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__list a {
  display: block;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255, 248, 240, .12);
  color: var(--on-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav__list a:hover { color: var(--gold); }

/* ================= RIBBON ================= */
.ribbon {
  background: var(--gold-wash);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 0 40px -6px rgba(224, 163, 37, .4);
}
.ribbon__inner {
  padding-block: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
.ribbon__text {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  color: #5c3a06;
}
.ribbon__text svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--amber); }
.ribbon__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon-800);
  text-decoration: none;
  white-space: nowrap;
}

/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  background: var(--maroon-900);
  color: rgba(255, 248, 240, .72);
}
.site-footer__top {
  padding: clamp(40px, 6vw, 52px) 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(28px, 4vw, 40px);
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}
.site-footer__brand svg {
  width: 34px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(224, 163, 37, .6));
}
.site-footer__blurb {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col strong {
  color: var(--on-dark);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-col a {
  color: inherit;
  text-decoration: none;
  width: max-content;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }

.site-footer__bottom {
  padding: 18px 0 40px;
  border-top: 1px solid rgba(255, 248, 240, .14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(224, 163, 37, .16);
  color: var(--gold-soft);
}
.footer-status[data-state="live"] {
  background: rgba(226, 237, 233, .16);
  color: #bcd8cf;
}

/* Compact footer used on the booking flow. */
.site-footer--slim .site-footer__top {
  padding: clamp(28px, 4vw, 40px) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}
.site-footer--slim .site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.5px;
}
.site-footer--slim .site-footer__nav a { color: inherit; text-decoration: none; }
.site-footer--slim .site-footer__nav a:hover { color: var(--gold); }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__bar { flex-wrap: nowrap; }
  .header-actions .btn--ghost-light { display: none; }
}

@media (max-width: 520px) {
  .header-actions .btn { padding-inline: 14px; font-size: 13.5px; }
}
