:root {
  --bg: #f7f7f5;
  --panel: #ffffff;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --line: #ebebeb;
  --brand: #c5a059;
  --brand-dark: #a68545;
  /* POLISH-001: the gold --brand-dark (#a68545 ≈ 3.5:1 on white) fails WCAG AA
     for the menu price text. This darker gold (#876a32 ≈ 5.1:1) keeps the warm
     brand feel while passing AA. Scoped to a token so --brand-dark stays put
     for decorative uses (footer hover, accents). */
  --menu-price-ink: #876a32;
  --accent: #fdfaf2;
  --danger: #b3261e;
  --success: #2e7d32;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  /* Sprint polish: unified Manrope stack.
     Keep the --font-serif alias for legacy references; it still points to
     Manrope so old display-weight h1/h2 don't render a different family. */
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 { font-size: 1.9rem; line-height: 1.15; }
h2 { font-size: 1.3rem; line-height: 1.25; }
h3 { font-size: 1.05rem; line-height: 1.3; }

/* Layout */
.app-wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.app-header {
  height: 64px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-brand .brand {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
}

.header-nav { margin-left: 48px; display: flex; gap: 24px; }
.nav-item { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 13px; }
.nav-item:hover { color: var(--ink); }
.header-auth { margin-left: auto; }
.user-meta { display: flex; align-items: center; gap: 16px; }

/* Main */
.app-main { flex: 1; padding: 40px 0; }
.main-container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* Components */
.content-section {
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.section-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h2 { font-size: 22px; }
.section-body { padding: 24px; }

/* Data Display */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  background: var(--line);
  gap: 1px;
}

.data-cell {
  padding: 20px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.data-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: 0.5px; }
.data-value { font-size: 15px; font-weight: 500; }

/* Stats */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; margin-bottom: 40px; }
.stat-card { background: var(--panel); padding: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.stat-card strong { display: block; font-size: 10px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stat-card span { font-family: var(--font-serif); font-size: 36px; line-height: 1; display: block; }
.guide-detail-stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 24px; }
.guide-detail-stats .stat-card { padding: 18px 20px; min-height: 112px; }
.guide-publish-panel .section-header { align-items: flex-start; gap: 18px; }
.guide-publish-panel .section-header p { margin: 6px 0 0; max-width: 72ch; }
.guide-publish-panel .section-body { padding: 0 24px 20px; }

/* Tables & Lists */
/* POLISH-001: scroll container so wide admin tables don't break the viewport
   on mobile. The .admin-table-wrap markup already exists in templates; this
   gives it the horizontal scroll + edge fade affordance. */
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.admin-table-wrap .admin-table { min-width: 560px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px 24px; font-size: 11px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); background: #fafafa; }
.admin-table td { padding: 16px 24px; border-bottom: 1px solid var(--line); }
.admin-table tr:hover td { background: #fcfcfc; }

.admin-list { list-style: none; padding: 0; margin: 0; }
.admin-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-list li:last-child { border-bottom: none; }
.recommendation-order-groups {
  display: grid;
  gap: 18px;
  padding: 20px 24px;
}
.recommendation-order-group {
  display: grid;
  gap: 10px;
}
.recommendation-order-group__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--brand);
}
.recommendation-order-group__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.recommendation-order-group__header h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
}
.recommendation-order-group__list {
  margin-left: 24px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.recommendation-order-group__list .ordering-item {
  padding: 14px 0;
}
@media (max-width: 720px) {
  .recommendation-order-groups {
    padding: 16px;
  }
  .recommendation-order-group__list {
    margin-left: 8px;
    padding-left: 12px;
  }
}

/* Forms */
.admin-form { display: grid; gap: 24px; max-width: 640px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; display: block; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fafafa;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: 4px;
}
.admin-form input:focus { outline: none; border-color: var(--brand); background: #fff; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 4px;
}
.button:hover { background: #333; transform: translateY(-1px); }
.button-secondary { background: transparent; color: var(--ink); }
.button-small { height: 32px; padding: 0 12px; font-size: 10px; }
.button-ghost { background: transparent; border-color: var(--line); color: var(--muted); }

/* Flash Messages */
.flash-messages { position: fixed; top: 80px; right: 32px; z-index: 1100; display: flex; flex-direction: column; gap: 12px; }
.flash-item { padding: 12px 24px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); border-left: 4px solid var(--brand); animation: slideIn 0.3s ease-out; }

/* Public Page Style */
.guide-page, .menu-page { background: #fff; min-height: 100vh; }
.guide-hero, .menu-hero { padding: 100px 32px; text-align: center; background: var(--accent); border-bottom: 1px solid var(--line); margin-bottom: 64px; }
.guide-hero h1, .menu-hero h1 { font-size: 64px; margin-bottom: 16px; overflow-wrap: anywhere; }
.guide-subtitle, .menu-subtitle { font-size: 22px; color: var(--muted); font-style: italic; font-family: var(--font-serif); }
.public-announcements {
  max-width: 900px;
  margin: 24px auto;
  padding: 0 24px;
}
.public-announcements__inner {
  display: grid;
  gap: 10px;
}
.public-announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 8px 24px rgba(24, 24, 27, 0.06);
}
.public-announcement strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}
.public-announcement p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.public-announcement__cta {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
}
.menu-hero__meta {
  margin: 14px auto 0;
  max-width: 520px;
  color: var(--muted);
  font: 700 12px/1.4 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}

.guide-card, .menu-catalog { max-width: 800px; margin: 48px auto; padding: 64px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.guide-section-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.guide-section-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent);
}

.guide-knowledge {
  max-width: 960px;
  margin: 48px auto;
}
.guide-knowledge__block + .guide-knowledge__block { margin-top: 40px; }
.guide-knowledge h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font: 600 30px/1.15 var(--font-serif);
}
.guide-knowledge-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.guide-knowledge-group {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(40, 32, 20, 0.05);
}
.guide-knowledge-group h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font: 700 13px/1.3 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}
.guide-amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.guide-amenity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.guide-amenity-list li:last-child {
  border-bottom: 0;
}
.guide-amenity-list__content {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.guide-amenity-list__image {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper);
}
.guide-amenity-info-button {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: 700 13px/1 var(--font-sans);
}
.guide-amenity-info-button:hover {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}
.guide-amenity-modal {
  width: min(92vw, 560px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
}
.guide-amenity-modal::backdrop {
  background: rgba(25, 22, 18, 0.48);
}
.guide-amenity-modal__panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(25, 22, 18, 0.24);
}
.guide-amenity-modal__panel h3 {
  margin: 0 44px 16px 0;
  color: var(--ink);
  font: 700 22px/1.2 var(--font-sans);
}
.guide-amenity-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.guide-amenity-modal__body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.guide-amenity-modal__body p {
  margin: 6px 0 0;
}
.guide-amenity-modal__body strong {
  color: var(--ink);
}
.guide-amenity-modal__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 0 16px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
}
.guide-instruction-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.guide-instruction-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.guide-instruction-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font: 700 18px/1.3 var(--font-sans);
}
.guide-instruction-item__image {
  display: block;
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 12px 0;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
}
.guide-instruction-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.guide-instruction-item strong { color: var(--ink); }

@media (max-width: 640px) {
  .guide-knowledge { margin: 32px auto; }
  .guide-knowledge h2 { font-size: 24px; }
  .guide-knowledge-groups { grid-template-columns: 1fr; gap: 18px; }
  .guide-amenity-list li { font-size: 13px; }
}

/* Menu Items with Proper Thumbnails */
.menu-items { display: grid; gap: 40px; }
.menu-item { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid #f8f8f8; }
.menu-item:last-child { border-bottom: none; }

.menu-item-media {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.2s;
}
.menu-item-media:hover { transform: scale(1.05); }
.menu-item-media img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-copy { flex: 1; min-width: 0; }
.menu-item-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 8px; min-width: 0; }
.menu-item-title-row h3 { font-size: 20px; font-family: var(--font-sans); font-weight: 600; color: var(--ink); }
.menu-item-price { flex: 0 0 auto; font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--menu-price-ink); }
.menu-item-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.menu-list-add {
  margin-top: 14px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font: 700 13px/1 var(--font-sans);
  cursor: pointer;
}
.menu-list-add[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Image Modal / Lightbox */
.image-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  cursor: zoom-out;
}
.image-modal.is-active { display: flex; }
.image-modal img { max-width: 90%; max-height: 90%; border: 4px solid #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

@media (max-width: 768px) {
  .menu-hero h1 { font-size: 42px; }
  .public-announcement { align-items: flex-start; flex-direction: column; }
  .menu-item { gap: 16px; }
  .menu-item-media { flex: 0 0 80px; width: 80px; height: 80px; }
  .menu-item-title-row { align-items: flex-start; flex-wrap: wrap; gap: 6px 12px; }
  .menu-item-title-row h3 { font-size: 18px; }
  .guide-card, .menu-catalog { padding: 32px 20px; }
}

/* ==========================================================================
   GUIDE-021: Display Template Variants
   -------------------------------------------------------------------------- */

/* Shared: language switcher at top of every variant */
.guide-locale-switcher {
  background: var(--accent);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 13px;
}
.guide-locale-switcher ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.guide-locale-switcher a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guide-locale-switcher a.is-active {
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
}
.locale-flag {
  font-size: 16px;
  line-height: 1;
}
.guide-public-footer {
  margin: 56px 0 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.guide-public-footer h2 {
  margin: 0 0 16px;
  font-size: 22px;
}
.guide-public-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.guide-public-footer__item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}
.guide-public-footer__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.guide-public-footer__value {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .guide-public-footer__grid { grid-template-columns: 1fr; }
}

/* Airbnb-inspired variant — photo-first hero, rounded cards, bolder sans. */
.guide-page--airbnb {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f3 46%, #ffffff 100%);
}

.guide-page--airbnb .guide-hero-airbnb {
  position: relative;
  min-height: 440px;
  background: linear-gradient(180deg, #f7f5ef 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.guide-page--airbnb .guide-hero-airbnb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}
/* FIND-R4-05c: on desktop the copy sits top-left, far above the bottom-42%
   gradient, so light photo areas washed out the white title. Full-bleed the
   scrim and weight it to the left where the text lives; the right side stays
   nearly clear so the photo still reads. Mobile keeps the original scrim. */
@media (min-width: 1024px) {
  .guide-page--airbnb .guide-hero-airbnb::after {
    inset: 0;
    height: auto;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.26) 46%, rgba(0, 0, 0, 0.04) 78%),
      linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.5) 100%);
  }
}
.guide-page--airbnb .guide-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.76) saturate(1.05);
}
.guide-page--airbnb .guide-hero-copy {
  position: relative;
  z-index: 1;
  padding: 120px 0 64px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.guide-page--airbnb .guide-hero-airbnb:not(:has(.guide-hero-media)) .guide-hero-copy {
  color: var(--ink);
  text-shadow: none;
}
.guide-page--airbnb .guide-hero-copy h1 {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  max-width: 820px;
  overflow-wrap: anywhere;
}
.guide-page--airbnb .guide-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  opacity: 0.92;
  max-width: 680px;
}
.guide-page--airbnb .guide-hero-kicker,
.guide-page--airbnb .guide-section-kicker {
  margin: 0 0 10px;
  font: 800 12px/1.2 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}
.guide-page--airbnb .guide-section-kicker { color: #9b6b33; }
.guide-page--airbnb .guide-hero-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.guide-page--airbnb .guide-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 12px;
  margin: 48px 0 32px;
}
.guide-page--airbnb .quick-action-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 3px 12px;
  min-height: 104px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 24px rgba(28, 22, 15, 0.06);
}
.guide-page--airbnb .quick-action-card__icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f7f1e8;
  color: #7a4b16;
}
.guide-page--airbnb .quick-action-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.guide-page--airbnb .quick-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.guide-page--airbnb .quick-action-card strong { font-size: 16px; font-weight: 600; }
.guide-page--airbnb .quick-action-card span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}
.guide-page--airbnb .quick-action-card__icon { color: #7a4b16; }

.guide-page--airbnb .guide-welcome-airbnb {
  padding: 36px;
  border: 1px solid #eee3d6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(60, 45, 27, 0.07);
  margin: 32px 0 48px;
}
.guide-page--airbnb .guide-welcome-airbnb h2 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.guide-page--airbnb .guide-amenities { margin: 28px 0; }
.guide-page--airbnb .guide-amenities h2 {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}
.guide-page--airbnb .airbnb-stay-rail-wrapper + .guide-amenities {
  margin-top: 20px;
}
.guide-page--airbnb .guide-knowledge {
  margin: 28px auto 12px;
}
.guide-page--airbnb .guide-knowledge__block--instructions {
  display: none;
}
.guide-page--airbnb .guide-knowledge h2 {
  font-family: var(--font-sans);
  font-size: 26px;
}
.guide-page--airbnb .guide-knowledge-groups {
  gap: 16px;
}
.guide-page--airbnb .amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.guide-page--airbnb .amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(28, 22, 15, 0.05);
}
.guide-page--airbnb .amenity-head { margin-bottom: 12px; }
.guide-page--airbnb .amenity-kind {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.guide-page--airbnb .amenity-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
}

.guide-page--airbnb .guide-recommendations-airbnb { margin: 32px 0 64px; }
.guide-page--airbnb .guide-recommendations-airbnb h2 {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}
.guide-recommendation-groups {
  display: grid;
  gap: 28px;
}
.guide-recommendation-group {
  display: grid;
  gap: 14px;
}
.guide-recommendation-group__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.guide-recommendation-group__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 8px;
  background: var(--brand);
}
.guide-page--airbnb .recommendation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.guide-page--airbnb .recommendation-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(28, 22, 15, 0.05);
}
.guide-page--airbnb .recommendation-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.guide-page--airbnb .rec-category {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.guide-page--airbnb .rec-description {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}
.guide-page--airbnb .rec-actions { margin-top: 12px; }

@media (min-width: 700px) {
  .guide-page--airbnb .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guide-page--airbnb {
  --guide-theme-bg: #faf8f3;
  --guide-theme-panel: #fff;
  --guide-theme-soft: #f7f1e8;
  --guide-theme-accent: #9b6b33;
  --guide-theme-ink: var(--ink);
  --guide-theme-muted: var(--muted);
  --guide-theme-line: var(--line);
  background: linear-gradient(180deg, #ffffff 0%, var(--guide-theme-bg) 46%, #ffffff 100%);
}
.guide-page--airbnb .guide-section-kicker,
.guide-page--airbnb .guide-recommendation-group__title::after {
  color: var(--guide-theme-accent);
}
.guide-page--airbnb .quick-action-card__icon {
  background: var(--guide-theme-soft);
  color: var(--guide-theme-accent);
}
.guide-page--airbnb .guide-welcome-airbnb,
.guide-page--airbnb .amenity-card,
.guide-page--airbnb .recommendation-card {
  background: var(--guide-theme-panel);
  border-color: var(--guide-theme-line);
}
.guide-page--airbnb .guide-recommendation-group__title::after {
  background: var(--guide-theme-accent);
}
.guide-theme-boutique {
  --guide-theme-bg: #fbf7f1;
  --guide-theme-soft: #f3e7d8;
  --guide-theme-accent: #8a5b2d;
  --guide-theme-line: #eadcc8;
}
.guide-theme-coastal {
  --guide-theme-bg: #eef8f8;
  --guide-theme-soft: #dff3f4;
  --guide-theme-accent: #087d8c;
  --guide-theme-line: #c9e5e6;
}
.guide-theme-urban {
  --guide-theme-bg: #f4f5f7;
  --guide-theme-soft: #e7e9ee;
  --guide-theme-accent: #2f4058;
  --guide-theme-line: #d7dbe2;
}
.guide-theme-family {
  --guide-theme-bg: #fff8ec;
  --guide-theme-soft: #ffe9c1;
  --guide-theme-accent: #b36a18;
  --guide-theme-line: #f1d8ac;
}
.guide-theme-minimal {
  --guide-theme-bg: #f7f7f5;
  --guide-theme-soft: #eeeeeb;
  --guide-theme-accent: #111;
  --guide-theme-line: #deded8;
}
.guide-theme-minimal .guide-hero-media {
  filter: grayscale(0.2) brightness(0.72);
}
.guide-theme-luxury {
  --guide-theme-bg: #f7f3ef;
  --guide-theme-soft: #efe3d5;
  --guide-theme-accent: #6f1d32;
  --guide-theme-line: #ead6dc;
}
.guide-theme-luxury .guide-hero-airbnb {
  background: linear-gradient(135deg, #191317 0%, #3a1822 100%);
}
.guide-theme-luxury .guide-hero-media {
  filter: brightness(0.62) saturate(0.92);
}
.guide-layout-photo-coastal .guide-quick-actions {
  margin-top: -22px;
}
.guide-layout-photo-coastal .guide-welcome-airbnb {
  border-radius: 8px 32px 8px 8px;
}
.guide-layout-photo-family .guide-quick-actions {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.guide-layout-photo-family .amenity-card {
  border-radius: 8px;
}
.guide-layout-photo-luxury .guide-welcome-airbnb,
.guide-layout-photo-luxury .amenity-card {
  box-shadow: 0 18px 42px rgba(50, 22, 31, 0.1);
}
.guide-layout-photo-luxury .guide-quick-actions {
  border-bottom: 1px solid var(--guide-theme-line);
  padding-bottom: 22px;
}

@media (max-width: 768px) {
  .guide-page--airbnb .guide-hero-airbnb { min-height: 320px; }
  .guide-page--airbnb .guide-hero-copy { padding: 80px 0 40px; }
  .guide-page--airbnb .guide-hero-copy h1 { font-size: 34px; }
  .guide-page--airbnb .guide-hero-subtitle { font-size: 16px; }
  .guide-page--airbnb .guide-welcome-airbnb { padding: 24px; border-radius: 14px; }
}

/* Compact variant — dense single column, no hero image. */
.guide-page--compact { background: #fbfbf8; }

.guide-page--compact .guide-header-compact {
  padding: 32px 0 18px;
  border-bottom: 1px solid #dedbd2;
  background: #fff;
}
.guide-page--compact .guide-compact-kicker {
  margin: 0 0 8px;
  color: #7a603d;
  font: 800 11px/1.2 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}
.guide-page--compact .guide-header-compact h1 {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}
.guide-page--compact .guide-subtitle-compact {
  font-size: 14px;
  color: var(--muted);
}

.guide-page--compact .guide-compact-body { padding: 24px 0 48px; }

.guide-page--compact .guide-quick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.guide-page--compact .guide-quick-list a {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.guide-page--compact .guide-quick-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
}
.guide-page--compact .guide-quick-list span {
  color: var(--muted);
  font-size: 13px;
}

.guide-page--compact .guide-welcome-compact {
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.guide-page--compact .guide-welcome-compact h2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.guide-page--compact .section-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.guide-page--compact .section-row:last-child { border-bottom: none; }
.guide-page--compact .section-row h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.guide-page--compact .guide-recommendations-compact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.guide-page--compact .guide-recommendations-compact h2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.guide-page--compact .guide-recommendation-groups {
  gap: 18px;
}
.guide-page--compact .guide-recommendation-group {
  gap: 6px;
}
.guide-page--compact .guide-recommendation-group__title {
  font-size: 15px;
}
.guide-page--compact .recommendation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-page--compact .recommendation-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.guide-page--compact .recommendation-list li:last-child { border-bottom: none; }
.guide-page--compact .rec-category-inline {
  color: var(--muted);
  font-size: 13px;
}
.guide-page--compact .recommendation-list li p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--ink);
}

.guide-layout-utility-minimal .guide-compact-body {
  max-width: 760px;
}

.guide-layout-utility-minimal .guide-quick-list a {
  border-radius: 6px;
}

/* GUIDE-019: service_links section */
.guide-services {
  margin: 48px 0;
}
.guide-services__heading {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 20px;
}
.guide-services__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.guide-services__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.guide-services__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.guide-services__title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.guide-services__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.guide-services__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.guide-services__cta:hover {
  opacity: 0.88;
}
@media (max-width: 540px) {
  .guide-services__list {
    grid-template-columns: 1fr;
  }
  .guide-services__cta {
    align-self: stretch;
  }
}

.guide-offers {
  margin: 36px 0 48px;
}
.guide-offers h2 {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}
.guide-offers__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.guide-offer-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(28, 22, 15, 0.05);
}
.guide-offer-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.guide-offer-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}
.guide-offer-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.guide-offer-card__meta strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}
.guide-offer-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
}
.guide-offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.guide-offer-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* GUIDE-020: recommendation card */
.guide-recommendation-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.guide-recommendation-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.guide-recommendation-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--accent);
  overflow: hidden;
}
.guide-recommendation-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-recommendation-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
  flex: 1;
}
.guide-recommendation-card__category {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand-dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-recommendation-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.guide-recommendation-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.guide-recommendation-card__contact {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink);
}
.guide-recommendation-card__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  word-break: break-word;
}
.guide-recommendation-card__contact-item a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.15s ease;
}
.guide-recommendation-card__contact-item a:hover {
  border-bottom-color: var(--brand);
}
.guide-recommendation-card__contact-bullet {
  color: var(--brand);
  font-weight: 700;
  line-height: 1.4;
}
.guide-recommendation-card__actions {
  margin-top: auto;
  padding-top: 12px;
}
.guide-recommendation-card__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.guide-recommendation-card__map-btn:hover {
  background: var(--ink);
  color: var(--accent);
}
@media (max-width: 540px) {
  .guide-recommendation-card__map-btn {
    width: 100%;
  }
}

/* UI-005: preview button + draft ribbon */
.preview-as-guest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.preview-as-guest:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}
.preview-as-guest:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}
.preview-as-guest__icon {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.preview-draft-ribbon {
  position: sticky;
  top: 0;
  z-index: 50;
  background: repeating-linear-gradient(
    135deg,
    #b3261e,
    #b3261e 12px,
    #8a1c18 12px,
    #8a1c18 24px
  );
  color: #fff;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}



/* UI-007: menu hero + labels */
.menu-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 14px;
  margin: 0 0 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.menu-hero:not(.menu-hero--image) {
  height: auto;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.public-brand-logo {
  display: inline-block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.public-brand-logo--on-image {
  margin: 0 0 14px;
  border-color: rgba(255, 255, 255, 0.6);
}
.guide-hero .public-brand-logo,
.guide-header-compact .public-brand-logo {
  margin-bottom: 16px;
}
.menu-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 64%);
  pointer-events: none;
}
.menu-hero__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}
.menu-hero__content h1 {
  margin: 0 0 8px;
  max-width: 760px;
  color: #fff;
  font-size: 34px;
  line-height: 1.04;
  overflow-wrap: anywhere;
}
.menu-hero__content .eyebrow,
.menu-hero__content .menu-subtitle,
.menu-hero__content .menu-hero__meta {
  color: #fff;
}
.menu-hero__content .menu-subtitle,
.menu-hero__content .menu-hero__meta {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}
.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.menu-hero__title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .menu-hero {
    height: 320px;
    margin-bottom: 32px;
  }
  .menu-hero__title {
    left: 32px;
    right: 32px;
    bottom: 24px;
    font-size: 34px;
  }
  .menu-hero__content {
    left: 36px;
    right: 36px;
    bottom: 32px;
  }
  .menu-hero__content h1 { font-size: 46px; }
}

.menu-labels {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
}
.menu-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.menu-label__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-block;
  fill: currentColor;
}

/* Dietary: green accent */
.menu-label--vegan,
.menu-label--vegetarian {
  background: #e8f5ec;
  color: #1f6b3a;
  border-color: #c5e5cf;
}
/* Spicy: red accent */
.menu-label--spicy {
  background: #fdecec;
  color: #a3281d;
  border-color: #f3c8c3;
}
/* Allergen-free: muted neutral */
.menu-label--gluten_free,
.menu-label--lactose_free,
.menu-label--nut_free {
  background: var(--panel);
  color: var(--muted);
  border-color: var(--line);
}
/* Highlights: brand accent */
.menu-label--popular,
.menu-label--new {
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 35%, transparent);
}
/* Chef's special: gold/premium */
.menu-label--chef_special {
  background: #fdf4d8;
  color: #8a6b10;
  border-color: #ead89a;
}

/* UI-003: airbnb rich variant
   Styles the meet-your-host card, sticky right-rail stay summary, sticky
   mobile "Call host" bottom CTA, and line-icon amenity glyphs. Scoped under
   .guide-page--airbnb so we do not leak into editorial/compact variants.
   The wrapping elements `.airbnb-host-card`, `.airbnb-stay-rail-wrapper`,
   and `.airbnb-bottom-cta` live in _airbnb.html and host these blocks. */

/* --- Meet your host ------------------------------------------------------ */
.guide-page--airbnb .airbnb-host-card,
.guide-page--airbnb .guide-host-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
}
.guide-page--airbnb .guide-host-card__heading {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.guide-page--airbnb .guide-host-card__body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.guide-page--airbnb .airbnb-host-card__portrait,
.guide-page--airbnb .guide-host-card__portrait {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-page--airbnb .guide-host-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-page--airbnb .guide-host-card__portrait--placeholder {
  color: var(--muted);
  border: 1px dashed var(--line);
}
.guide-page--airbnb .guide-host-card__text {
  flex: 1 1 auto;
  min-width: 0;
}
.guide-page--airbnb .airbnb-host-card__name,
.guide-page--airbnb .guide-host-card__name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.guide-page--airbnb .guide-host-card__name--muted { color: var(--muted); }
.guide-page--airbnb .airbnb-host-card__bio,
.guide-page--airbnb .guide-host-card__bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* --- Right-rail "Your stay" --------------------------------------------- */
.guide-page--airbnb .airbnb-stay-rail-wrapper { display: none; }
.guide-page--airbnb .airbnb-stay-rail,
.guide-page--airbnb .guide-stay-rail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
}
.guide-page--airbnb .guide-stay-rail__inner { display: block; }
.guide-page--airbnb .guide-stay-rail__heading {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.guide-page--airbnb .guide-stay-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-page--airbnb .airbnb-stay-rail__item,
.guide-page--airbnb .guide-stay-rail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.guide-page--airbnb .guide-stay-rail__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.guide-page--airbnb .guide-stay-rail__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.guide-page--airbnb .guide-stay-rail__text { min-width: 0; }
.guide-page--airbnb .guide-stay-rail__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin: 0 0 2px;
}
.guide-page--airbnb .guide-stay-rail__value {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  overflow-wrap: anywhere;
}
.guide-page--airbnb .guide-stay-rail__wifi {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.guide-page--airbnb .guide-stay-rail__hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.guide-page--airbnb .guide-stay-rail__wifi-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.guide-page--airbnb .guide-stay-rail__copy,
.guest-wifi-card__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.guide-page--airbnb .guide-stay-rail__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.guide-page--airbnb .guide-stay-rail__links a,
.guide-page--airbnb .guide-stay-rail__review {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
}
.guide-page--airbnb .guide-stay-rail__review {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (min-width: 1024px) {
  .guide-page--airbnb .main-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
  }
  /* FIND-R4-05c: the body grid above also captured the hero's inner
     .main-container — grid items blockify, so the inline-flex kicker chip
     stretched to the full 1fr column (~700px pill) and the h1 was thrown
     into the 320px right rail over the brightest part of the photo. The
     hero copy is a simple stacked block; keep it out of the rail grid. */
  .guide-page--airbnb .guide-hero-copy .main-container {
    display: block;
  }
  /* Full-width blocks that should still span both columns. */
  .guide-page--airbnb .guide-quick-actions {
    grid-column: 1 / -1;
  }
  .guide-page--airbnb .guide-recommendations-airbnb {
    grid-column: 1;
  }
  .guide-page--airbnb .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-page--airbnb .guide-welcome-airbnb {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .guide-page--airbnb .guide-host-card,
  .guide-page--airbnb .airbnb-host-card-wrapper,
  .guide-page--airbnb .airbnb-host-card {
    grid-column: 1;
  }
  .guide-page--airbnb .guide-amenities { grid-column: 1; margin-top: 0; }
  .guide-page--airbnb .guide-knowledge {
    grid-column: 1;
    margin: 28px 0 12px;
  }
  .guide-page--airbnb .guide-knowledge__block--instructions {
    display: none;
  }
  .guide-page--airbnb .airbnb-stay-rail-wrapper {
    display: block;
    grid-column: 2;
    grid-row: 2 / span 4;
    position: sticky;
    top: 24px;
    align-self: start;
  }
}

/* --- Mobile sticky "Call host" CTA -------------------------------------- */
.guide-page--airbnb .airbnb-bottom-cta,
.guide-page--airbnb .guide-bottom-cta { display: none; }

@media (max-width: 767.98px) {
  .guide-page--airbnb .airbnb-bottom-cta,
  .guide-page--airbnb .guide-bottom-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(1.2) blur(8px);
    border-top: 1px solid var(--line);
  }
  .guide-page--airbnb .airbnb-bottom-cta__button,
  .guide-page--airbnb .guide-bottom-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--brand, #ff385c);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  .guide-page--airbnb .guide-bottom-cta__button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
  }
  .guide-page--airbnb .guide-bottom-cta__phone {
    font-weight: 500;
    opacity: 0.9;
  }
  /* Give the page enough padding so the sticky bar doesn't cover content. */
  .guide-page--airbnb { padding-bottom: 88px; }
}

/* --- Amenity line-icon -------------------------------------------------- */
.guide-page--airbnb .amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
  margin-right: 8px;
  vertical-align: middle;
}
.guide-page--airbnb .amenity-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.guide-page--airbnb .amenity-card .amenity-kind { display: inline-flex; align-items: center; }

/* ====================================================================== */
/* UI-004: mobile nav + bottom CTA polish                                 */
/* ====================================================================== */
/* Admin sidebar mobile drawer behavior is handled in UI-001's CSS block  */
/* (see `.admin-sidebar.is-open`, `.admin-drawer-locked`, backdrop, etc). */
/* This section only adds the public menu bottom CTA + shared polish.    */

/* Public menu bottom CTA: hidden by default (desktop + tablet), shown   */
/* only at narrow viewports. Mirrors the `.airbnb-bottom-cta` pattern    */
/* from UI-003 so both public surfaces feel consistent on mobile.        */
.menu-bottom-cta { display: none; }

@media (max-width: 767.98px) {
  .menu-bottom-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(1.2) blur(8px);
    border-top: 1px solid var(--line);
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  }
  .menu-bottom-cta__row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
  }
  .menu-bottom-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
  }
  .menu-bottom-cta__button--primary {
    flex: 0 0 60%;
    background: var(--brand, #ff385c);
    color: #fff;
  }
  .menu-bottom-cta__button--secondary {
    flex: 1 1 40%;
    background: var(--panel, #fff);
    color: var(--ink);
    border: 1px solid var(--line);
  }
  /* When only one button is present it should fill the row. */
  .menu-bottom-cta__row > .menu-bottom-cta__button:only-child {
    flex: 1 1 100%;
  }
  .menu-bottom-cta__icon { flex-shrink: 0; stroke: currentColor; fill: none; }
  .menu-bottom-cta__phone {
    font-weight: 500;
    opacity: 0.9;
    font-size: 13px;
  }
  /* Give the menu page bottom breathing room so the sticky bar does not
     cover the final card/category. */
  .menu-page { padding-bottom: 96px; }
}

/* Shared hidden state used by bottom-cta.js across all bottom-CTA
   variants (menu, guide, airbnb). The JS toggles this class when the
   user scrolls near the page end or focuses an input/textarea so the
   bar does not overlap the iOS on-screen keyboard. */
.menu-bottom-cta.bottom-cta--hidden,
.guide-bottom-cta.bottom-cta--hidden,
.airbnb-bottom-cta.bottom-cta--hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.menu-engagement {
  width: min(1080px, calc(100% - 32px));
  margin: 22px auto 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.business-social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.business-social-strip__link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.guest-wifi-card,
.review-boost-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(28, 22, 15, 0.06);
}
.guest-wifi-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.guest-wifi-card__kicker {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.guest-wifi-card h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0;
}
.guest-wifi-card__password,
.guest-wifi-card__note {
  margin: 0;
  overflow-wrap: anywhere;
}
.guest-wifi-card__password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.guest-wifi-card__password p {
  margin: 0;
  min-width: 0;
}
.guest-wifi-card__password span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.review-boost-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
}
.review-boost-cta span {
  color: var(--muted);
  font-size: 13px;
}
.review-boost-cta strong {
  font-size: 14px;
  white-space: nowrap;
}

.business-menus-page {
  min-height: 100vh;
  background: #f8f6f0;
  color: var(--ink);
}
.business-menus-hero {
  padding: 42px 0 26px;
  background:
    linear-gradient(135deg, rgba(202, 116, 45, 0.13), transparent 62%),
    #fffaf2;
  border-bottom: 1px solid var(--line);
}
.business-menus-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 24px;
  align-items: end;
}
.business-menus-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(38px, 8vw, 76px);
  line-height: 0.96;
  overflow-wrap: anywhere;
}
.business-menus-hero p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
}
.business-menus-hero__panel {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(37, 28, 18, 0.08);
}
.business-menus-hero__panel strong {
  font-size: 22px;
}
.business-menus-hero__panel span {
  color: var(--muted);
}
/* Mobile: collapse the hero to one column. (The same rule in admin.css never
   reaches public pages — without this the title column shrinks to ~80px and
   the business name breaks mid-word.) */
@media (max-width: 720px) {
  .business-menus-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.business-menus-engagement {
  margin-top: 18px;
}
.business-menus-main {
  padding-top: 26px;
  padding-bottom: 72px;
}
.business-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.business-menu-card {
  display: grid;
  min-height: 240px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(28, 22, 15, 0.07);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.business-menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 116, 45, 0.38);
  box-shadow: 0 18px 42px rgba(28, 22, 15, 0.1);
}
.business-menu-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #eee8dd;
}
.business-menu-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-menu-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}
.business-menu-card__body strong {
  font-size: 22px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.business-menu-card__body small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.business-menu-card__type,
.business-menu-card__meta {
  color: #9b5b22;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.business-menu-card__meta {
  color: var(--muted);
  text-transform: none;
}
.business-menu-backlink {
  width: min(1080px, calc(100% - 32px));
  margin: -42px auto 24px;
}
.business-menu-backlink a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 22, 15, 0.06);
}

@media (min-width: 768px) {
  .menu-engagement {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: stretch;
  }
  .business-social-strip { grid-column: 1 / -1; }
}

/* LIST-001: public menu add-to-list, stored only in the guest browser. */
.menu-list-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: 700 14px/1 var(--font-sans);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.menu-list-fab[hidden] { display: none; }
.menu-list-fab strong {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}
.menu-list-panel {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 46;
  width: min(360px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 128px));
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}
.menu-list-panel[hidden] { display: none; }
.menu-list-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.menu-list-panel__eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-list-panel h2 {
  margin: 0;
  font: 800 22px/1.2 var(--font-sans);
  color: var(--ink);
}
.menu-list-panel__close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.menu-list-panel__hint,
.menu-list-panel__empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.menu-list-panel__items {
  display: grid;
  gap: 12px;
}
.menu-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.menu-list-row__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.menu-list-row__copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}
.menu-list-row__copy span {
  color: var(--muted);
  font-size: 12px;
}
.menu-list-row__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.menu-list-row__controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.menu-list-panel__clear {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: 700 13px/1 var(--font-sans);
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .menu-list-fab {
    right: 16px;
    bottom: 104px;
  }
  .menu-list-panel {
    left: 16px;
    right: 16px;
    bottom: 160px;
    width: auto;
    max-height: calc(100vh - 210px);
    padding: 16px;
  }
}

/* =========================================================================
   MENU-014: admin action rows, utility classes, recommendation & cover media

   Replaces the 30 inline `style="..."` occurrences previously scattered
   across admin + public templates. Utility classes stay intentionally small
   and scoped (`u-` prefix) so they do not compete with component CSS.
   ========================================================================= */

/* Spacing utilities */
.u-mt-0 { margin-top: 0 !important; }
.u-mt-1 { margin-top: 10px !important; }
.u-mt-2 { margin-top: 12px !important; }
.u-mt-3 { margin-top: 16px !important; }
.u-mt-4 { margin-top: 20px !important; }
.u-mt-section { margin-top: 1.5rem !important; }
.u-mt-lg { margin-top: 64px !important; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-mb-1 { margin-bottom: 1rem !important; }
.u-p-0 { padding: 0 !important; }
.u-p-section { padding: 20px !important; }
.u-p-list { padding: 24px !important; }

/* Text utilities */
.u-text-xs { font-size: 12px !important; }
.u-text-sm { font-size: 13px !important; }
.u-text-left { text-align: left !important; }

/* Flex utilities */
.u-flex-row { display: flex; align-items: center; gap: 16px; }
.u-flex-1 { flex: 1; min-width: 0; }

/* Border utilities */
.u-border-top-line { border-top: 1px solid var(--line) !important; border-bottom: none !important; }

/* Status label reused for guide PUBLISHED/DRAFT stamp */
.u-status-label {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.08em;
}

/* Image preview container reused by guide cover + recommendation image */
.u-image-preview {
  max-width: 320px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.u-image-preview--narrow { max-width: 280px; }

/* Admin action rows — unified flex row with gap + consistent baseline.
   Form submit buttons, anchor buttons (`a.button`), plain anchor
   navigation, and bare `button` children all align on the same baseline
   so the row reads as one coherent action cluster. */
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 0;
}
.admin-actions--spaced { margin-bottom: 1rem; }
.admin-actions > form {
  margin: 0;
  display: inline-flex;
}
.admin-actions > form > button { margin: 0; }
.admin-actions > a:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.admin-actions > a:not(.button):hover {
  background: var(--panel);
  border-color: var(--ink);
  text-decoration: none;
}
.admin-actions > a:not(.button):focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Draggable list handles — accessible default style for icon-only handles. */
.ordering-handle[aria-label] { cursor: grab; }
.ordering-handle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.ordering-item.is-dragging { opacity: 0.4; }
.ordering-item.is-drop-target { border-bottom: 2px solid var(--brand); }

/* Preformatted preview block for AI source/rewrite review screens. */
.preview-pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 14px;
  margin: 0;
}
.rewrite-review-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: start;
}
.rewrite-review-notes {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}
.rewrite-review-notes h2 { font-size: 18px; margin-bottom: 8px; }
.rewrite-review-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.rewrite-review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.rewrite-original-box {
  min-height: 280px;
  padding: 18px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fcfcfc;
}

/* Generic wrap utility for free-form text blocks (AI draft bodies etc.). */
.u-pre-wrap { white-space: pre-wrap !important; }

/* Full-bleed cover background for the airbnb guide hero. Templates set
   `--cover-url` on the element; see `_airbnb.html`. */
.guide-hero--cover {
  background-image: var(--cover-url);
  background-size: cover;
  background-position: center;
}

/* Assist-action hero cards (editorial guide variant). Consolidated from
   the inline <style> block previously in public/guide.html. */
.guide-hero-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 32px;
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  box-shadow: var(--shadow);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-icon { font-size: 24px; color: var(--brand); margin-bottom: 12px; }
.hero-card strong { color: var(--ink); font-size: 16px; }
.hero-card span { color: var(--muted); font-size: 12px; margin-top: 4px; }

.guide-page--editorial {
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 36%, #ffffff 100%);
}
.guide-page--editorial .guide-hero {
  background:
    linear-gradient(135deg, rgba(197, 160, 89, 0.2), transparent 58%),
    #f6f1e8;
  margin-bottom: 48px;
}
.guide-page--editorial .guide-kind {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8a6830;
  font: 800 12px/1.2 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0;
}
.guide-page--editorial .guide-card,
.guide-page--editorial .action-card {
  border-color: #e7ded0;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(60, 45, 27, 0.07);
}
.guide-layout-editorial-urban {
  background: linear-gradient(180deg, #f3f5f7 0%, #ffffff 34%, #ffffff 100%);
}
.guide-layout-editorial-urban .guide-hero {
  background:
    linear-gradient(135deg, rgba(47, 64, 88, 0.18), transparent 62%),
    #eef1f4;
}
.guide-layout-editorial-urban .guide-kind,
.guide-layout-editorial-urban .hero-card-icon {
  color: #2f4058;
}
.guide-layout-editorial-urban .guide-action-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.guide-layout-editorial-boutique .guide-card {
  max-width: 880px;
}

.guide-template-picker {
  display: grid;
  gap: 10px;
}
.guide-template-picker__label {
  font-weight: 700;
  color: var(--ink);
}
.guide-template-picker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.guide-template-tile {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.guide-template-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.guide-template-tile:has(input:checked) {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(194, 59, 59, 0.12);
}
.guide-template-tile__preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6px;
  min-height: 58px;
  padding: 8px;
  border-radius: 6px;
  background: #f7f3ec;
}
.guide-template-tile__preview span {
  display: block;
  border-radius: 4px;
  background: #c9b289;
}
.guide-template-tile__preview span:first-child {
  grid-row: span 2;
}
.guide-template-tile--minimal .guide-template-tile__preview {
  display: flex;
  flex-direction: column;
  background: #f7f7f5;
}
.guide-template-tile--minimal .guide-template-tile__preview span {
  height: 8px;
  background: #1f1f1f;
}
.guide-template-tile--urban .guide-template-tile__preview {
  background: #eef1f4;
}
.guide-template-tile--urban .guide-template-tile__preview span {
  background: #2f4058;
}
.guide-template-tile--coastal .guide-template-tile__preview {
  background: #e2f5f6;
}
.guide-template-tile--coastal .guide-template-tile__preview span {
  background: #087d8c;
}
.guide-template-tile--family .guide-template-tile__preview {
  background: #fff1d8;
}
.guide-template-tile--family .guide-template-tile__preview span {
  background: #b36a18;
}
.guide-template-tile--luxury .guide-template-tile__preview {
  background: #24151a;
}
.guide-template-tile--luxury .guide-template-tile__preview span {
  background: #d8b25b;
}
.guide-template-tile strong {
  font-size: 15px;
}
.guide-template-tile small {
  color: var(--muted);
  line-height: 1.35;
}

/* =========================================================================
   MENU-015: public menu sticky category chip nav

   Applied to both the `.menu-pills` (default display style) and
   `.menu-nav--tabs` flavours when the menu has 2+ visible categories.
   Falls back cleanly when JS is disabled — anchors still scroll to each
   category's `id`, only the active-chip highlight and the smooth scroll
   require JS.
   ========================================================================= */
.menu-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  margin: 0 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-sticky-nav::-webkit-scrollbar { display: none; }
.menu-sticky-nav__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.menu-sticky-nav__chip:hover {
  background: var(--panel);
  border-color: var(--ink);
}
.menu-sticky-nav__chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.menu-sticky-nav__chip:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
/* Tabs variant already uses a <ul>; strip list marker and reset spacing. */
.menu-sticky-nav.menu-nav--tabs ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Horizontal scroll-snap so chips land nicely on touch swipe. */
.menu-sticky-nav { scroll-snap-type: x proximity; }
.menu-sticky-nav__chip { scroll-snap-align: start; }
/* Bottom CTA (UI-004) sits on top of the sticky nav, so add safe padding. */
.menu-page:has([data-menu-nav]) .menu-category { scroll-margin-top: 64px; }

/* -----------------------------------------------------------------------
   GUIDE-011: Client intake form (public, no auth)
   ----------------------------------------------------------------------- */
.intake-page {
  min-height: 100vh;
  background: #fafafa;
  padding-bottom: 80px;
}
.intake-hero {
  background: #fff;
  border-bottom: 1px solid var(--line, #ebebeb);
  padding: 48px 24px 32px;
}
.intake-hero--thanks { padding: 72px 24px; text-align: center; }
.intake-container { max-width: 720px; margin: 0 auto; }
.intake-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #6b6b6b;
  margin: 0 0 8px;
}
.intake-title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #111;
}
.intake-subtitle { margin: 0; color: #444; font-size: 1.05rem; }
.intake-body { padding: 32px 24px 24px; }
.intake-form { background: transparent; box-shadow: none; padding: 0; }
.intake-fieldset {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0 0 16px;
}
.intake-fieldset h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
}
.intake-optional {
  font-size: 0.85rem;
  color: #8a8a8a;
  font-weight: 400;
}
.intake-actions {
  display: flex;
  justify-content: flex-end;
  padding: 8px 0 0;
}
.intake-actions .button { min-width: 180px; }
.form-label {
  display: block;
  color: #111;
  font-size: 0.9rem;
  font-weight: 500;
}
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}
.star-rating input {
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  position: absolute;
}
.star-rating label {
  color: #d5d5d5;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: color 120ms ease, transform 120ms ease;
}
.star-rating--small label { font-size: 1.45rem; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f5a623;
}
.star-rating input:focus-visible + label {
  outline: 2px solid #111;
  outline-offset: 3px;
  border-radius: 4px;
}
.star-rating label:hover { transform: translateY(-1px); }

/* -----------------------------------------------------------------------
   Unified admin page header + form-card primitives
   Every create/edit surface uses these, so the whole admin feels the same.
   ----------------------------------------------------------------------- */
.page-content {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 0 4px;
}
.admin-page-head--menu-form {
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.admin-page-head h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.admin-page-head p { margin: 0; color: #555; max-width: 60ch; }
.admin-page-head .eyebrow,
.page-content > .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #6b6b6b;
  margin: 0;
  font-weight: 600;
}

/* Admin-form card style ---------------------------------------------------- */
.admin-form {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Field groups (fieldsets or divs inside admin-form) ---------------------- */
.admin-form fieldset,
.admin-form .form-field-group,
.admin-form .form-fieldset {
  border: 0;
  padding: 14px 16px;
  margin: 0;
  background: #fafafa;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* The block `display:flex` above outranks the UA `[hidden]{display:none}`
   rule, so a hidden fieldset (e.g. the rental-only host card on a
   restaurant/cafe/bar) stayed visible. Re-assert none with higher specificity. */
.admin-form fieldset[hidden],
.admin-form .form-field-group[hidden],
.admin-form .form-fieldset[hidden] {
  display: none;
}
.admin-form fieldset legend,
.admin-form .form-field-group legend,
.admin-form .form-fieldset legend {
  padding: 0;
  margin: 0 0 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  font-weight: 600;
}
.admin-form .form-field-group > .form-hint,
.admin-form fieldset > .form-hint { margin: -4px 0 4px; }

/* Individual fields — both <label><span>…<input> and .form-field <label>… */
.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #111;
  font-size: 0.95rem;
}
.admin-form label > span,
.admin-form .form-field > label { font-weight: 500; font-size: 0.9rem; }
.admin-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.admin-form .form-field > label { color: #111; }
.admin-form small,
.admin-form .form-hint {
  color: #6b6b6b;
  font-size: 0.82rem;
  line-height: 1.45;
}
.admin-form .form-error {
  color: #b02929;
  font-size: 0.82rem;
  margin: 2px 0 0;
}

/* Inputs ------------------------------------------------------------------- */
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="url"],
.admin-form input[type="tel"],
.admin-form input[type="number"],
.admin-form input[type="date"],
.admin-form input[type="search"],
.admin-form input:not([type]),
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.admin-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #6b6b6b 50%), linear-gradient(135deg, #6b6b6b 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.admin-form textarea { resize: vertical; min-height: 88px; font-family: inherit; }
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--brand-color, #1c2b4a);
  box-shadow: 0 0 0 3px rgba(46, 74, 134, 0.18);
}
.admin-form input[type="file"] {
  padding: 8px;
  background: #fff;
  border: 1px dashed #d9d9d9;
  border-radius: 10px;
  font-size: 0.9rem;
}
.admin-form input.is-invalid,
.admin-form textarea.is-invalid,
.admin-form select.is-invalid { border-color: #b02929; box-shadow: 0 0 0 3px rgba(176, 41, 41, 0.1); }

/* Checkbox fields ---------------------------------------------------------- */
.admin-form .checkbox-field,
.admin-form label.checkbox-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 120ms ease;
}
.admin-form .checkbox-field:hover { border-color: #bdbdbd; }
.admin-form .checkbox-field input[type="checkbox"],
.admin-form .checkbox-field input[type="radio"] { width: 16px; height: 16px; margin: 0; }
.admin-form .checkbox-field > span { font-size: 0.92rem; font-weight: 500; }
.admin-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}
.knowledge-checklist {
  display: grid;
  gap: 12px;
}
.knowledge-checklist-accordion {
  display: grid;
  gap: 12px;
}
.knowledge-checklist-group {
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.knowledge-checklist-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.knowledge-checklist-group > summary::-webkit-details-marker { display: none; }
.knowledge-checklist-group > summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  font-weight: 700;
}
.knowledge-checklist-group[open] > summary {
  border-bottom: 1px solid #ececec;
  background: #fafafa;
}
.knowledge-checklist-group[open] > summary::after { content: "-"; }
.knowledge-checklist-group > summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.knowledge-checklist-group .knowledge-checklist {
  padding: 14px;
}
.knowledge-checklist-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}
.knowledge-checklist-item .checkbox-field {
  padding: 0;
  border: 0;
}

/* Form grid (paired fields) ----------------------------------------------- */
.admin-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

/* Error summary above fields ---------------------------------------------- */
.admin-form .form-summary,
.admin-form .form-error-summary {
  padding: 14px 16px;
  background: #fde9e9;
  border: 1px solid #f2baba;
  border-radius: 10px;
  color: #8d2020;
}
.admin-form .form-summary strong,
.admin-form .form-error-summary strong { display: block; margin-bottom: 4px; color: #8d2020; }
.admin-form .form-summary ul { margin: 0; padding-left: 20px; }

/* Primary/secondary action row -------------------------------------------- */
.admin-form .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.admin-form .form-actions a:not(.button) { color: #111; text-decoration: none; font-size: 0.92rem; }
.admin-form .form-actions a:not(.button):hover { text-decoration: underline; }
.admin-form .form-route-note {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Primary button treatment (rounded, Airbnb-ish) -------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  letter-spacing: -0.005em;
}
.button:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12); }
.button:active { transform: translateY(0); }
.button:disabled, .button[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.button-secondary { background: #fff; color: #111; border-color: #d9d9d9; }
.button-secondary:hover { background: #fafafa; }
.button-small { padding: 8px 14px; font-size: 0.85rem; border-radius: 8px; }
.button-compact { padding: 8px 14px; font-size: 0.85rem; }
.button-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  gap: 0;
}
.button-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small.button-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
}
.button-danger { background: #fff; color: #c0392b; border-color: #f0c5bf; }
.button-danger:hover { background: #fff5f3; border-color: #e6a69c; color: #a42e22; box-shadow: none; }
.button-danger:focus-visible { outline: 2px solid #c0392b; outline-offset: 2px; }

/* Inline form that sits next to other actions (no extra spacing) --------- */
.inline-form { display: inline-flex; margin: 0; }

/* Cover preview inside guide form ---------------------------------------- */
.cover-preview {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  flex-wrap: wrap;
}
.cover-preview__img {
  max-width: 240px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ebebeb;
}

/* -----------------------------------------------------------------------
   Sprint 2: public landing + auth card + error page + flash polish
   ----------------------------------------------------------------------- */
.button-compact { padding: 8px 14px; font-size: 0.85rem; }

/* POLISH-002: .landing-* / .marketing-* / .auth-card moved to public.css
   (loaded only by public_base.html). See that file. */

/* Error page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.error-page__inner { max-width: 480px; text-align: center; }
.error-page__inner h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.error-page__inner p { color: #555; margin: 0 0 20px; }
.error-page__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Flash polish (admin + public) */
.flash-messages {
  position: fixed;
  top: 20px;
  right: 20px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  pointer-events: none;
}
.flash-messages .flash-item {
  background: #fff;
  border: 1px solid #ebebeb;
  border-left: 3px solid var(--brand-color, #ff385c);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 0.92rem;
  pointer-events: auto;
  animation: flash-in 200ms ease-out;
}
@keyframes flash-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .flash-messages { left: 16px; right: 16px; }
}

/* -----------------------------------------------------------------------
   FIND-001/004: public header cleanup
   -----------------------------------------------------------------------
   Two shipping fixes coupled here:

   - FIND-001: the default `base.html` header (`.site-header` / `.site-nav`)
     had no dedicated CSS, so the landing page rendered a run-on row of
     logo + Log in + Get started with no padding, alignment, or visual
     separation. Auth templates (login/register) also inherit this header
     and had the same drift. We style `.site-header` as a minimal fallback
     so `base.html` stays tidy on any surface that still uses it.

   - FIND-004: guest-facing pages (landing + published menu) got a
     dedicated `public-header` shell via `public_base.html`, which is the
     canonical chrome for public surfaces — brand + at most "Log in" +
     "Get started" when logged-out, or just "Dashboard" when an admin is
     signed in. The published menu template overrides `site_header` to
     empty so guests never see any auth chrome.

   All selectors live in the `.public-header` and `.site-header` /
   `.site-nav*` namespaces to avoid collisions with admin chrome
   (`.admin-shell`, `.admin-main`, etc.). ------------------------------- */

/* Canonical guest-facing header --------------------------------------- */
.public-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line, #ebebeb);
}
.public-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.public-header__brand {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink, #1f1f1f);
  text-decoration: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.public-header__brand:hover { color: var(--ink, #1f1f1f); }
.public-header__brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #0a6f78;
  background: #f7efe5;
  box-shadow: inset 0 0 0 1px rgba(10, 111, 120, 0.16);
}
.public-header__brand-mark img { width: 30px; height: 30px; display: block; }
.public-header__brand-word { line-height: 1; }
.public-header__nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}
.public-header__link {
  color: #484848;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 2px;
}
.public-header__link:hover { color: #111; }
.public-header__cta { white-space: nowrap; }

/* Burger toggle — hidden on desktop, shown when the nav collapses. */
.public-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border: 1px solid var(--line, #ebebeb);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.public-header__burger-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink, #1f1f1f);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.public-header__burger.is-open .public-header__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.public-header__burger.is-open .public-header__burger-bar:nth-child(2) { opacity: 0; }
.public-header__burger.is-open .public-header__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Collapse the inline nav into a burger-driven dropdown on narrow viewports.
   860px because the dual-audience nav carries 7–8 items + a CTA. */
@media (max-width: 860px) {
  .public-header__burger { display: flex; }
  .public-header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 12px 16px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line, #ebebeb);
    box-shadow: 0 18px 40px -24px rgba(20, 20, 30, 0.35);
  }
  .public-header__nav.is-open { display: flex; }
  .public-header__link { font-size: 1rem; padding: 10px 4px; border-bottom: 1px solid #f1f1f1; }
  .public-header__cta { margin-top: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .public-header__inner { padding: 10px 16px; gap: 10px; }
  .public-header__brand-mark { width: 28px; height: 28px; border-radius: 7px; }
}

/* SITE-001: site-wide marketing footer (legal links + company info) ---- */
.public-footer {
  margin-top: 64px;
  background: var(--panel, #ffffff);
  border-top: 1px solid var(--line, #ebebeb);
  color: var(--muted, #6b6b6b);
  font-family: var(--font-sans);
}
.public-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.public-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink, #1f1f1f);
  font-weight: 700;
  font-size: 1.05rem;
}
.public-footer__brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f7efe5;
  box-shadow: inset 0 0 0 1px rgba(10, 111, 120, 0.16);
}
.public-footer__brand-mark img { width: 28px; height: 28px; display: block; }
.public-footer__tagline {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 30ch;
}
.public-footer__made {
  margin: 12px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink, #1f1f1f);
}
.public-footer__heading {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink, #1f1f1f);
}
.public-footer__col { display: flex; flex-direction: column; }
.public-footer__link {
  color: var(--muted, #6b6b6b);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
}
.public-footer__link:hover { color: var(--brand-dark, #a68545); }
.public-footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.public-footer__bar {
  border-top: 1px solid var(--line, #ebebeb);
}
.public-footer__copy {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 0.8rem;
  color: var(--muted, #6b6b6b);
}
@media (max-width: 760px) {
  .public-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding: 36px 20px 24px;
  }
  .public-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .public-footer__inner { grid-template-columns: 1fr; }
}

/* Fallback styling for surfaces still using the default base.html header
   (auth templates — owned by Wave B). Keeps the logo / Log in / Get
   started row visually tidy until those templates are refreshed. ------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line, #ebebeb);
}
.site-header .brand {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink, #1f1f1f);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-header .brand:hover { color: var(--ink, #1f1f1f); }
.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.site-nav-auth a {
  color: #484848;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav-auth a:hover { color: #111; }
.site-nav-auth form { margin: 0; }
.site-nav-auth .link-button {
  background: none;
  border: 0;
  padding: 0;
  color: #484848;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav-auth .link-button:hover { color: #111; }

@media (max-width: 480px) {
  .site-header { padding: 10px 16px; gap: 10px; }
  .site-nav { gap: 10px; }
  .site-nav-auth a, .site-nav-auth .link-button { font-size: 0.88rem; }
}

/* Section wrapper — give each category breathing room between its siblings. */
.menu-page .menu-category + .menu-category { margin-top: 72px; }

.menu-page .menu-category-head {
  margin: 0 0 32px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ececec;
}

.menu-page .menu-category-eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark, #c23b3b);
}

.menu-page .menu-category-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink, #111);
}

.menu-page .menu-category-description {
  margin: 10px 0 0;
  color: var(--muted, #6b6b6b);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}

/* Cards variant: slightly tighter heading to sit above image-forward grid. */
.menu-page.menu-display-cards .menu-category-title { font-size: 30px; }

/* Mobile: still clearly dominant over the 18px item titles, but not
   overwhelming on narrow screens. */
@media (max-width: 768px) {
  .menu-page .menu-category + .menu-category { margin-top: 48px; }
  .menu-page .menu-category-head { margin-bottom: 24px; padding-bottom: 16px; }
  .menu-page .menu-category-title { font-size: 26px; }
  .menu-page.menu-display-cards .menu-category-title { font-size: 24px; }
  .menu-page .menu-category-description { font-size: 14px; }
}


/* POLISH-002: .auth-page-* / billing-plan polish moved to public.css. */

/* HOSTORA-TEMPLATES-001: first public menu template set. These variants
   reuse the same structured menu markup and only change visual treatment. */
.menu-display-cafe,
.menu-display-bar,
.menu-display-beach,
.menu-display-taverna {
  --template-ink: #171717;
  --template-muted: #5f6670;
  --template-line: #e4e7eb;
  --template-panel: #fff;
  background: var(--template-bg, #fff);
}
.menu-display-cafe {
  --template-bg: #f8f5ef;
  --template-accent: #2f6f5e;
  --template-soft: #e7f0eb;
  --template-line: #ded8cf;
}
.menu-display-bar {
  --template-bg: #101114;
  --template-ink: #f8f5ed;
  --template-muted: #c8c1b4;
  --template-line: rgba(255, 255, 255, 0.16);
  --template-panel: #191b20;
  --template-accent: #d7b56d;
  --template-soft: rgba(215, 181, 109, 0.12);
}
.menu-display-beach {
  --template-bg: #edf7f8;
  --template-accent: #007c89;
  --template-soft: #d9f0ef;
}
.menu-display-taverna {
  --template-bg: #fbfbf7;
  --template-accent: #23623f;
  --template-soft: #edf4e8;
  --template-line: #dde5d7;
}
.menu-display-cafe .menu-hero,
.menu-display-bar .menu-hero,
.menu-display-beach .menu-hero,
.menu-display-taverna .menu-hero {
  color: var(--template-ink);
  background:
    linear-gradient(135deg, var(--template-soft, #f4f4f4), transparent 58%),
    var(--template-bg);
  border-color: var(--template-line);
  margin-bottom: 28px;
}
.menu-display-cafe .menu-hero {
  border-bottom: 1px solid var(--template-line);
}
.menu-display-bar .menu-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 181, 109, 0.18), transparent 28%),
    linear-gradient(145deg, #191b20 0%, #101114 68%);
}
.menu-display-taverna .menu-hero {
  background:
    linear-gradient(90deg, rgba(35, 98, 63, 0.1), transparent 42%),
    linear-gradient(180deg, #fffdf6 0%, var(--template-bg) 100%);
  border-bottom: 4px solid var(--template-accent);
}
.menu-display-bar .menu-hero { color: var(--template-ink); }
.menu-display-cafe .menu-hero h1,
.menu-display-bar .menu-hero h1,
.menu-display-beach .menu-hero h1,
.menu-display-taverna .menu-hero h1 {
  color: var(--template-ink);
}
.menu-display-cafe .menu-subtitle,
.menu-display-bar .menu-subtitle,
.menu-display-beach .menu-subtitle,
.menu-display-taverna .menu-subtitle,
.menu-display-cafe .menu-intro,
.menu-display-bar .menu-intro,
.menu-display-beach .menu-intro,
.menu-display-taverna .menu-intro,
.menu-display-cafe .menu-style-note,
.menu-display-bar .menu-style-note,
.menu-display-beach .menu-style-note,
.menu-display-taverna .menu-style-note {
  color: var(--template-muted);
}
.menu-display-cafe .menu-catalog,
.menu-display-bar .menu-catalog,
.menu-display-beach .menu-catalog,
.menu-display-taverna .menu-catalog {
  background: var(--template-panel);
  border-color: var(--template-line);
  border-radius: 8px;
}
.menu-display-cafe .menu-category-head,
.menu-display-bar .menu-category-head,
.menu-display-beach .menu-category-head,
.menu-display-taverna .menu-category-head {
  border-bottom-color: var(--template-line);
}
.menu-display-cafe .menu-category-eyebrow,
.menu-display-bar .menu-category-eyebrow,
.menu-display-beach .menu-category-eyebrow,
.menu-display-taverna .menu-category-eyebrow {
  color: var(--template-accent);
}
.menu-display-cafe .menu-category-title,
.menu-display-bar .menu-category-title,
.menu-display-beach .menu-category-title,
.menu-display-taverna .menu-category-title,
.menu-display-cafe .menu-item-title-row h3,
.menu-display-bar .menu-item-title-row h3,
.menu-display-beach .menu-item-title-row h3,
.menu-display-taverna .menu-item-title-row h3 {
  color: var(--template-ink);
}
.menu-display-cafe .menu-category-description,
.menu-display-bar .menu-category-description,
.menu-display-beach .menu-category-description,
.menu-display-taverna .menu-category-description,
.menu-display-cafe .menu-item-copy p,
.menu-display-bar .menu-item-copy p,
.menu-display-beach .menu-item-copy p,
.menu-display-taverna .menu-item-copy p {
  color: var(--template-muted);
}
.menu-display-cafe .menu-item,
.menu-display-bar .menu-item,
.menu-display-beach .menu-item,
.menu-display-taverna .menu-item {
  border-bottom-color: var(--template-line);
}
.menu-display-cafe .menu-item-price,
.menu-display-bar .menu-item-price,
.menu-display-beach .menu-item-price,
.menu-display-taverna .menu-item-price {
  color: var(--template-accent);
}
.menu-display-cafe .menu-list-add,
.menu-display-bar .menu-list-add,
.menu-display-beach .menu-list-add,
.menu-display-taverna .menu-list-add {
  border-color: var(--template-line);
}
.menu-display-cafe .menu-list-add[aria-pressed="true"],
.menu-display-bar .menu-list-add[aria-pressed="true"],
.menu-display-beach .menu-list-add[aria-pressed="true"],
.menu-display-taverna .menu-list-add[aria-pressed="true"] {
  background: var(--template-accent);
  border-color: var(--template-accent);
}
.menu-display-cafe .menu-item {
  align-items: center;
  padding: 18px;
  border: 1px solid var(--template-line);
  border-radius: 8px;
  background: #fff;
}
.menu-display-cafe .menu-item-media {
  border-radius: 50%;
}
.menu-display-cafe .menu-items { gap: 16px; }
.menu-display-bar .menu-catalog {
  box-shadow: none;
  background: #15171b;
}
.menu-display-bar .menu-item {
  padding: 20px 0;
  border-bottom-style: dashed;
}
.menu-display-bar .menu-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--template-ink);
  border-color: var(--template-line);
}
.menu-display-bar .menu-list-add {
  background: transparent;
  color: var(--template-ink);
}
.menu-display-beach .menu-hero {
  border-bottom: 4px solid var(--template-accent);
}
.menu-display-beach .menu-item-media {
  border-radius: 6px;
}
.menu-display-taverna .menu-category-title {
  font-size: 32px;
}
.menu-display-taverna .menu-category-head {
  padding-left: 18px;
  border-left: 4px solid var(--template-accent);
}
.menu-display-taverna .menu-category-eyebrow {
  color: #8a6830;
}
.menu-display-taverna .menu-item-title-row {
  align-items: flex-start;
}

.menu-display-category-first {
  background: #fbfaf6;
}
.menu-display-category-first .menu-hero {
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e0d5;
  background:
    linear-gradient(135deg, rgba(45, 101, 77, 0.12), transparent 54%),
    #fffdf8;
}
.public-menu-category-first {
  max-width: 980px;
  margin: 28px auto 36px;
  padding: 0 24px;
}
.public-menu-category-first__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.public-menu-category-first__head h2 {
  margin: 0;
  color: #151515;
  font-size: 30px;
  line-height: 1.15;
}
.public-menu-category-first__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.public-menu-category-first__tile {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 154px;
  padding: 18px;
  color: #151515;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e4ded2;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(48, 39, 23, 0.06);
}
.public-menu-category-first__tile:hover {
  border-color: #2d654d;
  transform: translateY(-2px);
}
.public-menu-category-first__tile:focus-visible {
  outline: 2px solid #2d654d;
  outline-offset: 3px;
}
.public-menu-category-first__tile strong {
  font-size: 22px;
  line-height: 1.15;
}
.public-menu-category-first__tile small {
  color: #626262;
  line-height: 1.45;
}
.public-menu-category-first__count {
  width: max-content;
  max-width: 100%;
  padding: 4px 9px;
  color: #2d654d;
  background: #eef6f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.menu-display-category-first .menu-catalog {
  max-width: 980px;
  padding: 42px;
  border-color: #e4ded2;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(48, 39, 23, 0.07);
}
.menu-display-category-first .menu-category { scroll-margin-top: 24px; }
.menu-display-category-first .menu-category-eyebrow,
.menu-display-category-first .menu-item-price {
  color: #2d654d;
}

/* THEME-002: 4x4 public theme matrices for menus and guest guides.
   Values are stored as layout-palette strings so one layout can have several
   deliberate visual treatments without duplicating markup. */
.theme-matrix {
  display: grid;
  gap: 16px;
}
.theme-matrix__row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 3.2fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.theme-matrix__row-head {
  display: grid;
  align-content: start;
  gap: 5px;
}
.theme-matrix__row-head strong {
  color: var(--ink);
  font-size: 0.98rem;
}
.theme-matrix__row-head small {
  color: var(--muted);
  line-height: 1.35;
}
.theme-matrix__choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.theme-matrix__tile--classic { --theme-preview-bg: #f6f6f4; --theme-preview-line: #cfcfca; }
.theme-matrix__tile--coastal { --theme-preview-bg: #e9f7f8; --theme-preview-line: #62b8be; }
.theme-matrix__tile--warm,
.theme-matrix__tile--family { --theme-preview-bg: #fff1dc; --theme-preview-line: #c77a22; }
.theme-matrix__tile--night,
.theme-matrix__tile--luxury { --theme-preview-bg: #19171b; --theme-preview-line: #d8b25b; }
.theme-matrix__tile .menu-theme-picker__preview,
.theme-matrix__tile .guide-template-tile__preview {
  background: var(--theme-preview-bg);
}
.theme-matrix__tile .menu-theme-picker__preview span,
.theme-matrix__tile .guide-template-tile__preview span {
  background: var(--theme-preview-line);
}

.menu-page[data-menu-palette="classic"] {
  --template-bg: #fff;
  --template-ink: #171717;
  --template-muted: #5f6670;
  --template-line: #e4e7eb;
  --template-panel: #fff;
  --template-accent: #c23b3b;
  --template-soft: #f5f5f3;
}
.menu-page[data-menu-palette="coastal"] {
  --template-bg: #edf7f8;
  --template-ink: #10363b;
  --template-muted: #4f6d72;
  --template-line: #c9e5e6;
  --template-panel: #ffffff;
  --template-accent: #087d8c;
  --template-soft: #dff3f4;
}
.menu-page[data-menu-palette="warm"] {
  --template-bg: #fbf8f1;
  --template-ink: #2e2117;
  --template-muted: #6f5f4f;
  --template-line: #eadcc8;
  --template-panel: #fffaf1;
  --template-accent: #8a5b2d;
  --template-soft: #f3e7d8;
}
.menu-page[data-menu-palette="night"] {
  --template-bg: #101114;
  --template-ink: #f8f5ed;
  --template-muted: #c8c1b4;
  --template-line: rgba(255, 255, 255, 0.16);
  --template-panel: #191b20;
  --template-accent: #d7b56d;
  --template-soft: rgba(215, 181, 109, 0.12);
}
.menu-page[data-menu-layout] {
  color: var(--template-ink);
  background: var(--template-bg);
}
.menu-page[data-menu-layout] .menu-hero {
  color: var(--template-ink);
  background:
    linear-gradient(135deg, var(--template-soft), transparent 58%),
    var(--template-bg);
  border-color: var(--template-line);
}
.menu-page[data-menu-layout] .menu-hero h1,
.menu-page[data-menu-layout] .menu-category-title,
.menu-page[data-menu-layout] .menu-item-title-row h3 {
  color: var(--template-ink);
}
.menu-page[data-menu-layout] .menu-subtitle,
.menu-page[data-menu-layout] .menu-intro,
.menu-page[data-menu-layout] .menu-style-note,
.menu-page[data-menu-layout] .menu-category-description,
.menu-page[data-menu-layout] .menu-item-copy p {
  color: var(--template-muted);
}
.menu-page[data-menu-layout] .menu-category-eyebrow,
.menu-page[data-menu-layout] .menu-item-price {
  color: var(--template-accent);
}
.menu-page[data-menu-layout] .menu-catalog,
.menu-page[data-menu-layout] .menu-item,
.menu-page[data-menu-layout] .public-menu-category-first__tile {
  background: var(--template-panel);
  border-color: var(--template-line);
}
.menu-page[data-menu-layout] .menu-list-add {
  border-color: var(--template-accent);
  color: var(--template-accent);
}
.menu-page[data-menu-layout] .menu-list-add[aria-pressed="true"] {
  background: var(--template-accent);
  color: #fff;
}
.menu-page[data-menu-palette="night"] .menu-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 181, 109, 0.18), transparent 28%),
    linear-gradient(145deg, #191b20 0%, #101114 68%);
}
.menu-page[data-menu-palette="night"] .menu-catalog {
  box-shadow: none;
}
/* FIND-R4-05b: photo heroes (.menu-hero--image) always sit under the dark
   .menu-hero__scrim, so their text must be light regardless of palette. The
   palette layer above recolors `.menu-hero h1` / `.menu-subtitle` with
   --template-ink/--template-muted (near-black on light palettes such as
   list-warm) and out-specifies the .menu-hero__content white rules → titles
   like «Akti Beach Bar» rendered dark-on-dark. Keyed on the --image modifier
   so the no-photo hero keeps the palette ink. */
.menu-page[data-menu-layout] .menu-hero--image,
.menu-page[data-menu-layout] .menu-hero--image h1 {
  color: #fff;
}
.menu-page[data-menu-layout] .menu-hero--image .eyebrow,
.menu-page[data-menu-layout] .menu-hero--image .menu-subtitle,
.menu-page[data-menu-layout] .menu-hero--image .menu-hero__meta {
  color: rgba(255, 255, 255, 0.94);
}
.menu-page[data-menu-layout="category"] .menu-hero {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--template-line);
}
.menu-page[data-menu-layout="category"] .public-menu-category-first {
  max-width: 980px;
}
.menu-page[data-menu-layout="tabs"] .menu-catalog {
  max-width: 980px;
}
.menu-page[data-menu-layout="cards"] .menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.guide-palette-classic {
  --guide-theme-bg: #faf8f3;
  --guide-theme-panel: #fff;
  --guide-theme-soft: #f7f1e8;
  --guide-theme-accent: #9b6b33;
  --guide-theme-line: #ece4d8;
}
.guide-palette-coastal {
  --guide-theme-bg: #eef8f8;
  --guide-theme-panel: #fff;
  --guide-theme-soft: #dff3f4;
  --guide-theme-accent: #087d8c;
  --guide-theme-line: #c9e5e6;
}
.guide-palette-family {
  --guide-theme-bg: #fff8ec;
  --guide-theme-panel: #fffdf8;
  --guide-theme-soft: #ffe9c1;
  --guide-theme-accent: #b36a18;
  --guide-theme-line: #f1d8ac;
}
.guide-palette-luxury {
  --guide-theme-bg: #f7f3ef;
  --guide-theme-panel: #fff;
  --guide-theme-soft: #efe3d5;
  --guide-theme-accent: #6f1d32;
  --guide-theme-line: #ead6dc;
}
.guide-page--directory {
  background: linear-gradient(180deg, var(--guide-theme-bg) 0%, #fff 42%, #fff 100%);
  color: var(--ink);
}
.guide-directory-hero {
  padding: 48px 0 32px;
  background:
    linear-gradient(135deg, var(--guide-theme-soft), transparent 62%),
    var(--guide-theme-bg);
  border-bottom: 1px solid var(--guide-theme-line);
}
.guide-directory-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: end;
}
.guide-directory-hero h1 {
  margin: 8px 0;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.95;
}
.guide-directory-hero p {
  max-width: 62ch;
  color: var(--muted);
}
.guide-directory-kicker {
  margin: 0;
  color: var(--guide-theme-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.guide-directory-actions {
  display: grid;
  gap: 8px;
}
.guide-directory-actions a,
.guide-directory-tile {
  color: var(--ink);
  text-decoration: none;
  background: var(--guide-theme-panel);
  border: 1px solid var(--guide-theme-line);
  border-radius: 8px;
}
.guide-directory-actions a {
  padding: 12px 14px;
  font-weight: 700;
}
.guide-directory-main {
  display: grid;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 56px;
}
.guide-directory-panel {
  padding: 24px;
  background: var(--guide-theme-panel);
  border: 1px solid var(--guide-theme-line);
  border-radius: 8px;
}
.guide-directory-panel__head {
  margin-bottom: 18px;
}
.guide-directory-panel__head h2,
.guide-directory-panel h2 {
  margin: 4px 0 0;
  font-size: 28px;
}
.guide-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}
.guide-directory-tile {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 16px;
}
.guide-directory-tile span {
  color: var(--guide-theme-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.guide-directory-recs {
  display: grid;
  gap: 22px;
}
.guide-directory-rec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}
.guide-directory-detail {
  padding: 18px 0;
  border-top: 1px solid var(--guide-theme-line);
}
.guide-directory-detail:first-child {
  padding-top: 0;
  border-top: 0;
}
.guide-layout-directory-luxury .guide-directory-panel,
.guide-layout-directory-luxury .guide-directory-actions a {
  box-shadow: 0 18px 42px rgba(50, 22, 31, 0.09);
}

/* FIND-020: public menu print polish */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-page .public-brand-logo,
.business-menus-hero .public-brand-logo {
  margin-inline: auto;
}
.menu-page .menu-hero,
.menu-page .menu-hero__content,
.business-menus-hero__inner > div:first-child {
  text-align: center;
}
.business-menus-hero__inner > div:first-child {
  display: grid;
  justify-items: center;
}
.business-menus-hero p {
  margin-inline: auto;
}
.business-menu-backlink {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.business-social-strip {
  justify-content: center;
}
.business-social-strip__link,
.business-social-strip__button {
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
}
.business-social-strip__button {
  appearance: none;
  cursor: pointer;
  font: inherit;
}
.business-social-strip__icon {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.guest-wifi-dialog {
  width: min(420px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}
.guest-wifi-dialog::backdrop {
  background: rgba(18, 18, 18, 0.42);
}
.guest-wifi-dialog__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.guest-wifi-dialog__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.guest-wifi-dialog__head h2 {
  margin: 0;
  font-size: 20px;
}
.guest-wifi-dialog__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.guest-wifi-dialog__row {
  display: grid;
  gap: 3px;
  margin: 0;
  overflow-wrap: anywhere;
}
.guest-wifi-dialog__row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.public-menu-category-first__media,
.menu-category-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.public-menu-category-first__media {
  aspect-ratio: 16 / 9;
  margin: -8px -8px 4px;
}
.menu-category-media {
  width: min(100%, 860px);
  aspect-ratio: 18 / 7;
  margin: 0 auto 18px;
}
.public-menu-category-first__media img,
.menu-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-return-top {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 44;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.public-return-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .business-social-strip {
    gap: 10px;
  }
  .public-return-top {
    right: 16px;
    bottom: 92px;
  }
  .menu-category-media {
    aspect-ratio: 16 / 9;
  }
}

/* -------------------------------------------------------------------------
   Wine-list public rendering.
   Adds sommelier-style structure to wine_list menus: producer · region ·
   vintage eyebrow line above the title, quiet wine_meta footer for
   grape/style/serving/pairing notes. Inherits the existing palette system
   (list-classic, cards-night, etc.) — we don't introduce a wine palette,
   we just refine item-level density and typography when ``.menu-page--wine``
   is on the article root.
   ------------------------------------------------------------------------- */
.menu-page--wine .wine-list-intro {
  max-width: var(--content-max, 960px);
  margin: 26px auto 8px;
  padding: 0 22px 18px;
  border-bottom: 1px solid var(--line);
}
.menu-page--wine .wine-list-intro h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
}
.menu-page--wine .wine-list-intro p:last-child {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow {
  margin: 0 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow > span {
  position: relative;
  padding-right: 12px;
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow > span + span::before {
  content: "·";
  position: absolute;
  left: -8px;
  color: var(--line);
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow > span:last-child {
  padding-right: 0;
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow__producer {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.menu-page--wine .menu-item--wine .menu-item-wine-eyebrow__vintage {
  font-variant-numeric: tabular-nums;
}
.menu-page--wine .menu-item--wine .menu-item-title-row h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.005em;
}
/* Wine eyebrow on themed layouts: the base rules above read --ink/--muted/--line,
   which the layout/palette system does not remap (it uses --template-*). Without
   this, the producer renders near-black on the night palette. */
.menu-page--wine[data-menu-layout] .menu-item--wine .menu-item-wine-eyebrow {
  color: var(--template-muted);
}
.menu-page--wine[data-menu-layout] .menu-item--wine .menu-item-wine-eyebrow > span + span::before {
  color: var(--template-line);
}
.menu-page--wine[data-menu-layout] .menu-item--wine .menu-item-wine-eyebrow__producer {
  color: var(--template-ink);
}
.menu-page--wine .menu-item--wine .menu-item-wine-meta {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.menu-page--wine .menu-item--wine .menu-item-wine-meta > span {
  position: relative;
}
.menu-page--wine .menu-item--wine .menu-item-wine-meta > span + span::before {
  content: "•";
  position: absolute;
  left: -10px;
  color: var(--line);
}
/* Wine items omit the "Προσθήκη" button; tighten the bottom padding so the
   card doesn't end with empty whitespace where the button used to sit. */
.menu-page--wine .menu-item--wine {
  padding-bottom: 14px;
}

/* ==========================================================================
   SITE-006 — Honest social proof (home page)
   Founder story, Charlamis Mansion case study, founding-member framing and
   non-testimonial trust signals. Reuses existing landing tokens; only adds
   layout for the new .social-proof sections. Append-only block.
   ========================================================================== */
.social-proof__founder {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}
.social-proof__founder-media {
  display: flex;
  justify-content: center;
}
.social-proof__founder-media img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e7f0ed;
  padding: 22px;
  border: 1px solid #d8e0db;
}
.social-proof__founder-body p:not(.eyebrow) {
  color: #536467;
  line-height: 1.65;
  margin: 12px 0 0;
}
.social-proof__case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.social-proof__case-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 240px;
  border: 2px dashed #c3d2cc;
  border-radius: 14px;
  background: #f7fbf8;
  color: #536467;
  text-align: center;
  padding: 24px;
  font-weight: 600;
}
.social-proof__case-placeholder small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-proof__case-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.social-proof__case-points li {
  position: relative;
  padding-left: 26px;
  color: #536467;
  line-height: 1.55;
}
.social-proof__case-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b4f55;
  font-weight: 700;
}
.social-proof__case-metric-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f4f7f5;
  border: 1px solid #d8e0db;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.social-proof__founding-cta {
  margin-top: 28px;
}
.social-proof__quote blockquote {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}
.social-proof__quote-author {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 720px) {
  .social-proof__founder,
  .social-proof__case {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .social-proof__case-placeholder {
    min-height: 180px;
  }
}

/* GUIDE-029: legally mandated emergency guide (Ν. 5170/2025).
   Rendered prominently above all guide variant content, bilingual EL+EN. */
/* Floating emergency button — fixed top-left, opens the modal overlay below.
   Stays one tap away on every screen without swallowing the header. */
.guide-emergency-fab {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.78rem 0.5rem 0.5rem;
  border: 0;
  border-radius: 999px;
  background: #e23b32;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(226, 59, 50, 0.38);
  font: 800 11px/1.02 var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.guide-emergency-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 24px rgba(226, 59, 50, 0.46);
}
.guide-emergency-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.guide-emergency-fab__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.guide-emergency-fab__label {
  text-align: left;
}
@media (max-width: 540px) {
  .guide-emergency-fab {
    top: 10px;
    left: 10px;
  }
}
/* Emergency modal — reuses the amenity dialog mechanism with a red accent. */
.guide-emergency-modal__panel {
  border-top: 4px solid #e23b32;
}
.guide-emergency-modal__panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.guide-emergency__kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e23b32;
  color: #fff;
}
.guide-emergency__kicker {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c0271f;
}
.guide-emergency__body h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.guide-emergency__contacts {
  white-space: pre-line;
  line-height: 1.55;
}

/* -----------------------------------------------------------------------
   SITE-004 — Dual-audience hero + per-audience landing pages.
   The home hero branches into two self-identification paths (εστίαση vs
   φιλοξενία); dedicated /menu, /odigos and /synergates pages reuse the
   existing landing/marketing tokens. Hero media uses local CSS gradient
   placeholders (no Unsplash hotlinking) — OWNER swaps in real Greek venue /
   Charlamis Mansion photos via the <!-- OWNER: real photo --> markers.
   ----------------------------------------------------------------------- */

.marketing-hero--split {
  display: block;
  min-height: 0;
  color: #123235;
  background: #f7f5ef;
  padding: 96px 0 56px;
}
.marketing-hero--split .marketing-hero__intro { text-align: center; max-width: 820px; }
.marketing-hero--split .marketing-hero__intro { margin-left: auto; margin-right: auto; }
.marketing-hero--split h1 {
  color: #102f33;
  max-width: 820px;
  margin: 8px auto 14px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.04;
}
.marketing-hero--split .landing-subtitle { color: #4a5a5c; margin: 0 auto; }
.marketing-hero--split .eyebrow { color: #0b4f55; }

.hero-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.hero-path {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d8e0db;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(6, 38, 41, 0.45);
}
.hero-path__media {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
/* REVIEW2 #1: real photos for the dual-audience hero cards (was flat gradient
   placeholders, which read as "πεταμένα κείμενα"). Gradient stays underneath as
   a graceful fallback if the image fails to load. Owner can swap these two
   files (static/img/hero-fnb.jpg, hero-stay.jpg) for own venue photos later. */
.hero-path__media--menu {
  background-color: #0b4f55;
  background-image: url('/static/img/hero-fnb.jpg');
}
.hero-path__media--guide {
  background-color: #123235;
  background-image: url('/static/img/hero-stay.jpg');
}
.hero-path__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.hero-path__body h2 { margin: 0; color: #102f33; font-size: 1.55rem; }
.hero-path__body > p { margin: 0; color: #536467; line-height: 1.6; }
.hero-path__points { list-style: none; margin: 4px 0 6px; padding: 0; display: grid; gap: 6px; }
.hero-path__points li {
  position: relative;
  padding-left: 22px;
  color: #2f4144;
  font-weight: 600;
  font-size: 0.96rem;
}
.hero-path__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b4f55;
  font-weight: 800;
}
.hero-path .landing-cta { margin-top: auto; padding-top: 6px; }

.hero-paths__footer {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-paths__footer .landing-cta-note { margin: 0; color: #6a7a7c; font-size: 0.9rem; }
.hero-paths__partner { margin: 6px 0 0; color: #4a5a5c; font-size: 0.96rem; }
.hero-paths__partner a { color: #0b4f55; font-weight: 800; text-decoration: none; }
.hero-paths__partner a:hover { text-decoration: underline; }

/* Per-audience landing hero media (local placeholder gradients). */
.landing-audience-hero__media {
  background-size: cover;
  background-position: center;
}
.landing-audience-hero__media--menu {
  background-image: linear-gradient(120deg, rgba(6, 38, 41, 0.92), rgba(17, 120, 127, 0.55)),
    url('/static/img/hero-fnb.jpg');
}
.landing-audience-hero__media--guide {
  background-image: linear-gradient(120deg, rgba(6, 38, 41, 0.92), rgba(42, 111, 99, 0.55)),
    url('/static/img/hero-stay.jpg');
}

.demos-empty { text-align: left; }
.demos-empty .button { margin-top: 12px; }

/* Phones: stack the split hero. The tablet-portrait collapse (e.g. OnePlus Pad
   ~1000px CSS) lives in public.css, which loads after this file and wins. */
@media (max-width: 820px) {
  .hero-paths { grid-template-columns: 1fr; }
  .marketing-hero--split { padding-top: 84px; }
}

/* =========================================================================
   MENU-017 — «Η λίστα μου»: running total + «Σερβιτόρος» read-aloud view
   Appended block. Builds on the existing .menu-list-panel chrome above.
   ========================================================================= */
.menu-list-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.menu-list-total[hidden] { display: none; }
.menu-list-total__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.menu-list-total__value {
  color: var(--ink);
  font: 800 20px/1 var(--font-sans);
  white-space: nowrap;
}
.menu-list-panel__actions {
  display: grid;
  gap: 8px;
}
.menu-list-panel__waiter {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font: 700 14px/1 var(--font-sans);
  cursor: pointer;
}
.menu-list-panel__waiter[hidden] { display: none; }

/* ORDER-002: send-order block inside the list panel. */
.menu-order {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-order[hidden] { display: none; }
.menu-order__table { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.menu-order__table[hidden] { display: none; }
.menu-order__table input {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  font: 400 15px/1 var(--font-sans);
}
.menu-order__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.menu-order__send {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #e0115f;
  color: #fff;
  font: 800 15px/1 var(--font-sans);
  cursor: pointer;
}
.menu-order__send:disabled { opacity: 0.55; pointer-events: none; }
.menu-order__status { margin: 0; text-align: center; font: 700 14px/1.3 var(--font-sans); }
.menu-order__status.is-ok { color: #0a7d33; }
.menu-order__status.is-error { color: #c0211f; }
.menu-order__status.is-pending { color: #555; }

/* Full-screen large-type view the guest shows / reads to the waiter. */
.menu-waiter-view {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 6vw, 48px);
  background: #0d0e11;
  color: #fff;
  overflow: auto;
}
.menu-waiter-view[hidden] { display: none; }
.menu-waiter-view__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.menu-waiter-view__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-waiter-view__close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.menu-waiter-view__items {
  display: grid;
  gap: clamp(12px, 3vw, 22px);
  flex: 1 1 auto;
}
.menu-waiter-line {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.menu-waiter-line__qty {
  flex: 0 0 auto;
  min-width: 1.6em;
  color: var(--brand);
  font: 800 clamp(30px, 9vw, 56px)/1 var(--font-sans);
}
.menu-waiter-line__title {
  font: 700 clamp(24px, 6.5vw, 44px)/1.1 var(--font-sans);
}
.menu-waiter-view__total {
  font: 800 clamp(28px, 8vw, 52px)/1 var(--font-sans);
  text-align: right;
}
.menu-waiter-view__total[hidden] { display: none; }
.menu-waiter-view__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

/* =========================================================================
   THEME-002 — time-of-day dark mode
   The menu «night» palette + light/day palettes already exist above. Here we
   (a) add a smooth, motion-safe transition when the JS swaps the palette, and
   (b) add a guide dark palette («night») used as the auto/after-sunset target.
   ========================================================================= */
.menu-page[data-theme-mode],
.guide-page[data-theme-mode] {
  transition: background-color 0.45s ease, color 0.45s ease;
}
@media (prefers-reduced-motion: reduce) {
  .menu-page[data-theme-mode],
  .guide-page[data-theme-mode] {
    transition: none;
  }
}

/* Guide dark palette — parity with the menu «Βραδινό» look. Overrides both the
   global --ink/background and the guide-theme-* custom props the variants read.
   THEME-002 fix: a COMPLETE, readable dark theme. Every card/surface used by the
   guide and its 4 variants (airbnb/editorial/compact/directory) must get a dark
   surface with light, WCAG-AA-readable text — never white-on-white. We remap the
   shared surface tokens (--panel/--line) so every `var(--panel)` card flips
   automatically, then add explicit overrides for the cards that hardcode #fff. */
.guide-page.guide-palette-night {
  --ink: #f6f3ea;
  --muted: #c4bdb0;
  --line: rgba(255, 255, 255, 0.16);
  /* Remap the shared surface tokens so every var(--panel)/var(--line) card in
     the guide (content-section, guide-card, host portrait, stay rail, etc.)
     becomes dark automatically. */
  --panel: #191b20;
  --bg: #101114;
  --guide-theme-bg: #101114;
  --guide-theme-panel: #191b20;
  --guide-theme-soft: rgba(215, 181, 109, 0.12);
  --guide-theme-accent: #d7b56d;
  --guide-theme-line: rgba(255, 255, 255, 0.16);
  background: #101114;
  color: var(--ink);
}
.guide-page.guide-palette-night a { color: var(--guide-theme-accent); }

/* R3-04: the amenity info pop-up (dialog) + the instruction items hardcode a
   white background, so in the REGULAR night palette they rendered white-on-white
   (the boutique theme had its own override; plain night did not). Force the dark
   panel + light text everywhere. */
.guide-palette-night .guide-amenity-modal__panel,
.guide-palette-night .guide-amenity-modal__close,
.guide-palette-night .guide-instruction-item {
  background: #191b20;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
.guide-palette-night .guide-amenity-modal__panel h3,
.guide-palette-night .guide-amenity-modal__body,
.guide-palette-night .guide-instruction-item > h3,
.guide-palette-night .guide-instruction-item strong {
  color: var(--ink);
}
.guide-palette-night .guide-amenity-modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

/* Explicit dark surfaces for the cards that hardcode a white/light background
   (so --ink flipping to light no longer means light-on-white). Dark panel
   #191b20 with a hairline light border keeps AA contrast against #101114. */
.guide-page.guide-palette-night .content-section,
.guide-page.guide-palette-night .section-header,
.guide-page--airbnb.guide-palette-night .amenity-card,
.guide-page--airbnb.guide-palette-night .recommendation-card,
.guide-page--airbnb.guide-palette-night .quick-action-card,
.guide-page--airbnb.guide-palette-night .airbnb-host-card,
.guide-page--airbnb.guide-palette-night .guide-host-card,
.guide-page--airbnb.guide-palette-night .airbnb-stay-rail,
.guide-page--airbnb.guide-palette-night .guide-stay-rail,
.guide-page--editorial.guide-palette-night .hero-card,
.guide-page--editorial.guide-palette-night .action-card,
.guide-page--editorial.guide-palette-night .guide-card,
.guide-palette-night .guide-knowledge-group,
.guide-palette-night .guide-offer-card,
.guide-page--compact.guide-palette-night .section-row {
  background: #191b20;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
/* The amenity rows inside each group hardcode `background:#fff` (see
   .guide-amenity-list li). In the night palette the group flips dark but the
   rows stayed white, so the light --ink text rendered white-on-white
   ("Παροχές": Hair dryer / Hot water invisible). Let the rows inherit the dark
   group surface. */
.guide-palette-night .guide-amenity-list li {
  background: transparent;
  color: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}
/* The editorial action-card uses a light gradient; flatten it to the dark panel. */
.guide-page--editorial.guide-palette-night .action-card {
  background: linear-gradient(180deg, #1f2127 0%, #191b20 40%, #191b20 100%);
  border-color: rgba(255, 255, 255, 0.16);
}
/* The shared section-header has a hardcoded #fafafa; pull it onto a dark tint. */
.guide-page.guide-palette-night .section-header {
  background: #1f2127;
}
/* THEME-002 follow-up (reported live): the DIRECTORY variant + the amenities
   ("Παροχές") and stay-info ("Πληροφορίες διαμονής") surfaces stayed light.
   The directory root hardcodes a `#fff` gradient, and the directory panels /
   amenity inner bodies / stay rails weren't in the night overrides. Force them
   all to the dark panel. */
.guide-page--directory.guide-palette-night {
  background: #101114;
}
.guide-page--directory.guide-palette-night .guide-directory-panel,
.guide-page--directory.guide-palette-night .guide-directory-rec-group,
.guide-page--directory.guide-palette-night .guide-directory-detail,
.guide-page.guide-palette-night .guide-amenities,
.guide-page.guide-palette-night .amenity-card,
.guide-page.guide-palette-night .amenity-head,
.guide-page.guide-palette-night .amenity-body,
.guide-page.guide-palette-night .amenity-instructions,
.guide-page.guide-palette-night .guide-stay-rail,
.guide-page.guide-palette-night .guide-stay-rail__inner,
.guide-page.guide-palette-night .guide-stay-rail__item {
  background: #191b20;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
/* Directory tiles slightly lighter so the tappable items read against the panel. */
.guide-page--directory.guide-palette-night .guide-directory-tile {
  background: #23262d;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
/* Keep all text/headings/labels inside these surfaces light + legible. */
.guide-page--directory.guide-palette-night .guide-directory-panel h2,
.guide-page--directory.guide-palette-night .guide-directory-tile strong,
.guide-page--directory.guide-palette-night .guide-directory-kicker,
.guide-page.guide-palette-night .amenity-card h3,
.guide-page.guide-palette-night .amenity-kind,
.guide-page.guide-palette-night .guide-section-kicker,
.guide-page.guide-palette-night .guide-stay-rail__heading,
.guide-page.guide-palette-night .guide-stay-rail__label,
.guide-page.guide-palette-night .guide-stay-rail__hint {
  color: var(--ink);
}
/* Headings, strong text and "kicker"/eyebrow labels stay light + legible. */
.guide-page.guide-palette-night .content-section h1,
.guide-page.guide-palette-night .content-section h2,
.guide-page.guide-palette-night .content-section h3,
.guide-page.guide-palette-night .amenity-card h3,
.guide-page.guide-palette-night .recommendation-card h3,
.guide-page.guide-palette-night .guide-offer-card h3,
.guide-page.guide-palette-night .action-card h3,
.guide-page.guide-palette-night .guide-card h2,
.guide-page.guide-palette-night strong,
.guide-page.guide-palette-night .quick-action-card strong,
.guide-page.guide-palette-night .hero-card strong {
  color: var(--ink);
}
.guide-page.guide-palette-night .eyebrow,
.guide-page.guide-palette-night .guide-kind,
.guide-page.guide-palette-night .guide-section-kicker,
.guide-page.guide-palette-night .guide-compact-kicker,
.guide-page.guide-palette-night .guide-directory-kicker,
.guide-page.guide-palette-night .quick-action-card span,
.guide-page.guide-palette-night .hero-card span,
.guide-page.guide-palette-night .muted,
.guide-page.guide-palette-night .guide-body {
  color: var(--muted);
}
.guide-page.guide-palette-night .quick-action-card__icon { color: var(--guide-theme-accent); }
/* Icon-only host portrait placeholder shouldn't read as a white disc. */
.guide-page--airbnb.guide-palette-night .airbnb-host-card__portrait,
.guide-page--airbnb.guide-palette-night .guide-host-card__portrait {
  background: #23262d;
}

/* Emergency red banner — keep it unmistakably an alert AND readable on dark.
   Deep red surface, warm-light text, brighter icon disc. (WCAG AA: #ffd9d4 on
   #3a1714 ≈ 9:1.) */
.guide-palette-night .guide-emergency__inner {
  background: #2a1310;
  border-color: #7c2b24;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.guide-palette-night .guide-emergency__kicker { color: #ff9d94; }
.guide-palette-night .guide-emergency__body,
.guide-palette-night .guide-emergency__contacts,
.guide-palette-night .guide-emergency__body h2 { color: #ffd9d4; }
.guide-palette-night .guide-emergency__icon { background: #e23b32; color: #fff; }

/* =========================================================================
   GUIDE-033 — "Ρώτα τον οδηγό" chat: discoverability + dark-readable styling.
   The widget previously had NO dedicated CSS (it leaned on .content-section and
   default text colors), so in dark mode it was white-on-white and easy to miss.
   We give it (a) its own light+dark card styling, (b) chat bubbles, and (c) a
   floating action button so a guest finds it on mobile.
   ========================================================================= */
/* Greek-capable font stack for the public guide. Manrope has no Greek glyphs,
   so browsers fall back per-glyph and accented Greek (ά, έ, ή, ί, ό, ύ, ώ) can
   render in a mismatched family. We make the fallback explicit + clean by
   appending system Greek-capable faces after Manrope, scoped to the guide. */
.guide-page,
.guide-page input,
.guide-page button,
.guide-page textarea,
.guide-page select {
  font-family: "Manrope", "Helvetica Neue", "Segoe UI", "Noto Sans", "DejaVu Sans",
    -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

/* GUIDE-033 — "Ρώτα τον οδηγό" Messenger-style popup. The panel is fixed in
   the bottom-right corner, just above the floating launcher button, and slides
   in when the FAB is toggled open (guide-chat.js adds .is-open). */
.guide-chat--popup {
  position: fixed;
  right: 16px;
  bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  z-index: 61;
  width: min(380px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 120px));
  display: flex;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.guide-chat--popup[hidden] { display: none; }
.guide-chat--popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.guide-chat__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: inherit;
  background: var(--panel, #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}
.guide-chat__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  padding: 15px 16px 13px;
  background: var(--brand);
  color: #ffffff;
}
.guide-chat__heading { min-width: 0; }
.guide-chat__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}
.guide-chat__header h2 {
  margin: 2px 0 0;
  font-size: 17px;
  line-height: 1.2;
  color: #ffffff;
}
.guide-chat__close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.guide-chat__close:hover,
.guide-chat__close:focus-visible { background: rgba(255, 255, 255, 0.34); }
.guide-chat__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.guide-chat__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 14px 16px 4px;
}
.guide-chat__intro {
  margin: 0;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.45;
}
.guide-chat__log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 60px;
  overflow-y: auto;
}
.guide-chat__bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.guide-chat__bubble--question {
  align-self: flex-end;
  background: var(--brand);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.guide-chat__bubble--answer {
  align-self: flex-start;
  background: var(--bg, #f3f3f0);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.guide-chat__source {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.guide-chat__form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex: 0 0 auto;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--line);
}
.guide-chat__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
}
.guide-chat__input::placeholder { color: var(--muted); opacity: 1; }
.guide-chat__input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.guide-chat__host-hint { margin: 2px 0 0; flex: 0 0 auto; font-size: 13px; }

/* Dark-mode chat surfaces (ties to THEME-002). */
.guide-palette-night .guide-chat__card {
  background: #191b20;
  border-color: rgba(255, 255, 255, 0.16);
}
.guide-palette-night .guide-chat__header { background: var(--guide-theme-accent); color: #1a1206; }
.guide-palette-night .guide-chat__header h2 { color: #1a1206; }
.guide-palette-night .guide-chat__close {
  background: rgba(26, 18, 6, 0.18);
  color: #1a1206;
}
.guide-palette-night .guide-chat__close:hover,
.guide-palette-night .guide-chat__close:focus-visible { background: rgba(26, 18, 6, 0.32); }
.guide-palette-night .guide-chat__form { border-top-color: rgba(255, 255, 255, 0.16); }
.guide-palette-night .guide-chat__bubble--answer {
  background: #23262d;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
.guide-palette-night .guide-chat__bubble--question {
  background: var(--guide-theme-accent);
  color: #1a1206;
}
.guide-palette-night .guide-chat__input {
  background: #23262d;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink);
}

/* Floating launcher button — the primary discoverability affordance. Fixed
   bottom-right, thumb-reachable on mobile, toggles the popup chat open/closed. */
.guide-chat-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font: 700 15px/1 var(--font-sans);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.guide-chat-fab:hover,
.guide-chat-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.guide-chat-fab:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.guide-chat-fab__icon { font-size: 18px; line-height: 1; }
.guide-chat-fab[hidden] { display: none; }
.guide-palette-night .guide-chat-fab {
  background: var(--guide-theme-accent);
  color: #1a1206;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 520px) {
  /* On narrow screens keep the label but compact it. */
  .guide-chat-fab { padding: 12px 16px; font-size: 14px; }
  /* The popup spans the width of the viewport and sits above the launcher. */
  .guide-chat--popup {
    right: 12px;
    left: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-height: min(72vh, calc(100vh - 130px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .guide-chat-fab { transition: none; }
  .guide-chat-fab:hover,
  .guide-chat-fab:focus-visible { transform: none; }
  .guide-chat--popup { transition: none; }
}

/* =========================================================================
   GROW-004 — «Powered by Hostora» watermark
   Discreet, centered footer on public menus + guides. Adapts to the active
   (light/dark) surface via currentColor + low opacity.
   ========================================================================= */
.powered-by {
  margin-top: 8px;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}
.powered-by__link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.powered-by__link:hover,
.powered-by__link:focus-visible {
  opacity: 1;
}
.powered-by__pre {
  color: var(--muted, #6b6b6b);
  font-weight: 500;
}
.powered-by__brand {
  font-weight: 800;
  letter-spacing: 0.01em;
}
@media (prefers-reduced-motion: reduce) {
  .powered-by__link { transition: none; }
}

/* =========================================================================
   POLISH-001 — UX quick wins (final polish pass)
   ========================================================================= */

/* .empty-state — used in ~21 admin templates but previously unstyled, so it
   rendered as bare text. Gives the "nothing here yet" zones a proper card
   look consistent with the Airbnb-inspired admin chrome. */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  text-align: center;
  color: var(--muted, #6b6b6b);
  background: var(--panel, #fff);
  border: 1px dashed var(--line, #ebebeb);
  border-radius: 14px;
}
.empty-state h1,
.empty-state h2,
.empty-state h3,
.empty-state__title {
  margin: 0;
  color: var(--ink, #1f1f1f);
  font-size: 1.05rem;
  font-weight: 700;
}
.empty-state p,
.empty-state__text {
  margin: 0;
  max-width: 46ch;
  font-size: 0.92rem;
  line-height: 1.5;
}
.empty-state .button,
.empty-state__action {
  margin-top: 8px;
}
/* Icon/emoji lead-in occasionally placed first in the empty-state. */
.empty-state__icon {
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.7;
}

/* REVIEW2 #10: "ready text" helper that sits directly under the guide-section
   textarea. Brand-green accent rail ties it to the field it fills; the buttons
   each drop their text into the box above on click. */
.guide-writing-helper {
  margin: 10px 0 4px;
  padding: 14px 16px;
  background: #f4f7f5;
  border: 1px solid #dce5e0;
  border-left: 3px solid #0b4f55;
  border-radius: 10px;
}
.guide-writing-helper__intro {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #2c3a39;
  line-height: 1.45;
}
.guide-writing-helper__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.guide-writing-helper__tips {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #536467;
  font-size: 0.82rem;
  line-height: 1.5;
}
.guide-writing-helper__tips li { margin: 2px 0; }

/* Inputs ≥16px on mobile so iOS Safari doesn't zoom the viewport on focus.
   Kept in a max-width query so desktop density (14px) is preserved. Covers
   both admin (.admin-form) and any public/auth/contact form controls. */
@media (max-width: 640px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  textarea,
  select {
    font-size: 16px;
  }
}

/* Dismissible flash toasts (paired with js/flash-dismiss.js). The button is
   injected by JS, so it only appears when enhancement is available. */
.flash-messages .flash-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 40px;
  transition: opacity 220ms ease, transform 220ms ease;
}
.flash-item__close {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted, #6b6b6b);
  cursor: pointer;
  pointer-events: auto;
}
.flash-item__close:hover,
.flash-item__close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink, #1f1f1f);
}
.flash-item--leaving {
  opacity: 0;
  transform: translateY(-6px);
}

/* Real SVG social icons (replaces text-glyph IG/f/♪/TA placeholders). */
.business-social-strip__svg {
  width: 20px;
  height: 20px;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .flash-messages .flash-item { transition: none; }
}
