.links-switchboard-page {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

.links-switchboard-page::before,
.links-switchboard-page::after {
  display: none;
}

.links-switchboard-page h1,
.links-switchboard-page h2,
.links-switchboard-page h3 {
  letter-spacing: 0;
}

.links-switchboard-page button,
.links-switchboard-page input {
  font: inherit;
}

.lucide-icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.links-wrap {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: 20px;
}

.links-header {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.links-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.links-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
}

.links-brand img {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  object-fit: contain;
}

.links-brand span,
.links-brand strong,
.links-brand small {
  display: block;
}

.links-brand strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.links-brand small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
}

.links-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.links-header-action .lucide-icon {
  width: 18px;
  height: 18px;
}

.booking-section {
  padding: 34px 0 26px;
  background: var(--paper);
}

.booking-intro {
  max-width: 790px;
}

.links-kicker {
  margin-bottom: 7px;
  color: var(--ember-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-intro h1 {
  max-width: 1000px;
  margin-bottom: 12px;
  font-size: clamp(43px, 7vw, 64px);
  line-height: 0.98;
}

.booking-summary {
  max-width: 730px;
  color: var(--ink-soft);
  font-size: 18px;
}

.mobile-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 44px;
  margin-top: 12px;
  color: var(--ember-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-scroll-cue .lucide-icon {
  width: 16px;
  height: 16px;
}

.mobile-scroll-cue:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.event-spotlight,
.lead-capture {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
}

.event-spotlight {
  border-top: 5px solid var(--teal-dark);
  box-shadow: var(--shadow-soft);
}

.event-spotlight.is-sold-out {
  border-top-color: var(--ember-strong);
}

.event-spotlight.is-empty {
  border-top-color: var(--brass-dark);
}

.event-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.event-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--teal-dark);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.is-sold-out .event-status {
  background: var(--ember-dark);
}

.is-empty .event-status {
  background: var(--brass-dark);
}

.event-system {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.event-spotlight h2,
.lead-capture h2 {
  margin-bottom: 8px;
  font-size: 29px;
  line-height: 1.08;
}

.event-facts {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.event-facts li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.event-facts .lucide-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--ember-dark);
}

.event-note {
  margin-bottom: 12px;
  padding: 8px 10px;
  border-left: 3px solid var(--brass-dark);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 14px;
}

.links-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.links-button .lucide-icon {
  width: 18px;
  height: 18px;
}

.links-button:hover {
  transform: translateY(-1px);
}

.links-button:active {
  transform: translateY(0);
}

.links-button-primary {
  width: 100%;
  border-color: var(--brass-dark);
  background: var(--brass);
  color: var(--ink);
}

.links-button-primary:hover {
  background: var(--paper-3);
}

.links-button-ink {
  background: var(--void);
  color: var(--cream);
}

.links-button-ink:hover {
  background: var(--night-2);
}

.links-button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.links-button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--void);
}

.links-text-link {
  display: inline-block;
  margin-top: 13px;
  color: var(--ember-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-capture {
  background: var(--card);
}

.lead-capture > p:not(.links-kicker) {
  color: var(--ink-soft);
}

.lead-form {
  margin-top: 20px;
}

.lead-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.lead-form-row {
  display: grid;
  gap: 9px;
}

.input-shell {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid rgba(23, 16, 11, 0.42);
  border-radius: var(--radius-sm);
  background: white;
}

.input-shell .lucide-icon {
  width: 18px;
  height: 18px;
  color: var(--ink-muted);
}

.input-shell input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.input-shell:focus-within {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 2px rgba(54, 81, 58, 0.18);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.privacy-note,
.form-status {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 12px;
}

.form-status {
  min-height: 19px;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--ember-dark);
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status a {
  font-weight: 800;
  text-decoration: underline;
}

.lead-events-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-events-link .lucide-icon {
  width: 16px;
  height: 16px;
}

.tentative-strip {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.62);
}

.tentative-strip[hidden] {
  display: none;
}

.tentative-heading {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.tentative-dot {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--brass-dark);
}

.tentative-heading strong,
.tentative-heading span {
  display: block;
}

.tentative-heading strong {
  font-family: var(--serif);
  font-size: 17px;
}

.tentative-heading span {
  color: var(--ink-muted);
  font-size: 12px;
}

.tentative-strip ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tentative-strip li {
  min-width: 0;
  padding-left: 9px;
  border-left: 2px solid var(--line);
}

.tentative-strip li strong,
.tentative-strip li span {
  display: block;
}

.tentative-strip li strong {
  font-size: 13px;
}

.tentative-strip li span {
  color: var(--ink-muted);
  font-size: 11px;
}

.also-booking {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
}

.also-booking-shell {
  padding-block: 14px;
}

.also-booking-list {
  display: grid;
}

.also-booking-inner {
  display: grid;
  gap: 12px;
  padding-block: 10px;
}

.also-booking-inner + .also-booking-inner {
  border-top: 1px solid var(--line);
}

.also-booking h2 {
  margin-bottom: 3px;
  font-size: 19px;
  line-height: 1.1;
}

.also-booking p:not(.links-kicker) {
  color: var(--ink-muted);
  font-size: 13px;
}

.also-booking .links-button {
  min-height: 42px;
  padding-block: 8px;
}

.review-callout {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.review-callout-inner {
  display: grid;
  gap: 14px;
  padding-block: 20px;
}

.review-callout-copy {
  display: grid;
  gap: 4px;
}

.review-callout h2 {
  font-size: 22px;
  line-height: 1.12;
}

.review-callout p:not(.links-kicker) {
  max-width: 54rem;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-callout .links-button {
  width: fit-content;
}

.review-callout .links-button .lucide-icon:first-child {
  color: var(--brass-dark);
}

.utility-section {
  padding: 40px 0;
  background: var(--card);
}

.utility-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.utility-heading h2,
.identity-section h2,
.share-panel h2 {
  font-size: 30px;
  line-height: 1.08;
}

.utility-heading > p {
  color: var(--ink-soft);
}

.utility-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.utility-links a {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 20px;
  gap: 11px;
  align-items: center;
  min-height: 66px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.utility-links a > .lucide-icon:first-child {
  width: 20px;
  height: 20px;
  color: var(--ember-dark);
}

.utility-links a:hover {
  background: var(--paper);
}

.utility-links strong,
.utility-links small {
  display: block;
}

.utility-links small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
}

.utility-links .utility-arrow {
  width: 17px;
  height: 17px;
  color: var(--ember-dark);
}

.identity-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.identity-inner {
  display: grid;
  gap: 20px;
  padding-block: 32px;
}

.identity-inner > img {
  width: 104px;
  height: 104px;
  border: 4px solid var(--card);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 0 0 1px var(--line);
}

.identity-section p:not(.links-kicker) {
  margin-top: 10px;
  color: var(--ink-soft);
}

.identity-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.identity-actions .links-text-link {
  margin-top: 0;
}

.share-tools {
  border-top: 1px solid var(--line);
  background: var(--card);
}

.share-tools summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
}

.share-tools summary::-webkit-details-marker {
  display: none;
}

.share-tools summary span,
.share-tools summary strong,
.share-tools summary small {
  display: block;
}

.share-tools summary small {
  color: var(--ink-muted);
  font-size: 12px;
}

.share-chevron {
  width: 21px;
  height: 21px;
  transition: transform 160ms ease;
}

.share-tools[open] .share-chevron {
  transform: rotate(180deg);
}

.share-panel {
  display: grid;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 32px;
}

.share-panel p {
  margin-top: 9px;
  color: var(--ink-soft);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button .lucide-icon {
  width: 19px;
  height: 19px;
}

.share-status {
  min-height: 22px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.qr-grid figure {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.qr-grid img {
  width: min(100%, 160px);
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-grid figcaption {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.links-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--night);
  color: var(--cream);
}

.links-footer .links-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  min-height: 66px;
  align-items: center;
  font-size: 13px;
}

@media (min-width: 720px) {
  .mobile-scroll-cue {
    display: none;
  }

  .links-wrap {
    padding-inline: 28px;
  }

  .booking-section {
    padding-top: 48px;
  }

  .conversion-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }

  .lead-form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tentative-strip {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .also-booking-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .review-callout-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .utility-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: end;
  }

  .utility-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .identity-inner {
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
  }

  .identity-inner > img {
    width: 116px;
    height: 116px;
  }

  .share-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .event-spotlight,
  .lead-capture {
    padding: 24px;
  }

  .booking-section {
    padding-bottom: 34px;
  }

  .utility-section {
    padding-block: 52px;
  }
}

@media (max-width: 419px) {
  .links-brand small {
    display: none;
  }

  .links-header-action span {
    display: none;
  }

  .links-button {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .links-button {
    transition: none;
  }
}
