/* FONTS */

@font-face {
  font-family: 'Lexend';
  src: url('/fonts/Lexend-Variable.woff2') format('woff2-variations'),
       url('/fonts/Lexend-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
}

/* ─── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --ink: #1f1c1a;
  --charcoal: #26211f;

  --cream: #f7f1ea;
  --paper: #fffaf4;
  --bronze: #a8763e;
  --terracotta: #36859d;
  --sage: #7e8b73;
  --line: rgba(31, 28, 26, 0.14);
  --shadow: 0 28px 80px rgba(31, 28, 26, 0.18);
  --ha-blue: #4E87A0;
  --ha-yellow: #eaaa00;
  --ha-purple: #24135F;
  --ha-brown: #473729;

  --nav-w: 220px;
  --panel-w: 360px;
  --panel-handle-h: 56px;
  --mobile-nav-h: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  overflow-x: clip;
}

button,
input,
select {
  font: inherit;
  cursor: pointer;
}

/* ─── App shell ───────────────────────────────────────────────────────────── */
/* Just a wrapper — layout is handled by fixed positioning on nav/panel
   and matching margins on the centre content. No transitions here. */
.app-shell {
  min-height: 100vh;
}

/* ─── Left nav — fixed ────────────────────────────────────────────────────── */
.section-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--nav-w);
  height: 100vh;
  /* background: var(--charcoal); */
  background: var(--ha-blue);
  color: var(--cream);
  padding: 1.5rem;
  z-index: 20;
  overflow-y: auto;
}

.nav-brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 241, 234, .36);
  border-radius: 50%;
  font-family: Georgia, serif;
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 900;
}

.nav-links {
  display: grid;
  gap: .3rem;
  margin-top: 1.2rem;
}

.nav-link {
  border: 0;
  border-bottom: 1px solid rgba(247, 241, 234, .14);
  background: transparent;
  color: var(--cream);
  text-align: left;
  padding: .92rem 0;
  text-transform: uppercase;
  letter-spacing: .13em;
  /* font-size: .72rem; */
  font-size: .82rem;
}

.nav-link:hover {
  color: var(--ha-yellow);
}

.drawer-button {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid rgba(247, 241, 234, .25);
  background: transparent;
  color: var(--cream);
  padding: .95rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .72rem;
  font-weight: 900;
}

.drawer-button span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: .5rem;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
}

/* ─── Centre content ──────────────────────────────────────────────────────── */
/* Margins match the fixed nav and panel widths */
.menu-content {
  margin-left: var(--nav-w);
  margin-right: var(--panel-w);
  padding: clamp(2rem, 5vw, 6rem);
  transition: margin-right 280ms ease;
}

.app-shell.panel-dismissed .menu-content {
  margin-right: 0;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: top;
  min-height: 82vh;
  margin-bottom: 4rem;
}

.hero h1,
.section-title,
.dialog-body h2,
.inquiry-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 4rem);
  margin: .7rem 0 1.2rem;
}

.hero p:last-child {
  max-width: 48ch;
  color: rgba(31, 28, 26, .7);
  line-height: 1.65;
  font-size: 1.08rem;
}

.hero-image-stack {
  position: relative;
  min-height: 480px;
}

.hero-main {
  width: 78%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: 36%;
  min-width: 170px;
  box-shadow: var(--shadow);
}

/* ─── Meal period sections ────────────────────────────────────────────────── */
.meal-period-section {
  scroll-margin-top: 2rem;
  margin-bottom: 6rem;
}

.meal-period-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.4rem;
  align-items: end;
  margin-bottom: 2.8rem;
}

.meal-period-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.section-title {
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  margin: .45rem 0 .8rem;
}

.section-summary {
  max-width: 58ch;
  color: rgba(31, 28, 26, .7);
  line-height: 1.65;
}

.meal-period-header:not(:has(.meal-period-image)) {
  grid-template-columns: 1fr;
}

/* ─── Categories ──────────────────────────────────────────────────────────── */
.categories-block {
  display: grid;
  gap: 3rem;
}

.category-heading {
  /* font-family: Georgia, serif; */
  font-family: 'Lexend', "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--bronze);
  margin: 0 0 1rem;
  /* padding-bottom: .6rem; */
  padding-top: .6rem;
}

.category-tagline {
  margin: -.5rem 0 1rem;
  color: rgba(31, 28, 26, .7);
  line-height: 1.6;
}

/* ─── Menu rows ───────────────────────────────────────────────────────────── */
.menu-list {
  /* border-top: 1px solid var(--line); */
}

.menu-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-row-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.menu-row-text h4 {
  margin: 0;
  font-family: Georgia, serif;
  /* font-family: 'Lexend', "Helvetica Neue", Arial, sans-serif; */
  font-size: 1.5rem;
  font-weight: 400;
  /* font-size: 1.2rem; */
  /* font-weight: 500; */
  letter-spacing: -.02em;
}

.menu-row-text p {
  margin: .45rem 0 0;
  color: rgba(31, 28, 26, .7);
  line-height: 1.55;
  max-width: 68ch;
}

.menu-row-actions {
  text-align: right;
  display: grid;
  align-content: start;
  gap: .75rem;
}

.price {
  color: var(--bronze);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 0.5rem;
}

.row-buttons {
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 900;
  padding: .35rem 0;
  border-bottom: 1px solid currentColor;
}

/* .add-button {
} */

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}

.tag {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .65rem;
  font-weight: 900;
}

/* ─── Right inquiry panel — fixed ────────────────────────────────────────── */
/* Visible on load by default. Dismissed state slides it off to the right. */
.inquiry-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: var(--panel-w);
  height: 100vh;
  background: var(--paper);
  border-left: 1px solid var(--line);
  z-index: 20;
  transform: translateX(0);
  transition: transform 280ms ease;
}

.app-shell.panel-dismissed .inquiry-panel {
  transform: translateX(100%);
}

/* Mobile handle — hidden on desktop */
.panel-handle {
  display: none;
}

/* Inner: three-zone flex column */
.panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top zone */
.panel-top {
  flex: 0 0 auto;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--line);
}

.panel-close {
  float: right;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: var(--ink);
}

.inquiry-panel h2 {
  font-size: 2.4rem;
  margin: .5rem 0;
}

.panel-intro {
  color: rgba(31, 28, 26, .68);
  line-height: 1.55;
  font-size: .88rem;
  margin: .4rem 0 0;
}

.panel-conditions {
  color: rgba(31, 28, 26, .68);
  line-height: 1.55;
  font-size: .68rem;
  font-style: italic;
  margin: .4rem 0 5;
}

.panel-conditions a {
  color: rgba(31, 28, 26, .68);
  line-height: 1.55;
  font-size: .68rem;
  font-style: italic;
  margin: .4rem 0 5;
}

.plan-toast {
  background: var(--charcoal);
  color: var(--cream);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .86rem;
  animation: softFade 1.8s ease both;
}

@keyframes softFade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  15%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

.quote-fields {
  margin: 1rem 0 0;
}

.quote-fields label {
  display: grid;
  gap: .35rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(31, 28, 26, .66);
}

.quote-fields input {
  border: 1px solid var(--line);
  background: #fff;
  padding: .85rem;
  color: var(--ink);
  width: 100%;
}

/* Middle zone: independently scrollable */
.panel-scroll {
  flex: 1 1 0;
  overflow-y: auto;
  padding: 0 2rem;
}

.selected-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.selected-item>div {
  display: grid;
  gap: .2rem;
}

.selected-item strong {
  font-family: Georgia, serif;
  font-weight: 400;
}

.selected-item small {
  display: block;
  color: rgba(31, 28, 26, .55);
  font-size: .75rem;
  line-height: 1.4;
}

.selected-item button {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--terracotta);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 .2rem;
}

.empty-state {
  color: rgba(31, 28, 26, .55);
  font-style: italic;
  padding: 1.2rem 0;
}

/* Bottom zone */
.panel-bottom {
  flex: 0 0 auto;
  padding: 1.2rem 2rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.estimate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
}

.estimate span {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 900;
}

.estimate strong {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--bronze);
}

.primary-button {
  width: 100%;
  border: 0;
  background: var(--ha-yellow);
  color: #fff;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 900;
}

/* ─── Details dialog ──────────────────────────────────────────────────────── */
.details-dialog {
  width: min(920px, calc(100vw - 2rem));
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.details-dialog::backdrop {
  background: rgba(31, 28, 26, .48);
}

.dialog-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.details-dialog img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.dialog-body {
  padding: 2.4rem;
}

.dialog-body h2 {
  font-size: 3.3rem;
  margin: .5rem 0 1rem;
}

.dialog-body p {
  line-height: 1.65;
  color: rgba(31, 28, 26, .72);
}

.dialog-category {
  margin: .2rem 0 0;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sage);
  font-weight: 700;
}

.dialog-price {
  margin: 1rem 0;
  color: var(--bronze) !important;
  font-weight: 900;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dialog-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--paper);
  font-size: 1.6rem;
}

/* Details dialog: no-image variant */
.dialog-grid-no-image {
  grid-template-columns: 1fr;
}

.dialog-grid-no-image img {
  display: none;
}

/* ─── Error state ─────────────────────────────────────────────────────────── */
.error-state {
  padding: 4rem 2rem;
  text-align: center;
  color: rgba(31, 28, 26, .5);
  font-style: italic;
}

/* ─── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 1080px) { /* 1180 */

  /* Nav: fixed horizontal strip at top */
  .section-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: var(--mobile-nav-h);
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    z-index: 20;
  }

  /* Hide decorative elements to save space in the compact strip */
  .section-nav .nav-brand,
  .section-nav>.eyebrow {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    flex: 1;
  }

  .nav-link {
    border: 0;
    border-right: 1px solid rgba(247, 241, 234, .14);
    padding: .65rem .85rem;
    white-space: nowrap;
    font-size: .68rem;
  }

  .drawer-button {
    display: none;
  }

  /* Centre: offset for fixed nav and fixed panel handle */
  .menu-content {
    margin-left: 0;
    margin-right: 0 !important;
    /* panel is fixed, not in flow */
    margin-top: var(--mobile-nav-h);
    padding-bottom: var(--panel-handle-h);
    transition: none;
  }

  /* Hero */
  .hero,
  .meal-period-header,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-stack {
    min-height: auto;
  }

  .hero-main {
    width: 100%;
    height: 420px;
  }

  .hero-card {
    display: none;
  }

  .meal-period-image img {
    height: 260px;
  }

  /* Panel: fixed at bottom, starts as handle bar only */
  .inquiry-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: var(--panel-handle-h);
    border-left: none;
    border-top: 1px solid var(--line);
    transform: none !important;
    /* always visible; ignore desktop dismiss */
    transition: height 320ms ease;
    z-index: 20;
  }

  /* Expanded state covers most of screen */
  .app-shell.panel-expanded .inquiry-panel {
    height: 92dvh;
  }

  /* Handle bar */
  .panel-handle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--panel-handle-h);
    padding: 0 1.5rem;
    border: 0;
    background: var(--ha-brown);
    color: var(--cream);
    flex-shrink: 0;
  }

  .handle-label {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
  }

  .handle-count {
    margin-left: .6rem;
    background: var(--bronze);
    color: #fff;
    font-size: .68rem;
    padding: .15rem .5rem;
    border-radius: 20px;
  }

  .handle-arrow {
    font-size: 1.1rem;
    transition: transform 240ms ease;
  }

  /* Panel inner: hidden until expanded */
  .panel-inner {
    height: calc(100% - var(--panel-handle-h));
    min-width: 0;
    opacity: 0;
    transition: opacity 200ms ease 60ms;
    pointer-events: none;
  }

  .app-shell.panel-expanded .panel-inner {
    opacity: 1;
    pointer-events: auto;
  }

  /* × close not needed on mobile; handle bar is the toggle */
  .panel-close {
    display: none;
  }
}

/* ─── Inquiry dialog ──────────────────────────────────────────────────────── */
.inquiry-dialog {
  width: min(780px, calc(100vw - 2rem));
  max-height: 92dvh;
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow-y: auto;
  position: relative;
}

.inquiry-dialog::backdrop {
  background: rgba(31, 28, 26, .52);
}

/* Close button: sticky so it stays hittable when the dialog is scrolled */
.inquiry-dialog .dialog-close {
  position: sticky;
  top: 0;
  float: right;
  display: block;
  margin: .6rem .6rem 0 0;
  z-index: 10;
  background: var(--paper);
  border-radius: 50%;
}

.inquiry-form-wrap,
.inquiry-thankyou {
  padding: 2.4rem 2.8rem 2.8rem;
}

.inquiry-dialog h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
  font-size: 2.6rem;
  margin: .4rem 0 .6rem;
  line-height: 1;
}

.inquiry-intro {
  color: rgba(31, 28, 26, .6);
  font-size: .88rem;
  margin: 0 0 1.8rem;
}

.inquiry-intro span[aria-hidden] {
  color: var(--terracotta);
  font-weight: 900;
}

/* Thank-you */
.inquiry-thankyou p {
  line-height: 1.7;
  color: rgba(31, 28, 26, .75);
  margin: 0 0 1rem;
}

.inquiry-thankyou a {
  color: var(--terracotta);
}

.inquiry-thankyou .primary-button {
  margin-top: 1.6rem;
}

/* Error banners */
.inquiry-rate-error,
.inquiry-submit-error {
  background: #fdf0ef;
  border-left: 3px solid var(--terracotta);
  padding: .9rem 1rem;
  font-size: .86rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  color: var(--ink);
}

/* Fieldsets */
.iq-sections {
  display: grid;
  gap: 2rem;
}

.iq-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.iq-fieldset legend {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 0 0 .55rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
  display: block;
}

/* Labels & inputs */
.iq-label {
  display: grid;
  gap: .35rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
  color: rgba(31, 28, 26, .66);
}

.iq-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: .8rem;
  color: rgba(31, 28, 26, .45);
}

.iq-hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: .8rem;
  color: rgba(31, 28, 26, .5);
  line-height: 1.45;
}

.req {
  color: var(--terracotta);
}

.iq-input {
  border: 1px solid var(--line);
  background: #fff;
  padding: .82rem .9rem;
  color: var(--ink);
  width: 100%;
  font-size: .95rem;
  font-family: inherit;
  appearance: auto;
}

.iq-input:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}

.iq-textarea {
  resize: vertical;
  min-height: 80px;
}

.iq-row {
  margin-bottom: 1rem;
}

.iq-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Honeypot */
.iq-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Date chips */
.iq-date-builder {
  display: grid;
  gap: .65rem;
}

.iq-date-inputs {
  display: flex;
  gap: .6rem;
}

.iq-date-inputs .iq-date-pick {
  flex: 1;
}

.iq-add-date-btn {
  flex-shrink: 0;
  width: 44px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
}

.iq-date-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.iq-date-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--cream);
  border: 1px solid rgba(31, 28, 26, .18);
  padding: .3rem .65rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.iq-chip-remove {
  border: 0;
  background: transparent;
  color: var(--terracotta);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}

/* Guestroom grid */
.iq-rooms-grid-wrap {
  margin-top: 1rem;
}

.iq-rooms-hint {
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(31, 28, 26, .6);
  margin: 0 0 .9rem;
  background: rgba(168, 118, 62, .08);
  border-left: 3px solid var(--bronze);
  padding: .7rem .9rem;
}

.iq-rooms-grid {
  display: grid;
  gap: .6rem;
}

.iq-room-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: .8rem;
  align-items: end;
}

.iq-room-checkout {
  grid-template-columns: 1fr auto auto;
  background: rgba(31, 28, 26, .03);
  border: 1px dashed rgba(31, 28, 26, .18);
  padding: .6rem .8rem;
}

.iq-room-label {
  display: grid;
  gap: .3rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  color: rgba(31, 28, 26, .55);
}

.iq-room-checkout-label {
  font-size: .76rem;
  font-style: italic;
  color: rgba(31, 28, 26, .5);
  align-self: center;
}

.iq-room-remove {
  border: 0;
  background: transparent;
  color: var(--terracotta);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0 .2rem;
  align-self: end;
  margin-bottom: .4rem;
}

.iq-add-night-btn {
  margin-top: .75rem;
  border: 1px dashed rgba(31, 28, 26, .25);
  background: transparent;
  color: var(--terracotta);
  padding: .6rem 1rem;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}

.iq-footer {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

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

/* Inquiry dialog — mobile */
@media (max-width: 700px) {

  .inquiry-form-wrap,
  .inquiry-thankyou {
    padding: 1.4rem 1.2rem 2rem;
  }

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

  .iq-room-row {
    grid-template-columns: 1fr 80px auto;
  }

  .iq-room-checkout {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Rich text long description — dialog rendering ──────────────────────── */
/* Scoped to dialog-body to work alongside existing .dialog-body p rules.
   The ll- classes are output by the LobbyLock rich text editor. */

#dialogDescription {
  color: inherit;
}

#dialogDescription p,
#dialogDescription ul,
#dialogDescription li {
  margin: 0 0 .45rem;
  line-height: 1.65;
  color: rgba(31, 28, 26, .72);
}

#dialogDescription ul {
  padding-left: 1.2rem;
  margin: .2rem 0 .6rem;
  list-style-type: disc;
}

#dialogDescription ul ul {
  padding-left: 1.2rem;
  margin: .15rem 0 .15rem;
  list-style-type: circle;
}

#dialogDescription li {
  margin: .2rem 0;
}

#dialogDescription li:has(> ul) {
  list-style: none;
}

#dialogDescription .ll-course {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--line);
  padding-bottom: .25rem;
  margin: .9rem 0 .45rem;
}

#dialogDescription .ll-option {
  color: var(--terracotta);
  font-style: italic;
}

#dialogDescription .ll-choice {
  color: rgba(31, 28, 26, .55);
  font-style: italic;
}

#dialogDescription .ll-dietary {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--sage);
}