:root {
  --brand-navy: #1F3A63;
  --brand-navy-dark: #152947;
  --brand-black: #000000;
  --brand-cream: #F4F2EC;
  --brand-ivory: #F4F2EC;
  --brand-white: #FFFFFF;
  --brand-gold: #C8A45D;
  --text-main: #152033;
  --text-muted: #667085;
  --line: #E7E0D6;
  --line-strong: rgba(31, 58, 99, 0.18);
  --surface: #FFFFFF;
  --surface-soft: #F4F2EC;
  --success: #1F7A4D;
  --warning: #9A6314;
  --danger: #A33A31;
  --shadow-soft: 0 22px 70px rgba(10, 28, 55, 0.14);
  --shadow-card: 0 16px 42px rgba(16, 34, 63, 0.11);
  --shadow-hover: 0 20px 48px rgba(16, 34, 63, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --transition-base: 0.2s ease;
  --transition-smooth: 0.28s ease;
  --icon-ui: 20px;
  --icon-sm: 16px;
  --container: min(1200px, calc(100vw - 40px));
  --font-heading: "Zachar", "Cinzel", Georgia, serif;
  --font-brand: "Zachar", "Cinzel", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: var(--brand-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--brand-white);
  background: var(--brand-navy);
  border-radius: var(--radius-sm);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.content-grid {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(var(--space-7), 8vw, var(--space-9)) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(31, 58, 99, 0.1);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-navy);
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  border: 3px solid currentColor;
  border-radius: 50%;
  width: 29px;
  height: 29px;
}

.brand-mark::before {
  left: 3px;
  top: 5px;
  border-right-color: transparent;
}

.brand-mark::after {
  right: 3px;
  top: 5px;
  border-left-color: transparent;
}

.brand-mark span::before {
  left: 4px;
  bottom: 5px;
  border-top-color: transparent;
}

.brand-mark span::after {
  right: 4px;
  bottom: 5px;
  border-top-color: transparent;
}

.brand-mark span {
  position: absolute;
  inset: 4px 20px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.brand-mark.small {
  width: 36px;
  height: 36px;
}

.brand-mark.small::before,
.brand-mark.small::after,
.brand-mark.small span::before,
.brand-mark.small span::after {
  width: 22px;
  height: 22px;
  border-width: 2px;
}

.brand-mark.small span {
  inset: 3px 15px;
  border-width: 2px;
}

.brand-copy {
  display: grid;
  line-height: 1;
  color: var(--brand-navy);
  font-family: var(--font-brand);
}

.brand-copy strong {
  font-size: 1.38rem;
  letter-spacing: 0.18em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.48em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  color: rgba(21, 32, 51, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--brand-white);
  color: var(--brand-navy);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--brand-white);
  background: var(--brand-navy);
  box-shadow: 0 10px 26px rgba(31, 58, 99, 0.24);
}

.btn-primary:hover {
  background: var(--brand-navy-dark);
}

.btn-secondary {
  color: var(--brand-navy);
  background: var(--brand-gold);
}

.btn-ghost {
  color: var(--brand-navy);
  background: transparent;
  border-color: rgba(31, 58, 99, 0.22);
}

.btn-ghost.light {
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn.full {
  width: 100%;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 58, 99, 0.16);
  border-radius: var(--radius-md);
  color: var(--brand-navy);
  background: var(--brand-white);
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(480px, 56vh, 620px);
  display: grid;
  align-items: center;
  padding: clamp(88px, 10vw, 112px) 0 clamp(52px, 6vw, 64px);
  overflow: hidden;
  color: var(--brand-white);
  border-radius: 0;
  box-shadow: none;
}

.hero .hero-content.content-grid {
  width: var(--container);
  margin-inline: auto;
}

.hero-compact {
  min-height: clamp(360px, 42vh, 480px);
  padding: clamp(72px, 8vw, 96px) 0 clamp(44px, 5vw, 56px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 19, 38, 0.82), rgba(8, 19, 38, 0.38) 55%, rgba(8, 19, 38, 0.12)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=85") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 12, 23, 0.1), rgba(6, 12, 23, 0.72)),
    radial-gradient(circle at 76% 38%, rgba(200, 164, 93, 0.18), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content--with-form {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 360px);
  gap: clamp(28px, 4vw, 44px);
}

.hero-content--with-form .hero-copy {
  max-width: none;
}

.hero-copy {
  max-width: 640px;
}

.demo-line,
.section-label {
  display: inline-flex;
  color: var(--brand-gold);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.section-head h2,
.section-copy h2,
.admin-topbar h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero-copy p:not(.demo-line) {
  max-width: 52ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.booking-card,
.inquiry-form,
.menu-panel,
.admin-card,
.cms-form,
.settings-grid {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.booking-card {
  padding: 24px;
  color: var(--text-main);
  backdrop-filter: blur(18px);
}

.booking-card--compact {
  padding: 18px 20px;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-card--compact .booking-heading {
  margin-bottom: 12px;
}

.booking-card--compact .booking-heading span {
  font-size: 1.15rem;
}

.booking-card--compact label {
  gap: 4px;
  font-size: 0.72rem;
}

.booking-card--compact label em {
  font-style: normal;
  font-weight: 600;
  color: rgba(31, 58, 99, 0.45);
}

.booking-card--compact input,
.booking-card--compact select,
.booking-card--compact textarea {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.88rem;
}

.booking-card--compact textarea {
  min-height: 58px;
}

.booking-card--compact .booking-fields label + label,
.booking-card--compact .booking-fields label + .btn {
  margin-top: 0;
}

.booking-card--compact .booking-fields + .btn {
  margin-top: 12px;
}

.booking-card--compact .form-hint {
  margin-top: 8px;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .booking-fields {
    grid-template-columns: 1fr;
  }
}

.booking-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-heading span {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.booking-heading strong,
.demo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--brand-navy);
  background: rgba(200, 164, 93, 0.18);
  border: 1px solid rgba(200, 164, 93, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

label {
  display: grid;
  gap: 6px;
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.78rem;
}

label span {
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--text-main);
  background: var(--brand-white);
  border: 1px solid rgba(31, 58, 99, 0.16);
  border-radius: var(--radius-sm);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.booking-card label + label,
.booking-card label + .btn,
.inquiry-form label + label,
.inquiry-form label + .btn,
.cms-form label + label,
.settings-grid label + label {
  margin-top: 13px;
}

.booking-card p,
.site-footer form p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.trust-strip {
  background: var(--brand-white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 150px;
  padding: 24px 18px;
  background: var(--brand-white);
}

.trust-item i,
.chef-card i,
.contact-cards i {
  color: var(--brand-gold);
}

.trust-item strong {
  display: block;
  margin-top: 14px;
  color: var(--brand-navy);
  font-size: 0.96rem;
}

.trust-item p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.intro-band,
.gallery-section,
.contact-section {
  background: var(--surface-soft);
}

.split-layout,
.dining-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.admin-topbar h2 {
  margin-top: 12px;
  color: var(--brand-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.section-copy p,
.section-head p {
  max-width: 730px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.week-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.week-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, 0.07), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(31, 58, 99, 0.05), transparent 38%),
    var(--surface-soft);
}

.week-section__head {
  max-width: 620px;
  margin-bottom: 40px;
}

.week-section__head h2 {
  margin-top: 12px;
}

.week-section__head p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.week-horizon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.week-spotlight {
  display: grid;
  gap: 0;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 99, 0.08);
  background: var(--brand-white);
  box-shadow: 0 18px 44px rgba(16, 34, 63, 0.08);
}

.week-spotlight__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.week-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.week-spotlight__body {
  display: grid;
  gap: 8px;
  padding: 24px 26px 26px;
}

.week-spotlight__when {
  color: var(--brand-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.week-spotlight__label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(31, 58, 99, 0.06);
  color: var(--brand-navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-spotlight__title {
  margin: 4px 0 0;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.28;
}

.week-spotlight__note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.week-spotlight__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 10px;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.week-spotlight__link:hover,
.week-spotlight__link:focus-visible {
  color: var(--brand-gold);
}

.week-timeline {
  display: grid;
  gap: 0;
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(31, 58, 99, 0.12);
}

.week-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 0 0 22px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.week-timeline__item:last-child {
  padding-bottom: 0;
}

.week-timeline__marker {
  position: absolute;
  left: -33px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-white);
  border: 2px solid var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.14);
}

.week-timeline__item:hover,
.week-timeline__item:focus-visible {
  color: var(--brand-navy);
}

.week-timeline__item:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.week-timeline__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.week-timeline__when {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.week-timeline__tag {
  color: var(--brand-gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-timeline__title {
  display: block;
  color: var(--brand-navy);
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 600;
}

.week-timeline__item:hover .week-timeline__title,
.week-timeline__item:focus-visible .week-timeline__title {
  color: var(--brand-navy);
}

.week-timeline__arrow {
  margin-top: 4px;
  color: rgba(31, 58, 99, 0.28);
  font-size: 1rem;
  transition: transform 180ms ease, color 180ms ease;
}

.week-timeline__item:hover .week-timeline__arrow,
.week-timeline__item:focus-visible .week-timeline__arrow {
  transform: translateX(3px);
  color: var(--brand-gold);
}

.week-grid-empty {
  margin: 0;
  padding: 24px;
  border: 1px dashed rgba(31, 58, 99, 0.18);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  color: var(--text-muted);
  line-height: 1.6;
}

.week-card,
.story-card,
.room-card,
.career-card,
.review-card,
.event-card,
.promo-card,
.role-card,
.media-admin-card,
.admin-row-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.week-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.week-card--link {
  text-decoration: none;
  color: inherit;
}

.week-card--link:hover,
.week-card--link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(31, 58, 99, 0.12);
  border-color: rgba(200, 164, 93, 0.42);
}

.week-card--link:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.week-card__media,
.week-card .thumb {
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.week-card__body {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
  flex: 1;
}

.week-card__category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.12);
  color: var(--brand-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-card__category i {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
}

.week-card__title {
  display: block;
  margin: 0;
  color: var(--brand-navy);
  font-size: 1rem;
  line-height: 1.4;
}

.week-card__cta {
  margin-top: auto;
  padding-top: 4px;
  color: var(--brand-navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.week-card--link:hover .week-card__cta,
.week-card--link:focus-visible .week-card__cta {
  color: var(--brand-gold);
}

.week-card div:last-child {
  padding: 0;
}

.room-card .room-image,
.story-card .story-image,
.gallery-item .gallery-image,
.media-admin-card .media-image {
  position: relative;
  overflow: hidden;
  background-color: #d9d0c3;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
}

.image-frame:not(.image-fallback) {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
}

.image-frame.image-fallback {
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--brand-navy);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 58, 99, 0.08), rgba(200, 164, 93, 0.16)),
    var(--brand-cream);
}

.image-frame.image-fallback::after {
  content: attr(data-fallback);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.room-card .meta,
.story-card span,
.gallery-item span,
.admin-muted,
.review-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rooms-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  overflow-x: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.rooms-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card .room-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.room-card .room-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card .room-body .btn {
  margin-top: auto;
}

.room-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.room-meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.room-meta-line span + span::before {
  content: "·";
  margin-right: 10px;
  color: rgba(31, 58, 99, 0.28);
  font-weight: 700;
}

.room-card-link {
  display: block;
  color: inherit;
}

.room-card h3 a {
  color: inherit;
  text-decoration: none;
}

.room-card h3 a:hover {
  color: var(--brand-gold);
}

.room-price-display {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin-bottom: 4px;
}

.room-price-display--compact {
  margin-bottom: 8px;
}

.room-price-display--light {
  margin: 14px 0 18px;
}

.room-price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.22);
  border: 1px solid rgba(200, 164, 93, 0.45);
  color: var(--brand-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-price-now {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.1;
}

.room-price-display--light .room-price-now {
  color: var(--brand-white);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.room-price-was {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.room-price-display--light .room-price-was {
  color: rgba(255, 255, 255, 0.62);
}

.room-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.room-price-display--light .room-price-note {
  color: rgba(255, 255, 255, 0.72);
}

.room-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}

.room-detail-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--brand-white);
}

.room-detail-stat span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.room-detail-stat span i {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
}

.room-detail-stat strong {
  display: block;
  margin-top: 2px;
  color: var(--brand-navy);
  font-size: 0.98rem;
}

.room-amenity-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.room-amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.room-amenity-list i {
  color: var(--brand-gold);
}

.room-feature-image {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.room-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Modern room cards */
.room-card--modern {
  border: 1px solid rgba(31, 58, 99, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--brand-white);
  box-shadow: 0 14px 36px rgba(16, 34, 63, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.room-card--modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 34, 63, 0.12);
}

.room-card-modern__media-link {
  display: block;
  color: inherit;
}

.room-card-modern__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.room-card-modern__media .room-image {
  aspect-ratio: 16 / 11;
  transition: transform 0.45s ease;
}

.room-card--modern:hover .room-card-modern__media .room-image img {
  transform: scale(1.06);
}

.room-card-modern__media .room-image img {
  transition: transform 0.45s ease;
}

.room-card-modern__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 38, 0.04) 10%, rgba(8, 19, 38, 0.68) 100%);
  pointer-events: none;
}

.room-card-modern__media .room-tier-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.room-card-modern__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.room-tier-badge,
.room-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.room-tier-badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.room-tier-badge--premium {
  background: rgba(31, 58, 99, 0.88);
  color: white;
  border-color: rgba(200, 164, 93, 0.45);
}

.room-tier-badge--signature {
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.95), rgba(168, 132, 58, 0.95));
  color: var(--brand-navy);
  border-color: rgba(255, 255, 255, 0.35);
}

.room-rate-badge {
  margin-left: auto;
  background: rgba(200, 164, 93, 0.92);
  color: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.room-tier-badge i,
.room-rate-badge i {
  width: 14px;
  height: 14px;
}

.room-card-modern__price {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.room-card-modern__price .room-price-display {
  margin: 0;
}

.room-card-modern__price .room-price-badge {
  background: rgba(8, 19, 38, 0.42);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--brand-gold);
}

.room-card-modern__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.room-card-modern__head h3 {
  margin: 0 0 6px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.room-card-modern__meta {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.room-meta-dot {
  margin: 0 8px;
  color: rgba(31, 58, 99, 0.28);
}

.room-card-modern__summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card-modern__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.room-card-modern__specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-card-modern__specs i {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.room-amenities--icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.room-amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(31, 58, 99, 0.05);
  border: 1px solid rgba(31, 58, 99, 0.1);
  color: var(--brand-navy);
  font-size: 0.74rem;
  font-weight: 700;
}

.room-amenity-chip i {
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
}

.room-card-modern__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.room-price-display--minimal .room-price-now {
  font-size: 1.15rem;
}

.room-price-display--minimal .room-price-was {
  font-size: 0.82rem;
}

.room-price-display--minimal .room-price-note {
  font-size: 0.78rem;
}

.room-card--clean .room-card-modern__body {
  padding: 18px 18px 20px;
  gap: 14px;
}

.room-card--clean .room-card-modern__head h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.room-card--clean .room-card-modern__meta {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.room-card--clean .room-card-modern__actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.room-card-modern__enquire {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.room-card-modern__enquire:hover,
.room-card-modern__enquire:focus-visible {
  color: var(--brand-gold);
}

.room-amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-amenity-tags--page {
  margin-top: 8px;
}

.room-amenity-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 99, 0.1);
  background: var(--brand-white);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.room-highlight-card--minimal {
  padding: 18px 16px;
  box-shadow: none;
  border-color: rgba(31, 58, 99, 0.08);
}

.room-highlight-card--minimal strong {
  margin-bottom: 6px;
  font-family: var(--font-body, inherit);
  font-size: 0.92rem;
  font-weight: 700;
}

.room-highlight-card--minimal p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.rooms-showcase .section-head {
  max-width: 720px;
}

.rooms-showcase .rooms-grid-home {
  gap: 28px;
}

/* Room detail pages */
.room-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.room-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.room-hero-pill i {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: 32px;
  align-items: start;
}

.room-detail-main {
  display: grid;
  gap: 28px;
}

.room-detail-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.room-detail-gallery__primary,
.room-detail-gallery__secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
}

.room-detail-gallery__secondary {
  min-height: 220px;
}

.room-detail-sidebar {
  position: sticky;
  top: calc(var(--bh-topbar-h, 36px) + var(--bh-header-h, 100px) + 20px);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
}

.room-detail-sidebar h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.room-detail-sidebar p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.room-detail-sidebar .room-detail-stats {
  margin-top: 18px;
}

.room-detail-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.room-detail-note i {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.room-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.room-highlight-card {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
}

.room-highlight-card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(200, 164, 93, 0.16);
  color: var(--brand-gold);
}

.room-highlight-card__icon i {
  width: 22px;
  height: 22px;
}

.room-highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.room-highlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.room-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.room-amenity-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-align: left;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 58, 99, 0.08);
  background: var(--brand-white);
  box-shadow: none;
}

.room-amenity-tile__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(31, 58, 99, 0.05);
  color: var(--brand-navy);
}

.room-amenity-tile__icon i {
  width: 15px;
  height: 15px;
  color: var(--brand-gold);
}

.room-amenity-tile strong {
  display: block;
  margin-bottom: 0;
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.room-amenity-tile p {
  display: none;
}

.room-inclusions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
  box-shadow: var(--shadow-card);
}

.room-inclusion-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-inclusion-pill i {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.room-booking-band {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(31, 58, 99, 0.04), rgba(200, 164, 93, 0.12)),
    var(--surface-soft);
  border-block: 1px solid var(--line);
}

.room-booking-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.room-booking-band-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.room-booking-band-copy p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
}

@media (max-width: 1100px) {
  .room-highlight-grid,
  .room-amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .room-detail-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .room-detail-gallery {
    grid-template-columns: 1fr;
  }

  .room-card-modern__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .room-highlight-grid,
  .room-amenity-grid,
  .room-card-modern__specs {
    grid-template-columns: 1fr;
  }
}

.room-card .room-body,
.review-card,
.event-card,
.story-card .story-body,
.gallery-item .gallery-caption {
  padding: 20px;
}

.career-card {
  padding: 0;
}

.room-card h3,
.career-card h3,
.event-card h3,
.story-card h3 {
  margin: 8px 0 8px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.48rem;
  line-height: 1.08;
}

.room-card h3 {
  font-size: 1.32rem;
  line-height: 1.15;
}

.room-card p,
.career-card p,
.event-card p,
.story-card p,
.review-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.room-card p.room-meta-line {
  font-size: 0.86rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.chip,
.status,
.sentiment {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(31, 58, 99, 0.13);
  color: var(--brand-navy);
  background: rgba(31, 58, 99, 0.06);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.dining-section {
  background:
    linear-gradient(90deg, rgba(31, 58, 99, 0.04), transparent 42%),
    var(--brand-white);
}

.chef-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(200, 164, 93, 0.36);
  border-radius: var(--radius-lg);
  background: var(--brand-cream);
}

.chef-card span {
  display: block;
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chef-card strong {
  display: block;
  margin-top: 7px;
  color: var(--text-main);
  line-height: 1.35;
}

.chef-card p {
  margin: 8px 0 0;
}

.dining-reserve-form {
  margin-top: 28px;
}

.chef-card--spotlight {
  margin-top: 0;
  grid-template-columns: 52px 1fr;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.12), rgba(244, 242, 236, 0.96)),
    var(--brand-cream);
  border-left: 4px solid var(--brand-gold);
}

.chef-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-white);
  border: 1px solid rgba(200, 164, 93, 0.35);
}

.chef-card__icon i {
  width: 24px;
  height: 24px;
  color: var(--brand-gold);
}

.chef-card__label {
  display: block;
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chef-card__note {
  margin: 10px 0 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.menu-download {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(31, 58, 99, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(244, 242, 236, 0.96), rgba(255, 255, 255, 0.98));
  border-left: 4px solid var(--brand-gold);
}

.menu-download__text {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-download__btn {
  width: 100%;
  justify-content: center;
}

.menu-panel {
  padding: 22px;
  border-color: var(--line);
  background: var(--brand-white);
}

.tab-list,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.tab-button,
.filter-button {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(31, 58, 99, 0.15);
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-white);
  font-size: 0.8rem;
  font-weight: 900;
}

.tab-button.active,
.filter-button.active {
  color: var(--brand-white);
  background: var(--brand-navy);
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-item,
.pipeline-item,
.admin-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child,
.pipeline-item:last-child,
.admin-list-item:last-child {
  border-bottom: 0;
}

.menu-item strong,
.admin-list-item strong {
  color: var(--brand-navy);
}

.menu-item p,
.admin-list-item p,
.pipeline-item p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.menu-price {
  color: var(--brand-navy);
  font-weight: 900;
  white-space: nowrap;
}

.events-section {
  background: var(--brand-navy);
  color: var(--brand-white);
}

.events-section .section-head h2,
.events-section .section-head p {
  color: var(--brand-white);
}

.events-section .section-head p,
.events-section .event-card p {
  color: rgba(255, 255, 255, 0.72);
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.event-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.event-card h3 {
  color: var(--brand-white);
}

.inquiry-form {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--brand-white);
  color: var(--text-main);
}

.inquiry-form h3 {
  margin: 0 0 18px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-card {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover, 0 18px 40px rgba(8, 19, 38, 0.16));
  border-color: rgba(200, 164, 93, 0.5);
}

.story-card .story-image {
  min-height: 200px;
}

.story-card .story-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.story-card span {
  color: var(--brand-gold, #c8a45d);
}

.story-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.gallery-image {
  min-height: 220px;
}

.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.careers-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
}

.careers-spotlight-copy h2 {
  margin-top: 12px;
}

.careers-spotlight-copy > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.careers-spotlight-media {
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.careers-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-benefits-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.careers-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--brand-white);
}

.careers-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(200, 164, 93, 0.14);
}

.careers-benefit-icon svg {
  width: 18px;
  height: 18px;
  color: var(--brand-gold);
}

.careers-benefit-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
}

.careers-benefit-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.careers-page-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.careers-roles-section {
  padding-top: 72px;
}

.careers-roles-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 40px;
  align-items: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.careers-roles-head h2 {
  margin-top: 12px;
  color: var(--brand-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.careers-roles-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.careers-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-filter {
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--brand-white);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip-filter.active,
.chip-filter:hover {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: var(--brand-white);
}

.chip-muted {
  background: var(--surface-soft);
}

.careers-role-list {
  display: grid;
  gap: 12px;
}

.career-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.career-row:hover {
  border-color: rgba(200, 164, 93, 0.42);
  box-shadow: 0 12px 28px rgba(31, 58, 99, 0.08);
}

.career-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-row-title {
  margin: 10px 0 8px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1.15;
}

.career-row-summary {
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.career-row-aside {
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: 168px;
}

.career-row-schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: right;
}

.career-row-schedule svg {
  width: 15px;
  height: 15px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.career-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.84rem;
}

.careers-empty {
  margin: 0;
  padding: 28px 24px;
  border: 1px dashed rgba(31, 58, 99, 0.2);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.careers-apply-wrap {
  display: grid;
  gap: 32px;
}

.careers-apply-intro {
  max-width: 640px;
}

.careers-apply-intro h2 {
  margin-top: 12px;
  color: var(--brand-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.careers-apply-intro p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.careers-apply-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1.28fr);
  gap: 36px;
  align-items: start;
}

.careers-apply-sidebar {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
}

.careers-sidebar-title {
  margin: 0 0 18px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.careers-process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.careers-process-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-bottom: 22px;
  position: relative;
}

.careers-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 4px;
  width: 2px;
  background: rgba(31, 58, 99, 0.12);
}

.careers-process-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: var(--brand-white);
  font-weight: 700;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

.careers-process-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.careers-process-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.careers-contact-fallback {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.careers-contact-fallback a {
  color: var(--brand-navy);
  font-weight: 600;
}

.careers-form-card {
  max-width: none;
}

.label-optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.form-footnote {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.modal-eyebrow {
  margin: 0 0 8px;
  color: var(--brand-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.modal-meta svg {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.modal-subhead {
  margin: 18px 0 10px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.reviews-section {
  background: var(--brand-white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 240px;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: var(--brand-navy);
}

.contact-layout {
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
}

.contact-cards strong,
.contact-cards span,
.contact-cards .text-button {
  grid-column: 2;
}

.contact-cards i {
  grid-row: 1 / span 2;
}

.text-button {
  width: max-content;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--brand-navy);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-card {
  min-height: 430px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(45deg, rgba(31, 58, 99, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(31, 58, 99, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(200, 164, 93, 0.18) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(200, 164, 93, 0.18) 75%),
    var(--brand-cream);
  background-size: 42px 42px;
  background-position: 0 0, 0 21px, 21px -21px, -21px 0;
  border: 1px solid rgba(31, 58, 99, 0.13);
}

.map-pin {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--brand-white);
  background: var(--brand-navy);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.map-card span {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.map-card p {
  max-width: 360px;
  margin: 0;
  color: var(--text-muted);
  text-align: center;
}

.admin-section {
  padding: 92px 0;
  color: var(--brand-white);
  background: var(--brand-black);
}

.admin-shell {
  width: min(1320px, calc(100vw - 28px));
  min-height: 860px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #071326;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.admin-shell.navy-mode {
  background: var(--brand-navy-dark);
}

.admin-sidebar {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(31, 58, 99, 0.98), rgba(7, 19, 38, 0.98)),
    var(--brand-navy);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-brand .brand-mark {
  color: var(--brand-white);
}

.admin-brand strong {
  display: block;
}

.admin-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.admin-nav button:hover,
.admin-nav button.active {
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-workspace {
  min-width: 0;
  background: #F5F7FB;
  color: var(--text-main);
}

.admin-topbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  background: var(--brand-white);
  border-bottom: 1px solid #E6EAF2;
}

.admin-topbar h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-panel {
  display: none;
  padding: 30px 32px 42px;
}

.admin-panel.active {
  display: block;
}

.admin-panel-head {
  margin-bottom: 22px;
}

.admin-panel-head.inline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.admin-panel-head h3,
.admin-card h4 {
  margin: 0;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
}

.admin-card h4 {
  font-size: 1.45rem;
}

.admin-panel-head p,
.admin-card p {
  margin: 7px 0 0;
  color: var(--text-muted);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.kpi-card {
  padding: 18px;
  border: 1px solid #E4E9F2;
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(15, 33, 63, 0.07);
}

.kpi-card span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kpi-card strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-navy);
  font-size: 1.8rem;
  line-height: 1.1;
}

.kpi-card small {
  color: var(--success);
  font-weight: 900;
}

.dashboard-grid,
.admin-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.admin-card,
.cms-form,
.settings-grid {
  padding: 22px;
  border-color: #E4E9F2;
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(15, 33, 63, 0.07);
}

.bar-chart {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.bar-row {
  display: grid;
  grid-template-columns: 116px 1fr 46px;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #E8EDF5;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-gold));
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #E4E9F2;
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: 0 12px 30px rgba(15, 33, 63, 0.07);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 14px;
  border-bottom: 1px solid #EAF0F6;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
}

th {
  color: var(--brand-navy);
  background: #F8FAFD;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td strong {
  color: var(--brand-navy);
}

tr:last-child td {
  border-bottom: 0;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-button {
  min-height: 31px;
  padding: 6px 9px;
  border: 1px solid rgba(31, 58, 99, 0.15);
  border-radius: var(--radius-sm);
  color: var(--brand-navy);
  background: var(--brand-white);
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-button:hover {
  background: rgba(31, 58, 99, 0.06);
}

.status.pending,
.status.new {
  color: var(--warning);
  background: rgba(154, 99, 20, 0.12);
}

.status.confirmed,
.status.clean,
.status.available,
.sentiment.positive {
  color: var(--success);
  background: rgba(31, 122, 77, 0.12);
}

.status.cancelled,
.status.maintenance,
.sentiment.attention {
  color: var(--danger);
  background: rgba(163, 58, 49, 0.12);
}

.status.neutral,
.status.checked {
  color: var(--brand-navy);
  background: rgba(31, 58, 99, 0.1);
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(15, 33, 63, 0.07);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(36px, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.calendar-day {
  min-height: 52px;
  padding: 8px;
  border: 1px solid #E4E9F2;
  border-radius: var(--radius-sm);
  background: #F8FAFD;
  font-size: 0.78rem;
  font-weight: 900;
}

.calendar-day.active {
  color: var(--brand-white);
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

.media-admin-grid,
.promo-admin-grid,
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-admin-card .media-image {
  min-height: 150px;
}

.media-admin-card .media-body,
.promo-card,
.role-card {
  padding: 18px;
}

.promo-card strong,
.role-card strong,
.media-admin-card strong {
  display: block;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.promo-card p,
.role-card p,
.media-admin-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cms-form,
.settings-grid {
  display: grid;
  gap: 15px;
  max-width: 820px;
}

.settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.settings-grid .btn,
.brand-preview {
  grid-column: 1 / -1;
}

.brand-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.brand-preview strong {
  display: block;
  color: var(--brand-navy);
  font-family: var(--font-brand);
  letter-spacing: 0.16em;
}

.brand-preview small {
  color: var(--text-muted);
}

.site-footer {
  padding: 66px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #071326;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.7fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand .brand-mark,
.footer-brand .brand-copy {
  color: var(--brand-white);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.site-footer p {
  margin: 18px 0 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer form {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer form label span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.social-placeholders {
  display: flex;
  gap: 9px;
}

.social-placeholders button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--brand-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  display: grid;
  gap: 10px;
  width: min(380px, calc(100vw - 36px));
}

.toast {
  padding: 15px 16px;
  color: var(--brand-white);
  background: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 9, 18, 0.62);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: 28px;
  color: var(--text-main);
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.modal-image {
  min-height: 250px;
  margin: -28px -28px 24px;
  background-position: center;
  background-size: cover;
}

.modal h2 {
  margin: 0 48px 12px 0;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 2.45rem;
  line-height: 1.02;
}

.modal p {
  color: var(--text-muted);
}

.modal-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  display: flex;
  gap: 9px;
  align-items: start;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.modal-list i {
  color: var(--brand-gold);
  margin-top: 2px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.modal-actions .btn {
  flex: 1 1 140px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--brand-white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-content,
  .split-layout,
  .dining-layout,
  .contact-layout,
  .visit-layout,
  .events-layout,
  .careers-spotlight,
  .careers-apply-layout,
  .careers-roles-head,
  .dashboard-grid,
  .admin-split {
    grid-template-columns: 1fr;
  }

  .careers-spotlight-media {
    min-height: 280px;
  }

  .career-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-row-aside {
    justify-items: start;
    min-width: 0;
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid var(--line);
  }

  .career-row-schedule {
    text-align: left;
  }

  .career-row-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .week-horizon {
    grid-template-columns: 1fr;
  }

  .week-timeline {
    padding: 0;
    border-top: 1px solid rgba(31, 58, 99, 0.08);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet / small-laptop (≤1180px): two-column sections are stacked here, so
   keep their media and interactive cards from ballooning to the full ~980px
   container width. Media become capped-height banners; forms/cards center at a
   comfortable width. */
@media (max-width: 1180px) {
  .split-layout > .image-frame,
  .rooms-feature-image,
  .experiences-side-image,
  .careers-spotlight-media {
    height: clamp(240px, 40vw, 360px);
    min-height: 0;
  }

  .split-layout > .image-frame img,
  .rooms-feature-image img,
  .experiences-side-image img,
  .careers-spotlight-media img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .week-spotlight__media {
    aspect-ratio: auto;
    height: clamp(220px, 36vw, 340px);
  }

  .booking-card,
  .dining-reserve-form,
  .events-layout .calculator-card,
  .events-layout .inquiry-form--events {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 44px;
    width: 100%;
  }

  .hero-content {
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .hero-copy p:not(.demo-line) {
    font-size: 0.92rem;
  }

  .booking-card {
    padding: 18px;
  }

  .trust-grid,
  .week-grid,
  .event-packages,
  .events-venues-grid,
  .story-grid,
  .gallery-grid,
  .review-grid,
  .card-grid,
  .careers-benefits-compact,
  .kpi-grid,
  .media-admin-grid,
  .promo-admin-grid,
  .role-grid,
  .settings-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid,
  .rooms-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-card {
    min-width: 0;
  }

  .admin-topbar,
  .admin-panel-head.inline,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-panel,
  .admin-topbar {
    padding: 22px 18px;
  }

  .admin-shell {
    width: min(100vw - 16px, 720px);
  }

  .bar-row {
    grid-template-columns: 86px 1fr 38px;
  }

  .admin-row-card {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 22px;
  }

  .modal-image {
    margin: -22px -22px 20px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 72px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark::before,
  .brand-mark::after,
  .brand-mark span::before,
  .brand-mark span::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
  }

  .brand-mark span {
    inset: 4px 16px;
    border-width: 2px;
  }

  .brand-copy strong {
    font-size: 1.08rem;
    letter-spacing: 0.14em;
  }

  .brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.34em;
  }

  .nav-links {
    inset-block-start: 72px;
  }

  .hero {
    padding: 64px 0 40px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 1.55rem;
  }

  .btn {
    width: 100%;
  }

  .contact-cards div {
    grid-template-columns: 1fr;
  }

  .contact-cards strong,
  .contact-cards span,
  .contact-cards .text-button {
    grid-column: auto;
  }

  .rooms-grid,
  .rooms-grid-home {
    grid-template-columns: 1fr;
  }

  .contact-cards i {
    grid-row: auto;
  }

  .modal h2 {
    font-size: 2rem;
  }
}

/* Brand Logo Image Support & Text Duplication Override */
.brand img.brand-logo + .brand-copy {
  display: none;
}

.brand-logo {
  height: 76px;
  width: auto;
  max-width: min(360px, 100%);
  object-fit: contain;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.brand-logo.small {
  height: 38px;
}

/* Detailed Corporate Footer Layout */
.site-footer {
  background: linear-gradient(180deg, #0B1C38 0%, #060D1A 100%);
  padding: 85px 0 32px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(200, 164, 93, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
}

.site-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--brand-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 700;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--brand-gold);
}

.site-footer a {
  display: block;
  margin: 10px 0;
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--brand-gold);
  transform: translateX(3px);
}

.site-footer span {
  display: block;
  margin: 10px 0;
  font-size: 0.94rem;
}

.site-footer form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.site-footer form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--brand-white);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
}

.site-footer form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

/* Vertical Timeline for Kampala Weekend Guides */
.timeline-container {
  position: relative;
  padding: 30px 0;
  margin-top: 30px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-gold);
  opacity: 0.4;
}

.timeline-event {
  position: relative;
  padding-left: 50px;
  margin-bottom: 35px;
}

.timeline-event::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-navy);
  border: 3px solid var(--brand-gold);
  z-index: 2;
  box-shadow: 0 0 10px rgba(200, 164, 93, 0.4);
  transition: transform 180ms ease;
}

.timeline-event:hover::before {
  transform: scale(1.2);
}

.timeline-time {
  font-weight: 800;
  color: var(--brand-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  color: var(--brand-navy);
  margin: 0 0 8px;
  font-weight: 700;
}

.timeline-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Dynamic Cost Calculator on Events Page */
.calculator-card {
  background: var(--brand-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-result-box {
  grid-column: 1 / -1;
  background: var(--brand-cream);
  border: 1px solid rgba(200, 164, 93, 0.36);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  text-align: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
}

.calc-result-box span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-result-box strong {
  display: block;
  font-size: 2.1rem;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  margin: 8px 0;
  letter-spacing: 0.02em;
}

.calc-result-box p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Leaflet Map Frame Container */
.map-card-leaflet {
  height: 430px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--brand-cream);
  box-shadow: var(--shadow-card);
}

/* Standalone Full-Screen Admin Dashboard Styles */
body.admin-body {
  background: #071326;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.admin-body .admin-shell {
  width: 100vw;
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 280px minmax(0, 1fr);
  flex: 1 1 auto;
}

body.admin-body .admin-workspace {
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

body.admin-body .admin-panel {
  flex: 1 1 auto;
  overflow-y: auto;
}

/* Responsive sidebar adjustments for standalone page */
@media (max-width: 990px) {
  body.admin-body .admin-shell {
    grid-template-columns: 1fr;
  }
  
  body.admin-body .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  body.admin-body .admin-workspace {
    height: auto;
  }
}

/* ==========================================================================
   PREMIUM UPGRADES v3.0.0
   ========================================================================== */

/* Brand Logo Text Cleanup Override */
.brand img.brand-logo + .brand-copy,
.footer-brand img.brand-logo + .brand-copy {
  display: none;
}

/* Modern Masonry Gallery Wall */
.gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  background: var(--brand-navy-dark);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(8, 28, 56, 0.25);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7) contrast(1.05);
}

/* Glassmorphism slide-up captions */
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 28, 56, 0.95) 0%, rgba(11, 28, 56, 0.6) 50%, rgba(11, 28, 56, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--brand-white);
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption strong {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--brand-gold);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-caption span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-caption span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--brand-gold);
}

/* Hover Action Button Zoom Overlay */
.gallery-zoom-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--brand-white);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-icon i {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* Luxury Full-Screen Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 26, 0.98);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 1050px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  background: var(--brand-navy-dark);
  border: 1px solid rgba(200, 164, 93, 0.24);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75);
  position: relative;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image-side {
  position: relative;
  background: #02060d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.lightbox-image-side img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
}

.lightbox-info-side {
  padding: 48px;
  color: var(--brand-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #071122 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.lightbox-info-side .category-tag {
  color: var(--brand-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.lightbox-info-side h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin: 0 0 18px;
  line-height: 1.15;
  color: var(--brand-white);
  font-weight: 700;
}

.lightbox-info-side p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 35px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--brand-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  z-index: 10;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
  border-color: var(--brand-gold);
  transform: scale(1.08) rotate(90deg);
}

@media (max-width: 900px) {
  .lightbox-content {
    grid-template-columns: 1fr;
  }
  .lightbox-image-side {
    min-height: 320px;
  }
  .lightbox-info-side {
    padding: 32px;
  }
  .lightbox-info-side h2 {
    font-size: 1.8rem;
  }
}

/* Premium Form Elements */
.premium-form-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-card);
}

.premium-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  color: var(--brand-navy);
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
}

.premium-form-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-navy-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--brand-white);
  border: 1px solid rgba(31, 58, 99, 0.16);
  border-radius: var(--radius-md);
  color: var(--text-main);
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, 0.22);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Interactive Review Form Component on Homepage */
.review-form-section {
  background: var(--brand-cream);
  padding: 60px 0;
  border-top: 1px solid rgba(31, 58, 99, 0.08);
  border-bottom: 1px solid rgba(31, 58, 99, 0.08);
}

.reviews-double-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .reviews-double-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact page – info + map (uses .visit-layout) */
.contact-section .visit-layout {
  align-items: stretch;
}

.contact-card-info {
  background: var(--brand-navy-dark);
  color: var(--brand-white);
  padding: 42px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 164, 93, 0.2);
}

.contact-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--brand-gold);
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-card-info a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card-info a:hover {
  color: var(--brand-gold);
}

.section-label--on-dark {
  color: var(--brand-gold);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 48px;
  align-items: stretch;
}

.visit-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.visit-panel__title {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  line-height: 1.18;
  color: var(--brand-white);
}

.visit-panel__lead {
  margin: 16px 0 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-info-list--visit {
  margin: 28px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

.contact-info-list--visit .contact-info-item + .contact-info-item {
  padding-top: 4px;
}

.visit-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
}

.visit-panel__actions .btn {
  min-height: 46px;
}

.visit-map-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.visit-map-head {
  margin-bottom: 22px;
}

.visit-map-head h2 {
  margin-top: 10px;
}

.visit-map-head p {
  margin-top: 12px;
  max-width: 42ch;
}

.visit-map-col .map-card-leaflet {
  flex: 1 1 auto;
  min-height: 480px;
  height: auto;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item i,
.contact-info-item .contact-info-icon {
  color: var(--brand-gold);
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-info-item .contact-info-icon {
  width: 20px;
  height: 20px;
}

.contact-info-item div strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin-bottom: 4px;
}

.contact-info-item div p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.social-circle-buttons {
  display: flex;
  gap: 12px;
}

.social-circle-buttons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand-white);
  transition: all 0.25s ease;
}

.social-circle-buttons a:hover {
  background: var(--brand-gold);
  color: var(--brand-navy-dark);
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}

/* Contact page – Google Maps embed */
.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.contact-map-col .contact-map-frame {
  flex: 1 1 auto;
  min-height: 320px;
  height: auto;
}

.contact-map-lead {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--text-muted, #6b7b8d);
  max-width: 46ch;
  line-height: 1.6;
}

.contact-map-frame {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  border: 1px solid var(--line, #e3e0da);
  box-shadow: 0 8px 32px rgba(31, 58, 99, 0.10), 0 2px 8px rgba(0,0,0,0.04);
  background: var(--brand-cream, #F4F2EC);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 600;
  border: 2px solid var(--brand-navy, #1F3A63);
  color: var(--brand-navy, #1F3A63);
  padding: 12px 24px;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.contact-map-directions:hover {
  background: var(--brand-navy, #1F3A63);
  color: #fff;
  transform: translateY(-1px);
}

.contact-map-directions svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-col .contact-map-frame {
    flex: none;
    height: 340px;
    min-height: 340px;
  }

  .visit-map-col .map-card-leaflet {
    min-height: 380px;
  }

  .visit-panel__actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 180px;
  }
}

@media (max-width: 560px) {
  .visit-panel__actions {
    flex-direction: column;
  }

  .visit-panel__actions .btn {
    width: 100%;
    flex: none;
  }

  .contact-map-col .contact-map-frame {
    height: 280px;
    min-height: 280px;
  }

  .contact-map-directions {
    width: 100%;
    justify-content: center;
  }
}

/* Growth Lite production layout */
.eyebrow-line {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.hero-centered {
  text-align: center;
  width: 100%;
  max-width: none;
}

.hero-centered .hero-copy {
  max-width: 860px;
  margin-inline: auto;
}

.hero-centered .hero h1 {
  max-width: 18ch;
  margin-inline: auto;
}

.hero-centered .hero-copy p:not(.demo-line) {
  max-width: 58ch;
  margin-inline: auto;
}

.hero-actions-centered { justify-content: center; }

/* Homepage hero carousel */
.hero-carousel {
  min-height: clamp(520px, 62vh, 680px);
  padding: clamp(96px, 11vw, 120px) 0 clamp(64px, 7vw, 80px);
}

.hero-carousel__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--brand-navy-dark);
}

.hero-carousel__slides {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  transform: scale(1.03);
  will-change: opacity;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel .hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 12, 23, 0.78) 0%, rgba(6, 12, 23, 0.42) 52%, rgba(6, 12, 23, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 12, 23, 0.08) 0%, rgba(6, 12, 23, 0.72) 100%),
    radial-gradient(circle at 76% 38%, rgba(200, 164, 93, 0.14), transparent 28%);
}

.hero-carousel .hero-content {
  z-index: 3;
}

.hero-carousel__copy {
  position: relative;
  min-height: clamp(220px, 28vh, 280px);
}

.hero-carousel__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.75s ease, transform 0.75s ease, visibility 0.75s ease;
  pointer-events: none;
}

.hero-carousel__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
  pointer-events: auto;
}

.hero-carousel__panel h1 {
  max-width: 22ch;
}

.hero-centered .hero-carousel__panel h1 {
  max-width: 22ch;
  margin-inline: auto;
}

.hero-carousel__panel p {
  max-width: 46ch;
}

.hero-carousel__controls {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vw, 32px);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-carousel__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 19, 38, 0.35);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible {
  background: rgba(200, 164, 93, 0.28);
  border-color: var(--brand-gold);
  outline: none;
}

.hero-carousel__arrow i {
  width: 20px;
  height: 20px;
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-carousel__dot.is-active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  transform: scale(1.15);
}

.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
  border-color: var(--brand-gold);
  outline: none;
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: clamp(460px, 72vh, 560px);
    padding: clamp(80px, 14vw, 104px) 0 clamp(88px, 12vw, 108px);
  }

  .hero-carousel__panel h1 {
    max-width: 14ch;
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .hero-carousel__controls {
    gap: 10px;
    width: min(100% - 32px, 360px);
    justify-content: center;
  }

  .hero-carousel__arrow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide,
  .hero-carousel__panel {
    transition: none;
  }

  .hero-carousel__arrow:hover {
    transform: none;
  }
}

.section-compact { padding: clamp(var(--space-4), 4vw, var(--space-5)) 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; font-size: 0.82rem; }
.topbar-meta span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-meta i { width: 14px; height: 14px; }

.ota-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.ota-strip-inline { margin-top: 0; }
.ota-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand-gold);
  color: var(--brand-navy);
  border: 1px solid var(--brand-gold);
}
.ota-btn-alt {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.ota-banner { background: var(--surface-soft); border-block: 1px solid var(--line); }
.ota-banner-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.ota-banner-inner p { margin: 0; color: var(--text-muted); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; place-items: center; color: white;
  transition: background 0.2s ease;
}
.social-links a:hover { background: var(--brand-gold); color: var(--brand-navy); border-color: var(--brand-gold); }
.social-links-dark a { border-color: rgba(255, 255, 255, 0.15); }

.footer-tagline { margin-top: 15px; font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.footer-contact-line { display: flex; align-items: flex-start; gap: 8px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; }
.footer-contact-line i { width: 16px; height: 16px; color: var(--brand-gold); flex: 0 0 auto; margin-top: 3px; }
.footer-link { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }
.footer-logo-invert { filter: brightness(0) invert(1); }
.footer-newsletter p { margin: 0 0 10px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.75); }
.footer-newsletter input {
  width: 100%; min-height: 40px; padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  color: white; border-radius: 4px;
}
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.footer-bottom a { color: var(--brand-gold); }

.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.form-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section-soft { background: var(--surface-soft); border-top: 1px solid var(--line); }
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-form-intro {
  max-width: 38ch;
}

.contact-form-intro h2 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--brand-navy);
  line-height: 1.2;
}

.contact-form-intro p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-form-card {
  margin: 0;
}

@media (max-width: 992px) {
  .contact-form-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form-intro {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .contact-card-info {
    padding: 28px 22px;
  }
}
.events-page-stack { display: flex; flex-direction: column; gap: 40px; }
.social-heading { font-family: var(--font-brand); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 15px; }
.section-head-tight { margin-bottom: 24px; }

/* Admin Website Manager */
.admin-nav { display: flex; flex-direction: column; gap: 4px; padding: 12px; }
.admin-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 6px;
  color: rgba(255, 255, 255, 0.78); font-size: 0.9rem;
}
.admin-nav-link:hover, .admin-nav-link.active { background: rgba(255, 255, 255, 0.1); color: white; }
.admin-nav-link i { width: 18px; height: 18px; }
.admin-sidebar-foot { margin-top: auto; padding: 18px 12px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 8px; }
.admin-main { padding: 0 24px 40px; }
.admin-page-title { margin-top: 4px; font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.2; font-family: var(--font-heading); color: var(--brand-navy); }
.admin-user-pill { font-size: 0.82rem; padding: 6px 12px; background: var(--surface-soft); border-radius: 999px; max-width: min(160px, 32vw); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.admin-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td { padding: 10px 8px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-table-actions { display: flex; gap: 12px; align-items: center; }
.admin-success { color: #0f6e3f; background: #e8f8ef; padding: 10px 14px; border-radius: 6px; }
.admin-error { color: #b42318; background: #fef3f2; padding: 10px 14px; border-radius: 6px; }

/* Staff login (standalone page) */
body.admin-login-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.admin-login-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(155deg, rgba(7, 19, 38, 0.9) 0%, rgba(21, 41, 71, 0.82) 42%, rgba(31, 58, 99, 0.72) 100%),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.admin-login-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 164, 93, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.admin-login-main {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: grid;
  gap: 20px;
}

.admin-login-card {
  position: relative;
  overflow: hidden;
  background: var(--brand-ivory);
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px) clamp(28px, 4vw, 40px) clamp(28px, 4vw, 36px);
  box-shadow:
    0 28px 80px rgba(4, 12, 28, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.admin-login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), rgba(200, 164, 93, 0.55), var(--brand-gold));
  pointer-events: none;
}

.admin-login-brand {
  text-align: center;
  margin-bottom: 8px;
}

.admin-login-brand a {
  display: inline-block;
  line-height: 0;
}

.admin-login-brand img {
  width: min(240px, 78vw);
  height: auto;
  object-fit: contain;
}

.admin-login-eyebrow {
  margin: 14px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.admin-login-card h1 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 4vw, 1.85rem);
  font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
}

.admin-login-lead {
  margin: 0 0 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-login-demo {
  margin: 0 0 22px;
  padding: 12px 14px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--brand-navy-dark);
  background: rgba(200, 164, 93, 0.14);
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: var(--radius-md);
}

.admin-login-demo strong {
  font-weight: 700;
  color: var(--brand-navy);
}


.admin-login-card .admin-error {
  margin: 0 0 20px;
  font-size: 0.88rem;
  border: 1px solid rgba(180, 35, 24, 0.15);
}

.admin-login-card .cms-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.admin-login-card .cms-form input {
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-login-card .cms-form input:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(31, 58, 99, 0.12);
}

.admin-login-card .btn-primary {
  margin-top: 8px;
  min-height: 48px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.admin-login-foot {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
}

.admin-login-foot a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.admin-login-foot a:hover {
  color: var(--brand-gold);
}

.admin-hint { color: var(--text-muted); font-size: 0.92rem; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-form-grid .full { grid-column: 1 / -1; }
.admin-fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 14px; margin-bottom: 14px; }
.admin-check { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.admin-filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; padding: 0 24px; }
.admin-filter-row a { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.85rem; }
.admin-filter-row a.active { background: var(--brand-navy); color: white; border-color: var(--brand-navy); }
.inquiry-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.inquiry-detail__identity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.inquiry-detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
  flex: 0 0 auto;
}

.inquiry-detail__icon i {
  width: 20px;
  height: 20px;
}

.inquiry-detail__eyebrow {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.inquiry-detail__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-navy);
}

.inquiry-detail__meta {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.inquiry-status-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.inquiry-status-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.inquiry-status-form__controls {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(31, 58, 99, 0.06);
}

.inquiry-status-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-status-btn:hover {
  background: rgba(255, 255, 255, 0.72);
}

.inquiry-status-btn.is-active {
  background: white;
  color: var(--brand-navy);
  box-shadow: 0 2px 8px rgba(31, 58, 99, 0.12);
}

.inquiry-detail__sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inquiry-detail__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

.inquiry-detail__section-title i {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.inquiry-detail__fields {
  margin: 0;
  display: grid;
  gap: 10px;
}

.inquiry-detail__row {
  display: grid;
  grid-template-columns: minmax(110px, 34%) 1fr;
  gap: 8px 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.inquiry-detail__row--wide {
  grid-template-columns: 1fr;
}

.inquiry-detail__row dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.inquiry-detail__row dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-main);
  word-break: break-word;
}

.inquiry-detail__row dd a {
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: none;
}

.inquiry-detail__row dd a:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

.inquiry-detail__value--block {
  white-space: pre-wrap;
  line-height: 1.55;
}

.inquiry-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.inquiry-detail__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inquiries-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inquiries-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.inquiries-stat-card {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 8px 24px rgba(31, 58, 99, 0.04);
}

.inquiries-stat-card__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.inquiries-stat-card__value {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--brand-navy);
}

.inquiries-stat-card__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.inquiries-stat-card--new {
  border-color: rgba(154, 103, 0, 0.18);
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}

.inquiries-stat-card--read {
  border-color: rgba(15, 110, 63, 0.16);
  background: linear-gradient(180deg, #f4fbf7 0%, #fff 100%);
}

.inquiries-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
}

.inquiries-search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.inquiries-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 280px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiries-search:focus-within {
  border-color: rgba(31, 58, 99, 0.35);
  box-shadow: 0 0 0 3px rgba(31, 58, 99, 0.08);
  background: white;
}

.inquiries-search i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex: 0 0 auto;
}

.inquiries-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text-main);
}

.inquiries-search input:focus {
  outline: none;
}

.inquiries-filter-select select {
  min-width: 150px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text-main);
}

.inquiries-search-btn,
.inquiries-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inquiries-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inquiries-type-tab {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  background: white;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.inquiries-type-tab:hover {
  border-color: rgba(31, 58, 99, 0.25);
  color: var(--brand-navy);
}

.inquiries-type-tab.is-active {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: white;
}

.inquiries-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.inquiries-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.inquiries-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.inquiries-panel__head h3 {
  margin: 0;
}

.inquiries-panel__subtitle {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.inquiries-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(100vh - 360px);
  overflow: auto;
  padding-right: 4px;
}

.inquiries-item {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inquiries-item:hover {
  border-color: rgba(31, 58, 99, 0.22);
  box-shadow: 0 8px 20px rgba(31, 58, 99, 0.06);
}

.inquiries-item.is-active {
  border-color: var(--brand-navy);
  box-shadow: 0 10px 24px rgba(31, 58, 99, 0.1);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.inquiries-item.is-unread {
  border-left: 4px solid var(--brand-gold);
}

.inquiries-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.inquiries-item__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.inquiries-item__type i {
  width: 14px;
  height: 14px;
}

.inquiries-item__top time {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.inquiries-item__name {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--brand-navy);
}

.inquiries-item__snippet {
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inquiries-item__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.inquiries-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 280px;
  padding: 24px;
  color: var(--text-muted);
}

.inquiries-empty--detail {
  flex: 1;
}

.inquiries-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(31, 58, 99, 0.06);
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.inquiries-empty__icon i {
  width: 24px;
  height: 24px;
}

.inquiries-empty h4 {
  margin: 0;
  color: var(--brand-navy);
}

.inquiries-empty p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .inquiries-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiries-layout {
    grid-template-columns: 1fr;
  }

  .inquiries-list {
    max-height: none;
  }

  .inquiries-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .inquiries-stats {
    grid-template-columns: 1fr;
  }

  .inquiries-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-detail__row {
    grid-template-columns: 1fr;
  }
}
.status-pill { font-size: 0.75rem; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; }
.status-new { background: #fff4e5; color: #9a6700; }
.status-read { background: #e8f8ef; color: #0f6e3f; }
.kpi-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.kpi-card span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.kpi-card strong { font-size: 1.8rem; font-family: var(--font-heading); color: var(--brand-navy); }

@media (max-width: 900px) {
  .admin-split, .admin-form-grid { grid-template-columns: 1fr; }
}

/* Public site shell, compact topbar + navy header */
.topbar-compact {
  background: var(--brand-navy-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-compact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding: 6px 0;
}

.topbar-loc { opacity: 0.92; }
.topbar-sep { opacity: 0.35; }
.topbar-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
}
.topbar-link:hover { color: var(--brand-gold); }
.topbar-wa { color: #8ce8b0; }

.site-header--navy {
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.site-header--navy .nav-shell { min-height: 64px; }

.site-header--navy .nav-links {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--navy .nav-links a.active,
.site-header--navy .nav-links a:hover {
  color: var(--brand-gold);
}

.site-header--navy .nav-links a::after {
  background: var(--brand-gold);
}

.site-header--navy .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.site-header--navy .brand-copy strong,
.site-header--navy .brand-copy small {
  color: white;
}

.site-header--navy .brand-copy small {
  opacity: 0.75;
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-ghost-btn { min-height: 42px; padding: 8px 16px; font-size: 0.82rem; }

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats li { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-gold);
}
.hero-stats span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.75); }

.section-soft { background: var(--surface-soft); }
.section-cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.rooms-grid-home { margin-top: 8px; }

.chef-card-inline { margin: 20px 0 24px; }

.promo-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
}

.promo-card i { width: 32px; height: 32px; color: var(--brand-gold); margin-bottom: 16px; }
.promo-card h3 { font-family: var(--font-heading); color: var(--brand-navy); margin: 0 0 12px; font-size: 1.45rem; }
.promo-card p { color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }

.promo-card-dark {
  background: linear-gradient(145deg, var(--brand-navy), var(--brand-navy-dark));
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.promo-card-dark h3 { color: white; }
.promo-card-dark p { color: rgba(255, 255, 255, 0.78); }
.promo-card-dark i { color: var(--brand-gold); }

.experiences-teaser-image {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.experiences-teaser-image img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.align-center { align-items: center; }

.footer-cta-band {
  background: linear-gradient(135deg, var(--brand-navy), #0a1628);
  color: white;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 8px 0 12px;
  color: white;
}

.footer-cta-inner p { margin: 0; max-width: 520px; color: rgba(255, 255, 255, 0.78); line-height: 1.6; }
.section-label.light { color: var(--brand-gold); }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-grid-rich {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 1.1fr;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 32px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-col a:hover { color: white; }

.footer-rating-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 16px 0;
}

.footer-rating-note i { width: 16px; height: 16px; color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }

.social-links-footer a { opacity: 0.9; }
.social-placeholder { opacity: 0.55; }

.footer-newsletter-intro {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 14px;
}

.footer-newsletter input[type="text"] {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: 4px;
}

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255, 255, 255, 0.55); text-decoration: none; font-size: 0.82rem; }
.footer-legal a:hover { color: var(--brand-gold); }

.ota-banner-inner strong { display: block; font-family: var(--font-heading); color: var(--brand-navy); font-size: 1.1rem; margin-bottom: 4px; }
.ota-banner-inner p { margin: 0; color: var(--text-muted); font-size: 0.92rem; max-width: 520px; }

@media (max-width: 1100px) {
  .footer-grid-rich { grid-template-columns: 1fr 1fr; }
  .footer-brand-section { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .promo-duo-grid { grid-template-columns: 1fr; }
  .topbar-sep { display: none; }
}

@media (max-width: 1100px) {
  .site-header--navy .nav-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-grid-rich { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.amenity-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(31, 58, 99, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.amenity-card i {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--brand-gold);
}

.amenity-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-size: 0.92rem;
}

.amenity-card p {
  margin: 0;
  grid-column: 2;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dining-hours-band { background: var(--brand-navy); color: white; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 40px 0; }
.hours-grid h3 { font-family: var(--font-heading); margin: 8px 0; color: white; }
.hours-grid p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.hours-grid .section-label { color: var(--brand-gold); }

.timeline-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.timeline-list li { padding-left: 16px; border-left: 2px solid var(--brand-gold); color: var(--text-muted); line-height: 1.5; }
.timeline-list strong { color: var(--brand-navy); }

.experiences-side-image { min-height: 300px; border-radius: var(--radius-lg); overflow: hidden; }
.experiences-side-image img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

@media (max-width: 768px) {
  .amenities-grid, .hours-grid { grid-template-columns: 1fr; }
}

.page-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.page-photo-strip figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  position: relative;
}

.page-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.page-photo-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: white;
  background: linear-gradient(transparent, rgba(8, 19, 38, 0.88));
}

.promo-card--media {
  padding: 0;
  overflow: hidden;
}

.promo-card--media .promo-card-media {
  min-height: 180px;
  overflow: hidden;
}

.promo-card--media .promo-card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.promo-card--media .promo-card-body {
  padding: 24px 28px 28px;
}

.contact-welcome-media {
  min-height: 200px;
  max-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.contact-welcome-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 220px;
  object-fit: cover;
  border-radius: inherit;
}

.contact-map-col .visit-map-head {
  margin-bottom: 0;
}

.rooms-feature-image {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rooms-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: inherit;
}

.events-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.events-showcase figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

.events-showcase img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.events-showcase figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: white;
  background: linear-gradient(transparent, rgba(8, 19, 38, 0.9));
}

/* Events page — interactive layout */
.events-quick-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.events-quick-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
}

.events-quick-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(31, 58, 99, 0.14);
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.events-quick-nav__link:hover,
.events-quick-nav__link:focus-visible {
  border-color: rgba(200, 164, 93, 0.45);
  transform: translateY(-1px);
}

.events-quick-nav__link--gold {
  color: var(--brand-white);
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

.events-quick-nav__link--gold:hover,
.events-quick-nav__link--gold:focus-visible {
  background: #162d4d;
}

.events-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.events-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.events-related-link i,
.events-related-link svg {
  width: 16px;
  height: 16px;
  color: var(--brand-gold);
}

.events-related-link:hover,
.events-related-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(200, 164, 93, 0.45);
  transform: translateY(-1px);
}

.section-head--tight {
  margin-top: 8px;
}

.event-card--selectable {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 18px;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.event-card--selectable:hover,
.event-card--selectable:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 164, 93, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.event-card--selectable.is-active {
  border-color: var(--brand-gold);
  background: rgba(200, 164, 93, 0.16);
  box-shadow: 0 0 0 1px rgba(200, 164, 93, 0.35);
}

.event-card--selectable:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.event-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-gold);
}

.event-card__icon svg {
  width: 20px;
  height: 20px;
}

.event-card__body strong {
  display: block;
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.15;
}

.event-card__body p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.event-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--brand-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card__action svg {
  width: 14px;
  height: 14px;
}

.events-venues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.events-space-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-white);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.events-space-card:hover,
.events-space-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.events-space-card.is-active {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 1px rgba(200, 164, 93, 0.35);
}

.events-space-card:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.events-space-card__media {
  display: block;
  min-height: 168px;
  aspect-ratio: 16 / 10;
}

.events-space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-space-card__body {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.events-space-card__body strong {
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.2;
}

.events-space-card__meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.events-space-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--brand-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-space-card__cta svg {
  width: 14px;
  height: 14px;
}

.inquiry-form--events {
  padding: 22px 24px 24px;
}

.inquiry-form__head {
  margin-bottom: 18px;
}

.inquiry-form__head h3 {
  margin: 6px 0 8px;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.12;
}

.inquiry-form__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.inquiry-form__eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.form-field {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
}

.form-field span {
  color: var(--text-muted);
}

.form-field span em {
  font-style: normal;
  font-weight: 600;
  color: rgba(31, 58, 99, 0.45);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 42px;
  padding: 9px 11px;
  font-size: 0.88rem;
}

.form-field textarea {
  min-height: 88px;
}

.inquiry-form--events .inquiry-form__grid .form-field + .form-field {
  margin-top: 0;
}

.inquiry-form--events .btn.full {
  margin-top: 16px;
}

.inquiry-form--events .form-hint {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.calculator-card .inquiry-form__head h3 {
  font-size: 1.45rem;
}

.calculator-card .btn.full {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .page-photo-strip,
  .events-showcase,
  .events-venues-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .events-quick-nav__inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    scrollbar-width: thin;
  }

  .events-quick-nav__link {
    flex: 0 0 auto;
  }
}

/* ==========================================================================
   BAKERM ADMIN DASHBOARD v2 — premium hospitality CMS
   ========================================================================== */

body.admin-body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 164, 93, 0.12), transparent 55%),
    linear-gradient(180deg, #071326 0%, #0d1f3a 100%);
}

body.admin-body .admin-workspace {
  background:
    radial-gradient(circle at top right, rgba(200, 164, 93, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f4ee 0%, #eef2f8 100%);
}

body.admin-body .admin-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
}

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 12, 28, 0.55);
  backdrop-filter: blur(2px);
}

.admin-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 18px;
  text-decoration: none;
  color: white;
  text-align: center;
}

.admin-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--brand-ivory);
  border: 1px solid rgba(200, 164, 93, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.admin-brand-logo {
  width: auto;
  max-width: min(168px, 100%);
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.admin-brand-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.admin-brand-copy small {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-nav-label {
  margin: 0;
  padding: 0 18px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.admin-nav-label--foot {
  padding-top: 4px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  margin: 0 10px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-nav-link i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.admin-nav-link:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

.admin-nav-link.active {
  background: rgba(200, 164, 93, 0.16);
  border-color: rgba(200, 164, 93, 0.35);
  color: white;
}

.admin-nav-link--external,
.admin-nav-link--signout {
  margin-bottom: 4px;
}

.admin-sidebar-foot {
  margin-top: auto;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  min-height: 72px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 58, 99, 0.08);
}

.admin-topbar--compact {
  min-height: 60px;
  padding-block: 12px;
}

.admin-topbar-start,
.admin-topbar-end {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-topbar-start {
  flex: 1 1 auto;
}

.admin-topbar-end {
  flex: 0 1 auto;
  margin-left: auto;
}

.admin-topbar-heading {
  min-width: 0;
}

.admin-topbar-heading--dashboard {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-topbar-page-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-navy);
}

.admin-user-pill {
  max-width: min(160px, 32vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
}

.admin-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  color: var(--brand-navy);
  cursor: pointer;
}

.admin-menu-toggle:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

.admin-topbar-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.admin-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.86rem;
}

.admin-topbar-btn i {
  width: 16px;
  height: 16px;
}

.admin-main {
  padding: 24px 24px 48px;
}

.dashboard-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1280px;
}

.dashboard-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(200, 164, 93, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 242, 236, 0.98) 100%);
  box-shadow: var(--shadow-card);
}

.dashboard-hero--visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 28px);
  overflow: hidden;
}

.dashboard-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dashboard-hero__title {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--brand-navy);
  overflow-wrap: break-word;
}

.dashboard-hero__lead {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: clamp(0.88rem, 1.5vw, 0.96rem);
  line-height: 1.55;
}

.dashboard-hero__date {
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
  opacity: 0.72;
}

.dashboard-hero__date-short {
  display: none;
}

.dashboard-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.dashboard-hero__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.dashboard-hero__actions .btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dashboard-hero__visual {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-navy-dark);
}

.dashboard-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-hero__photo--main {
  min-height: 240px;
}

.dashboard-hero__photo--accent {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34%;
  min-width: 108px;
  max-width: 150px;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: var(--radius-md);
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(8, 19, 38, 0.35);
}

.dashboard-site-visuals {
  margin-top: -4px;
}

.dashboard-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--brand-navy-dark);
  box-shadow: var(--shadow-card);
}

.dashboard-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dashboard-visual-card:hover img {
  transform: scale(1.04);
}

.dashboard-visual-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 14px 14px;
  background: linear-gradient(transparent, rgba(8, 19, 38, 0.92));
  color: white;
}

.dashboard-visual-card__tag {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.dashboard-visual-card figcaption strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-metric-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 168px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(16, 34, 63, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dashboard-metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.35);
  box-shadow: 0 16px 36px rgba(16, 34, 63, 0.12);
}

.dashboard-metric-card:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.dashboard-metric-card--static {
  cursor: default;
}

.dashboard-metric-card--static:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 34, 63, 0.06);
}

.dashboard-metric-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
}

.dashboard-metric-card__icon i {
  width: 20px;
  height: 20px;
}

.dashboard-metric-card__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard-metric-card__value {
  display: block;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--brand-navy);
}

.dashboard-metric-card__hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dashboard-metric-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.dashboard-metric-card__cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.dashboard-metric-card:hover .dashboard-metric-card__cta i {
  transform: translateX(3px);
}

.dashboard-grid {
  display: grid;
  gap: 20px;
}

.dashboard-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-panel {
  box-shadow: var(--shadow-card);
}

.admin-section-header {
  margin-bottom: 18px;
}

.admin-section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-navy);
}

.admin-section-subtitle {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.dashboard-health-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-health-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.dashboard-health-item__copy strong {
  display: block;
  font-size: 0.92rem;
  color: var(--brand-navy);
}

.dashboard-health-item__copy span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.admin-status-badge--complete {
  color: var(--success);
  background: rgba(31, 122, 77, 0.12);
}

.admin-status-badge--needs-update {
  color: var(--warning);
  background: rgba(154, 99, 20, 0.12);
}

.admin-status-badge--missing,
.admin-status-badge--not-configured {
  color: var(--danger);
  background: rgba(163, 58, 49, 0.1);
}

.dashboard-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.dashboard-quick-action {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 0.88rem;
  font-weight: 600;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dashboard-quick-action i {
  width: 18px;
  height: 18px;
  color: var(--brand-gold);
}

.dashboard-quick-action:hover {
  background: rgba(200, 164, 93, 0.1);
  border-color: rgba(200, 164, 93, 0.35);
  transform: translateY(-1px);
}

.dashboard-quick-action:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

.dashboard-inquiry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard-inquiry-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.dashboard-inquiry-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-inquiry-item__head strong {
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.dashboard-inquiry-item__type {
  margin: 6px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.dashboard-inquiry-item__snippet {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--text-main);
}

.dashboard-inquiry-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dashboard-inquiry-item__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.dashboard-panel-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dashboard-guidance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-guidance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  font-size: 0.9rem;
  color: var(--text-main);
}

.dashboard-guidance-list i {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--brand-gold);
  flex: 0 0 auto;
}

.dashboard-website-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard-browser-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
}

.dashboard-browser-frame__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #eef2f8;
  border-bottom: 1px solid var(--line);
}

.dashboard-browser-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 58, 99, 0.18);
}

.dashboard-browser-frame__screen {
  position: relative;
  background: var(--brand-navy-dark);
}

.dashboard-browser-frame__hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dashboard-browser-frame__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-browser-frame__thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dashboard-browser-frame__body {
  padding: 16px;
}

.dashboard-browser-frame__url {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--surface-soft);
  border-radius: 999px;
}

.dashboard-browser-frame__mock {
  display: grid;
  gap: 8px;
}

.dashboard-browser-frame__mock span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 58, 99, 0.12), rgba(200, 164, 93, 0.18));
}

.dashboard-browser-frame__mock span:nth-child(1) { width: 72%; height: 14px; }
.dashboard-browser-frame__mock span:nth-child(2) { width: 100%; }
.dashboard-browser-frame__mock span:nth-child(3) { width: 86%; }

.dashboard-website-preview__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.dashboard-website-preview__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.8rem;
  color: var(--brand-navy);
  opacity: 0.75;
}

.dashboard-website-preview__meta i {
  width: 15px;
  height: 15px;
}

.dashboard-website-preview .btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-empty-state {
  text-align: center;
  padding: 28px 18px;
  border: 1px dashed rgba(31, 58, 99, 0.18);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.admin-empty-state__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
}

.admin-empty-state__icon i {
  width: 24px;
  height: 24px;
}

.admin-empty-state h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  color: var(--brand-navy);
}

.admin-empty-state p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

body.admin-nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-hero--visual {
    grid-template-columns: 1fr;
  }

  .dashboard-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 990px) {
  .admin-menu-toggle {
    display: grid;
    place-items: center;
  }

  body.admin-body .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
    width: min(290px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  body.admin-nav-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-topbar-btn {
    display: none;
  }

  .dashboard-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-main {
    padding: 16px 16px 40px;
  }

  .admin-topbar {
    padding: 12px 16px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-hero__actions {
    width: 100%;
  }

  .dashboard-hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .dashboard-health-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-visual-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero__photo--accent {
    width: 42%;
  }

  .dashboard-hero__date-full {
    display: none;
  }

  .dashboard-hero__date-short {
    display: inline;
  }

  .admin-topbar-end {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ==========================================================================
   VISUAL AUDIT v4 — tokens, cards, testimonials, dashboard polish
   ========================================================================== */

/* Booking confidence cards */
.booking-confidence {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
  padding: clamp(var(--space-5), 5vw, var(--space-7)) 0;
}

.booking-confidence .content-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.booking-confidence__intro {
  max-width: 640px;
}

.booking-confidence__intro h2 {
  margin: 8px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-navy);
  line-height: 1.2;
}

.booking-confidence__intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 56ch;
}

.booking-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.booking-confidence-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 220px;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-base);
}

.booking-confidence-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 93, 0.35);
}

.booking-confidence-card--primary {
  border-color: rgba(200, 164, 93, 0.32);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 242, 236, 0.98) 100%);
}

.booking-confidence-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(31, 58, 99, 0.08);
  color: var(--brand-navy);
}

.booking-confidence-card__icon i {
  width: var(--icon-ui);
  height: var(--icon-ui);
}

.booking-confidence-card--primary .booking-confidence-card__icon {
  background: rgba(200, 164, 93, 0.18);
  color: var(--brand-navy);
}

.booking-confidence-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-navy);
  line-height: 1.25;
}

.booking-confidence-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-confidence-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.booking-confidence-card__link {
  margin-top: auto;
}

/* Testimonials — modern review cards */
.reviews-section {
  background:
    linear-gradient(180deg, var(--brand-white) 0%, rgba(244, 242, 236, 0.45) 100%);
}

.review-grid,
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-5);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 260px;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand-white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 93, 0.32);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-star {
  width: 15px;
  height: 15px;
  color: rgba(31, 58, 99, 0.18);
  stroke-width: 2px;
}

.review-star--filled {
  color: var(--brand-gold);
  fill: rgba(200, 164, 93, 0.35);
}

.review-card__theme {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__quote {
  margin: 0;
  flex: 1;
}

.review-card__quote p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.94rem;
  line-height: 1.7;
  font-style: normal;
}

.review-card__quote p::before {
  content: "\201C";
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 2px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.review-card__name {
  display: block;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.1);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Override legacy review-card span rule for new structure */
.review-card__theme,
.review-card__badge {
  text-transform: uppercase;
}

/* Week / horizon cards — tighter rhythm */
.week-section {
  padding-block: clamp(var(--space-7), 7vw, var(--space-9));
}

.week-horizon {
  gap: var(--space-5);
}

.week-spotlight {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--line);
}

.week-timeline {
  gap: var(--space-3);
}

.week-timeline__item {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--brand-white);
  box-shadow: 0 4px 16px rgba(16, 34, 63, 0.05);
}

/* Unified card hover for shared card types */
.room-card,
.week-card,
.promo-card,
.booking-confidence-card,
.review-card,
.dashboard-metric-card {
  will-change: transform;
}

/* Admin layout consolidation */
body.admin-body .admin-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  grid-template-columns: 272px minmax(0, 1fr);
}

body.admin-body .admin-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) clamp(var(--space-4), 3vw, var(--space-6));
  min-height: 68px;
}

body.admin-body--dashboard .admin-topbar {
  min-height: 60px;
}

body.admin-body .admin-main {
  padding: clamp(var(--space-5), 3vw, var(--space-6)) clamp(var(--space-4), 3vw, var(--space-6)) var(--space-7);
}

body.admin-body .admin-card {
  padding: clamp(var(--space-4), 2.5vw, var(--space-5));
  border-radius: var(--radius-lg);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}

body.admin-body .admin-nav-link {
  margin-inline: var(--space-2);
  padding: 12px 14px;
  border-radius: var(--radius-md);
}

body.admin-body .admin-nav-link i {
  width: var(--icon-ui);
  height: var(--icon-ui);
}

/* Dashboard spacing & hierarchy */
.dashboard-page {
  gap: clamp(var(--space-5), 3vw, var(--space-6));
}

.dashboard-section {
  gap: var(--space-4);
}

.dashboard-metrics {
  gap: var(--space-4);
}

.dashboard-metric-card {
  gap: var(--space-3);
  min-height: 180px;
  padding: var(--space-5);
}

.dashboard-metric-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(31, 58, 99, 0.1), rgba(200, 164, 93, 0.14));
}

.dashboard-metric-card__value {
  font-size: clamp(2rem, 3.5vw, 2.4rem);
}

.dashboard-grid {
  gap: var(--space-5);
}

.dashboard-grid--two {
  align-items: start;
}

.dashboard-panel {
  padding: clamp(var(--space-4), 2.5vw, var(--space-5));
}

.admin-section-header {
  margin-bottom: var(--space-4);
}

.dashboard-health-list {
  gap: var(--space-3);
}

.dashboard-health-item {
  padding: var(--space-4);
}

.dashboard-quick-actions {
  gap: var(--space-3);
}

.dashboard-quick-action {
  min-height: 56px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}

.dashboard-inquiry-list {
  gap: var(--space-3);
}

.dashboard-inquiry-item {
  padding: var(--space-4);
}

.dashboard-hero {
  padding: clamp(var(--space-5), 4vw, var(--space-6));
}

.dashboard-visual-grid {
  gap: var(--space-4);
}

/* Admin sub-pages (rooms, inquiries, etc.) */
body.admin-body .admin-split {
  gap: var(--space-5);
  margin-top: var(--space-4);
}

body.admin-body .admin-success,
body.admin-body .admin-error {
  margin: 0 0 var(--space-4);
  border-radius: var(--radius-md);
}

body.admin-body .cms-form label,
body.admin-body .settings-grid label {
  display: grid;
  gap: 6px;
  margin-bottom: var(--space-3);
}

body.admin-body .admin-table-wrap {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
}

/* Lucide icon alignment helper */
[data-lucide] {
  flex-shrink: 0;
}

.btn i[data-lucide],
.bh-btn i[data-lucide] {
  width: var(--icon-sm);
  height: var(--icon-sm);
}

/* Responsive audit fixes */
@media (max-width: 1024px) {
  .booking-confidence-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .review-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .booking-confidence-card {
    min-height: 0;
  }

  .week-horizon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(1200px, calc(100vw - 24px));
  }

  .review-card {
    padding: var(--space-4);
  }

  body.admin-body .admin-main {
    padding: var(--space-4) var(--space-4) var(--space-6);
  }
}

