@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}
:root {
  color-scheme: light;
  --booth-fill: #e3eee8;
  --booth-outline: #799385;
  --booth-text: #464f43;
  --paper: #f7f6f3;
  --ink: #335b49;
  --red: #ee3124;
  --red-strong: #ce281c;
  --teal: #335b49;
  --mint: #cef3eb;
  --seafoam: #70bab3;
  --line: #d8dfd8;
  --pmx-color-bg: var(--paper);
  --pmx-color-fg: var(--ink);
  --pmx-color-surface: #fff;
  --pmx-color-muted: #536d60;
  --pmx-color-border: var(--line);
  --pmx-color-on-accent: #fff;
  --pmx-color-focus: var(--ink);
  --pmx-font-heading: Poppins, sans-serif;
  --pmx-font-body: "Poppins", sans-serif;
  --pmx-color-link: var(--ink);
  --pmx-color-accent: var(--red);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
/* The skip-link target is a page region, not an interactive control. */
main#main:focus { outline: none; }

/* Keep focus behavior without browser or authored focus borders. */
:focus, :focus-visible { outline: none !important; }
button {
  color: inherit;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.guide {
  max-width: 1440px;
  margin: auto;
  padding: 0 64px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
}
h1,
h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 5.6vw, 76px);
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}
p {
  line-height: 1.65;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-save-count] {
  font-size: 10px;
  border: 1px solid currentColor;
  padding: 1px 5px;
  border-radius: 99px;
  margin-left: 4px;
}
.info-link {
  font-size: 13px;
  display: flex;
  gap: 18px;
}

.text-link {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-heading h2 {
  margin-top: 10px;
}
.room-badge {
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  gap: 8px;
  color: var(--teal);
  padding: 10px 15px;
  border: 1px solid #b3c4b9;
  border-radius: 99px;
  white-space: nowrap;
}

.search-field {
  display: flex;
  align-items: center;
  background: #fffef8;
  border: 1px solid #cbcdbf;
  border-radius: 6px;
  width: min(600px, 100%);
  gap: 15px;
  padding: 0 17px;
}
.search-field > span {
  font-size: 30px;
}
.search-field input {
  color: var(--ink);
  caret-color: var(--red);
  border: 0;
  background: none;
  width: 100%;
  height: 52px;
  font-size: 14px;
  min-width: 0;
  outline-offset: 0;
}
.result-count {
  font-size: 12px;
  white-space: nowrap;
  color: #676b60;
}
.filters {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 3px 3px 15px;
  margin-bottom: 14px;
  scrollbar-width: thin;
}
.filter-chip {
  background: transparent;
  border: 1px solid #c9cbbc;
  white-space: nowrap;
  border-radius: 99px;
  padding: 10px 16px;
  font-size: 12px;
  min-height: 42px;
}
.filter-chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 26px;
}
.artist-card {
  min-width: 0;
}
.card-image {
  position: relative;
  background: #e8e4d8;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
}
.card-image > a {
  display: block;
  height: 100%;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.card-image > a:hover img {
  transform: scale(1.025);
}
.save-button {
  border: 1px solid #d8d8ce;
  background: var(--paper);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 17px;
  font-size: 13px;
}
.save-button > span:first-child {
  font-size: 22px;
  line-height: 1;
}
.save-button[aria-pressed="true"] {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.card-image .save-button {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
}
.card-image .save-label {
  display: none;
}

.category-label {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #687062;
  margin: 16px 0 6px;
}

.image-placeholder,
.detail-placeholder {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 30px;
  text-align: center;
  background: var(--mint);
  color: var(--teal);
  font:
    36px/1.1 "Poppins",
    sans-serif;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 15px;
}
.skip-link:focus {
  top: 10px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 49px;
  border: 1px solid var(--red-strong);
  border-radius: 99px;
  padding: 12px 22px;
  background: var(--red-strong);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.button:hover {
  background: #b62e22;
}

.visits-empty {
  text-align: center;
  padding: 55px 20px 65px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visits-empty h2 {
  font-size: 35px;
}
.visits-empty p {
  margin: 18px 0 25px;
  color: #69705f;
  font-size: 14px;
}
.storage-note {
  font-size: 12px;
  color: #6a705f;
  margin-top: 24px;
}
.visit-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}
.visit-content {
  flex: 1;
  min-width: 0;
}
.visit-content h3 {
  font-size: 18px;
}
.visit-content p {
  font-size: 12px;
  color: var(--teal);
}
.visit-row label {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  min-height: 44px;
}
.visit-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
}
.visit-row.visited .visit-content {
  opacity: 0.55;
}
.visit-remove {
  border: 0;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  min-height: 44px;
  padding: 10px;
}

.empty-search {
  text-align: center;
  padding: 60px 20px;
}
.empty-search p {
  margin: 15px 0;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: white;
  padding: 13px 23px;
  border-radius: 5px;
  font-size: 13px;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1500px) {
  .guide {
    padding-inline: 80px;
  }
}
@media (max-width: 1000px) {
  .guide {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .guide {
    padding: 0 20px;
  }
  .site-header {
    height: 91px;
  }

  .info-link {
    font-size: 12px;
    gap: 8px;
  }

  .section-heading {
    align-items: start;
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 30px;
    max-width: 220px;
  }
  .section-heading .room-badge {
    font-size: 9px;
    padding: 8px 10px;
    margin-top: 24px;
  }

  .search-field {
    padding: 0 10px;
    gap: 7px;
  }
  .search-field input {
    font-size: 12px;
    height: 48px;
  }
  .result-count {
    display: none;
  }
  .filters {
    margin-bottom: 6px;
  }
  .filter-chip {
    font-size: 11px;
    padding: 9px 13px;
  }
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
  }
  .card-image .save-button {
    right: 7px;
    top: 7px;
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .category-label {
    font-size: 8px;
    margin-top: 12px;
    line-height: 1.4;
    min-height: 22px;
  }
  .artist-card h3 {
    font-size: 16px;
  }

  .toast {
    bottom: 90px;
    width: max-content;
    max-width: 90%;
    text-align: center;
  }

  .visits-empty {
    padding: 25px 18px 35px;
  }
  .visits-empty h2 {
    font-size: 29px;
  }
  .visit-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 44px;
    gap: 10px;
    row-gap: 2px;
  }
  .visit-row img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
  }
  .visit-content h3 {
    font-size: 15px;
  }
  .visit-row label {
    grid-column: 2;
    font-size: 12px;
  }
  .visit-content {
    grid-column: 2;
  }
  .visit-remove {
    grid-column: 3;
    grid-row: 1 / span 2;
    margin-left: 0;
  }
  .image-placeholder {
    font-size: 22px;
    padding: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* The event layout owns the reading width and uses a single daylight palette. */
.guide .pmx-document {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--ink);
}
.guide .pmx-document [data-pmx-block],
.guide .pmx-document section {
  color: var(--ink);
}
.guide .pmx-document a {
  color: inherit;
}
.guide .pmx-document .button {
  color: #fff;
}
.guide .pmx-document .text-link {
  color: var(--ink);
}

@media (max-width: 640px) {
  .section-heading h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .brand {
    gap: 12px;
  }
}
.search-field input::placeholder {
  color: #597264;
  opacity: 1;
}
.info-link {
  color: var(--red-strong);
}
.guide .pmx-document {
  --pmx-color-fg: var(--ink);
  --pmx-color-bg: var(--paper);
}
.search-field input:focus-visible {
  outline: none;
}

/* Compact attendee screens: the artists and room content lead. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.guide {
  padding-inline: 40px;
}
.site-header {
  height: 82px;
}
.brand {
  gap: 10px;
}

.brand-name {
  font-size: 15px;
  letter-spacing: -0.4px;
}
main {
  padding-bottom: 40px;
}
h1,
h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.6px;
}
.artist-directory {
  padding-top: 24px;
}
.directory-toolbar {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 16px;
}
.directory-toolbar h1 {
  font-size: 23px;
}
.directory-toolbar .search-field {
  flex: 1;
  max-width: 560px;
  margin-left: auto;
}
.artist-grid {
  gap: 28px 24px;
}
.artist-card h2 {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-top: 12px;
}
.card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.category-label {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  margin: 4px 0 0;
  min-height: 0;
}

.visits-section {
  max-width: 820px;
  margin-inline: auto;
}
.guide .pmx-document [data-pmx-block]:has(.visits-page-head) {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.visits-page-head {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 40px;
}
.visits-page-head h1 {
  font-size: 40px;
}
.visits-page-head p {
  max-width: 540px;
  margin-top: 10px;
  color: #61756a;
  font-size: 14px;
}
.visits-section + .storage-note {
  max-width: 820px;
  margin-inline: auto;
}
.visits-section .section-heading h2 {
  font-size: 23px;
  margin: 0;
}
.visits-section .section-heading {
  align-items: center;
}
.visits-section .room-badge {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 11px;
}
.visits-empty {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 46px 40px;
  border: 1px solid #c7d9d0;
  border-radius: 12px;
  background: #e7f3ee;
  text-align: center;
}
.visits-empty h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.03em;
}
.visits-empty p {
  max-width: 430px;
  margin: 12px auto 22px;
  color: #536d60;
  font-size: 14px;
  line-height: 1.55;
}
.storage-note {
  font-size: 11px;
  margin-top: 18px;
}
.visits-section + .storage-note {
  text-align: center;
}

@media (max-width: 640px) {
  .guide {
    padding-inline: 16px;
  }
  .visits-page-head {
    padding-top: 28px;
  }
  .visits-page-head h1 {
    font-size: 32px;
  }
  .visits-empty {
    margin-top: 24px;
    padding: 34px 22px;
  }
  .visits-empty h2 {
    font-size: 24px;
  }
  .site-header {
    height: 66px;
    gap: 10px;
  }
  .brand {
    gap: 7px;
  }

  .brand-name {
    font-size: 13px;
  }
  .info-link {
    font-size: 11px;
  }
  main {
    padding-bottom: 94px;
  }
  .artist-directory {
    padding-top: 17px;
  }
  .directory-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 13px;
    margin-bottom: 11px;
  }
  .directory-toolbar h1 {
    font-size: 20px;
  }
  .directory-toolbar .search-field {
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    margin: 0;
  }
  .directory-toolbar .result-count {
    display: block;
    font-size: 11px;
  }
  .filters {
    margin-bottom: 4px;
    padding-bottom: 12px;
  }
  .artist-grid {
    gap: 18px 13px;
  }
  .artist-card h2 {
    font-size: 14px;
    margin-top: 10px;
  }
  .category-label {
    font-size: 10px;
  }

  .visits-section {
    padding-top: 20px;
  }
  .visits-section .section-heading h2 {
    font-size: 21px;
  }
}

/* App navigation and saved state. */
.save-button[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.brand-name {
  color: var(--red-strong);
  font-weight: 700;
}
.app-nav {
  position: fixed;
  z-index: 30;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: min(348px, calc(100% - 32px));
  padding: 7px;
  gap: 5px;
  border: 1px solid #ffffffd9;
  border-radius: 32px;
  background: #f7f6f3b8;
  backdrop-filter: blur(24px) saturate(1.7);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  box-shadow:
    0 10px 36px #29423626,
    0 2px 7px #29423612,
    inset 0 1px 1px #fff,
    inset 0 -1px 1px #fff9;
}
.app-nav > a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 58px;
  border-radius: 25px;
  color: var(--ink);
  font-size: 11px;
  transition:
    background 0.15s,
    color 0.15s;
}
.app-nav > a[aria-current="page"] {
  background: #ffffffbc;
  color: var(--red-strong);
  box-shadow:
    0 1px 4px #2942360d,
    inset 0 1px 0 #fff;
}
.app-nav svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-nav [data-save-count] {
  position: absolute;
  top: 3px;
  right: 17px;
  border: 0;
  background: var(--red);
  color: white;
  font-size: 9px;
  min-width: 15px;
  padding: 1px 4px;
}
.app-nav [data-save-count]:empty {
  display: none;
}
main {
  padding-bottom: 118px;
}
.site-credit {
  max-width: 660px;
  margin: 64px auto 0;
  padding: 28px 24px 0;
  border-top: 1px solid var(--line);
  color: #61756a;
  text-align: center;
}
.site-credit p {
  font-size: 12px;
  line-height: 1.65;
}
.site-credit a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.toast {
  bottom: 110px;
}
.booth-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid #b2c9be;
  border-radius: 4px;
  background: #e2ebe5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.card-meta {
  align-items: center;
  margin-top: 5px;
}
.booth-chip:hover {
  background: var(--mint);
  border-color: var(--ink);
}
.visit-content .booth-chip {
  margin-top: 7px;
}
@supports not (backdrop-filter: blur(1px)) {
  .app-nav {
    background: #f7f6f3f5;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .app-nav {
    background: var(--paper);
    backdrop-filter: none;
  }
}
@media (max-width: 640px) {
  .site-header {
    height: 58px;
  }
  .brand-name {
    font-size: 14px;
  }
  .app-nav {
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .app-nav > a {
    min-height: 56px;
  }
  .site-credit {
    margin-top: 48px;
    padding: 22px 12px 0;
  }
  .booth-chip {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* Local Lucide actions share consistent geometry, including dynamically rendered cards. */
.action-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.guide .save-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  box-sizing: border-box;
}
.guide .save-button .save-label {
  display: none;
}
.guide .save-button .action-icon {
  width: 24px;
  height: 24px;
}
.guide .save-button[aria-pressed="true"] .action-icon {
  fill: currentColor;
}
.guide .info-link,
.guide .back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.booth-chip .action-icon,
.text-link .action-icon {
  width: 16px;
  height: 16px;
}
.filter-disclosure summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  list-style: none;
}
.filter-disclosure summary::-webkit-details-marker {
  display: none;
}
.visit-remove {
  min-width: 44px;
  min-height: 44px;
}

.app-nav [data-save-count] {
  display: grid;
  place-items: center;
  width: max-content;
  min-width: 18px;
  height: 18px;
  box-sizing: border-box;
  padding: 0 4px;
  margin: 0;
  line-height: 1;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.app-nav [data-save-count][hidden],
.app-nav [data-save-count]:empty {
  display: none;
}

.filters {
  scrollbar-width: thin;
  scrollbar-color: #79938580 transparent;
  scroll-behavior: smooth;
}
.filters::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.filters::-webkit-scrollbar-track {
  background: transparent;
}
.filters::-webkit-scrollbar-thumb {
  background: #79938580;
  border-radius: 99px;
}
@media (prefers-reduced-motion: reduce) {
  .filters {
    scroll-behavior: auto;
  }
}

/* Artist booth links open the same map used by the Map tab. */
.pmx-source-overlay-panel {
  outline: none;
  width: min(1100px, calc(100vw - 48px));
  height: calc(100dvh - 48px);
  max-width: none;
  max-height: none;
  padding: 0;
  margin: auto;
  border: 1px solid #ffffffba;
  border-radius: 24px;
  overflow: hidden;
  background: #e1f2ec;
  box-shadow: 0 25px 100px #172f3455;
}
.pmx-source-overlay-panel::backdrop {
  background: #15352b55;
  backdrop-filter: blur(8px);
}
.pmx-source-overlay-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.pmx-source-overlay-panel .pmx-source-opening-header .pmx-source-button {
  position: absolute;
  z-index: 20;
  right: 14px;
  top: 14px;
  width: 46px;
  height: 46px;
  border: 1px solid white;
  border-radius: 50%;
  background: #ffffffbd;
  backdrop-filter: blur(20px);
  color: #655b49;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px #273d2f16;
}
.pmx-source-overlay-panel .pmx-source-opening-header .pmx-source-button svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 640px) {
  .pmx-source-overlay-panel {
    inset: 0;
    margin: 0;
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }
}
.pmx-source-overlay-panel .pmx-source-opening-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
}
.pmx-source-overlay-panel .pmx-source-identity {
  display: none;
}
.pmx-source-overlay-panel > .pmx-source-opening {
  border-radius: inherit;
  background: #e1f2ec;
}
/* App-shell rules live with the shell, above plugin-layer defaults. */
body:has([data-mill-map]) .site-header,
body:has([data-mill-map]) .site-credit {
  display: none;
}
body:has(.mill-app.is-embedded) .app-nav {
  display: none;
}

body:has([data-mill-map]) {
  overflow: hidden;
}
body:has([data-mill-map]) .app-nav {
  z-index: 40;
}

.guide .info-link {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.visit-room + .visit-room {
  margin-top: 32px;
}

/* The search field is one surface; focus stays on its outer shell. */
.mill-search input:focus,
.mill-search input:focus-visible {
  outline: none;
  box-shadow: none;
}
