/* ─────────────────────────────────────────────────────────────
   THE BELLAVERA  ·  Main Stylesheet
   Design system: Deep Navy + Gold + Cream
───────────────────────────────────────────────────────────── */

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --navy:        #1b2e4b;
  --navy-deep:   #0f1e32;
  --navy-mid:    #243753;
  --gold:        #b8902e;
  --gold-lt:     #d4ab50;
  --cream:       #f5f1e8;
  --cream-dk:    #ede8da;
  --white:       #ffffff;
  --text:        #252525;
  --muted:       #636363;
  --border:      rgba(0,0,0,0.08);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, Arial, sans-serif;

  --bar-h:       40px;
  --hdr-h:       80px;
  --hdr-top:     calc(var(--bar-h) + var(--hdr-h));

  --ease-out:    cubic-bezier(.22,.68,0,1.2);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── ANCHOR OFFSET (fixed header compensation) ───────────── */
[id] { scroll-margin-top: calc(var(--bar-h) + var(--hdr-h) + 3px + 24px); }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── UTILITY ─────────────────────────────────────────────── */
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-lt); }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
}
.section-header h2 em { font-style: italic; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .28s, color .28s, border-color .28s;
  white-space: nowrap;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn--outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--outline-nav {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-nav:hover { background: var(--navy); color: var(--white); }

/* ── GOLD BRAND LINE ─────────────────────────────────────── */
.brand-line {
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

/* ── UTILITY BAR ─────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-deep);
  height: var(--bar-h);
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 100;
  overflow: visible;
}
.utility-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-nav {
  display: flex;
  gap: 26px;
}
.utility-nav a,
.utility-phone {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.utility-nav a:hover,
.utility-phone:hover { color: var(--gold-lt); }

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: calc(var(--bar-h) + 3px);
  left: 0;
  width: 100%;
  height: var(--hdr-h);
  background: var(--white);
  z-index: 99;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.08); }

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── LOGO ────────────────────────────────────────────────── */
.site-logo { display: flex; align-items: center; color: var(--navy); }
.logo-svg { width: 180px; height: auto; display: block; }
.logo-svg--footer { width: 200px; }

/* ── MAIN NAV ────────────────────────────────────────────── */
.main-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
}
.main-nav__list li { position: relative; }

.main-nav__list > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.main-nav__list > li > a:hover,
.main-nav__list > li:hover > a { color: var(--gold); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 14px 0;
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s, visibility .22s, transform .22s;
  z-index: 300;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  transition: color .18s, background .18s;
}
.dropdown a:hover { color: var(--navy); background: var(--cream); }

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: 16px; }

.header-cta { display: block; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy);
  transition: transform .28s, opacity .28s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  margin-top: calc(var(--hdr-top) + 3px);
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.active { opacity: 1; }

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero__slide.active .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,20,36,0.62) 0%,
    rgba(11,20,36,0.28) 55%,
    rgba(11,20,36,0.05) 100%
  );
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 620px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .3s var(--ease-out) forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .9s .5s var(--ease-out) forwards;
}
.hero__title em { font-style: italic; color: #f0d98a; }

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .9s .7s var(--ease-out) forwards;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .9s var(--ease-out) forwards;
}

.hero__anchor {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  transition: color .2s;
}
.hero__anchor:hover { color: var(--white); }

.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.hero__dot.active { background: var(--white); border-color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROMO BANNER ────────────────────────────────────────── */
.promo-banner {
  background: var(--gold);
  text-align: center;
  padding: 15px 24px;
}
.promo-banner__inner p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .3px;
}
.promo-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
}
.promo-link:hover { opacity: .85; }

/* ── SPLIT SECTIONS ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}
.split--flip .split__media { order: 2; }
.split--flip .split__body  { order: 1; }

.split--navy { background: var(--navy); }

.split__media { overflow: hidden; }

.split__img {
  width: 100%; height: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.split:hover .split__img { transform: scale(1.04); }

.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 80px;
}
.split__body--cream { background: var(--cream); }
.split__body--navy  { background: var(--navy); }

.split__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.22;
  margin-bottom: 26px;
  color: var(--text);
}
.split__body--navy h2 { color: var(--white); }
.split__body h2 em { font-style: italic; }

.split__body p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 38px;
  max-width: 440px;
}
.split__body--navy p { color: rgba(255,255,255,0.65); }

/* ── AWARDS STRIP ────────────────────────────────────────── */
.awards {
  background: var(--white);
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
  padding: 52px 0;
}
.awards__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.awards__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.awards__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}
.award {
  text-align: center;
  padding: 0 44px;
  flex: 1;
  min-width: 160px;
}
.award__stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.award__mark {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.award__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.award__source {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.award-sep {
  width: 1px;
  height: 48px;
  background: var(--cream-dk);
  flex-shrink: 0;
}

/* ── HIGHLIGHTS GRID ─────────────────────────────────────── */
.highlights {
  background: var(--cream);
  padding: 104px 0;
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hl-card {
  text-align: center;
  padding: 10px;
}
.hl-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.hl-card__icon svg { width: 100%; height: 100%; }

.hl-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
.hl-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── QUOTE BAND ──────────────────────────────────────────── */
.quote-band {
  background: var(--navy);
  padding: 108px 0;
}
.quote-band__inner { text-align: center; max-width: 840px; margin: 0 auto; }
.quote-band__mark {
  width: 40px; height: 30px;
  color: var(--white);
  margin: 0 auto 28px;
}
.quote-band blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.62;
  margin-bottom: 28px;
}
.quote-band blockquote cite {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ── INSTAGRAM GRID ──────────────────────────────────────── */
.gram { padding-top: 88px; }
.gram__header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}
.gram__header h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--text);
}
.gram__header p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.gram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.gram__cell {
  aspect-ratio: 1;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.gram__cell::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(27,46,75,0);
  transition: background .35s;
}
.gram__cell:hover::after { background: rgba(27,46,75,0.3); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.newsletter__img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.newsletter__body {
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
}
.newsletter__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.newsletter__body h2 em { font-style: italic; }
.newsletter__body > p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}
.newsletter__field {
  display: flex;
  max-width: 420px;
}
.newsletter__field input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
}
.newsletter__field input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter__field input:focus { border-color: var(--gold); }
.newsletter__note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  letter-spacing: .3px;
}
.newsletter__success {
  font-size: 13px;
  color: var(--gold-lt);
  margin-top: 14px;
  letter-spacing: .5px;
}

/* ── SITE FOOTER ─────────────────────────────────────────── */
.site-footer { background: #0a1422; }

.site-footer__body { padding: 80px 0 56px; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
}

.footer-brand .logo-svg--footer { margin-bottom: 24px; }

.footer-brand address {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.42);
}
.footer-brand address a { color: rgba(255,255,255,0.42); transition: color .2s; }
.footer-brand address a:hover { color: var(--gold-lt); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.42);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.footer-social svg { width: 15px; height: 15px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 11px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-lt); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.22);
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--gold-lt); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hl-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .gram__grid { grid-template-columns: repeat(3, 1fr); }
  .gram__cell:nth-child(n+4) { display: none; }
  .awards__row { gap: 0; }
  .award { padding: 12px 28px; }
}

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media,
  .split--flip .split__body { order: unset; }
  .split__img { min-height: 360px; }
  .split__body { padding: 60px 44px; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter__img { min-height: 320px; }
  .newsletter__body { padding: 60px 44px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .utility-nav { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: calc(var(--bar-h) + var(--hdr-h) + 3px);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px 32px 32px;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    z-index: 98;
    overflow-y: auto;
    max-height: calc(100vh - var(--hdr-top) - 3px);
  }

  .main-nav__list { flex-direction: column; }
  .main-nav__list > li > a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    box-shadow: none;
    padding: 4px 0 8px 16px;
  }
  .dropdown a { padding: 7px 0; font-size: 13px; }

  .gram__grid { grid-template-columns: repeat(2, 1fr); }
  .gram__cell:nth-child(n+3) { display: none; }
  .awards__row { gap: 16px 0; }
  .award-sep { display: none; }
  .award { flex: 1 0 40%; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero__content { left: 5%; right: 5%; }
  .split__body { padding: 44px 24px; }
  .hl-grid { grid-template-columns: 1fr; }
  .newsletter__body { padding: 44px 24px; }
  .newsletter__field { flex-direction: column; max-width: 100%; }
  .newsletter__field input { border-right: 1px solid rgba(255,255,255,0.18); border-bottom: none; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .gram__grid { grid-template-columns: repeat(2, 1fr); }
  .gram__cell:nth-child(n+3) { display: none; }
  .award { flex: 1 0 100%; padding: 12px 0; }
  .hero__cta-group { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 400px) {
  :root { --bar-h: 0px; }
  .utility-bar { display: none; }
  .logo-svg { width: 148px; }
}

/* ── RESERVATION MODAL ───────────────────────────────────── */
.rm-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11,20,36,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s;
}
.rm-overlay[hidden] { display: none !important; }
.rm-overlay.rm-open { opacity: 1; }

.rm-card {
  background: var(--white);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 52px 56px;
  position: relative;
  transform: translateY(28px);
  transition: transform .38s var(--ease-out);
}
.rm-overlay.rm-open .rm-card { transform: translateY(0); }

.rm-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color .2s;
}
.rm-close:hover { color: var(--navy); }
.rm-close svg { width: 18px; height: 18px; }

.rm-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 34px;
  line-height: 1.2;
}
.rm-title em { font-style: italic; }

.rm-form { display: flex; flex-direction: column; gap: 18px; }

.rm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.rm-field { display: flex; flex-direction: column; gap: 7px; }
.rm-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.rm-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 10px;
}
.rm-field input,
.rm-field select,
.rm-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--cream-dk);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.rm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23636363' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 36px;
}
.rm-field input:focus,
.rm-field select:focus,
.rm-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.rm-field.rm-error input,
.rm-field.rm-error select { border-color: #c0392b; }
.rm-field textarea { resize: vertical; min-height: 88px; }

.rm-divider { height: 1px; background: var(--cream-dk); }

.rm-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.rm-submit { width: 100%; padding: 16px; margin-top: 6px; font-size: 12px; letter-spacing: 3px; }

.rm-confirm-panel { text-align: center; padding: 16px 0 8px; }
.rm-confirm__icon { font-size: 32px; color: var(--gold); margin-bottom: 22px; display: block; }
.rm-confirm-panel h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 22px;
}
.rm-confirm__msg {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.rm-confirm__ref {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 14px 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
  margin-bottom: 14px;
}
.rm-confirm__note {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin: 20px auto 32px;
  max-width: 380px;
}

@media (max-width: 640px) {
  .rm-card { padding: 40px 24px; }
  .rm-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ── PAGE ENTRY ANIMATION ─────────────────────────────────── */
@keyframes bvEntry { from { opacity: 0; } to { opacity: 1; } }
body { animation: bvEntry .5s ease both; }

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--gold); z-index: 201;
  pointer-events: none; transition: width .1s linear;
}

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--navy); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .22s, border-color .22s;
  z-index: 400; pointer-events: none;
}
.back-to-top.btt-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top svg { width: 20px; height: 20px; color: var(--white); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--navy-deep); border-top: 2px solid var(--gold);
  transform: translateY(100%); transition: transform .4s var(--ease-out);
}
.cookie-banner.ck-on { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1360px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.65; flex: 1; min-width: 260px;
}
.cookie-banner__text a { color: var(--gold-lt); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.ck-accept { padding: 10px 24px; font-size: 10px; }
.ck-manage {
  background: none; border: none;
  font-family: var(--font-sans); font-size: 11px; font-weight: 400;
  letter-spacing: .5px; color: rgba(255,255,255,0.38);
  cursor: pointer; text-decoration: underline; transition: color .2s;
}
.ck-manage:hover { color: var(--white); }
@media (max-width: 640px) { .cookie-banner__inner { padding: 14px 20px; } }

/* ── WEATHER WIDGET ───────────────────────────────────────── */
.weather-widget {
  font-size: 11px; font-weight: 400; letter-spacing: .4px;
  color: rgba(255,255,255,0.42); margin-right: 16px; white-space: nowrap;
}

@media (max-width: 900px) { .weather-widget { display: none; } }

/* ── PRINT STYLES ─────────────────────────────────────────── */
@media print {
  .brand-line, .utility-bar, .site-header, .back-to-top, .cookie-banner,
  .scroll-progress, .newsletter, .site-footer, .hero, .promo-banner,
  .page-hero, .awards, .highlights, .quote-band, .gram,
  .rm-overlay, .dm-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; animation: none !important; }
  a[href]:not([href^="#"]):not([href^="tel:"]):not([href^="mailto:"])::after {
    content: " (" attr(href) ")"; font-size: 9pt; color: #666;
  }
}
