/* =====================
   DESIGN TOKENS
===================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --black-deep: #050505;
  --charcoal: #111111;
  --charcoal-mid: #1A1A1A;
  --charcoal-light: #252525;
  --warm-grey: #9A9080;
  --parchment: #F5F0E8;
  --white: #FAFAF8;
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);
}

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

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

body {
  background: var(--black);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mobile-nav-open {
  overflow: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

/* =====================
   SCROLLBAR
===================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* Cursor — default system pointer */
.cursor,
.cursor-ring {
  display: none !important;
}

/* =====================
   TYPOGRAPHY — bolder for readability
===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  /* bumped from 300 */
  letter-spacing: .015em;
  line-height: 1.18;
  color: var(--white);
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
}

h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

h5 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  font-weight: 400;
  /* bumped from 300 */
  letter-spacing: .02em;
  color: rgba(245, 240, 232, .82);
  line-height: 1.85;
}

em {
  font-style: italic;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-style: normal;
}

strong {
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.gold {
  color: var(--gold);
}

.gold-light {
  color: var(--gold-light);
}

.line-gold {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
}

.container-wide {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-lg {
  padding: 9rem 0;
}

.text-center {
  text-align: center;
}

/* =====================
   REVEAL ANIMATIONS
===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .32s;
}

.reveal-delay-4 {
  transition-delay: .44s;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2.6rem;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  padding: 1rem 2.6rem;
  border: 1px solid rgba(201, 168, 76, .5);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .06);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}

.btn-text:hover {
  gap: 1rem;
}

.btn-text::after {
  content: '→';
}

/* Homepage intro accent section */
.home-intro-section {
  background: #ede1cf !important;
}

.home-intro-section h2,
.home-intro-section p {
  color: var(--black) !important;
}

.home-intro-section .eyebrow {
  color: var(--gold-dark) !important;
}

.home-intro-section .line-gold {
  background: linear-gradient(90deg, var(--gold-dark), transparent) !important;
}

.home-intro-section .btn-outline {
  color: var(--black);
  border-color: rgba(10, 10, 10, .28);
}

.home-intro-section .btn-outline:hover {
  color: var(--black);
  border-color: rgba(10, 10, 10, .48);
  background: rgba(10, 10, 10, .05);
}

/* =====================
   NAVBAR
===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  overflow: visible;
}

#navbar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(5, 4, 2, .78) 0%, rgba(5, 4, 2, .42) 52%, rgba(5, 4, 2, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

#navbar.scrolled {
  background: rgba(8, 8, 7, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .75rem 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .55);
}

#navbar.scrolled::before {
  opacity: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 47px;
  width: auto;
  max-width: min(55vw, 212px);
  transition: opacity var(--transition);
}

.nav-logo:hover img {
  opacity: .8;
}

/* Nav list */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  overflow: visible;
}

.nav-links>li {
  position: relative;
  overflow: visible;
}

/* Nav top-level link */
.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: .28rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .85);
  text-decoration: none;
  padding: .7rem 1rem;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}

.nav-links>li:hover>a {
  color: var(--gold-light);
}

.nav-links>li:hover>a::after {
  right: 1rem;
}

/* Dropdown arrow */
.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .5;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-links>li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: rgba(10, 9, 7, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, .22);
  border-top: 2px solid var(--gold);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.nav-links>li:hover .dropdown,
.dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}

.dropdown a {
  display: block;
  padding: .88rem 1.4rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .7);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(201, 168, 76, .07);
  transition: color .18s, background .18s, padding-left .18s;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, .05);
  padding-left: 1.9rem;
}

.dropdown a .dd-sub {
  display: block;
  font-size: .62rem;
  color: var(--warm-grey);
  letter-spacing: .04em;
  text-transform: none;
  margin-top: 2px;
  font-weight: 500;
}

/* Reserve button */
.nav-book-btn {
  font-family: var(--font-body) !important;
  font-size: .74rem !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: .62rem 1.5rem !important;
  text-decoration: none !important;
  border: 1px solid var(--gold) !important;
  margin-left: .6rem;
  transition: background var(--transition), color var(--transition) !important;
  display: inline-block;
  white-space: nowrap;
}

.nav-book-btn:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}

.nav-book-btn::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--gold-light);
  display: block;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
  width: min(100%, 520px);
}

.mobile-nav ul li {
  margin: .9rem 0;
}

.mobile-nav ul a {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 7vw, 2rem);
  font-weight: 500;
  color: var(--parchment);
  text-decoration: none;
  letter-spacing: .04em;
  line-height: 1.18;
  transition: color var(--transition);
  overflow-wrap: anywhere;
}

.mobile-nav ul a:hover {
  color: var(--gold-light);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: .5rem;
}

/* =====================
   PAGE HERO (inner pages)
===================== */
.page-hero {
  height: 72vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 4, 2, .94) 0%, rgba(5, 4, 2, .48) 50%, rgba(5, 4, 2, .18) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 760px;
}

.page-hero-content .eyebrow {
  margin-bottom: 1rem;
}

/* =====================
   IMAGE UTILITIES
===================== */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =====================
   BOOKING BAR
===================== */
.booking-section {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(201, 168, 76, .2);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
}

.booking-widget {
  display: flex;
  align-items: stretch;
}

.bw-field {
  flex: 1;
  padding: 1.3rem 2rem;
  border-right: 1px solid rgba(201, 168, 76, .12);
}

.bw-field:last-of-type {
  border-right: none;
}

.bw-field label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.bw-field input,
.bw-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  color: var(--parchment);
  width: 100%;
  cursor: pointer;
}

.bw-field input::placeholder {
  color: rgba(245, 240, 232, .45);
}

.bw-submit {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.3rem 2.5rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}

.bw-submit:hover {
  background: var(--gold-light);
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(201, 168, 76, .15);
  margin-top: 4rem;
  padding: 6.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr .9fr;
  gap: 4.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.footer-brand-logo {
  height: 34px;
  width: auto;
  max-width: min(58vw, 172px);
  margin-bottom: 1.5rem;
  opacity: .82;
}

.footer-brand p {
  font-size: .84rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .52);
  line-height: 1.9;
}

.footer-col h5 {
  margin-bottom: 1.7rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: .95rem;
}

.footer-col ul a {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .52);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-address {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .52);
  line-height: 2.05;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, .44);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, .1);
  padding-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .74rem;
  font-weight: 400;
  color: rgba(245, 240, 232, .35);
}

/* =====================
   FORM ELEMENTS
===================== */
.form-group {
  margin-bottom: 1.7rem;
}

.form-label {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.form-input {
  width: 100%;
  background: rgba(201, 168, 76, .04);
  border: 1px solid rgba(201, 168, 76, .2);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  padding: .9rem 1.2rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-input option {
  background: var(--charcoal);
  color: var(--parchment);
}

textarea.form-input {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dynamic-fields {
  display: none;
}

.dynamic-fields.visible {
  display: block;
}

/* =====================
   RESPONSIVE BREAKPOINTS
   Desktop:    > 1200px
   Laptop:     1024–1200px
   Tablet:     768–1024px
   Mobile:     480–768px
   Fold/Small: < 480px
===================== */

/* Laptop */
@media (max-width: 1280px) {

  #navbar,
  #navbar.scrolled {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav-links>li>a {
    padding: .7rem .88rem;
    font-size: .76rem;
  }

  .container {
    padding: 0 2.5rem;
  }

  .container-wide {
    padding: 0 2rem;
  }
}

/* Tablet / Tight Landscape */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #navbar,
  #navbar.scrolled {
    padding: 1rem 2rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.25rem;
  }

  .section-pad {
    padding: 5rem 0;
  }

  .page-hero {
    height: 60vh;
    min-height: 420px;
  }

  .page-hero-content {
    padding: 0 2.5rem 3.5rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal-left.in-view,
  .reveal-right.in-view {
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .container,
  .container-wide {
    padding: 0 1.5rem;
  }

  .section-pad {
    padding: 4rem 0;
  }

  footer {
    margin-top: 3rem;
    padding: 5rem 0 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    margin-bottom: 3.25rem;
  }

  .page-hero {
    height: 55vh;
    min-height: 360px;
  }

  .page-hero-content {
    padding: 0 1.5rem 3rem;
  }

  .booking-widget {
    flex-direction: column;
  }

  .bw-field {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, .12);
    padding: 1rem 1.5rem;
  }

  .bw-submit {
    padding: 1.2rem;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ballroom-hero {
    height: auto !important;
    min-height: 520px !important;
  }

  .ballroom-hero-content {
    padding: 2rem 1.5rem !important;
  }

  .ballroom-name {
    font-size: clamp(2rem, 12vw, 2.6rem) !important;
    overflow-wrap: anywhere;
  }

  .spec-card,
  .feature-item,
  .layout-card {
    padding: 1.5rem !important;
  }

  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  [style*="display:flex"][style*="gap:1.5rem"] {
    gap: 1rem !important;
  }
}

/* Small Mobile / Fold */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .btn-primary,
  .btn-outline {
    padding: .88rem 1.8rem;
    font-size: .7rem;
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-outline,
  .bw-submit {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #navbar,
  #navbar.scrolled {
    padding: .85rem 1rem;
  }

  .mobile-close {
    top: 1rem;
    right: 1rem;
  }

  .page-hero {
    height: 50vh;
    min-height: 320px;
  }

  .page-hero-content {
    padding: 0 1.2rem 2rem;
  }

  .booking-section {
    display: none;
  }

  /* hide on fold — too small */
}

/* =====================
   KEYFRAMES
===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1
  }

  50% {
    transform: scaleY(.6);
    opacity: .5
  }
}

@keyframes chevronBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes scrollFade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* =====================
   DATE PICKER & FORM INPUT STYLING
===================== */
input[type="date"],
input[type="time"] {
  color-scheme: dark;
  color: var(--parchment);
  background: rgba(201, 168, 76, .06);
  border: 1px solid rgba(201, 168, 76, .3);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 400;
  padding: .85rem 1rem;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(73%) sepia(27%) saturate(700%) hue-rotate(5deg) brightness(95%);
  cursor: pointer;
  width: 18px;
  height: 18px;
  opacity: .8;
}

input[type="date"]:focus,
input[type="time"]:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .1);
}

/* Booking bar date inputs */
.bw-field input[type="date"] {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0;
}

.bw-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(73%) sepia(27%) saturate(700%) hue-rotate(5deg) brightness(95%);
  opacity: .7;
}