@font-face {
  font-family: "Gumela FS";
  src: url("assets/fonts/gumela-arabic-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gumela FS";
  src: url("assets/fonts/gumela-arabic-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gumela FS";
  src: url("assets/fonts/gumela-arabic-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hobo FS";
  src: url("assets/fonts/hobo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #273939;
  --bg-soft: #535b46;
  --surface: #f1e0cf;
  --surface-2: #ead7c5;
  --surface-3: #f6ebdf;
  --ink: #273939;
  --ink-soft: #535b46;
  --ink-contrast: #f1e0cf;
  --line: rgba(39, 57, 57, 0.14);
  --line-strong: rgba(241, 224, 207, 0.18);
  --mustard: #d38a4d;
  --terracotta: #854628;
  --moss: #535b46;
  --teal: #6e2a22;
  --shadow: 0 26px 70px rgba(14, 20, 18, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Gumela FS", sans-serif;
  color: var(--ink-contrast);
  background:
    radial-gradient(circle at top left, rgba(211, 138, 77, 0.1), transparent 22%),
    radial-gradient(circle at bottom right, rgba(110, 42, 34, 0.11), transparent 22%),
    linear-gradient(180deg, #273939 0%, #223232 100%);
}

body:not([data-page="admin"]) {
  position: relative;
}

body:not([data-page="admin"])::before,
body:not([data-page="admin"])::after {
  content: "";
  position: fixed;
  z-index: -2;
  inset: auto;
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.24;
  pointer-events: none;
}

body:not([data-page="admin"])::before {
  top: 8vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(211, 138, 77, 0.28), transparent 68%);
}

body:not([data-page="admin"])::after {
  right: -8vw;
  bottom: 10vh;
  background: radial-gradient(circle, rgba(110, 42, 34, 0.28), transparent 70%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-shell {
  position: relative;
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 44px;
}

body:not([data-page="admin"]) .site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.42), transparent 88%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(39, 57, 57, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 88px;
  max-width: 32vw;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(54, 34, 17, 0.12));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 52px;
  border-radius: 22px 22px 22px 10px;
  background: var(--surface);
  color: var(--ink);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 -4px 0 rgba(32, 49, 44, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.brand-text small {
  color: rgba(247, 239, 226, 0.72);
  font-family: "Gumela FS", sans-serif;
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(247, 239, 226, 0.82);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fff;
  background: rgba(247, 239, 226, 0.08);
}

.site-nav .nav-cta {
  background: var(--mustard);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  background: var(--terracotta);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(247, 239, 226, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-contrast);
}

.hero,
.section {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(247, 239, 226, 0.08);
  background:
    radial-gradient(circle at top right, rgba(211, 138, 77, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(110, 42, 34, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(39, 57, 57, 0.96), rgba(83, 91, 70, 0.9));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -70px -100px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(110, 42, 34, 0.2);
  filter: blur(10px);
}

body:not([data-page="admin"]) .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(211, 138, 77, 0.18), transparent 20%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-home {
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 74vh;
}

.hero-home h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.7rem);
}

.hero-home h1 span {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-copy {
  max-width: 640px;
}

.hero-page {
  grid-template-columns: 1fr auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mustard);
  font-family: "Gumela FS", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(2.05rem, 4.4vw, 3.75rem);
}

h1 span {
  display: block;
  margin-top: 14px;
  color: rgba(247, 239, 226, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.22;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.38rem, 2.1vw, 2rem);
  margin-bottom: 14px;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hero .hero-copy h2,
.hero .hero-copy h3,
.hero .feature-panel h3,
.hero .visual-card h2 {
  color: #fff;
}

.hero-text,
.section p,
.story-card p,
.feature-panel p,
.panel-card p,
.menu-card p,
.timeline-step p,
.info-card p,
.form-note,
.modal-meta,
.section-lead {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero .hero-text,
.hero .hero-address,
.hero .visual-card p {
  color: rgba(247, 239, 226, 0.86);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  transition: 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: transform 480ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(260%) skewX(-18deg);
}

.button-primary {
  background: var(--mustard);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta);
}

.button-secondary {
  border-color: rgba(247, 239, 226, 0.18);
  background: rgba(247, 239, 226, 0.08);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts span,
.event-meta span,
.calendar-event-pill,
.hero-address {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
}

.hero-facts span {
  background: rgba(247, 239, 226, 0.08);
  color: #fff;
  font-weight: 700;
}

.hero-address {
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  background: transparent;
  color: rgba(241, 224, 207, 0.86);
  font-family: "Gumela FS", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  min-height: 0;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.visual-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-stage-simple {
  display: grid;
  place-items: center;
}

.visual-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visual-main {
  inset: 0 40px 112px 0;
  padding: 28px;
  border: 1px solid rgba(247, 239, 226, 0.14);
  background: rgba(134, 71, 57, 0.56);
  backdrop-filter: blur(6px);
}

.visual-main h2 {
  color: #fff;
  margin-bottom: 18px;
}

.visual-note {
  right: 0;
  bottom: 12px;
  width: 240px;
  padding: 20px;
  border: 1px solid rgba(247, 239, 226, 0.18);
  background: rgba(36, 54, 49, 0.84);
}

.sticker,
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.sticker {
  position: absolute;
  top: 14px;
  right: 10px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Gumela FS", sans-serif;
  font-size: 1.1rem;
  transform: rotate(-5deg);
}

.mascot {
  position: absolute;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}

.mascot-home {
  right: 10px;
  bottom: 0;
  width: min(58%, 280px);
}

.mascot-hero-standalone {
  position: static;
  width: min(100%, 360px);
  opacity: 0.96;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 32px rgba(12, 18, 16, 0.28));
  animation: mascot-float 6.6s ease-in-out infinite;
}

.hero-badge {
  padding: 18px 22px;
  background: var(--surface);
  color: var(--ink);
  font-family: "Gumela FS", sans-serif;
  font-size: 1.2rem;
}

.marquee {
  margin: 22px 0;
  padding: 12px 0;
  overflow: hidden;
  border: 1px solid rgba(241, 224, 207, 0.08);
  border-inline: 0;
  background: linear-gradient(90deg, rgba(39, 57, 57, 0.18), rgba(241, 224, 207, 0.06), rgba(39, 57, 57, 0.18));
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  animation: marquee-swing 16s ease-in-out infinite alternate;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: rgba(241, 224, 207, 0.92);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.marquee-track span::after {
  content: "•";
  color: var(--mustard);
}

@keyframes marquee-swing {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-10%);
  }
}

.section {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(211, 138, 77, 0.08), transparent 18%),
    linear-gradient(180deg, var(--surface-3), var(--surface));
}

body:not([data-page="admin"]) .section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-lead {
  max-width: 48ch;
}

.intro-cards,
.stats-grid,
.timeline,
.story-layout,
.booking-layout,
.menu-grid,
.room-grid {
  display: grid;
  gap: 18px;
}

.intro-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.menu-card,
.story-card,
.panel-card,
.stat-card,
.timeline-step,
.feature-panel,
.calendar-shell,
.room-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 34px rgba(50, 40, 26, 0.08);
}

.info-card,
.menu-card,
.story-card,
.panel-card,
.timeline-step,
.feature-panel,
.calendar-shell,
.room-card {
  padding: 26px;
}

body:not([data-page="admin"]) .info-card,
body:not([data-page="admin"]) .menu-card,
body:not([data-page="admin"]) .story-card,
body:not([data-page="admin"]) .panel-card,
body:not([data-page="admin"]) .timeline-step,
body:not([data-page="admin"]) .feature-panel,
body:not([data-page="admin"]) .calendar-shell,
body:not([data-page="admin"]) .room-card,
body:not([data-page="admin"]) .booking-form-large,
body:not([data-page="admin"]) .event-card {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

body:not([data-page="admin"]) .info-card:hover,
body:not([data-page="admin"]) .menu-card:hover,
body:not([data-page="admin"]) .story-card:hover,
body:not([data-page="admin"]) .panel-card:hover,
body:not([data-page="admin"]) .timeline-step:hover,
body:not([data-page="admin"]) .feature-panel:hover,
body:not([data-page="admin"]) .calendar-shell:hover,
body:not([data-page="admin"]) .room-card:hover,
body:not([data-page="admin"]) .booking-form-large:hover,
body:not([data-page="admin"]) .event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(133, 70, 40, 0.24);
  box-shadow: 0 24px 46px rgba(50, 40, 26, 0.12);
}

.feature-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.feature-visual {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(39, 57, 57, 0.96), rgba(133, 70, 40, 0.86)),
    var(--bg);
  display: grid;
  align-items: end;
}

.feature-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 239, 226, 0.12);
}

.feature-panel h3,
.feature-panel p,
.feature-panel .panel-kicker {
  color: #fff;
}

.panel-kicker {
  margin-bottom: 12px;
  color: var(--mustard);
  font-family: "Gumela FS", sans-serif;
  font-size: 1.06rem;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: inherit;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mustard), var(--teal));
}

.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-card-body {
  flex: 1;
}

.room-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.room-card.is-selected {
  border-color: rgba(134, 71, 57, 0.34);
  box-shadow: 0 0 0 3px rgba(134, 71, 57, 0.12), 0 16px 34px rgba(50, 40, 26, 0.08);
}

.room-card::after {
  content: "";
  position: absolute;
  inset: auto -32px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(211, 138, 77, 0.12);
}

.room-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(211, 138, 77, 0.12), rgba(255, 255, 255, 0.7));
}

.room-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(110, 42, 34, 0.1), rgba(255, 255, 255, 0.68));
}

body[data-page="home"] .concept-section::after,
body[data-page="home"] .rooms-section::after,
body[data-page="home"] .timeline-section::after {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  filter: saturate(0.9);
}

body[data-page="home"] .concept-section::after {
  top: 18px;
  right: 18px;
  background-image: none;
}

body[data-page="home"] .rooms-section::after {
  right: 18px;
  bottom: 18px;
  width: 110px;
  height: 110px;
  background-image: none;
}

body[data-page="home"] .timeline-section::after {
  right: 26px;
  top: 24px;
  width: 96px;
  height: 96px;
  background-image: none;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 26px 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-column {
  display: grid;
  gap: 18px;
}

.menu-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.menu-list li > div {
  display: grid;
  gap: 4px;
}

.menu-list li small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.menu-list span {
  color: var(--ink);
  font-weight: 700;
}

.menu-list strong {
  color: var(--terracotta);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
}

.menu-card h2,
.menu-card h3,
.menu-card .eyebrow {
  color: var(--ink);
}

.dark-card .menu-list span,
.dark-card .menu-list small {
  color: rgba(255, 255, 255, 0.92);
}

.accent-card {
  background: linear-gradient(180deg, rgba(109, 133, 97, 0.12), rgba(255, 255, 255, 0.72));
}

.readable-card p,
.readable-card li,
.readable-card h2,
.readable-card h3 {
  color: var(--ink);
}

.reservation-check-list {
  margin-top: 18px;
  gap: 14px;
}

.reservation-check-list li {
  display: grid;
  align-items: start;
  min-height: 22px;
  padding-left: 32px;
  color: var(--ink);
  line-height: 1.55;
}

.reservation-check-list li::before {
  top: 5px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--mustard), var(--terracotta));
}

.dark-card {
  border-color: rgba(247, 239, 226, 0.1);
  background: linear-gradient(145deg, rgba(32, 49, 44, 0.97), rgba(52, 73, 65, 0.95));
}

.dark-card h2,
.dark-card h3,
.dark-card p,
.dark-card .eyebrow,
.dark-card li,
.dark-card strong {
  color: #fff;
}

.story-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-step strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 2.3rem;
}

.events-stack {
  display: grid;
  gap: 22px;
}

.events-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(290px, 0.66fr);
  gap: 22px;
  align-items: start;
}

.calendar-shell {
  display: grid;
  gap: 16px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calendar-month-text {
  margin: 6px 0 0;
  color: #8d6238;
  font-family: "Gumela FS", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.calendar-actions {
  display: flex;
  gap: 10px;
}

.calendar-button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #48523d;
  color: #f7ead8;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(46, 53, 37, 0.24);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays span {
  padding: 8px 12px;
  color: #8d6238;
  text-align: center;
  font-family: "Gumela FS", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.calendar-day {
  min-height: 92px;
  padding: 9px;
  border: 0;
  border-radius: 14px;
  background: #d6a05a;
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 6px;
  box-shadow: inset 0 -4px 0 rgba(126, 78, 31, 0.14);
}

.calendar-day.is-outside {
  background: #e5c99e;
  opacity: 1;
}

.calendar-day.is-today {
  background: #cf9850;
  outline: none;
}

.calendar-day-number {
  color: #6d4422;
  font-family: "Gumela FS", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.calendar-event-pill {
  width: 100%;
  min-height: 22px;
  padding: 4px 8px;
  color: #f7ead8;
  font-size: 0.82rem;
  font-weight: 700;
  background: #6d3e27;
  justify-content: flex-start;
  line-height: 1.2;
  white-space: normal;
  border-radius: 10px;
}

.calendar-event-pill.accent {
  background: #48523d;
}

.events-panel {
  display: grid;
  gap: 18px;
}

.events-upcoming-card {
  position: relative;
  background: #9a602f;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.events-upcoming-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.events-upcoming-mascot {
  display: block;
  width: 108px;
  margin-top: -6px;
  filter: drop-shadow(0 14px 20px rgba(33, 19, 9, 0.16));
}

.events-upcoming-subtitle {
  margin: 6px 0 0;
  color: #dcb67d;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  opacity: 1;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.event-card {
  padding: 16px 14px;
  border: 0;
  border-radius: 14px;
  background: #f5e6cf;
  box-shadow: none;
  opacity: 1;
}

.event-card h3 {
  margin-bottom: 8px;
  color: #8a592f;
  font-size: 1rem;
  opacity: 1;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.event-meta span {
  background: #d8b37b;
  color: #f7ead8;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 5px 8px;
}

.event-card p {
  color: #7e5634;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 1;
}

.event-card .button {
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  background: #7d452d;
  color: #f7ead8;
  box-shadow: 0 7px 0 rgba(95, 48, 28, 0.2);
}

.booking-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.reservation-split,
.dashboard-grid,
.admin-summary-grid {
  display: grid;
  gap: 18px;
}

.reservation-split {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form-large {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
}

.booking-form label {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.required-mark {
  color: var(--terracotta);
  font-weight: 800;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(32, 49, 44, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 2px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
}

.full-width {
  grid-column: 1 / -1;
}

.form-note.is-error {
  color: var(--teal);
}

.form-note.is-success {
  color: var(--moss);
}

.form-note.is-info {
  color: var(--ink-soft);
}

.availability-card {
  display: grid;
  gap: 18px;
}

.availability-summary {
  color: var(--ink-soft);
}

.availability-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.availability-block {
  display: grid;
  gap: 12px;
}

.availability-block h3 {
  margin-bottom: 0;
}

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slot-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(39, 57, 57, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.slot-chip.is-available,
.status-pill.is-open {
  background: rgba(83, 91, 70, 0.14);
  color: var(--moss);
}

.slot-chip.is-booked,
.status-pill.is-closed {
  background: rgba(110, 42, 34, 0.12);
  color: var(--teal);
}

.availability-bookings {
  display: grid;
  gap: 10px;
}

.booking-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-chip strong,
.booking-chip span {
  color: var(--ink);
}

.admin-login-shell,
.admin-auth-section {
  max-width: 780px;
  margin-inline: auto;
}

.admin-login-form {
  max-width: 560px;
  margin: 0 auto;
}

.admin-hero-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.admin-tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-tab-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab-button.is-active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.admin-tab-panel[hidden] {
  display: none !important;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: start;
}

.dashboard-stack {
  display: grid;
  gap: 18px;
}

.admin-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-panel {
  display: grid;
  gap: 20px;
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-room-groups {
  display: grid;
  gap: 18px;
}

.admin-room-group {
  display: grid;
  gap: 12px;
}

.admin-room-group-head h3 {
  margin-bottom: 0;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 1rem;
}

.admin-table td small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.admin-inline-form input {
  width: 110px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(32, 49, 44, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.admin-actions .button {
  min-height: 42px;
  padding-inline: 14px;
}

.template-help-card code {
  font-size: 0.95rem;
}

.day-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.day-selector span {
  width: 100%;
  color: var(--ink);
  font-weight: 700;
}

.day-selector label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.day-selector input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  padding: 28px 34px;
  border-radius: 36px;
  background: #3c432d;
  color: #f7ead8;
}

.site-footer strong {
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.footer-brand p {
  margin-top: 6px;
  color: #f5e7d3;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  justify-self: end;
  margin-left: auto;
}

.footer-contact a {
  color: #f7ead8;
  font-size: 0.98rem;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d38a4d;
  color: #f7ead8;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-address-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: #6f7555;
  color: #f7ead8;
  font-family: "Gumela FS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Gumela FS", sans-serif;
  font-weight: 700;
  justify-content: flex-start;
  min-width: 356px;
}

body:not([data-page="admin"]) .insta-link,
body:not([data-page="admin"]) .footer-contact a,
body:not([data-page="admin"]) .site-nav a,
body:not([data-page="admin"]) .calendar-button {
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

body:not([data-page="admin"]) .footer-contact a:hover,
body:not([data-page="admin"]) .insta-link:hover,
body:not([data-page="admin"]) .calendar-button:hover {
  transform: translateY(-1px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 340ms ease,
    transform 340ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(-1.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-hero-standalone,
  .marquee-track,
  .reveal-on-scroll,
  .button::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 22, 0.6);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: min(calc(100% - 24px), 560px);
  margin: 6vh auto 0;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 49, 44, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-content h2 {
  margin-top: 4px;
}

.modal-meta {
  margin: 12px 0 24px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: rgba(27, 41, 36, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-home,
  .hero-page,
  .feature-split,
  .intro-cards,
  .stats-grid,
  .story-layout,
  .timeline,
  .menu-grid,
  .booking-layout,
  .reservation-split,
  .dashboard-grid,
  .admin-summary-grid,
  .room-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .visual-main {
    inset: 0 28px 112px 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 14px;
  }

  .site-header {
    padding: 14px;
    border-radius: 22px;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .section,
  .modal-content {
    padding: 22px;
  }

  .section-title {
    display: block;
  }

  .hero-actions,
  .cta-actions,
  .calendar-toolbar,
  .calendar-actions,
  .admin-panel-head,
  .admin-tab-controls {
    width: 100%;
  }

  .calendar-toolbar,
  .calendar-actions,
  .admin-panel-head,
  .admin-tab-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .calendar-weekdays span {
    padding: 8px 4px;
    font-size: 0.78rem;
  }

  .calendar-day {
    min-height: 88px;
    padding: 8px;
    border-radius: 14px;
  }

  .calendar-event-pill {
    padding: 5px 8px;
    font-size: 0.82rem;
  }

  body[data-page="home"] .concept-section::after,
  body[data-page="home"] .rooms-section::after,
  body[data-page="home"] .timeline-section::after {
    width: 74px;
    height: 74px;
    right: 14px;
    top: 14px;
  }

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

  .booking-chip {
    display: grid;
  }

  .hero-visual {
    min-height: 260px;
  }

  .visual-main {
    inset: 0 16px 100px 0;
    padding: 20px;
  }

  .visual-note {
    width: 200px;
    padding: 16px;
  }

  .sticker {
    top: 8px;
    right: 0;
    padding: 10px 14px;
    font-size: 1rem;
  }

  .mascot-home {
    width: min(58%, 200px);
  }

  .mascot-hero-standalone {
    width: min(100%, 250px);
  }
}

/* Public Rebrand */
body:not([data-page="admin"]) {
  --bg: #2d3426;
  --bg-soft: #48513f;
  --surface: #f3e3c7;
  --surface-2: #ead7b6;
  --surface-3: #fbf1df;
  --ink: #4d2c1d;
  --ink-soft: #725540;
  --ink-contrast: #fff4e4;
  --line: rgba(102, 64, 32, 0.17);
  --line-strong: rgba(255, 241, 219, 0.34);
  --mustard: #d38a4d;
  --terracotta: #a55d2f;
  --moss: #5a6c41;
  --teal: #3e5134;
  --shadow: 0 24px 54px rgba(33, 21, 11, 0.2);
  background:
    radial-gradient(circle at top left, rgba(241, 213, 156, 0.09), transparent 22%),
    radial-gradient(circle at top right, rgba(121, 150, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #273028 0%, #334231 28%, #465139 62%, #283027 100%);
}

body:not([data-page="admin"]) .site-shell {
  width: min(calc(100% - 32px), 1320px);
  padding-top: 24px;
}

body:not([data-page="admin"]) .site-shell::before {
  background-image:
    radial-gradient(circle at 12% 12%, rgba(255, 244, 222, 0.06) 0, transparent 12%),
    radial-gradient(circle at 88% 18%, rgba(255, 244, 222, 0.05) 0, transparent 10%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: auto, auto, 20px 20px, 20px 20px;
  opacity: 0.9;
}

body:not([data-page="admin"]) .site-header {
  top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(130, 95, 57, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(253, 245, 231, 0.96), rgba(243, 226, 198, 0.95)),
    var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(39, 30, 19, 0.16);
}

body:not([data-page="admin"]) .site-header::before,
body:not([data-page="admin"]) .site-header::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 90px;
  height: 44px;
  opacity: 0.18;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

body:not([data-page="admin"]) .site-header::before {
  left: -6px;
  background-image: none;
}

body:not([data-page="admin"]) .site-header::after {
  right: -10px;
  background-image: none;
}

body:not([data-page="admin"]) .brand-mark {
  width: 66px;
  height: 56px;
  border-radius: 24px 24px 24px 14px;
  background: linear-gradient(180deg, #fff8ec, #ecd7b1);
  color: var(--moss);
  box-shadow:
    inset 0 -4px 0 rgba(115, 85, 52, 0.12),
    0 10px 18px rgba(64, 38, 18, 0.1);
}

body:not([data-page="admin"]) .brand-text strong,
body:not([data-page="admin"]) .site-nav a {
  color: var(--ink);
}

body:not([data-page="admin"]) .brand-text small {
  color: rgba(77, 44, 29, 0.7);
}

body:not([data-page="admin"]) .site-nav {
  gap: 10px;
}

body:not([data-page="admin"]) .site-nav a {
  position: relative;
  padding: 12px 18px;
  font-size: 1.05rem;
}

body:not([data-page="admin"]) .site-nav a:hover,
body:not([data-page="admin"]) .site-nav a:focus-visible,
body:not([data-page="admin"]) .site-nav a.is-active {
  color: var(--ink);
  background: rgba(119, 86, 52, 0.08);
}

body:not([data-page="admin"]) .site-nav .nav-cta {
  border: 1px solid rgba(120, 84, 45, 0.16);
  background: linear-gradient(180deg, #fff8ec, #f1ddbd);
  color: var(--ink);
}

body:not([data-page="admin"]) .site-nav .nav-cta:hover,
body:not([data-page="admin"]) .site-nav .nav-cta:focus-visible,
body:not([data-page="admin"]) .site-nav .nav-cta.is-active {
  background: linear-gradient(180deg, #f8ead1, #ecd4a8);
  color: var(--ink);
}

body:not([data-page="admin"]) .nav-toggle {
  background: rgba(111, 79, 43, 0.08);
}

body:not([data-page="admin"]) .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

body:not([data-page="admin"]) .hero {
  border-radius: 44px;
  border: 1px solid rgba(242, 227, 199, 0.16);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 228, 155, 0.34), transparent 14%),
    radial-gradient(circle at 76% 18%, rgba(255, 242, 210, 0.26), transparent 22%),
    linear-gradient(180deg, rgba(33, 25, 16, 0.18), rgba(33, 25, 16, 0.58)),
    linear-gradient(135deg, #7a5336 0%, #5c3926 28%, #39261d 66%, #2f281f 100%);
  box-shadow:
    0 24px 56px rgba(23, 16, 9, 0.26),
    inset 0 0 0 1px rgba(255, 237, 205, 0.06);
}

body:not([data-page="admin"]) .hero::before {
  width: 300px;
  height: 300px;
  inset: auto -92px -112px auto;
  background: rgba(129, 180, 116, 0.12);
  filter: blur(6px);
}

body:not([data-page="admin"]) .hero::after {
  background:
    radial-gradient(circle at 12% 12%, rgba(130, 168, 95, 0.22), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255, 224, 145, 0.15), transparent 14%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), transparent 30%);
}

body[data-page="home"] .hero-home {
  min-height: min(82vh, 860px);
  grid-template-columns: 1.2fr 0.8fr;
}

body:not([data-page="admin"]) .hero-copy {
  position: relative;
  z-index: 1;
}

body:not([data-page="admin"]) .hero-home h1,
body:not([data-page="admin"]) .hero-page h1 {
  max-width: 12ch;
  color: #fff2dd;
  text-shadow: 0 5px 0 rgba(68, 40, 21, 0.46);
  line-height: 0.94;
}

body[data-page="home"] .hero-home h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

body:not([data-page="admin"]) .hero-home h1 span,
body:not([data-page="admin"]) .hero-page h1 span,
body:not([data-page="admin"]) .hero .hero-text,
body:not([data-page="admin"]) .hero .hero-address {
  color: rgba(255, 243, 225, 0.9);
}

body:not([data-page="admin"]) .hero .eyebrow {
  color: #cfe09f;
}

body:not([data-page="admin"]) .hero-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 237, 205, 0.14);
  border-radius: 999px;
  background: rgba(30, 23, 16, 0.26);
}

body:not([data-page="admin"]) .hero-address::before {
  content: "•";
  color: #d9b566;
  font-size: 1.2rem;
}

body:not([data-page="admin"]) .hero-visual {
  display: grid;
  align-items: end;
  justify-items: center;
  position: relative;
  z-index: 4;
}

body:not([data-page="admin"]) .visual-stage-simple {
  width: 100%;
  min-height: 100%;
  position: relative;
}

body:not([data-page="admin"]) .visual-stage-simple::before {
  content: "";
  position: absolute;
  inset: auto 8% 4% 8%;
  height: 24%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 219, 168, 0.2), transparent 70%);
  filter: blur(18px);
}

body:not([data-page="admin"]) .mascot-hero-standalone {
  position: relative;
  z-index: 4;
  width: min(100%, 390px);
  filter: drop-shadow(0 24px 36px rgba(21, 14, 8, 0.34));
}

body:not([data-page="admin"]) .marquee {
  margin: 26px 0 6px;
  padding: 14px 18px;
  border: 1px solid rgba(244, 226, 198, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(249, 240, 223, 0.12), rgba(239, 225, 194, 0.05));
}

body:not([data-page="admin"]) .marquee-track span {
  color: #f7edd9;
  font-size: 1.12rem;
}

body:not([data-page="admin"]) .marquee-track span::after {
  color: #c5d38a;
}

body:not([data-page="admin"]) .section {
  padding: 38px;
  border-radius: 38px;
  border: 1px solid rgba(128, 92, 57, 0.16);
  background:
    radial-gradient(circle at top right, rgba(220, 186, 133, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(240, 224, 194, 0.98));
  box-shadow:
    0 22px 44px rgba(29, 18, 9, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

body:not([data-page="admin"]) .section::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(140, 167, 102, 0.1), transparent 18%),
    radial-gradient(circle at 86% 76%, rgba(213, 138, 77, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%);
}

body:not([data-page="admin"]) .section-title {
  gap: 18px;
  margin-bottom: 28px;
}

body:not([data-page="admin"]) .eyebrow {
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 1.16rem;
  letter-spacing: 0.03em;
}

body:not([data-page="admin"]) h2,
body:not([data-page="admin"]) h3 {
  color: var(--ink);
}

body:not([data-page="admin"]) h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

body:not([data-page="admin"]) h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}

body:not([data-page="admin"]) .section p,
body:not([data-page="admin"]) .story-card p,
body:not([data-page="admin"]) .feature-panel p,
body:not([data-page="admin"]) .panel-card p,
body:not([data-page="admin"]) .menu-card p,
body:not([data-page="admin"]) .timeline-step p,
body:not([data-page="admin"]) .info-card p,
body:not([data-page="admin"]) .section-lead,
body:not([data-page="admin"]) .form-note,
body:not([data-page="admin"]) .modal-meta {
  color: var(--ink-soft);
}

body:not([data-page="admin"]) .info-card,
body:not([data-page="admin"]) .menu-card,
body:not([data-page="admin"]) .story-card,
body:not([data-page="admin"]) .panel-card,
body:not([data-page="admin"]) .timeline-step,
body:not([data-page="admin"]) .calendar-shell,
body:not([data-page="admin"]) .room-card,
body:not([data-page="admin"]) .booking-form-large,
body:not([data-page="admin"]) .event-card,
body:not([data-page="admin"]) .modal-content {
  border: 1px solid rgba(129, 95, 57, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.94), rgba(243, 230, 206, 0.94));
  box-shadow:
    0 16px 32px rgba(60, 39, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body:not([data-page="admin"]) .info-card:hover,
body:not([data-page="admin"]) .menu-card:hover,
body:not([data-page="admin"]) .story-card:hover,
body:not([data-page="admin"]) .panel-card:hover,
body:not([data-page="admin"]) .timeline-step:hover,
body:not([data-page="admin"]) .calendar-shell:hover,
body:not([data-page="admin"]) .room-card:hover,
body:not([data-page="admin"]) .booking-form-large:hover,
body:not([data-page="admin"]) .event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 106, 56, 0.24);
  box-shadow:
    0 24px 42px rgba(60, 39, 20, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body:not([data-page="admin"]) .dark-card,
body:not([data-page="admin"]) .hero-badge {
  border-color: rgba(255, 244, 221, 0.12);
  background:
    radial-gradient(circle at top right, rgba(218, 186, 109, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(70, 87, 54, 0.98), rgba(48, 59, 38, 0.96));
}

body:not([data-page="admin"]) .dark-card h2,
body:not([data-page="admin"]) .dark-card h3,
body:not([data-page="admin"]) .dark-card p,
body:not([data-page="admin"]) .dark-card .eyebrow,
body:not([data-page="admin"]) .dark-card li,
body:not([data-page="admin"]) .dark-card strong {
  color: #fff2dd;
}

body:not([data-page="admin"]) .button {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(71, 42, 16, 0.12);
}

body:not([data-page="admin"]) .button-primary {
  background: linear-gradient(180deg, #dc9651, #b56b34);
  color: #fff5e8;
}

body:not([data-page="admin"]) .button-primary:hover,
body:not([data-page="admin"]) .button-primary:focus-visible {
  background: linear-gradient(180deg, #e3a15d, #bb7440);
}

body:not([data-page="admin"]) .button-secondary {
  border-color: rgba(83, 106, 63, 0.22);
  background: linear-gradient(180deg, #65784b, #4f623b);
  color: #fff1de;
}

body:not([data-page="admin"]) .button-secondary:hover,
body:not([data-page="admin"]) .button-secondary:focus-visible {
  background: linear-gradient(180deg, #708555, #597043);
}

body:not([data-page="admin"]) .intro-cards,
body:not([data-page="admin"]) .room-grid,
body:not([data-page="admin"]) .timeline {
  gap: 22px;
}

body:not([data-page="admin"]) .room-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(240, 223, 193, 0.92));
}

body:not([data-page="admin"]) .room-card .button {
  margin-top: 12px;
}

body:not([data-page="admin"]) .section-title + .intro-cards,
body:not([data-page="admin"]) .section-title + .room-grid,
body:not([data-page="admin"]) .section-title + .timeline {
  margin-top: 10px;
}

body:not([data-page="admin"]) .room-card::after {
  width: 134px;
  height: 134px;
  background: rgba(117, 141, 93, 0.12);
}

body[data-page="home"] .concept-section::after,
body[data-page="home"] .rooms-section::after,
body[data-page="home"] .timeline-section::after {
  opacity: 0.22;
}

body[data-page="menu"] .hero-page,
body[data-page="booking"] .booking-layout:first-of-type {
  position: relative;
}

body[data-page="booking"] .booking-layout,
body[data-page="booking"] .reservation-split,
body[data-page="booking"] .quote-section {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="booking"] .booking-layout:hover,
body[data-page="booking"] .reservation-split:hover,
body[data-page="booking"] .quote-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(63, 40, 20, 0.1);
}

body[data-page="booking"] .booking-layout > .panel-card,
body[data-page="booking"] .booking-layout > .booking-form-large,
body[data-page="booking"] .reservation-split > .panel-card,
body[data-page="booking"] .reservation-split > .booking-form-large,
body[data-page="booking"] .quote-section > .panel-card,
body[data-page="booking"] .quote-section > .booking-form-large,
body[data-page="booking"] .room-grid .room-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

body[data-page="booking"] .booking-layout > .panel-card:hover,
body[data-page="booking"] .booking-layout > .booking-form-large:hover,
body[data-page="booking"] .reservation-split > .panel-card:hover,
body[data-page="booking"] .reservation-split > .booking-form-large:hover,
body[data-page="booking"] .quote-section > .panel-card:hover,
body[data-page="booking"] .quote-section > .booking-form-large:hover,
body[data-page="booking"] .room-grid .room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(63, 40, 20, 0.12);
}

body[data-page="events"] .events-stack > .calendar-shell,
body[data-page="events"] .events-stack > .events-panel {
  position: relative;
}

body[data-page="menu"] .hero-page::before,
body[data-page="events"] .panel-card.dark-card::after,
body[data-page="booking"] .availability-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 104px;
  height: 104px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

body[data-page="menu"] .hero-page::before {
  right: 28px;
  top: 24px;
  bottom: auto;
  background-image: none;
}

body[data-page="events"] .panel-card.dark-card::after {
  background-image: none;
}

body[data-page="booking"] .availability-card::after {
  background-image: none;
}

body:not([data-page="admin"]) .calendar-shell {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(243, 226, 197, 0.94));
}

body:not([data-page="admin"]) .calendar-button {
  border: 1px solid rgba(128, 95, 57, 0.15);
  background: linear-gradient(180deg, #fff6e7, #efddbd);
  color: var(--ink);
}

body:not([data-page="admin"]) .calendar-day {
  min-height: 122px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.92), rgba(242, 226, 198, 0.92));
}

body:not([data-page="admin"]) .calendar-day.is-today {
  outline: 2px solid rgba(182, 118, 57, 0.24);
}

body:not([data-page="admin"]) .calendar-event-pill {
  border-radius: 16px;
  background: linear-gradient(180deg, #6d814d, #506239);
  color: #fff3e2;
}

body:not([data-page="admin"]) .calendar-event-pill.accent {
  background: linear-gradient(180deg, #d89652, #b66d34);
}

body:not([data-page="admin"]) .event-meta span,
body:not([data-page="admin"]) .status-pill,
body:not([data-page="admin"]) .slot-chip,
body:not([data-page="admin"]) .hero-address {
  border-radius: 16px;
}

body:not([data-page="admin"]) .event-meta span,
body:not([data-page="admin"]) .slot-chip,
body:not([data-page="admin"]) .status-pill {
  background: rgba(104, 124, 74, 0.1);
}

body:not([data-page="admin"]) .booking-form-large,
body:not([data-page="admin"]) .modal-content {
  padding: 30px;
}

body:not([data-page="admin"]) .booking-form label,
body:not([data-page="admin"]) .modal-content label {
  color: var(--ink);
}

body:not([data-page="admin"]) .booking-form label input,
body:not([data-page="admin"]) .booking-form label select,
body:not([data-page="admin"]) .booking-form label textarea,
body:not([data-page="admin"]) .modal-content label input,
body:not([data-page="admin"]) .modal-content label select,
body:not([data-page="admin"]) .modal-content label textarea {
  display: block;
}

body:not([data-page="admin"]) .booking-form input,
body:not([data-page="admin"]) .booking-form textarea,
body:not([data-page="admin"]) .booking-form select {
  border: 1px solid rgba(128, 95, 57, 0.16);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.88);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

body:not([data-page="admin"]) .site-footer {
  margin-top: 40px;
  padding: 28px 26px;
  border: 1px solid rgba(242, 229, 204, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(52, 64, 44, 0.96), rgba(39, 51, 34, 0.94));
  box-shadow: 0 18px 36px rgba(23, 16, 9, 0.18);
}

body:not([data-page="admin"]) .footer-contact a,
body:not([data-page="admin"]) .footer-brand p {
  color: rgba(255, 241, 219, 0.9);
}

body:not([data-page="admin"]) .social-icon {
  background: rgba(255, 244, 221, 0.12);
}

body:not([data-page="admin"]) .reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

body:not([data-page="admin"]) .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body:not([data-page="admin"]) .site-header {
    border-radius: 28px;
  }

  body:not([data-page="admin"]) .site-nav {
    background:
      linear-gradient(180deg, rgba(253, 245, 231, 0.98), rgba(241, 221, 188, 0.98));
  }

  body[data-page="home"] .hero-home {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  body:not([data-page="admin"]) .hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  body:not([data-page="admin"]) .site-shell {
    width: min(calc(100% - 18px), 1320px);
    padding-top: 14px;
  }

  body:not([data-page="admin"]) .hero,
  body:not([data-page="admin"]) .section,
  body:not([data-page="admin"]) .modal-content,
  body:not([data-page="admin"]) .site-footer {
    padding: 24px;
  }

  body:not([data-page="admin"]) .site-footer {
    border-radius: 26px;
  }

  body:not([data-page="admin"]) .site-header::before,
  body:not([data-page="admin"]) .site-header::after,
  body[data-page="menu"] .hero-page::before,
  body[data-page="events"] .panel-card.dark-card::after,
  body[data-page="booking"] .availability-card::after {
    display: none;
  }

  body:not([data-page="admin"]) .calendar-day {
    min-height: 108px;
    border-radius: 18px;
  }

  body:not([data-page="admin"]) .calendar-event-pill {
      font-size: 0.84rem;
    }
  }

/* Immersive Warmth Pass */
body:not([data-page="admin"]) {
  --bg: #2b241d;
  --bg-soft: #514332;
  --surface: #f5e7cb;
  --surface-2: #ecd8b3;
  --surface-3: #fbf2e1;
  --ink: #4e2f1d;
  --ink-soft: #73533c;
  --mustard: #d88e48;
  --terracotta: #9f5331;
  --moss: #576740;
  --teal: #3d4d33;
  background:
    radial-gradient(circle at top left, rgba(255, 224, 164, 0.12), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(130, 160, 87, 0.16), transparent 18%),
    linear-gradient(180deg, #2d2c22 0%, #3f382c 36%, #52402f 72%, #31261e 100%);
}

body:not([data-page="admin"]) .site-shell {
  width: min(calc(100% - 28px), 1360px);
}

body:not([data-page="admin"]) .site-header {
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.97), rgba(242, 224, 192, 0.95)),
    var(--surface);
}

body:not([data-page="admin"]) .site-header::before {
  opacity: 0.14;
}

body:not([data-page="admin"]) .site-header::after {
  opacity: 0.14;
}

body:not([data-page="admin"]) .brand {
  gap: 16px;
  padding-left: 10px;
}

body:not([data-page="admin"]) .brand-mark {
  background: linear-gradient(180deg, #fff8ea, #efdcba);
  color: var(--terracotta);
}

body:not([data-page="admin"]) .brand-logo {
  width: 140px;
  max-width: 34vw;
  object-fit: contain;
  object-position: center;
}

body:not([data-page="admin"]) .brand-text strong {
  font-size: 1.16rem;
  letter-spacing: 0.04em;
}

body:not([data-page="admin"]) .site-nav a {
  font-weight: 800;
}

body:not([data-page="admin"]) .hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 229, 155, 0.38), transparent 14%),
    radial-gradient(circle at 12% 18%, rgba(123, 157, 89, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(47, 29, 18, 0.18), rgba(47, 29, 18, 0.52)),
    linear-gradient(135deg, #7b5538 0%, #5d3f2c 26%, #433126 56%, #2e261d 100%);
}

.hero-logo-plaque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 78px;
  margin-bottom: 16px;
  padding: 10px 18px 12px;
  border-radius: 999px 999px 28px 28px;
  border: 1px solid rgba(255, 244, 221, 0.14);
  background:
    linear-gradient(180deg, rgba(252, 242, 223, 0.98), rgba(240, 223, 191, 0.98));
  box-shadow:
    0 14px 30px rgba(39, 23, 10, 0.16),
    inset 0 -4px 0 rgba(108, 77, 45, 0.08);
}

.hero-logo-image {
  display: block;
  width: clamp(170px, 28vw, 248px);
  height: auto;
}

body:not([data-page="admin"]) .hero-facts span {
  background: rgba(255, 244, 221, 0.12);
  color: #fff3df;
}

body:not([data-page="admin"]) .section {
  background:
    radial-gradient(circle at top right, rgba(216, 156, 89, 0.12), transparent 22%),
    radial-gradient(circle at left bottom, rgba(93, 122, 67, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(243, 228, 199, 0.99));
}

body:not([data-page="admin"]) .section-lead {
  max-width: 44ch;
  font-size: 1.03rem;
}

.section-lemur {
  position: absolute;
  z-index: 4;
  display: block;
  width: 116px;
  max-width: 18vw;
  opacity: 0.88;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(41, 24, 12, 0.14));
}

.section-lemur-concept {
  left: 31%;
  bottom: 22px;
  width: 96px;
  max-width: 12vw;
}

.section-lemur-rooms {
  right: 8px;
  bottom: 8px;
}

.section-lemur-pillars {
  right: 10px;
  bottom: 8px;
}

.section-lemur-menu {
  right: -8px;
  bottom: -10px;
}

.section-lemur-booking {
  right: -12px;
  bottom: -8px;
  width: 132px;
  max-width: 20vw;
}

.section-lemur-quote {
  right: 10px;
  bottom: 10px;
  width: 148px;
  max-width: 22vw;
}

.has-panel-mascot {
  position: relative;
  overflow: hidden;
}

.has-panel-mascot > * {
  position: relative;
  z-index: 1;
}

.panel-mascot {
  position: absolute;
  right: -8px;
  bottom: -10px;
  z-index: 4;
  width: 116px;
  max-width: 20vw;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(41, 24, 12, 0.14));
}

.panel-mascot-small {
  width: 104px;
}

body:not([data-page="admin"]) .concept-section .intro-cards,
body:not([data-page="admin"]) .rooms-section .room-grid,
body:not([data-page="admin"]) .timeline-section .timeline {
  position: relative;
  z-index: 1;
}

body:not([data-page="admin"]) .intro-cards {
  padding-bottom: 24px;
}

body:not([data-page="admin"]) .booking-layout > *,
body:not([data-page="admin"]) #reservation-form .section-title,
body:not([data-page="admin"]) #reservation-form .room-grid,
body:not([data-page="admin"]) .reservation-split > * {
  position: relative;
  z-index: 1;
}

.room-card-visual {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 1px solid rgba(112, 78, 46, 0.12);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.room-card-visual::before,
.room-card-visual::after {
  content: "";
  position: absolute;
}

.room-card {
  position: relative;
}

.room-card-visual {
  position: relative;
}

.room-card-visual-jdr {
  background:
    linear-gradient(180deg, rgba(30, 27, 25, 0.08), rgba(30, 27, 25, 0.24)),
    url("assets/rooms/JDR-room.jpg"),
    linear-gradient(135deg, #7f593d, #4f382b 44%, #25201c);
  background-size: cover;
  background-position: center;
}

.room-card-visual-jdr::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 23, 19, 0.08), rgba(26, 23, 19, 0.08));
}

.room-card-visual-jdr::after {
  display: none;
}

.room-card-visual-cosy {
  background:
    linear-gradient(180deg, rgba(28, 21, 15, 0.08), rgba(28, 21, 15, 0.22)),
    url("assets/rooms/cosy-room.jpeg"),
    linear-gradient(180deg, rgba(90, 112, 66, 0.14), rgba(90, 112, 66, 0.14)),
    linear-gradient(135deg, #d6c4a2, #a6a264 16%, #cdbb98 56%, #b1946d 100%);
  background-size: cover;
  background-position: center;
}

.room-card-visual-cosy::before {
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 237, 176, 0.74), transparent 12%),
    radial-gradient(circle at 58% 18%, rgba(255, 237, 176, 0.52), transparent 12%),
    linear-gradient(180deg, rgba(98, 111, 60, 0.18), transparent 18%);
}

.room-card-visual-cosy::after {
  display: none;
}

.room-card-visual-karaoke {
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.14), rgba(16, 16, 20, 0.42)),
    url("assets/rooms/karaoke-room.jpg"),
    linear-gradient(180deg, rgba(16, 16, 20, 0.08), rgba(16, 16, 20, 0.42)),
    linear-gradient(135deg, #3d3028, #17191d 46%, #291f1a 100%);
  background-size: cover;
  background-position: center;
}

.room-card-visual-karaoke::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 234, 191, 0.82), transparent 7%),
    radial-gradient(circle at 50% 30%, rgba(255, 234, 191, 0.82), transparent 7%),
    radial-gradient(circle at 78% 28%, rgba(255, 234, 191, 0.82), transparent 7%),
    linear-gradient(180deg, rgba(240, 147, 77, 0.45), transparent 6%),
    linear-gradient(90deg, rgba(240, 147, 77, 0.45), transparent 8%);
}

.room-card-visual-karaoke::after {
  inset: auto 10% 12% 54%;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(90, 61, 35, 0.96), rgba(54, 38, 25, 0.96));
  box-shadow:
    -160px 0 0 0 rgba(22, 22, 24, 0.72),
    -118px 0 0 -18px rgba(28, 29, 31, 0.98),
    0 -16px 0 0 rgba(241, 147, 77, 0.4) inset;
}

.page-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) auto;
  gap: 18px;
  align-items: center;
  background: #2f3f40;
  border: 0;
  box-shadow: none;
}

.page-story-visuals {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-items: end;
  gap: 12px;
  justify-self: end;
}

.page-story-copy {
  display: grid;
  gap: 14px;
}

.page-story-copy .eyebrow,
.page-story-copy h2,
.page-story-copy p {
  color: #f7ead8;
}

.page-story-copy .eyebrow {
  margin-bottom: 0;
  color: #efb265;
}

.page-story-copy h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.page-story-copy .page-story-title {
  color: #6d4422;
  font-size: clamp(1.68rem, 2.26vw, 2.26rem);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 4px 0 rgba(92, 52, 27, 0.42);
}

.page-story-copy .page-story-subtitle {
  color: #f7ead8;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-story-copy p {
  font-size: 1rem;
  line-height: 1.45;
}

.page-story-illustration {
  display: block;
  width: 118px;
  justify-self: end;
  filter: drop-shadow(0 12px 18px rgba(33, 19, 9, 0.14));
}

.page-story-mascot {
  position: relative;
  z-index: 4;
  display: block;
  width: 156px;
  opacity: 1;
  filter: drop-shadow(0 16px 22px rgba(33, 19, 9, 0.18));
}

body[data-page="menu"] .hero-page {
  display: none;
}

body[data-page="menu"] {
  background: #596246;
}

body[data-page="menu"]::before,
body[data-page="menu"]::after,
body[data-page="menu"] .site-shell::before {
  display: none !important;
}

body[data-page="menu"] .site-shell {
  width: min(calc(100% - 34px), 1160px);
}

body[data-page="menu"] main {
  display: grid;
  gap: 22px;
}

body[data-page="menu"] .menu-showcase-panel {
  padding: 20px 20px 26px;
  border-radius: 34px;
  background: #f3dfca;
  box-shadow: none;
}

body[data-page="menu"] .menu-showcase-title {
  margin: 0 0 18px;
  color: #596246;
  font-size: clamp(1.72rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

body[data-page="menu"] .menu-showcase-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

body[data-page="menu"] .menu-showcase-grid-drinks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="menu"] .menu-showcase-grid-share {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

body[data-page="menu"] .menu-showcase-block {
  margin-top: 20px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 248, 235, 0.46);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

body[data-page="menu"] .menu-showcase-block-share {
  margin-top: 24px;
}

body[data-page="menu"] .menu-showcase-section {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}

body[data-page="menu"] .menu-showcase-subtitle {
  margin: 0;
  color: #6c3829;
  font-size: clamp(1.32rem, 1.9vw, 1.62rem);
  text-align: center;
}

body[data-page="menu"] .menu-showcase-card {
  height: 100%;
  padding: 24px 26px 22px;
  border-radius: 28px;
  box-shadow: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

body[data-page="menu"] .menu-showcase-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(63, 40, 20, 0.1);
  background: rgba(255, 248, 235, 0.62);
}

body[data-page="menu"] .menu-showcase-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 30px rgba(33, 20, 10, 0.18);
  filter: saturate(1.03);
}

body[data-page="menu"] .menu-showcase-card:hover .menu-showcase-head img,
body[data-page="menu"] .menu-showcase-card:hover .menu-showcase-icon img {
  transform: rotate(-4deg) scale(1.06);
}

body[data-page="menu"] .menu-showcase-head img,
body[data-page="menu"] .menu-showcase-icon img {
  transition: transform 220ms ease;
}

body[data-page="menu"] .menu-showcase-card-cocktails {
  background: #2f3f40;
}

body[data-page="menu"] .menu-showcase-card-mocktails {
  background: #87512c;
}

body[data-page="menu"] .menu-showcase-card-planches {
  background: #7a3527;
}

body[data-page="menu"] .menu-showcase-card-softs {
  background: #596246;
}

body[data-page="menu"] .menu-showcase-card-wines {
  background: #d19a56;
}

body[data-page="menu"] .menu-showcase-card-snacks {
  background: #8a5634;
}

body[data-page="menu"] .menu-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

body[data-page="menu"] .menu-showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 20px;
  background: rgba(255, 248, 235, 0.08);
  flex: 0 0 auto;
}

body[data-page="menu"] .menu-showcase-icon-pair {
  gap: 6px;
  padding: 0 8px;
}

body[data-page="menu"] .menu-showcase-head h2 {
  margin: 0;
  color: #d79a56;
  font-size: clamp(1.52rem, 2vw, 2rem);
  text-align: center;
}

body[data-page="menu"] .menu-showcase-card-wines .menu-showcase-head h2 {
  color: #6c3829;
}

body[data-page="menu"] .menu-showcase-head img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(43, 31, 20, 0.14));
}

body[data-page="menu"] .menu-showcase-icon-pair img {
  width: 32px;
  height: 32px;
}

body[data-page="menu"] .menu-showcase-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="menu"] .menu-showcase-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

body[data-page="menu"] .menu-showcase-list strong {
  display: block;
  margin-bottom: 3px;
  color: #f6e7d1;
  font-family: "Gumela FS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

body[data-page="menu"] .menu-showcase-list p {
  margin: 0;
  color: #f3e3cd;
  font-size: 0.92rem;
  line-height: 1.45;
}

body[data-page="menu"] .menu-showcase-list span {
  color: #f0b062;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: 1.12rem;
  align-self: center;
}

body[data-page="menu"] .menu-showcase-card-wines .menu-showcase-list strong,
body[data-page="menu"] .menu-showcase-card-wines .menu-showcase-list p,
body[data-page="menu"] .menu-showcase-card-wines .menu-showcase-list span {
  color: #402c1e;
}

body[data-page="menu"] .site-footer {
  margin-top: 22px;
}

@media (max-width: 920px) {
  .page-story-card {
    grid-template-columns: 1fr;
  }

  .page-story-visuals {
    grid-template-columns: auto auto;
    justify-items: center;
  }

  .events-upcoming-head {
    grid-template-columns: 1fr;
  }

  .events-upcoming-mascot {
    justify-self: end;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  body[data-page="menu"] .menu-showcase-grid-drinks,
  body[data-page="menu"] .menu-showcase-grid-share {
    grid-template-columns: 1fr;
  }

  body[data-page="menu"] .menu-showcase-card-planches,
  body[data-page="menu"] .menu-showcase-card-wines {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .page-story-visuals {
    grid-template-columns: auto auto;
    justify-items: center;
  }

  .page-story-illustration {
    width: 96px;
    justify-self: center;
  }

  .page-story-mascot,
  .events-upcoming-mascot {
    width: 96px;
    justify-self: center;
  }

  body[data-page="menu"] .menu-showcase-panel {
    padding: 18px 16px 22px;
    border-radius: 26px;
  }

  body[data-page="menu"] .menu-showcase-title {
    font-size: clamp(1.42rem, 7vw, 1.88rem);
    text-align: center;
    white-space: normal;
  }

  body[data-page="menu"] .menu-showcase-block {
    padding: 14px;
    border-radius: 22px;
  }

  body[data-page="menu"] .menu-showcase-card {
    padding: 20px 18px;
    border-radius: 24px;
  }

  body[data-page="menu"] .menu-showcase-head {
    justify-content: flex-start;
  }

  body[data-page="menu"] .menu-showcase-head h2 {
    text-align: left;
  }

  body[data-page="menu"] .menu-showcase-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  body[data-page="menu"] .menu-showcase-head img {
    width: 52px;
    height: 52px;
  }

  body[data-page="menu"] .menu-showcase-icon-pair img {
    width: 26px;
    height: 26px;
  }

  body[data-page="menu"] .menu-showcase-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body[data-page="menu"] .menu-showcase-list span {
    justify-self: start;
  }
}

body:not([data-page="admin"]) .events-panel .panel-card,
body:not([data-page="admin"]) .availability-card,
body:not([data-page="admin"]) .booking-layout .panel-card:not(.dark-card) {
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.97), rgba(243, 227, 197, 0.96));
}

body[data-page="booking"] .booking-layout:first-of-type .accent-card {
  background:
    radial-gradient(circle at top right, rgba(218, 186, 109, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(70, 87, 54, 0.98), rgba(48, 59, 38, 0.96));
}

body[data-page="booking"] .booking-layout:first-of-type .booking-form-large {
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.96), rgba(240, 224, 198, 0.94));
}

body[data-page="booking"] .reservation-split .availability-card {
  background:
    radial-gradient(circle at top right, rgba(218, 186, 109, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(70, 87, 54, 0.98), rgba(48, 59, 38, 0.96));
}

body[data-page="booking"] .booking-layout:first-of-type .accent-card h2,
body[data-page="booking"] .booking-layout:first-of-type .accent-card p,
body[data-page="booking"] .booking-layout:first-of-type .accent-card li,
body[data-page="booking"] .booking-layout:first-of-type .accent-card .eyebrow,
body[data-page="booking"] .reservation-split .availability-card h2,
body[data-page="booking"] .reservation-split .availability-card h3,
body[data-page="booking"] .reservation-split .availability-card p,
body[data-page="booking"] .reservation-split .availability-card .eyebrow,
body[data-page="booking"] .reservation-split .availability-card strong {
  color: #fff2dd;
}

body[data-page="booking"] .reservation-split .booking-form-large {
  background:
    linear-gradient(180deg, rgba(214, 160, 90, 0.16), rgba(255, 247, 233, 0.96));
}

body[data-page="booking"] .quote-section .dark-card {
  background:
    radial-gradient(circle at top right, rgba(218, 186, 109, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(70, 87, 54, 0.98), rgba(48, 59, 38, 0.96));
}

body[data-page="booking"] .quote-section .booking-form-large {
  background:
    linear-gradient(180deg, rgba(255, 247, 233, 0.96), rgba(234, 211, 179, 0.96));
}

body[data-page="booking"] .quote-section {
  padding-bottom: 10px;
}

body:not([data-page="admin"]) .calendar-shell {
  border: 0;
  background: #f3dfca;
  box-shadow: none;
}

body:not([data-page="admin"]) .events-upcoming-card {
  background: #9a602f;
}

body:not([data-page="admin"]) .events-upcoming-card h2,
body:not([data-page="admin"]) .events-upcoming-card .eyebrow,
body:not([data-page="admin"]) .events-upcoming-card p,
body:not([data-page="admin"]) .events-upcoming-card strong {
  color: #f7ead8;
  opacity: 1;
}

body:not([data-page="admin"]) .booking-layout .dark-card {
  background:
    radial-gradient(circle at top right, rgba(218, 186, 109, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(70, 87, 54, 0.98), rgba(48, 59, 38, 0.96));
}

body:not([data-page="admin"]) .timeline-step strong {
  color: var(--terracotta);
}

body:not([data-page="admin"]) .menu-card .eyebrow,
body:not([data-page="admin"]) .room-card .eyebrow,
body:not([data-page="admin"]) .info-card .eyebrow {
  color: var(--moss);
}

body:not([data-page="admin"]) .menu-grid,
body:not([data-page="admin"]) .booking-layout,
body:not([data-page="admin"]) .reservation-split {
  gap: 22px;
}

body:not([data-page="admin"]) .site-footer strong {
  font-size: 1.24rem;
}

@media (max-width: 980px) {
  .page-story-card {
    grid-template-columns: 1fr;
  }

  .page-story-mascot {
    justify-self: center;
    width: min(100%, 180px);
  }

  .section-lemur {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-logo-plaque {
    min-height: 56px;
    padding: 10px 14px 12px;
  }

  .hero-logo-image {
    width: 156px;
  }

  .room-card-visual {
    border-radius: 18px;
  }

  .brand-logo {
    width: 102px;
  }
}

/* Home Mockup Refresh */
body[data-page="home"] {
  background: #596246;
}

body[data-page="home"]::before,
body[data-page="home"]::after,
body[data-page="home"] .site-shell::before,
body[data-page="home"] .site-header::before,
body[data-page="home"] .site-header::after,
body[data-page="home"] .hero::before,
body[data-page="home"] .hero::after,
body[data-page="home"] .section::before,
body[data-page="home"] .section::after {
  display: none !important;
}

.home-shell {
  width: min(calc(100% - 48px), 1260px);
  padding-top: 20px;
}

.home-header {
  position: sticky;
  top: 14px;
  gap: 12px;
  min-height: 62px;
  padding: 4px 16px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 34px;
  background: #f3dfca;
  box-shadow: none;
  align-items: center;
}

.home-header::before,
.home-header::after {
  display: none !important;
}

.home-brand {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-left: 4px;
  flex: 0 0 auto;
  line-height: 1;
}

.home-brand .brand-logo {
  width: 82px;
  max-width: 24vw;
  filter: none;
}

.home-brand .brand-text {
  margin-top: -4px;
}

.home-brand .brand-text strong {
  display: none;
}

.home-brand .brand-text small {
  color: #596246;
  font-family: "Gumela FS", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
}

.home-nav {
  margin-left: auto;
  width: min(100%, 58%);
  gap: 2px;
  justify-content: space-between;
}

.home-nav a {
  padding: 7px 10px;
  color: #d38a4d;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(1.18rem, 1.58vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  background: rgba(211, 138, 77, 0.08);
  color: #c57f42;
}

.home-nav a.is-active {
  border: 2px solid #d38a4d;
  background: transparent;
  color: #d38a4d;
}

body[data-page="home"] .home-main {
  display: grid;
  gap: 26px;
}

body[data-page="home"] .home-main h1,
body[data-page="home"] .home-main h2,
body[data-page="home"] .home-main h3 {
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body[data-page="home"] .home-main p,
body[data-page="home"] .home-main span,
body[data-page="home"] .home-main a {
  font-family: "Gumela FS", sans-serif;
}

body[data-page="home"] .home-hero-panel {
  min-height: auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  padding: 42px 54px 38px;
  border: 0;
  border-radius: 42px;
  background: #283b3d;
  box-shadow: none;
}

body[data-page="home"] .home-hero-copy {
  max-width: none;
  width: 100%;
}

body[data-page="home"] .home-hero-copy h1 {
  max-width: 15ch;
  color: #f9e8d2;
  font-size: clamp(2.08rem, 4.1vw, 3.35rem);
  line-height: 1.02;
  text-shadow: 0 4px 0 rgba(92, 52, 27, 0.45);
}

body[data-page="home"] .home-hero-copy h1 span {
  margin-top: 26px;
  color: #e19a57;
  font-size: clamp(1.36rem, 2.15vw, 1.82rem);
  line-height: 1.08;
  text-shadow: none;
}

body[data-page="home"] .home-hero-copy .hero-text {
  max-width: 44ch;
  margin-top: 14px;
  color: #f8ecdb;
  font-size: clamp(1.02rem, 1.38vw, 1.14rem);
  font-weight: 400;
  line-height: 1.65;
}

body[data-page="home"] .home-facts {
  margin-top: 26px;
  gap: 18px;
  max-width: 44rem;
}

body[data-page="home"] .home-facts span {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 2px solid rgba(255, 243, 226, 0.08);
  background: #d38a4d;
  color: #fff3e2;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(0.92rem, 1.02vw, 1.02rem);
  font-weight: 400;
  box-shadow: 0 5px 0 rgba(117, 62, 28, 0.62);
}

body[data-page="home"] .home-address {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  margin-top: 20px;
  border: 0;
  border-radius: 18px;
  border: 2px solid rgba(108, 56, 41, 0.12);
  background: #e6c9a5;
  color: #d38a4d;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(0.92rem, 1.02vw, 1.02rem);
  font-weight: 700;
  box-shadow: 0 5px 0 rgba(108, 56, 41, 0.28);
}

body[data-page="home"] .home-hero-panel .home-address,
body[data-page="home"] .hero-home .home-address,
body[data-page="home"] .hero-home .hero-address {
  color: #d38a4d !important;
}

body[data-page="home"] .home-address::before {
  display: none;
}

body[data-page="home"] .home-actions {
  margin-top: 28px;
  gap: 16px;
}

body[data-page="home"] .home-actions .button {
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 18px;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(0.98rem, 1.04vw, 1.06rem);
  font-weight: 400;
  box-shadow:
    0 8px 0 rgba(50, 34, 23, 0.36),
    0 14px 24px rgba(35, 23, 17, 0.18);
}

body[data-page="home"] .home-actions .button-secondary {
  background: #72784f;
  color: #fff2e0;
  box-shadow:
    0 8px 0 rgba(69, 74, 47, 0.92),
    0 14px 24px rgba(35, 23, 17, 0.18);
}

body[data-page="home"] .home-actions .button-primary {
  background: #ab5a31;
  color: #fff2e0;
  box-shadow:
    0 8px 0 rgba(120, 61, 30, 0.96),
    0 14px 24px rgba(35, 23, 17, 0.18);
}

body[data-page="home"] .home-actions .button:hover,
body[data-page="home"] .home-actions .button:focus-visible {
  transform: translateY(-2px);
}

body[data-page="home"] .home-actions .button:active {
  transform: translateY(4px);
  box-shadow:
    0 3px 0 rgba(50, 34, 23, 0.28),
    0 8px 14px rgba(35, 23, 17, 0.14);
}

body[data-page="home"] .home-hero-visual {
  min-height: 100%;
  align-items: center;
}

body[data-page="home"] .home-hero-mascot {
  width: min(100%, 380px);
  filter: none;
}

body[data-page="home"] .home-marquee {
  margin: 0;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: #3c432d;
  overflow: hidden;
}

body[data-page="home"] .home-marquee .marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  animation: home-marquee-loop 28s linear infinite;
  will-change: transform;
}

body[data-page="home"] .home-marquee .marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex: none;
}

body[data-page="home"] .home-marquee .marquee-track span,
body[data-page="home"] .home-marquee .marquee-track::after {
  color: #f4e4ce;
  font-family: "Gumela FS", sans-serif;
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 700;
}

body[data-page="home"] .home-marquee .marquee-track span::after {
  content: "•";
  margin-left: 16px;
  margin-right: 16px;
  color: #f4e4ce;
}

body[data-page="home"] .home-marquee .marquee-group:last-child span:last-child::after {
  display: none;
}

@keyframes home-marquee-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

body[data-page="home"] .home-intro-panel {
  padding: 34px 34px 30px;
  border: 0;
  border-radius: 42px;
  background: #f3dfca;
  box-shadow: none;
}

body[data-page="home"] .home-intro-panel,
body[data-page="home"] .home-rooms-panel,
body[data-page="home"] .home-house-panel {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="home"] .home-intro-panel:hover,
body[data-page="home"] .home-rooms-panel:hover,
body[data-page="home"] .home-house-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(63, 40, 20, 0.1);
}

body[data-page="home"] .home-intro-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 26px;
  align-items: start;
}

body[data-page="home"] .home-intro-title {
  display: grid;
  gap: 10px;
}

body[data-page="home"] .home-intro-title h2 {
  color: #7f3a23;
  font-size: clamp(1.68rem, 2.26vw, 2.26rem);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 4px 0 rgba(92, 52, 27, 0.42);
}

body[data-page="home"] .home-intro-visual {
  min-height: 200px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(34, 33, 31, 0.06), rgba(34, 33, 31, 0.06)),
    url("assets/rooms/home-room.jpg"),
    linear-gradient(135deg, #8a6b45 0%, #63704b 28%, #5b6c45 54%, #7a5638 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .home-intro-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35, 31, 26, 0.06), rgba(35, 31, 26, 0.06));
}

body[data-page="home"] .home-intro-visual::after {
  display: none;
}

body[data-page="home"] .home-intro-cards {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  padding-bottom: 26px;
}

body[data-page="home"] .home-info-card {
  min-height: 100%;
  padding: 30px 28px;
  border: 0;
  border-radius: 28px;
  background: #7d2f25;
  box-shadow: none;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="home"] .home-info-card:hover,
body[data-page="home"] .home-room-card:hover,
body[data-page="home"] .home-house-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(63, 40, 20, 0.12);
}

body[data-page="home"] .home-info-card h3 {
  margin-bottom: 12px;
  color: #d78d4c;
  font-size: clamp(1.08rem, 1.18vw, 1.2rem);
  line-height: 1.12;
}

body[data-page="home"] .home-info-card p {
  color: #f7ead8;
  font-size: clamp(0.92rem, 0.94vw, 0.98rem);
  font-weight: 400;
  line-height: 1.62;
}

body[data-page="home"] .home-intro-mascot {
  position: absolute;
  z-index: 4;
  bottom: 16px;
  width: 92px;
  pointer-events: none;
}

body[data-page="home"] .home-intro-mascot-left {
  left: 34%;
}

body[data-page="home"] .home-intro-mascot-right {
  right: 27%;
}

body[data-page="home"] .home-rooms-panel {
  position: relative;
  padding: 46px 34px 40px;
  border: 0;
  border-radius: 42px;
  background: #d38a4d;
  box-shadow: none;
}

body[data-page="home"] .home-rooms-title {
  text-align: center;
  margin-bottom: 28px;
}

body[data-page="home"] .home-rooms-title h2 {
  color: #f9e8d2;
  font-size: clamp(1.68rem, 2.26vw, 2.26rem);
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 4px 0 rgba(92, 52, 27, 0.42);
}

body[data-page="home"] .home-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body[data-page="home"] .home-room-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px 24px 26px;
  border: 0;
  border-radius: 34px;
  background: #f3dfca;
  box-shadow: none;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="home"] .home-room-visual {
  aspect-ratio: 1.76 / 1;
  margin-bottom: 6px;
  border-radius: 24px;
}

body[data-page="home"] .home-room-card h3 {
  color: #cf8446;
  font-size: clamp(1.24rem, 1.32vw, 1.4rem);
  line-height: 1.12;
}

body[data-page="home"] .home-room-card p {
  color: #7a4d2f;
  font-size: clamp(0.9rem, 0.9vw, 0.96rem);
  font-weight: 400;
  line-height: 1.62;
}

body[data-page="home"] .home-house-panel {
  position: relative;
  padding: 28px 28px 24px;
  border: 0;
  border-radius: 30px;
  background: #9e612f;
  box-shadow: none;
  overflow: hidden;
}

body[data-page="home"] .home-house-head {
  position: relative;
  z-index: 6;
  max-width: 76ch;
  margin-bottom: 22px;
}

body[data-page="home"] .home-house-head h2 {
  color: #fff0db;
  font-size: clamp(1.68rem, 2.26vw, 2.26rem);
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 3px 0 rgba(101, 55, 29, 0.28);
}

body[data-page="home"] .home-house-head p {
  color: #fdebd7;
  font-size: clamp(0.96rem, 0.98vw, 1rem);
  font-weight: 400;
  line-height: 1.62;
}

body[data-page="home"] .home-house-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .home-house-card {
  min-height: 100%;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background: #f3dfca;
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="home"] .home-house-card h3 {
  color: #cf8446;
  font-size: clamp(1.22rem, 1.28vw, 1.36rem);
  margin-bottom: 8px;
  line-height: 1.14;
}

body[data-page="home"] .home-house-card p {
  color: #6b4a2f;
  font-size: clamp(0.88rem, 0.84vw, 0.94rem);
  font-weight: 400;
  line-height: 1.58;
}

body[data-page="home"] .home-house-card-media {
  width: 100%;
  height: 92px;
  margin-bottom: 12px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body[data-page="home"] .home-house-card-media-dice {
  background-image:
    url("assets/home/home-house-dice.png"),
    radial-gradient(circle at center, rgba(143, 77, 36, 0.08), rgba(143, 77, 36, 0.08));
}

body[data-page="home"] .home-house-card-media-bar {
  background-image:
    url("assets/home/home-house-bar.png"),
    radial-gradient(circle at center, rgba(143, 77, 36, 0.08), rgba(143, 77, 36, 0.08));
}

body[data-page="home"] .home-house-card-media-events {
  background-image:
    url("assets/home/home-house-events.png"),
    radial-gradient(circle at center, rgba(143, 77, 36, 0.08), rgba(143, 77, 36, 0.08));
}

body[data-page="home"] .home-rooms-top-mascot {
  position: absolute;
  top: 20px;
  z-index: 4;
  width: 86px;
  pointer-events: none;
}

body[data-page="home"] .home-rooms-top-mascot-left {
  left: 92px;
}

body[data-page="home"] .home-rooms-top-mascot-right {
  right: 92px;
}

body[data-page="home"] .site-footer {
  margin-top: 26px;
  border: 0;
}

body[data-page="home"] .footer-brand strong {
  color: #f7ead8;
  font-size: 1.18rem;
  font-weight: 400;
}

body[data-page="home"] .footer-brand p,
body[data-page="home"] .footer-contact a {
  color: #f7ead8;
  font-family: "Gumela FS", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .home-header {
    min-height: 58px;
    padding: 4px 12px;
    border-radius: 24px;
  }

  .home-brand .brand-logo {
    width: 78px;
    max-width: 30vw;
  }

  .home-brand .brand-text small {
    font-size: 0.61rem;
  }

  .home-nav {
    width: min(100%, 62%);
  }

  .home-nav a {
    padding: 6px 9px;
    font-size: 1.08rem;
  }

  body[data-page="home"] .home-hero-panel,
  body[data-page="home"] .home-intro-panel,
  body[data-page="home"] .home-rooms-panel {
    padding-left: 26px;
    padding-right: 26px;
  }

  body[data-page="home"] .home-intro-mascot-left {
    left: 30%;
  }

  body[data-page="home"] .home-intro-mascot-right {
    right: 24%;
  }

  body[data-page="home"] .home-rooms-top-mascot-left {
    left: 54px;
  }

  body[data-page="home"] .home-rooms-top-mascot-right {
    right: 54px;
  }
}

@media (max-width: 920px) {
  .home-header {
    gap: 14px;
    border-radius: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 22px;
  }

  .footer-contact {
    justify-items: start;
    justify-self: start;
    margin-left: 0;
  }

  .footer-address-pill {
    min-height: 56px;
    padding: 0 22px;
    white-space: normal;
  }

  body[data-page="home"] .home-hero-panel,
  body[data-page="home"] .home-intro-head,
  body[data-page="home"] .home-house-grid,
  body[data-page="home"] .home-room-grid,
  body[data-page="home"] .home-intro-cards {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-hero-panel {
    padding-top: 30px;
  }

  body[data-page="home"] .home-hero-copy .hero-text,
  body[data-page="home"] .home-hero-copy h1 {
    max-width: none;
  }

  body[data-page="home"] .home-hero-visual {
    min-height: 240px;
  }

  body[data-page="home"] .home-intro-mascot,
  body[data-page="home"] .home-rooms-top-mascot {
    display: none;
  }

  body[data-page="home"] .home-intro-head {
    gap: 20px;
  }

}

@media (max-width: 720px) {
  html {
    font-size: 16px;
  }

  .home-shell {
    width: min(calc(100% - 18px), 1260px);
    padding-top: 12px;
  }

  .site-footer {
    gap: 16px;
    border-radius: 28px;
    padding: 20px 18px;
  }

  .footer-address-pill,
  .footer-contact-link {
    width: 100%;
    justify-content: flex-start;
  }

  .home-header,
  body[data-page="home"] .home-hero-panel,
  body[data-page="home"] .home-intro-panel,
  body[data-page="home"] .home-rooms-panel,
  body[data-page="home"] .site-footer {
    padding: 20px;
    border-radius: 26px;
  }

  .home-header {
    min-height: auto;
    padding: 8px 12px;
  }

  .home-brand .brand-logo {
    width: 76px;
    max-width: 46vw;
  }

  .home-brand .brand-text small {
    font-size: 0.6rem;
  }

  .home-nav a {
    padding: 7px 10px;
    font-size: 0.98rem;
  }

  body[data-page="home"] .home-facts {
    gap: 12px;
  }

  body[data-page="home"] .home-facts span,
  body[data-page="home"] .home-address,
  body[data-page="home"] .home-actions .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .home-actions {
    flex-direction: column;
  }

  body[data-page="home"] .home-marquee {
    padding: 14px 20px;
  }

  body[data-page="home"] .home-marquee .marquee-track {
    animation-duration: 24s;
  }

  body[data-page="home"] .home-intro-title h2,
  body[data-page="home"] .home-rooms-title h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

/* Final shared header override */
body:not([data-page="admin"]) .home-shell {
  width: min(calc(100% - 48px), 1260px);
  padding-top: 20px;
}

body:not([data-page="admin"]) .site-header.home-header {
  top: 14px;
  min-height: 62px;
  padding: 4px 16px;
  gap: 12px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 34px;
  background: #f3dfca;
  box-shadow: none;
  backdrop-filter: none;
}

body:not([data-page="admin"]) .site-header.home-header::before,
body:not([data-page="admin"]) .site-header.home-header::after {
  display: none !important;
}

body:not([data-page="admin"]) .brand.home-brand {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-left: 4px;
  line-height: 1;
}

body:not([data-page="admin"]) .home-brand .brand-logo {
  width: 82px;
  max-width: 24vw;
  filter: none;
}

body:not([data-page="admin"]) .home-brand .brand-text {
  margin-top: -4px;
}

body:not([data-page="admin"]) .home-brand .brand-text strong {
  display: none;
}

body:not([data-page="admin"]) .home-brand .brand-text small {
  color: #596246;
  font-family: "Gumela FS", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
}

body:not([data-page="admin"]) .site-nav.home-nav {
  margin-left: auto;
  width: min(100%, 58%);
  gap: 2px;
  justify-content: space-between;
  background: transparent;
}

body:not([data-page="admin"]) .home-nav a {
  padding: 7px 10px;
  color: #d38a4d;
  font-family: "Hobo FS", "Gumela FS", sans-serif;
  font-size: clamp(1.18rem, 1.58vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body:not([data-page="admin"]) .home-nav a:hover,
body:not([data-page="admin"]) .home-nav a:focus-visible {
  background: rgba(211, 138, 77, 0.08);
  color: #c57f42;
}

body:not([data-page="admin"]) .home-nav a.is-active {
  border: 2px solid #d38a4d;
  background: transparent;
  color: #d38a4d;
}

@media (max-width: 1100px) {
  body:not([data-page="admin"]) .site-header.home-header {
    min-height: 58px;
    padding: 4px 12px;
    border-radius: 24px;
  }

  body:not([data-page="admin"]) .home-brand .brand-logo {
    width: 78px;
    max-width: 30vw;
  }

  body:not([data-page="admin"]) .home-brand .brand-text small {
    font-size: 0.61rem;
  }

  body:not([data-page="admin"]) .site-nav.home-nav {
    width: min(100%, 62%);
  }

  body:not([data-page="admin"]) .home-nav a {
    padding: 6px 9px;
    font-size: 1.08rem;
  }
}

@media (max-width: 920px) {
  body:not([data-page="admin"]) .site-header.home-header {
    gap: 14px;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  body:not([data-page="admin"]) .home-shell {
    width: min(calc(100% - 18px), 1260px);
    padding-top: 12px;
  }

  body:not([data-page="admin"]) .site-header.home-header {
    min-height: auto;
    padding: 8px 12px;
  }

  body:not([data-page="admin"]) .home-brand .brand-logo {
    width: 76px;
    max-width: 46vw;
  }

  body:not([data-page="admin"]) .home-brand .brand-text small {
    font-size: 0.6rem;
  }

  body:not([data-page="admin"]) .home-nav a {
    padding: 7px 10px;
    font-size: 0.98rem;
  }
}

/* Final events upcoming override */
body[data-page="events"] .events-panel .panel-card.events-upcoming-card {
  background: #9a602f;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card h2 {
  color: #f7ead8;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card .events-upcoming-subtitle {
  color: #dcb67d;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card .event-card {
  background: #f5e6cf;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card .event-card h3 {
  color: #8a592f;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card .event-card p {
  color: #7e5634;
  opacity: 1;
}

body[data-page="events"] .events-upcoming-card .event-meta span {
  background: #d8b37b;
  color: #f7ead8;
  opacity: 1;
}

/* Final readability, mascots, header and responsive pass */
body:not([data-page="admin"]) .section p,
body:not([data-page="admin"]) .story-card p,
body:not([data-page="admin"]) .feature-panel p,
body:not([data-page="admin"]) .panel-card p,
body:not([data-page="admin"]) .menu-card p,
body:not([data-page="admin"]) .timeline-step p,
body:not([data-page="admin"]) .info-card p,
body:not([data-page="admin"]) .room-card p,
body:not([data-page="admin"]) .section-lead,
body:not([data-page="admin"]) .form-note,
body:not([data-page="admin"]) .modal-meta,
body:not([data-page="admin"]) label,
body:not([data-page="admin"]) li {
  font-size: 1.44rem;
}

body:not([data-page="admin"]) .event-card p,
body:not([data-page="admin"]) .calendar-month-text,
body:not([data-page="admin"]) .events-upcoming-subtitle {
  font-size: 1.24rem;
}

body:not([data-page="admin"]) .brand.home-brand {
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  align-self: center;
  position: relative;
  top: -8px;
  gap: 1px;
}

body:not([data-page="admin"]) .home-brand .brand-logo {
  width: 72px;
  max-width: 22vw;
  margin: 0 auto;
}

body:not([data-page="admin"]) .home-brand .brand-text {
  width: 100%;
  margin-top: -12px;
  text-align: center;
  line-height: 1;
}

body:not([data-page="admin"]) .home-brand .brand-text small {
  font-size: 0.68rem;
}

body:not([data-page="admin"]) .site-header.home-header {
  min-height: 48px;
  padding: 4px 14px;
  align-items: center;
}

body:not([data-page="admin"]) .site-nav.home-nav {
  align-items: center;
}

body:not([data-page="admin"]) .home-nav a {
  font-size: clamp(1.26rem, 1.7vw, 1.5rem);
}

body[data-page="home"] .home-intro-mascot {
  width: 134px;
}

body[data-page="home"] .home-intro-mascot-left {
  left: 29.5%;
}

body[data-page="home"] .home-rooms-top-mascot {
  width: 112px;
}

body:not([data-page="admin"]) .section-lemur {
  width: 136px;
}

body:not([data-page="admin"]) .section-lemur-concept {
  width: 112px;
}

body:not([data-page="admin"]) .section-lemur-booking {
  width: 156px;
}

body:not([data-page="admin"]) .section-lemur-quote {
  width: 176px;
}

body:not([data-page="admin"]) .panel-mascot {
  width: 138px;
}

body:not([data-page="admin"]) .panel-mascot-small {
  width: 122px;
}

body[data-page="booking"] .booking-layout:first-of-type .has-panel-mascot {
  overflow: visible;
}

body[data-page="booking"] .booking-layout:first-of-type .panel-mascot-left {
  right: 18px;
  bottom: -48px;
  width: 126px;
  max-width: none;
  z-index: 8;
}

body[data-page="booking"] .section-lemur-booking {
  right: 74px;
  bottom: 8px;
  width: 126px;
  max-width: none;
  z-index: 8;
}

body[data-page="booking"] .section-lemur-quote {
  right: 14px;
  bottom: 42px;
  width: 176px;
  max-width: none;
  z-index: 8;
}

body[data-page="events"] .page-story-mascot {
  width: 198px;
}

body[data-page="events"] .events-upcoming-mascot {
  width: 124px;
}

body[data-page="home"] .home-hero-mascot {
  width: min(100%, 470px);
}

body[data-page="home"] .home-house-head {
  max-width: none;
}

body[data-page="home"] .home-house-title-row {
  position: relative;
  display: block;
  padding-right: 122px;
  margin-bottom: 10px;
  z-index: 7;
}

body[data-page="home"] .home-house-title-row h2 {
  margin-bottom: 0;
}

body[data-page="home"] .home-house-title-mascot {
  display: block;
  position: absolute;
  top: -4px;
  right: 0;
  width: 132px;
  z-index: 8;
  filter: drop-shadow(0 14px 20px rgba(60, 39, 20, 0.18));
}

body[data-page="events"] .calendar-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
}

body[data-page="events"] .calendar-scroll::-webkit-scrollbar {
  height: 10px;
}

body[data-page="events"] .calendar-scroll::-webkit-scrollbar-thumb {
  background: rgba(125, 69, 45, 0.42);
  border-radius: 999px;
}

body[data-page="events"] .calendar-weekdays,
body[data-page="events"] .calendar-grid {
  min-width: 708px;
}

body[data-page="events"] .event-list {
  align-items: stretch;
}

body[data-page="events"] .events-upcoming-card .event-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body[data-page="events"] .events-upcoming-card .event-card > p:not(.event-meta) {
  min-height: 4.4em;
  margin-bottom: 18px;
}

body[data-page="events"] .events-upcoming-card .event-meta {
  min-height: 54px;
  margin-bottom: 18px;
  align-content: start;
}

body[data-page="events"] .events-upcoming-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  line-height: 1.15;
}

body[data-page="home"] .home-actions,
body[data-page="booking"] .booking-form .button,
body[data-page="booking"] .booking-form-large .button {
  margin-top: 12px;
}

@media (max-width: 920px) {
  .events-main-grid {
    grid-template-columns: 1fr;
  }

  body:not([data-page="admin"]) .home-nav a {
    font-size: 1.12rem;
  }

  body[data-page="events"] .event-list {
    grid-template-columns: 1fr;
  }

  body[data-page="events"] .calendar-weekdays,
  body[data-page="events"] .calendar-grid {
    min-width: 700px;
  }

  body[data-page="home"] .home-house-title-row {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-house-title-mascot {
    top: -2px;
    width: 110px;
  }
}

@media (max-width: 720px) {
  body:not([data-page="admin"]) .section p,
  body:not([data-page="admin"]) .story-card p,
  body:not([data-page="admin"]) .feature-panel p,
  body:not([data-page="admin"]) .panel-card p,
  body:not([data-page="admin"]) .menu-card p,
  body:not([data-page="admin"]) .timeline-step p,
  body:not([data-page="admin"]) .info-card p,
  body:not([data-page="admin"]) .room-card p,
  body:not([data-page="admin"]) .section-lead,
  body:not([data-page="admin"]) .form-note,
  body:not([data-page="admin"]) .modal-meta,
  body:not([data-page="admin"]) label,
  body:not([data-page="admin"]) li {
    font-size: 1.16rem;
  }

  body:not([data-page="admin"]) .site-header.home-header {
    min-height: 50px;
    padding: 4px 10px;
  }

  body:not([data-page="admin"]) .site-header.is-open .site-nav.home-nav {
    background: linear-gradient(180deg, rgba(253, 245, 231, 0.99), rgba(241, 221, 188, 0.99));
    border: 1px solid rgba(130, 95, 57, 0.18);
    box-shadow: 0 16px 28px rgba(60, 39, 20, 0.14);
    border-radius: 24px;
    padding: 12px 10px;
  }

  body:not([data-page="admin"]) .home-brand .brand-logo {
    width: 62px;
  }

  body:not([data-page="admin"]) .home-brand .brand-text {
    margin-top: -10px;
  }

  body:not([data-page="admin"]) .home-brand .brand-text small {
    font-size: 0.58rem;
  }

  body:not([data-page="admin"]) .home-nav a {
    font-size: 1rem;
    padding: 7px 8px;
  }

  body:not([data-page="admin"]) .section-lemur,
  body:not([data-page="admin"]) .panel-mascot,
  body[data-page="events"] .page-story-mascot,
  body[data-page="events"] .events-upcoming-mascot,
  body[data-page="home"] .home-intro-mascot,
  body[data-page="home"] .home-rooms-top-mascot {
    width: 118px;
  }

  body[data-page="home"] .home-hero-mascot {
    width: min(100%, 360px);
  }

  body[data-page="home"] .home-house-title-mascot {
    top: 0;
    width: 98px;
  }

  body[data-page="booking"] .booking-layout:first-of-type .panel-mascot-left {
    right: 8px;
    bottom: -26px;
    width: 96px;
  }

  body[data-page="booking"] .section-lemur-booking {
    right: 10px;
    bottom: 10px;
    width: 96px;
  }

  body[data-page="booking"] .section-lemur-quote {
    right: 8px;
    bottom: 26px;
    width: 110px;
  }

  body[data-page="events"] .calendar-weekdays,
  body[data-page="events"] .calendar-grid {
    min-width: 640px;
  }

  body[data-page="events"] .calendar-day {
    min-height: 96px;
  }

  body[data-page="menu"] .menu-showcase-panel,
  body[data-page="menu"] .menu-showcase-block,
  body[data-page="menu"] .menu-showcase-card {
    background-clip: padding-box;
  }

  body[data-page="menu"] .menu-showcase-panel {
    background: #f3dfca;
  }

  body[data-page="menu"] .menu-showcase-block {
    background: rgba(255, 248, 235, 0.92);
  }

  body[data-page="menu"] .menu-showcase-card {
    background-image: none;
  }

  body[data-page="menu"] .menu-showcase-card-cocktails {
    background: #2f3f40 !important;
  }

  body[data-page="menu"] .menu-showcase-card-mocktails {
    background: #87512c !important;
  }

  body[data-page="menu"] .menu-showcase-card-softs {
    background: #596246 !important;
  }

  body[data-page="menu"] .menu-showcase-card-wines {
    background: #d19a56 !important;
  }

  body[data-page="menu"] .menu-showcase-card-planches {
    background: #7a3527 !important;
  }

  body[data-page="menu"] .menu-showcase-card-snacks {
    background: #8a5634 !important;
  }
}

/* Final reservation hover and mascot overrides */
body[data-page="booking"] .booking-layout > .panel-card,
body[data-page="booking"] .booking-layout > .booking-form-large,
body[data-page="booking"] .reservation-split > .panel-card,
body[data-page="booking"] .reservation-split > .booking-form-large,
body[data-page="booking"] .quote-section > .panel-card,
body[data-page="booking"] .quote-section > .booking-form-large,
body[data-page="booking"] .room-grid .room-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease !important;
}

body[data-page="booking"] .booking-layout > .panel-card:hover,
body[data-page="booking"] .booking-layout > .booking-form-large:hover,
body[data-page="booking"] .reservation-split > .panel-card:hover,
body[data-page="booking"] .reservation-split > .booking-form-large:hover,
body[data-page="booking"] .quote-section > .panel-card:hover,
body[data-page="booking"] .quote-section > .booking-form-large:hover,
body[data-page="booking"] .room-grid .room-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 30px rgba(63, 40, 20, 0.12) !important;
}

body[data-page="booking"] .booking-layout:first-of-type .panel-mascot-left {
  right: -26px !important;
  bottom: -58px !important;
  width: 126px !important;
  max-width: none !important;
  z-index: 12 !important;
}

body[data-page="booking"] .section-lemur-booking {
  right: 28px !important;
  bottom: 10px !important;
  width: 126px !important;
  max-width: none !important;
  z-index: 12 !important;
}

body[data-page="booking"] .section-lemur-quote {
  right: 14px !important;
  bottom: 148px !important;
  width: 176px !important;
  max-width: none !important;
  z-index: 12 !important;
}

@media (max-width: 720px) {
  body[data-page="booking"] .booking-layout > .panel-card:hover,
  body[data-page="booking"] .booking-layout > .booking-form-large:hover,
  body[data-page="booking"] .reservation-split > .panel-card:hover,
  body[data-page="booking"] .reservation-split > .booking-form-large:hover,
  body[data-page="booking"] .quote-section > .panel-card:hover,
  body[data-page="booking"] .quote-section > .booking-form-large:hover,
  body[data-page="booking"] .room-grid .room-card:hover {
    transform: translateY(-4px) !important;
  }

  body[data-page="booking"] .booking-layout:first-of-type .panel-mascot-left {
    right: -10px !important;
    bottom: -30px !important;
    width: 96px !important;
  }

  body[data-page="booking"] .section-lemur-booking {
    right: 8px !important;
    bottom: 10px !important;
    width: 96px !important;
  }

  body[data-page="booking"] .section-lemur-quote {
    right: 8px !important;
    bottom: 82px !important;
    width: 110px !important;
  }
}

/* Final availability pill overrides */
body[data-page="booking"] .availability-card .availability-meta,
body[data-page="booking"] .availability-card .slot-grid {
  opacity: 1 !important;
}

body[data-page="booking"] .availability-card .status-pill,
body[data-page="booking"] .availability-card .slot-chip,
body[data-page="booking"] .availability-card .status-pill.is-open,
body[data-page="booking"] .availability-card .status-pill.is-closed,
body[data-page="booking"] .availability-card .slot-chip.is-available,
body[data-page="booking"] .availability-card .slot-chip.is-booked {
  background: #f3dfca !important;
  color: #30413a !important;
  border: 1px solid rgba(48, 65, 58, 0.16) !important;
  opacity: 1 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
