/* Hero: CTA under gold rule (same pattern as home reservation CTA) */
.ev-page .hero-content .hero-cta {
  display: inline-block;
  margin-top: 0.25rem;
}

.ev-page .hero-cta-note {
  margin-top: 0.85rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
  color: #fff;
}

/* Proof strip */
.ev-proof {
  background: #1a1410;
  color: #e8dfc8;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(196, 154, 60, 0.25);
}

.ev-proof__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ev-proof__n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 300;
  color: #C49A3C;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.ev-proof__t {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 16em;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .ev-proof__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Stage blocks inside the calculator */
.ev-stage {
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
}

.ev-stage:first-of-type {
  padding-top: 0;
}

.ev-stage:last-of-type {
  border-bottom: none;
}

.ev-stage__title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 0.35rem;
}

.ev-stage__hint {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: #a89878;
  margin: 0 0 1rem;
  line-height: 1.5;
}

/* Budget = orientation only */
.ev-page .lb-events__budget-label {
  color: #C49A3C;
}

/* A stage before its turn does not exist; its turn arrives with a soft fade. */
.ev-stage.is-locked {
  display: none;
}

.ev-stage {
  animation: evStageIn 0.45s ease-out;
}

@keyframes evStageIn {
  from { opacity: 0; transform: translateY(0.6rem); }
  to { opacity: 1; transform: none; }
}

.ev-pkg-gate-msg {
  display: none;
}

/* An availability whisper with nothing to say stays entirely off screen. */
.ev-date-avail:empty {
  display: none;
}

/* Party + date: two columns, labels and controls aligned */
.ev-stage--party-date .lb-events__controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: flex-start;
}

.ev-page .lb-events__date-field {
  flex: 0 1 auto;
  min-width: 15rem;
}

.ev-page .lb-events__party {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
}

.ev-page .lb-events__party label,
.ev-page .lb-events__date-field .lb-opera__date-label {
  display: block;
  min-height: 1.1rem;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.ev-page .lb-events__stepper {
  min-height: 48px;
}

.ev-page .lb-events__date-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  max-width: 18rem;
  flex: none;
}

.ev-page .lb-opera__date-block,
.ev-page .lb-events__date-block {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: none;
}

.ev-page .lb-opera__date-trigger {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.ev-page .lb-events__cal.lb-opera__cal {
  z-index: 40;
  width: min(360px, calc(100vw - 2rem));
  max-width: 360px;
  box-sizing: border-box;
}

.ev-page .lb-events__quote--inline {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  box-shadow: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

/* The whole card wears the verdict: green when the date is free, red when
   it is gone; the pill inside stays as its anchor. */
.ev-page .lb-events__quote--inline[data-avail="likely"] {
  border-color: rgba(140, 200, 130, 0.5);
  background: rgba(50, 110, 65, 0.14);
}

.ev-page .lb-events__quote--inline[data-avail="unavailable"] {
  border-color: rgba(180, 80, 80, 0.45);
  background: rgba(90, 40, 40, 0.12);
}

/* Compact avail under date — same width as date trigger */
/* The verdict needs no caption: the halo and the dot inside the pill are it.
   The element stays in the DOM because the state machine reads through it. */
.ev-date-avail {
  display: none;
}

/* Capacity reminder in total panel (restored, compact) */
.ev-page .lb-events__quote .lb-events__avail {
  display: block !important;
  margin: 0.85rem 0 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  line-height: 1.35;
  border-radius: 6px;
  text-align: center;
}

.ev-page .lb-events__quote .lb-events__avail--likely {
  background: rgba(50, 110, 65, 0.38) !important;
  border: 1px solid rgba(140, 200, 130, 0.45);
  color: #e0f5dc !important;
}

.ev-page .lb-events__quote .lb-events__avail--limited {
  background: rgba(120, 90, 30, 0.35) !important;
  border: 1px solid rgba(196, 154, 60, 0.45);
  color: #f5e6c0 !important;
}

.ev-page .lb-events__quote .lb-events__avail--unavailable {
  background: rgba(90, 40, 40, 0.38) !important;
  border: 1px solid rgba(180, 80, 80, 0.45);
  color: #f0c8c8 !important;
}

@media (max-width: 640px) {
  .ev-stage--party-date .lb-events__controls-row {
    grid-template-columns: 1fr;
  }

  .ev-page .lb-events__date-field {
    max-width: none;
  }
}

/* One hero total only — drop per-line amounts and repeated offer total */
.ev-page .lb-events__quote-lines li {
  display: flex;
  justify-content: center;
}

.ev-page .lb-events__quote-lines li span:last-child {
  display: none;
}

.ev-page .lb-events__offer-total {
  display: none !important;
}

/* Date trigger feedback when selection changes */
.ev-page .lb-opera__date-trigger.is-date-flash {
  box-shadow: 0 0 0 2px rgba(196, 154, 60, 0.75);
  border-color: #C49A3C;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ev-page .lb-opera__date-trigger.is-date-set .lb-opera__date-value {
  color: #f0e6c8;
  font-weight: 500;
}

/* Hide client-side budget auto-stack (RMS should propose; not invented on site) */
.ev-page #evBudgetSuggest {
  display: none !important;
}

/* Success card */
.ev-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(196, 154, 60, 0.45);
  background: linear-gradient(165deg, rgba(45, 74, 122, 0.22), rgba(26, 20, 16, 0.9));
  border-radius: 6px;
}

.ev-success.is-visible {
  display: block;
}

.ev-success__kicker {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C49A3C;
  margin: 0 0 0.5rem;
}

.ev-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.65rem;
  color: #f0e6c8;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.ev-success__body {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #c8b88a;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.ev-success__list {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: #e0d4b0;
  line-height: 1.7;
}

.ev-success__phone {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: #C49A3C;
  letter-spacing: 0.04em;
}

/* Mobile density */
@media (max-width: 767px) {
  .ev-page .lb-events__budget-bands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }


  .ev-page .lb-events__pkg-grid {
    grid-template-columns: 1fr;
  }

  .ev-page .hero-status {
    display: none;
  }
}

/* ── Hero quick start ─────────────────────────────────────────────────── */

.ev-hero-mini {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 560px) {
  .ev-hero-mini {
    gap: 0.5rem;
  }
}

/* ── Budget: custom amount + band tag ─────────────────────────────────── */

.ev-bands-loading {
  color: rgba(245, 234, 210, 0.6);
  font-size: 0.9rem;
}

/* Budget chips: one grid, one size; the tag is a ribbon on the border. */
.ev-page .lb-events__budget-bands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 720px) {
  .ev-page .lb-events__budget-bands {
    grid-template-columns: repeat(3, minmax(0, 13rem));
    justify-content: center;
  }
}

.ev-page .lb-events__budget-chip {
  position: relative;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.95rem;
  box-sizing: border-box;
  border-color: rgba(196, 154, 60, 0.55);
  background: rgba(20, 15, 8, 0.45);
  backdrop-filter: blur(4px);
  color: rgba(245, 234, 210, 0.75);
}

.ev-page .lb-events__budget-chip:hover {
  border-color: #C49A3C;
  color: #fff;
}

.ev-page .lb-events__budget-chip.is-selected {
  border-color: #C49A3C;
  background: rgba(196, 154, 60, 0.16);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(196, 154, 60, 0.4);
}

.ev-chip-tag {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.5rem;
  background: #221a10;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #C49A3C;
  white-space: nowrap;
}


/* ── Proposal cards ───────────────────────────────────────────────────── */

.ev-proposals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

/* The whole card is the control: tap it and it becomes the selection. */
.ev-proposal {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(196, 154, 60, 0.35);
  border-radius: 0.55rem;
  background: rgba(20, 15, 8, 0.5);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ev-proposal:hover {
  border-color: rgba(196, 154, 60, 0.7);
  background: rgba(196, 154, 60, 0.07);
}

.ev-proposal:focus-visible {
  outline: 2px solid #C49A3C;
  outline-offset: 2px;
}

.ev-proposal.is-recommended {
  border-color: #C49A3C;
  box-shadow: 0 0 0 1px rgba(196, 154, 60, 0.4);
}

.ev-proposal.is-picked {
  border-color: #C49A3C;
  background: rgba(196, 154, 60, 0.12);
  box-shadow: 0 0 0 1px rgba(196, 154, 60, 0.4);
}

.ev-proposal__role {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C49A3C;
  margin-bottom: 0.45rem;
}

.ev-proposal__names {
  color: #f5ead2;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.ev-proposal__price {
  color: rgba(245, 234, 210, 0.85);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.ev-proposal__price strong {
  color: #fff;
  font-size: 1.05rem;
}

.ev-proposal__note {
  color: rgba(245, 234, 210, 0.65);
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* ── Form helpers ─────────────────────────────────────────────────────── */

.ev-field-hint {
  margin-top: 0.35rem;
  color: #e0a46a;
  font-size: 0.8rem;
}

.ev-type-other {
  margin-top: 0.5rem;
}

/* ── Hero calendar: fixed popover, always fully inside the viewport ──── */

.ev-hero-mini {
  position: relative;
}

.ev-hero-cal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Above the navbar (100), drawer (200) and page modals (300):
     while the picker is open, nothing may paint over it. */
  z-index: 400;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(80vh, 33rem);
  overflow: auto;
}

/* One panel skin for every floating selector (type set the tone). */
.ev-page .lb-opera__cal,
.ev-hero-cal,
.ev-type-panel {
  background: #1f1810;
  border: 1px solid rgba(196, 154, 60, 0.45);
  border-radius: 0.9rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}

/* ── One pill language: hero and calculator controls match ─────────────── */

.ev-hero-mini__party,
.ev-hero-mini__date,
.ev-page .lb-events__stepper,
.ev-page .lb-events__date-block .lb-opera__date-trigger {
  height: 3.4rem;
  border: 1px solid rgba(196, 154, 60, 0.55);
  border-radius: 999px;
  background: rgba(20, 15, 8, 0.45);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}

.ev-hero-mini__party {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.5rem;
  /* Grid tracks widen for the CTA below; the pills keep their own size and
     hug the middle instead of stretching into leftover space. */
  justify-self: end;
}

.ev-hero-mini__date {
  justify-self: start;
}

.ev-hero-mini__party button,
.ev-page .lb-events__stepper-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: #C49A3C;
  color: #241a0e;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.ev-hero-mini__party button:hover,
.ev-page .lb-events__stepper-btn:hover {
  background: #d4ac52;
}

.ev-hero-mini__n {
  min-width: 2ch;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.ev-hero-mini__unit {
  color: rgba(245, 234, 210, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ev-hero-mini__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  color: #f5ead2;
  font-size: 0.95rem;
  cursor: pointer;
}

.ev-hero-mini__date.is-set,
.ev-hero-mini__date:hover {
  border-color: #C49A3C;
  color: #fff;
  background: rgba(196, 154, 60, 0.2);
}

.ev-page .lb-events__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.5rem;
}

.ev-page .lb-events__stepper input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  width: 3.2ch;
}

.ev-page .lb-events__date-block .lb-opera__date-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.35rem;
  color: #f5ead2;
}

/* CTA always on its own row, under the party and date pills. */
.ev-hero-mini__go {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(22rem, 100%);
}

/* The chosen date reads as a made decision. */
.ev-hero-mini__date.is-set .lb-opera__date-value {
  font-weight: 600;
}

/* One quiet line instead of three prefilled fields. */
.ev-lead-summary {
  padding: 0.65rem 0.9rem;
  border: 1px dashed rgba(196, 154, 60, 0.4);
  border-radius: 0.5rem;
  color: rgba(245, 234, 210, 0.85);
  font-size: 0.9rem;
}

.ev-lead-summary a {
  color: #C49A3C;
  margin-left: 0.4rem;
}

.ev-optional {
  color: rgba(245, 234, 210, 0.5);
  font-size: 0.78em;
  letter-spacing: 0.02em;
  text-transform: none;
}


/* ── The verdict lives on the date pill: a colored halo ───────────────── */

@keyframes evAvailPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes evAvailBloom {
  0% { box-shadow: 0 0 0 0 rgba(111, 191, 115, 0); }
  45% { box-shadow: 0 0 26px 6px rgba(111, 191, 115, 0.75); }
  100% { box-shadow: 0 0 16px 2px rgba(111, 191, 115, 0.45); }
}

.ev-page .avail-checking {
  animation: evAvailPulse 1.1s ease-in-out infinite;
}

/* The state dot lives inside both date pills, before the text. */
.ev-page .avail-checking::before,
.ev-page .avail-likely::before,
.ev-page .avail-limited::before,
.ev-page .avail-unavailable::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-right: 0.6rem;
  flex: 0 0 auto;
}

.ev-page .avail-checking::before {
  background: rgba(196, 154, 60, 0.85);
}

.ev-page .avail-likely::before {
  background: #6fbf73;
  box-shadow: 0 0 8px rgba(111, 191, 115, 0.9);
}

.ev-page .avail-limited::before {
  background: #C49A3C;
  box-shadow: 0 0 8px rgba(196, 154, 60, 0.9);
}

.ev-page .avail-unavailable::before {
  background: #c06a5e;
  box-shadow: 0 0 8px rgba(192, 106, 94, 0.8);
}

.ev-page .avail-likely {
  border-color: rgba(140, 210, 145, 0.9) !important;
  animation: evAvailBloom 1.4s ease-out forwards;
}

.ev-page .avail-limited {
  border-color: rgba(212, 172, 82, 0.95) !important;
  box-shadow: 0 0 14px 2px rgba(196, 154, 60, 0.5);
}

.ev-page .avail-unavailable {
  border-color: rgba(192, 106, 94, 0.85) !important;
  box-shadow: 0 0 14px 2px rgba(192, 106, 94, 0.4);
}

/* Event type: a house dropdown, pill trigger + dark panel, like the calendar. */
.ev-type-field {
  position: relative;
}

.ev-type-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 3.4rem;
  min-width: 16rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(196, 154, 60, 0.55);
  border-radius: 999px;
  background: rgba(20, 15, 8, 0.45);
  backdrop-filter: blur(4px);
  color: rgba(245, 234, 210, 0.75);
  font-size: 0.95rem;
  cursor: pointer;
  box-sizing: border-box;
}

.ev-type-trigger.has-value {
  color: #fff;
}

.ev-type-trigger:hover {
  border-color: #C49A3C;
}

.ev-type-trigger svg {
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  color: #C49A3C;
  flex: 0 0 auto;
}

.ev-type-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 60;
  min-width: 100%;
  padding: 0.4rem;
  border: 1px solid rgba(196, 154, 60, 0.45);
  border-radius: 0.9rem;
  background: #1f1810;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}

.ev-type-option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.9rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #f5ead2;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
}

.ev-type-option:hover {
  background: rgba(196, 154, 60, 0.18);
}

.ev-type-option.is-selected {
  color: #C49A3C;
}

/* The request section exists only once the calculator has done its job. */
.lb-events-lead.is-locked {
  display: none;
}

.lb-events-lead {
  animation: evStageIn 0.45s ease-out;
}

/* The hero note wears the verdict's colour. */
#evHeroNote[data-avail="checking"] {
  color: rgba(245, 234, 210, 0.7);
}

#evHeroNote[data-avail="likely"] {
  color: #a9dfa8;
}

#evHeroNote[data-avail="limited"] {
  color: #e6c87e;
}

#evHeroNote[data-avail="unavailable"] {
  color: #e8a79b;
}

/* The hand-picked package list folds behind one quiet line. */
.ev-diy {
  margin-top: 1.4rem;
}

.ev-diy summary {
  cursor: pointer;
  color: #C49A3C;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  list-style: none;
}

.ev-diy summary::-webkit-details-marker {
  display: none;
}

.ev-diy summary::after {
  content: ' ▾';
  font-size: 0.8em;
}

.ev-diy[open] summary::after {
  content: ' ▴';
}

.ev-diy > .lb-events__pkgs {
  margin-top: 1rem;
}


/* FAQ centred like the main page (faq-list: 720px, auto margins). */
.ev-page #ev-faq .lb-events-band__inner {
  text-align: center;
}

.ev-page .lb-events-faq {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

/* The calculator reads as one centred column, like the rest of the page. */
#evEstimator .lb-opera__label,
#evEstimator .lb-opera__heading,
#evEstimator .ev-stage__title,
#evEstimator .ev-stage__hint,
#evEstimator .lb-events__budget-label,
#evEstimator .ev-diy summary,
#ev-lead .lb-opera__label,
#ev-lead .lb-opera__heading,
#ev-lead .lb-opera__lead {
  text-align: center;
}

.ev-stage--party-date .lb-events__controls-row {
  justify-content: center;
}

/* The questions themselves sit centred, matching the heading above them. */
.ev-page .lb-events-faq summary,
.ev-page .lb-events-faq details p {
  text-align: center;
}

/* The dish carousel breathes full-bleed between step 1 and the budget,
   close under the pills, closed by its own hairline. */
.ev-dishes-inline {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

/* Same breath above and below the plates, hairline to hairline. */
.ev-dishes-inline .lb-featured {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ev-dishes-inline::after {
  content: '';
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(196, 154, 60, 0.18);
}

/* Everything inside the calculator sits on the centre line. */
#evEstimator .lb-events__budget-bands {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  #evEstimator .lb-events__budget-bands {
    width: 100%;
  }
}

#evEstimator .lb-events__pkg-kind {
  text-align: center;
}

#evEstimator .lb-events__pkg-grid {
  /* auto-FIT, not auto-fill: empty tracks collapse, so three cards sit as a
     centred trio instead of hugging the left of a five-track grid. */
  grid-template-columns: repeat(auto-fit, minmax(15rem, 20rem));
  justify-content: center;
}

#evEstimator .lb-events__pkg-none {
  display: table;
  margin: 0.7rem auto 0;
}

#evEstimator .ev-proposals {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 20rem));
  justify-content: center;
}

#evEstimator .lb-events__quote--inline {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

/* The total card reads like the rest of the page: one centred column. */
#evEstimator .lb-events__quote-total-label,
#evEstimator .lb-events__offer,
#evEstimator .lb-events__disclaimer {
  text-align: center;
}

#evEstimator .lb-events__quote-row {
  justify-content: center;
}


/* The shrunk budget block itself rides the centre line. */
.ev-page .lb-events__budget {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* The first question opens with the same hairline the others carry below. */
.ev-page .lb-events-faq details:first-of-type {
  border-top: 1px solid rgba(255, 253, 248, 0.1);
}


/* 1+3. Sections start closer to what precedes them, same rhythm everywhere. */
#evEstimator.lb-opera {
  padding-top: 2.5rem;
}

#ev-faq.lb-events-band {
  padding-top: 2rem;
}

/* 4. The calculator calendar floats centred like the hero one, every screen. */
.ev-page #evCal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 400;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(80vh, 33rem);
  overflow: auto;
}

/* Cormorant's default figures are old-style (small 1, descending 3 and 9),
   hard to read in prices. Same typeface, lining figures: full-height digits. */
.ev-page,
.ev-page * {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* Free text for the "other" event type, revealed on selection */
.ev-type-other {
  margin-top: 0.6rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(42, 33, 24, 0.25);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: inherit;
}
.ev-type-other:focus { outline: none; border-color: rgba(42, 33, 24, 0.55); }

/* Ad deep-link anchors land below the fixed navbar */
.ev-anchor { display: block; scroll-margin-top: 110px; }
