:root {
  --paper: #fff9f1;
  --paper-deep: #f7efe1;
  --surface: #fffdf8;
  --surface-soft: #f4ebde;
  --surface-sage: #edf2ea;
  --text: #4f3c40;
  --text-soft: #6f5d61;
  --plum: #5b3a63;
  --plum-deep: #482d4f;
  --sage: #708b74;
  --sage-deep: #5f7863;
  --teal: #5f8b8f;
  --rose: #cb7e84;
  --rose-deep: #ac5d68;
  --mustard: #d79f41;
  --moss: #95996a;
  --line: #dccbb7;
  --line-strong: #cdb7a3;
  --shadow: 0 20px 42px rgba(91, 58, 99, 0.12);
  --shadow-soft: 0 12px 26px rgba(91, 58, 99, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 159, 65, 0.16), transparent 18%),
    radial-gradient(circle at 88% 6%, rgba(95, 139, 143, 0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(203, 126, 132, 0.1), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fcf5eb 48%, #f8efe1 100%);
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("brand/website_background.png") center top / 100% auto repeat-y;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.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;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1.25rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 3rem;
}

body.drawer-layout .page-shell {
  padding-top: 5rem;
}

.drawer-toggle {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top, 0px) + 0.5rem);
  left: max(1rem, env(safe-area-inset-left, 0px) + 0.5rem);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3rem;
  padding: 0.7rem 1rem 0.7rem 0.88rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.drawer-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(91, 58, 99, 0.14);
}

.drawer-toggle-lines {
  display: inline-grid;
  gap: 0.22rem;
}

.drawer-toggle-lines span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(79, 60, 64, 0.38);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  width: min(22rem, calc(100vw - 1.1rem));
  height: 100vh;
  padding: max(1.15rem, env(safe-area-inset-top, 0px) + 0.55rem) 1rem 1rem;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(215, 159, 65, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 239, 225, 0.97));
  box-shadow: 28px 0 48px rgba(91, 58, 99, 0.16);
  transform: translateX(calc(-100% - 1.5rem));
  transition: transform 240ms ease;
}

.site-drawer::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(205, 183, 163, 0.92);
  border-radius: 28px;
  pointer-events: none;
}

.site-drawer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
}

.site-drawer-brand {
  display: grid;
  gap: 0.18rem;
}

.site-drawer-title {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--plum);
  line-height: 0.96;
}

.site-drawer-tag {
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(205, 183, 163, 0.95);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--plum);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.site-drawer-copy {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.site-drawer-nav {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.site-drawer-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(205, 183, 163, 0.95);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--plum);
  font-size: 1rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.site-drawer-link::after {
  content: "\2192";
  font-size: 0.92em;
}

.site-drawer-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.site-drawer-link[aria-current="page"] {
  border-color: rgba(112, 139, 116, 0.25);
  background: linear-gradient(135deg, rgba(112, 139, 116, 0.95), rgba(95, 139, 143, 0.94));
  color: #fffaf1;
  box-shadow: 0 16px 28px rgba(95, 139, 143, 0.18);
}

.site-drawer-footer {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .site-drawer {
  transform: translateX(0);
}

body.drawer-open .site-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.festival-detail-page,
.about-page {
  padding-top: 1rem;
}

.festival-detail-shell {
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.festival-detail-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.festival-detail-hero {
  position: relative;
  z-index: 1;
}

.festival-detail-name {
  margin: 0;
}

.festival-detail-description {
  margin-top: 0.35rem;
}

.about-shell {
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.about-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.about-header h1,
.about-card h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.about-header h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.2rem);
  line-height: 1.04;
}

.about-header .browse-copy {
  max-width: min(100%, 38rem);
  font-size: 1rem;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.about-card {
  padding: clamp(1.1rem, 2.1vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.94));
  box-shadow: var(--shadow-soft);
}

.about-story-card > h2 {
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0;
  max-width: 38rem;
}

.about-story-card h3 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0;
}

.about-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
  font-size: 1rem;
}

.about-story-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.about-photo-card {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.about-photo-caption {
  margin-top: 0.9rem;
  color: rgba(111, 93, 97, 0.86);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.about-photo-follow {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(205, 183, 163, 0.9);
}

.about-photo-placeholder {
  min-height: 0;
  padding: 0.7rem;
  border: 1px dashed rgba(205, 183, 163, 0.92);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(248, 242, 231, 0.94), rgba(239, 230, 217, 0.94));
  overflow: hidden;
}

.about-photo-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: 0 20px 34px rgba(91, 58, 99, 0.12);
}

.about-name-kicker {
  color: rgba(111, 93, 97, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-role-line {
  color: var(--text-soft);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.78;
}

.about-role-meta {
  color: var(--sage-deep) !important;
  font-size: 0.98rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.65 !important;
}

.about-copy-block {
  display: grid;
  gap: 1.15rem;
  max-width: 38rem;
  padding-top: 0.35rem;
}

.about-pull-quote {
  max-width: 36rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(128, 155, 128, 0.45);
  border-radius: 0;
  background: none;
  color: var(--sage-deep) !important;
  font-size: 1rem !important;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7 !important;
}

.about-story-section {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.3rem;
  padding-top: 1.15rem;
  border-top: 1px dashed rgba(205, 183, 163, 0.9);
}

.about-personal-section {
  display: grid;
  gap: 0.7rem;
  max-width: 34rem;
}

.about-follow-heading {
  color: rgba(111, 93, 97, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-placeholder-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  margin-left: 0.15rem;
  border: 1px dashed rgba(203, 126, 132, 0.42);
  border-radius: 999px;
  background: rgba(255, 245, 246, 0.86);
  color: var(--rose-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-home-link {
  width: fit-content;
  margin-top: 1rem;
}

.about-socials {
  justify-content: flex-start;
  margin-top: 0.25rem;
}

.top-ribbon {
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  padding: 0.85rem 1.25rem;
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: clamp(58px, 7vw, 72px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand-name {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  color: var(--plum);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.brand-tag {
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(205, 183, 163, 0.9);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--plum);
  font-size: 0.93rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 246, 235, 0.98);
}

.market-hero {
  position: relative;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 235, 221, 0.94));
  box-shadow: var(--shadow);
}

.market-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.84), rgba(247, 239, 225, 0.9));
}

.market-hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px dashed rgba(205, 183, 163, 0.9);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.hero-side,
.browse-shell,
.festival-card,
.empty-state {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.94));
  box-shadow: var(--shadow);
}

.hero-side::before,
.browse-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px dashed rgba(205, 183, 163, 0.9);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-side h1,
.hero-side h2,
.browse-header h2,
.featured-card-title,
.festival-card h3,
.empty-state h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: inherit;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-side h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.7rem, 5.1vw, 4.45rem);
  line-height: 1.08;
  text-align: center;
}

.hero-text,
.browse-copy,
.directory-note,
.featured-card-meta,
.festival-card-description,
.festival-card-status,
.site-footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-text {
  max-width: 38rem;
  margin-top: 0.45rem;
  color: var(--sage-deep);
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.search-shell {
  display: flex;
  margin-top: 1.55rem;
}

.browse-search-shell {
  margin-top: 0;
}

.search-shell input {
  width: 100%;
  min-height: 3.8rem;
  padding: 0 1.2rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 20px rgba(91, 58, 99, 0.05);
}

.next-festival-spotlight {
  position: relative;
  z-index: 3;
  margin: 0.2rem clamp(1.2rem, 2.5vw, 2rem) 0;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(240, 233, 222, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: visible;
  isolation: isolate;
}

.next-festival-spotlight::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(205, 183, 163, 0.9);
  border-radius: calc(var(--radius-lg) - 14px);
  pointer-events: none;
}

.next-festival-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.35rem;
  align-items: start;
  padding-inline: clamp(1.55rem, 2.7vw, 2.2rem);
}

.next-festival-media,
.next-festival-panel {
  position: relative;
  z-index: 1;
}

.next-festival-media {
  position: relative;
  align-self: center;
  min-height: 300px;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: var(--shadow-soft);
}

.next-festival-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: scale(1.05);
  transform-origin: center;
}

.next-festival-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 45, 79, 0.04), rgba(72, 45, 79, 0.28));
  pointer-events: none;
}

.next-festival-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.15rem 0 0.2rem;
}

.next-festival-kicker {
  margin: 0 0 0.45rem;
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.next-festival-divider {
  position: relative;
  width: min(100%, 28rem);
  height: 1px;
  margin: 0.9rem 0 1.05rem;
  background: linear-gradient(
    90deg,
    rgba(203, 126, 132, 0.1),
    rgba(203, 126, 132, 0.55),
    rgba(203, 126, 132, 0.12)
  );
}

.next-festival-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.9rem;
  background-color: rgba(246, 239, 229, 0.94);
  background-image: url("assets/decor/hero-heart.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -54%);
}

.next-festival-date {
  margin: 0;
  color: var(--plum);
  font-size: clamp(1.15rem, 1.85vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.next-festival-name {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--plum);
  line-height: 1.03;
}

.next-festival-meta-list {
  display: grid;
  gap: 0.8rem;
}

.next-festival-meta-row {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.next-festival-meta-icon {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.next-festival-meta-icon-location {
  background-image: url("assets/decor/icon-pin.svg");
}

.next-festival-meta-icon-date {
  background-image: url("assets/decor/icon-calendar.svg");
}

.next-festival-location {
  margin: 0;
  color: var(--sage-deep);
  font-size: clamp(1.15rem, 1.85vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.next-festival-countdown {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.4rem;
  margin: 0.35rem 0 0;
  padding: 0.52rem 0.95rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.next-festival-countdown[data-state="countdown"],
.next-festival-countdown[data-state="soon"] {
  color: var(--sage-deep);
  background: linear-gradient(135deg, rgba(237, 242, 234, 0.98), rgba(247, 239, 225, 0.94));
}

.next-festival-countdown[data-state="today"],
.next-festival-countdown[data-state="live"] {
  border-color: rgba(203, 126, 132, 0.25);
  background: linear-gradient(135deg, rgba(255, 240, 241, 0.98), rgba(253, 245, 236, 0.94));
  color: var(--rose-deep);
}

.next-festival-panel .festival-card-inline-flag {
  margin-top: 0.55rem;
}

.next-festival-description {
  margin: 1.1rem 0 0;
  max-width: 31rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.56;
}

.next-festival-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.next-festival-image-link,
.festival-card-image-link,
.festival-detail-media a,
.festival-card-title-link,
.next-festival-name-link {
  display: block;
}

.next-festival-image-link,
.festival-card-image-link,
.festival-detail-media a {
  width: 100%;
  height: 100%;
}

.next-festival-link {
  min-height: 3rem;
  padding-inline: 1.55rem;
}

.next-festival-vendor-link,
.festival-card-vendor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.next-festival-vendor-link::after,
.festival-card-vendor-link::after {
  content: "\2192";
  font-size: 0.92em;
}

.next-festival-vendor-link[aria-disabled="true"],
.festival-card-vendor-link-disabled {
  color: var(--text-soft);
  opacity: 0.92;
  pointer-events: none;
}

.next-festival-vendor-link[aria-disabled="true"]::after,
.festival-card-vendor-link-disabled::after {
  content: none;
}

.next-festival-vendor-link {
  margin-top: 0.8rem;
}

.festival-card-vendor-link {
  margin-top: -0.15rem;
}

.next-festival-link[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.next-festival-mascot {
  position: absolute;
  bottom: 0.55rem;
  z-index: 4;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 24px rgba(91, 58, 99, 0.14));
}

.next-festival-mascot-left {
  left: -6.3rem;
  bottom: -1.7rem;
  height: clamp(16rem, 20.5vw, 21.6rem);
  transform: rotate(-4deg);
  transform-origin: bottom left;
}

.next-festival-mascot-right {
  right: -6.3rem;
  bottom: -1.7rem;
  height: clamp(16.75rem, 21.5vw, 22.75rem);
  transform: rotate(3deg);
  transform-origin: bottom right;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.7rem;
  padding: 1.45rem 1.35rem 1.25rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 0;
  overflow: visible;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.66), transparent 34%),
    rgba(255, 250, 243, 0.76);
  box-shadow: none;
}

.hero-side-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.7rem;
  text-align: center;
}

.hero-header-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 56rem;
}

.hero-ornament {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 0.55rem;
}

.hero-ornament-branch {
  position: relative;
  display: block;
  width: 6.25rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-ornament-branch-left {
  background-image: url("assets/decor/hero-sprig-left.svg");
}

.hero-ornament-branch-right {
  background-image: url("assets/decor/hero-sprig-right.svg");
}

.hero-ornament-heart {
  display: block;
  width: 1.6rem;
  height: 1.45rem;
  background: url("assets/decor/hero-heart.svg") center / contain no-repeat;
}

.hero-subdivider {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.hero-subdivider-line {
  width: 5.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(203, 126, 132, 0.1),
    rgba(203, 126, 132, 0.7),
    rgba(203, 126, 132, 0.1)
  );
}

.hero-subdivider-heart {
  color: var(--rose);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-side-header::before,
.hero-side-header::after,
.hero-header-copy::before,
.hero-header-copy::after {
  position: absolute;
  line-height: 1;
  pointer-events: none;
}

.hero-side-header::before {
  content: "";
  top: 2.55rem;
  left: 3%;
  width: 1rem;
  height: 0.9rem;
  background: url("assets/decor/hero-heart.svg") center / contain no-repeat;
}

.hero-side-header::after {
  content: "\273f";
  top: 2.95rem;
  right: 4%;
  color: rgba(214, 190, 151, 0.82);
  font-size: 1.45rem;
}

.hero-header-copy::before {
  content: "\273f";
  top: 7.2rem;
  left: -2.8rem;
  color: rgba(221, 198, 162, 0.9);
  font-size: 1.6rem;
}

.hero-header-copy::after {
  content: "\2022";
  top: 7.8rem;
  right: -2.2rem;
  color: rgba(190, 177, 149, 0.78);
  font-size: 1.15rem;
}

.hero-side h2,
.browse-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
}

.hero-side-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  margin-top: 0.9rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(205, 183, 163, 0.95);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-bunting {
  position: absolute;
  top: 0.68rem;
  width: 19.2rem;
  height: 7.6rem;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

.hero-bunting span {
  display: none;
}

.hero-bunting-left {
  left: -0.2rem;
  transform: rotate(-3deg);
  background-position: top left;
  background-image: url("assets/decor/banner_left.png");
}

.hero-bunting-right {
  right: -0.2rem;
  transform: rotate(3deg);
  background-position: top right;
  background-image: url("assets/decor/banner_right.png");
}

.hero-launchpad {
  position: relative;
  z-index: 2;
  margin-top: 0.15rem;
  padding: 2.55rem clamp(1.3rem, 3vw, 3rem) 2.3rem;
}

.hero-launchpad::after {
  position: absolute;
  pointer-events: none;
  line-height: 1;
}

.hero-launchpad::after {
  content: "\273f";
  top: 6.1rem;
  right: 3rem;
  color: rgba(232, 185, 165, 0.92);
  font-size: 1.28rem;
}

.hero-launch-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 61rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.hero-brand-copy {
  gap: 0.35rem;
  max-width: 56rem;
  text-align: center;
}

.hero-brand-copy::after {
  content: "\273f";
  top: 6.55rem;
  right: -4rem;
  color: rgba(223, 196, 159, 0.92);
  font-size: 1.2rem;
}

.hero-brand-copy h1 {
  max-width: 18ch;
  color: var(--sage-deep);
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(2.05rem, 3.9vw, 3.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero-tagline {
  margin: 0;
  color: var(--sage-deep);
  font-size: clamp(1rem, 1.6vw, 1.34rem);
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.95rem;
  margin: 0.3rem 0 0;
  color: var(--plum);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-keywords-dot {
  color: rgba(128, 113, 118, 0.56);
  font-size: 0.85rem;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  padding: 0.56rem 0.95rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 246, 235, 0.98);
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-social-icon-instagram {
  background-image: url("assets/decor/social-instagram.svg");
}

.hero-social-icon-facebook {
  background-image: url("assets/decor/social-facebook.svg");
}

.hero-search-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 58rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.55rem;
}

.hero-search-frame {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border: 1px solid rgba(218, 193, 171, 0.92);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow:
    0 18px 34px rgba(91, 58, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-search-shell {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.2rem 0.35rem 0.2rem 1.05rem;
}

.hero-search-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.hero-search-icon::before,
.hero-search-icon::after {
  content: "";
  position: absolute;
}

.hero-search-icon::before {
  inset: 0.02rem 0.18rem 0.18rem 0.02rem;
  border: 2px solid rgba(109, 88, 95, 0.72);
  border-radius: 50%;
}

.hero-search-icon::after {
  right: -0.04rem;
  bottom: 0.05rem;
  width: 0.58rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(109, 88, 95, 0.72);
  transform: rotate(44deg);
  transform-origin: right center;
}

.hero-search-shell input {
  width: 100%;
  min-width: 0;
  min-height: 3.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--plum);
  font-size: 1.08rem;
  outline: none;
}

.hero-search-shell input::placeholder {
  color: rgba(111, 93, 97, 0.82);
}

.hero-search-shell input::-webkit-search-cancel-button {
  appearance: none;
}

.hero-search-button {
  flex: 0 0 auto;
  min-width: 10.4rem;
  min-height: 3.35rem;
  padding: 0 1.9rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7f9774, #6d886b);
  color: #fffaf1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(95, 120, 99, 0.2);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero-search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(95, 120, 99, 0.24);
  filter: saturate(1.03);
}

.hero-shortcuts {
  width: min(100%, 52rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0.35rem 0.3rem;
  border: 1px solid rgba(218, 193, 171, 0.92);
  border-radius: 2rem;
  background: rgba(255, 252, 247, 0.94);
  box-shadow:
    0 20px 38px rgba(91, 58, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-shortcut {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 5.2rem;
  padding: 0.95rem 0.75rem 0.88rem;
  border: 0;
  background: transparent;
  color: var(--plum);
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-shortcut:hover {
  transform: translateY(-1px);
  background: rgba(255, 246, 237, 0.82);
  border-radius: 1.45rem;
}

.hero-shortcut:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: rgba(220, 203, 183, 0.88);
}

.hero-shortcut-icon {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
}

.hero-shortcut-label {
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-shortcut-icon-calendar {
  background: url("assets/decor/icon-calendar.svg") center / contain no-repeat;
}

.hero-shortcut-icon-place {
  background: url("assets/decor/icon-pin.svg") center / contain no-repeat;
}

.hero-shortcut-icon-heart {
  background: url("assets/decor/hero-heart.svg") center / 1.45rem 1.3rem no-repeat;
}

.hero-shortcut-icon-yarn::before,
.hero-shortcut-icon-yarn::after,
.hero-shortcut-icon-spark::before,
.hero-shortcut-icon-ticket::before,
.hero-shortcut-icon-ticket::after {
  content: "";
  position: absolute;
}

.hero-shortcut-icon-yarn::before {
  inset: 0.12rem;
  border: 2px solid rgba(125, 102, 134, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 21%, rgba(125, 102, 134, 0.42) 21% 26%, transparent 26% 39%, rgba(125, 102, 134, 0.42) 39% 44%, transparent 44% 57%, rgba(125, 102, 134, 0.42) 57% 62%, transparent 62%),
    linear-gradient(-32deg, transparent 37%, rgba(125, 102, 134, 0.42) 37% 42%, transparent 42% 54%, rgba(125, 102, 134, 0.42) 54% 59%, transparent 59%);
  background-color: rgba(242, 225, 230, 0.78);
}

.hero-shortcut-icon-yarn::after {
  right: -0.14rem;
  bottom: 0.34rem;
  width: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(125, 102, 134, 0.52);
  transform: rotate(26deg);
}

.hero-shortcut-icon-spark::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(219, 165, 157, 0.9) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 13%, rgba(219, 165, 157, 0.8) 0 12%, transparent 13%),
    radial-gradient(circle at 87% 50%, rgba(219, 165, 157, 0.8) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 87%, rgba(219, 165, 157, 0.8) 0 12%, transparent 13%),
    radial-gradient(circle at 13% 50%, rgba(219, 165, 157, 0.8) 0 12%, transparent 13%);
}

.hero-shortcut-icon-ticket::before {
  inset: 0.22rem 0.08rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(232, 180, 164, 0.96), rgba(222, 151, 137, 0.94));
  clip-path: polygon(0 22%, 10% 22%, 10% 0, 90% 0, 90% 22%, 100% 22%, 100% 78%, 90% 78%, 90% 100%, 10% 100%, 10% 78%, 0 78%);
}

.hero-shortcut-icon-ticket::after {
  top: 0.45rem;
  bottom: 0.45rem;
  left: 50%;
  border-left: 2px dashed rgba(255, 248, 240, 0.84);
  transform: translateX(-50%);
}

.hero-upcoming-header {
  padding-top: 1.2rem;
}

.hero-upcoming-copy {
  max-width: 54rem;
  gap: 0.15rem;
}

.hero-upcoming-copy::before {
  top: 5.85rem;
  left: -2.7rem;
  color: rgba(221, 198, 162, 0.86);
  font-size: 1.35rem;
}

.hero-upcoming-copy::after {
  top: 6.3rem;
  right: -2rem;
  color: rgba(190, 177, 149, 0.78);
  font-size: 1rem;
}

.hero-upcoming-copy h2 {
  font-size: clamp(3rem, 5.2vw, 4.35rem);
  line-height: 0.98;
}

.hero-upcoming-copy .hero-text {
  max-width: 38rem;
}

.featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.featured-card:first-child {
  grid-column: 1 / -1;
}

.featured-card-media,
.festival-card-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 58, 99, 0.92), rgba(112, 139, 116, 0.88));
}

.featured-card-media img,
.festival-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 45, 79, 0), rgba(72, 45, 79, 0.12));
  pointer-events: none;
}

.festival-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 45, 79, 0), rgba(72, 45, 79, 0.2));
  pointer-events: none;
}

.image-fallback {
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(91, 58, 99, 0.92), rgba(112, 139, 116, 0.88));
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
}

.browse-shell {
  margin-top: 1.6rem;
  padding: 1.65rem;
}

.browse-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.browse-copy {
  max-width: 27rem;
  font-size: 1rem;
}

.browse-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.05rem;
  margin-top: 1.25rem;
}

.browse-search-panel {
  width: 100%;
}

.mobile-directory-actions {
  display: none;
}

.browse-search-frame {
  width: 100%;
  box-shadow:
    0 14px 28px rgba(91, 58, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.browse-search-frame .hero-search-button {
  min-width: 7.25rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(203, 126, 132, 0.28);
  background: rgba(203, 126, 132, 0.12);
  color: var(--rose-deep);
  box-shadow: none;
}

.browse-search-frame .hero-search-button:hover:not(:disabled) {
  box-shadow: 0 12px 22px rgba(91, 58, 99, 0.08);
  filter: none;
}

.browse-search-frame .hero-search-button:disabled {
  opacity: 0.55;
  cursor: default;
}

.browse-search-shell {
  padding-left: 1rem;
}

.browse-controls {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr) minmax(14rem, 0.7fr);
  align-items: start;
  gap: 1rem;
}

.date-filter-panel,
.vendor-filter-panel,
.filter-panel-shell {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.date-filter-panel {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: start;
}

.vendor-filter-panel {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: start;
  min-width: 0;
}

.date-filter-label {
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-filter-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.75rem;
}

.vendor-filter-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.75rem;
  width: 100%;
}

.date-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 11rem;
}

.vendor-filter-field {
  flex: 1 1 18rem;
  min-width: min(100%, 18rem);
}

.date-filter-field span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.date-filter-input,
.vendor-filter-input,
.filter-action-button {
  min-height: 3rem;
  border-radius: 999px;
}

.date-filter-input {
  min-width: 11rem;
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.date-filter-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.vendor-filter-input {
  width: 100%;
  min-width: 18rem;
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.filter-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: end;
}

.filter-action-button {
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-action-button-primary {
  border: 1px solid rgba(111, 143, 111, 0.6);
  background: var(--sage);
  color: #fff;
  box-shadow: 0 18px 34px rgba(111, 143, 111, 0.18);
}

.filter-action-button-secondary {
  border: 1px solid rgba(203, 126, 132, 0.28);
  background: rgba(203, 126, 132, 0.12);
  color: var(--rose-deep);
  box-shadow: none;
}

.filter-action-button:disabled {
  opacity: 0.55;
  box-shadow: none;
  cursor: default;
}

.filter-panel-shell {
  display: grid;
  gap: 0.7rem;
  align-self: stretch;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.filter-chip {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #fff7f1;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  box-shadow: 0 12px 24px rgba(91, 58, 99, 0.18);
  transform: translateY(-1px);
}

.filter-panel .filter-chip {
  min-width: 100%;
  justify-content: center;
}

.directory-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.directory-meta-summary,
.directory-meta-side {
  display: grid;
  gap: 0.65rem;
}

.directory-meta-summary {
  flex: 1 1 26rem;
  min-width: min(100%, 18rem);
}

.directory-meta-side {
  justify-items: end;
}

#results-count {
  margin: 0;
  color: var(--plum);
  font-size: 1rem;
  font-weight: 800;
}

.active-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--plum);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.directory-clear-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(205, 183, 163, 0.95);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.directory-clear-all:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(91, 58, 99, 0.22);
  background: rgba(255, 250, 244, 0.98);
  box-shadow: 0 14px 24px rgba(91, 58, 99, 0.12);
}

.directory-clear-all:disabled {
  opacity: 0.45;
  box-shadow: none;
  transform: none;
  cursor: default;
}

.directory-section-toggle-all[hidden] {
  display: none;
}

.directory-note {
  margin: 0;
  max-width: 26rem;
  text-align: right;
}

.festival-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  margin-top: 1.2rem;
}

.festival-month-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
}

.festival-month-toggle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 0 0.6rem;
  border: 0;
  border-bottom: 1px solid rgba(205, 183, 163, 0.95);
  background: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.festival-month-divider {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  line-height: 1.04;
}

.festival-month-summary,
.festival-month-chevron {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.festival-month-summary {
  margin-left: auto;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.festival-month-chevron {
  width: 0.78rem;
  height: 0.78rem;
  border-right: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  transform: rotate(-135deg);
  transition: transform 180ms ease;
}

.festival-month-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.festival-month-section[data-expanded="false"] .festival-month-grid {
  display: none;
}

.festival-month-section[data-expanded="false"] .festival-month-chevron {
  transform: rotate(45deg);
}

.submit-festival-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.94));
  box-shadow: var(--shadow-soft);
}

.submit-festival-cta h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.submit-festival-cta p:last-child {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.submit-festival-cta-copy {
  max-width: 38rem;
}

.submission-page {
  padding-top: 1rem;
}

.submission-shell {
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.submission-header {
  display: grid;
  gap: 0.7rem;
}

.submission-header h1,
.submission-thank-you h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.submission-header h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.2rem);
  line-height: 1.04;
}

.submission-single-column {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.submission-form,
.submission-thank-you {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.94));
  box-shadow: var(--shadow-soft);
}

.submission-form {
  padding: clamp(1.1rem, 2vw, 1.4rem);
}

.submission-thank-you {
  padding: clamp(1.05rem, 2vw, 1.3rem);
  display: grid;
  gap: 0.8rem;
}

.submission-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.submission-field {
  display: grid;
  gap: 0.45rem;
}

.submission-field-wide {
  grid-column: 1 / -1;
}

.submission-form-grid-simple {
  grid-template-columns: 1fr;
}

.submission-field span {
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submission-field input,
.submission-select,
.submission-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 20px rgba(91, 58, 99, 0.05);
}

.submission-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.submission-form-note,
.submission-thank-you-copy {
  margin: 0 0 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.submission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.submission-status-message {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.submission-status-message[data-tone="success"] {
  color: var(--sage-deep);
}

.submission-status-message[data-tone="warning"] {
  color: var(--rose-deep);
}

.submission-thank-you h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.festival-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.festival-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.festival-card-flag {
  position: absolute;
  top: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(255, 249, 241, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(112, 139, 116, 0.96), rgba(95, 120, 99, 0.94));
  color: #fffaf1;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(95, 120, 99, 0.22);
}

.festival-card-flag-map {
  left: 0.85rem;
  right: auto;
  background: linear-gradient(135deg, rgba(112, 139, 116, 0.96), rgba(95, 120, 99, 0.94));
}

.festival-card-flag-free {
  right: 0.85rem;
  left: auto;
  background: linear-gradient(135deg, rgba(203, 126, 132, 0.96), rgba(168, 93, 104, 0.94));
  box-shadow: 0 12px 24px rgba(168, 93, 104, 0.22);
}

.festival-card-media .image-fallback {
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 2.65rem;
}

.festival-card-media .image-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 45, 79, 0), rgba(72, 45, 79, 0.2));
}

.festival-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.05rem 1rem 1.15rem;
}

.festival-card-title {
  font-size: 1.75rem;
  line-height: 1.02;
}

.festival-card-title-link,
.next-festival-name-link {
  transition: color 180ms ease;
}

.festival-card-title-link:hover,
.next-festival-name-link:hover {
  color: var(--rose-deep);
}

.festival-card-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0.05rem 0 0.1rem;
  background: linear-gradient(
    90deg,
    rgba(203, 126, 132, 0.1),
    rgba(203, 126, 132, 0.55),
    rgba(203, 126, 132, 0.1)
  );
}

.festival-card-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.96rem;
  height: 0.86rem;
  background-color: rgba(246, 239, 229, 0.94);
  background-image: url("assets/decor/hero-heart.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -54%);
}

.festival-card-meta-list {
  display: grid;
  gap: 0.72rem;
}

.festival-card-meta-row {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0;
}

.festival-card-meta-icon {
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.festival-card-meta-icon-location {
  background-image: url("assets/decor/icon-pin.svg");
}

.festival-card-meta-icon-date {
  background-image: url("assets/decor/icon-calendar.svg");
}

.festival-card-location {
  color: var(--sage-deep);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.2;
}

.festival-card-date-detail {
  color: var(--plum);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.festival-card-description {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.58;
}

.festival-card-inline-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.34rem 0.82rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.96);
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.festival-card-inline-flag-map {
  border-color: rgba(203, 126, 132, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 240, 241, 0.98),
    rgba(253, 245, 236, 0.94)
  );
  color: var(--rose-deep);
}

a.festival-card-inline-flag:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(91, 58, 99, 0.14);
}

.festival-card-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.vendor-directory-page {
  padding-top: 1rem;
}

.festival-vendor-embed-shell {
  margin-top: 1.75rem;
}

.festival-vendor-anchor {
  display: block;
  position: relative;
  top: -1rem;
  visibility: hidden;
}

.festival-vendor-embed-frame {
  width: 100%;
  min-height: 640px;
  border: 0;
  background: transparent;
  display: block;
}

.vendor-directory-shell {
  padding: clamp(1.3rem, 2.8vw, 2rem);
}

.vendor-directory-header {
  display: grid;
  gap: 0.7rem;
}

.vendor-directory-header .browse-copy {
  max-width: 34rem;
}

.vendor-directory-header h1,
.vendor-overview-card h2,
.vendor-detail-shell h2,
.vendor-match-card h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.vendor-directory-header h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.2rem);
  line-height: 1.04;
}

.vendor-directory-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 800;
}

.vendor-directory-back::before {
  content: "\2190";
}

.vendor-directory-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
  margin-top: 1.3rem;
}

.vendor-control-field {
  display: grid;
  gap: 0.5rem;
}

.vendor-control-field span {
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vendor-control-select,
.vendor-directory-clear {
  min-height: 3.3rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  font: inherit;
}

.vendor-control-select {
  width: 100%;
  padding: 0 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 20px rgba(91, 58, 99, 0.05);
}

.vendor-directory-clear {
  padding: 0 1.05rem;
  background: rgba(255, 251, 244, 0.96);
  color: var(--plum);
  font-weight: 800;
  cursor: pointer;
}

.vendor-directory-clear:disabled {
  opacity: 0.45;
  cursor: default;
}

.vendor-directory-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.vendor-directory-actions {
  margin-top: 0.15rem;
}

@media (min-width: 980px) {
  .vendor-directory-header {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.6rem;
    align-items: start;
  }

  .vendor-directory-header > :not(#vendor-directory-meta):not(#vendor-directory-actions) {
    grid-column: 1;
  }

  #vendor-directory-meta {
    grid-column: 2;
    grid-row: 2 / span 2;
    justify-self: end;
    align-self: end;
    margin-top: 0;
  }

  #vendor-directory-actions {
    grid-column: 2;
    grid-row: 4;
    justify-self: end;
    margin-top: 0;
  }
}

.vendor-summary-pill,
.vendor-count-pill,
.vendor-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-summary-pill,
.vendor-status-pill-available,
.vendor-count-pill {
  border: 1px solid rgba(112, 139, 116, 0.2);
  background: rgba(237, 242, 234, 0.96);
  color: var(--sage-deep);
}

.vendor-summary-pill-soft,
.vendor-status-pill-pending {
  border: 1px solid rgba(205, 183, 163, 0.92);
  background: rgba(255, 251, 244, 0.96);
  color: var(--plum);
}

.vendor-count-pill-soft {
  border: 1px solid rgba(205, 183, 163, 0.92);
  background: rgba(255, 251, 244, 0.96);
  color: var(--plum);
}

.vendor-view-shell {
  margin-top: 1.2rem;
}

.vendor-overview-grid,
.vendor-match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vendor-overview-card,
.vendor-detail-shell,
.vendor-match-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 225, 0.94));
  box-shadow: var(--shadow-soft);
}

.vendor-overview-card,
.vendor-detail-shell {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.vendor-overview-copy,
.vendor-detail-copy,
.vendor-overview-meta,
.vendor-match-copy,
.vendor-match-meta,
.vendor-muted-meta {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.vendor-overview-card h2,
.vendor-detail-shell h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.06;
}

.vendor-overview-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.vendor-overview-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(205, 183, 163, 0.8);
}

.vendor-overview-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vendor-overview-item-copy {
  display: grid;
  gap: 0.18rem;
}

.vendor-overview-link {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--plum);
}

.vendor-detail-header {
  display: grid;
  gap: 0.8rem;
}

.vendor-selector-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.vendor-selector-toggle {
  gap: 0.6rem;
  flex: 0 0 auto;
}

.vendor-selector-toggle::after {
  content: none;
}

.vendor-selector-toggle-chevron {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-135deg);
  transition: transform 180ms ease;
}

.vendor-selector-shell[data-expanded="false"] .vendor-selector-toggle-chevron {
  transform: rotate(45deg);
}

.vendor-selector-shell[data-collapsible="true"][data-expanded="false"] .vendor-selector-content {
  display: none;
}

.vendor-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.vendor-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vendor-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.vendor-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.96);
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 800;
}

.vendor-chip-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.vendor-chip {
  min-height: 3.1rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.vendor-chip-link,
.vendor-chip-name {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 100%;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.vendor-empty-note {
  margin-top: 1.15rem;
  padding: 1rem 1.05rem;
  border: 1px dashed rgba(205, 183, 163, 0.92);
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.96);
}

.vendor-empty-note h3,
.vendor-match-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.vendor-empty-note p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.vendor-map-shell,
.vendor-selector-shell {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.vendor-page-section-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.vendor-section-toggle {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.vendor-section-toggle-copy {
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
}

.vendor-section-toggle-copy .eyebrow,
.vendor-section-toggle-copy h3,
.vendor-section-toggle-copy .vendor-detail-copy {
  margin: 0;
}

.vendor-section-toggle-side {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  padding-top: 0.2rem;
}

.vendor-section-toggle-meta {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-section-toggle-chevron {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  transform: rotate(-135deg);
  transition: transform 180ms ease;
}

.vendor-collapsible-section[data-expanded="false"] .vendor-section-toggle-chevron {
  transform: rotate(45deg);
}

.vendor-collapsible-section[data-expanded="false"] > .vendor-section-content {
  display: none;
}

.vendor-selector-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
}

.vendor-selector-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: flex-end;
  gap: 0.75rem;
}

.vendor-selector-toolbar .vendor-muted-meta {
  max-width: 34rem;
}

.vendor-selector-sort-field {
  min-width: 12rem;
}

.vendor-selector-sort-select {
  min-width: 12rem;
}

.vendor-group-toggle-all {
  white-space: nowrap;
}

.vendor-map-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.vendor-map-header-copy {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
}

.vendor-map-content {
  display: grid;
  gap: 1rem;
}

.vendor-map-header-copy h3,
.vendor-selector-shell h3,
.vendor-route-shell h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.vendor-print-section-heading {
  display: none;
}

.vendor-print-route-shell {
  display: none;
}

.vendor-print-route-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vendor-print-section-heading h2,
.vendor-print-section-heading h3,
.vendor-print-section-heading p {
  margin: 0;
}

.vendor-print-section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.vendor-print-section-heading h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.vendor-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.vendor-map-actions .festival-link::after {
  content: none;
}

.vendor-map-clear,
.vendor-map-print {
  border: 1px solid rgba(205, 183, 163, 0.92);
  cursor: pointer;
  appearance: none;
}

.vendor-map-clear:disabled {
  opacity: 0.48;
  cursor: default;
}

.vendor-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.vendor-map-canvas-shell,
.vendor-route-shell {
  padding: 1rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vendor-map-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(205, 183, 163, 0.95);
  background: #fbf6ee;
  aspect-ratio: var(--vendor-map-width) / var(--vendor-map-height);
}

.vendor-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-map-marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--marker-ring, var(--sage));
  box-shadow:
    0 12px 20px rgba(91, 58, 99, 0.16),
    0 0 0 2px rgba(255, 251, 244, 0.88);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.vendor-map-marker.is-briefly-focused {
  box-shadow:
    0 18px 28px rgba(91, 58, 99, 0.22),
    0 0 0 4px rgba(203, 126, 132, 0.18);
  transform: translate(-50%, -50%) scale(1.12);
}

.vendor-map-marker::before {
  content: "";
  position: absolute;
  inset: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.98);
}

.vendor-map-marker-heart,
.vendor-map-marker-number {
  position: relative;
  z-index: 1;
}

.vendor-map-marker-heart {
  display: block;
  width: 0.92rem;
  height: 0.86rem;
  font-size: 0;
  line-height: 0;
  color: var(--marker-fill, var(--rose));
  background-color: currentColor;
  -webkit-mask: url("assets/decor/hero-heart.svg") center / contain no-repeat;
  mask: url("assets/decor/hero-heart.svg") center / contain no-repeat;
}

.vendor-map-marker-number {
  position: absolute;
  top: calc(100% + 0.22rem);
  left: 50%;
  min-width: 1.55rem;
  padding: 0.12rem 0.32rem;
  border: 1px solid rgba(205, 183, 163, 0.95);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.98);
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(91, 58, 99, 0.12);
}

.vendor-route-shell {
  display: grid;
  gap: 0.8rem;
}

.vendor-map-empty {
  display: grid;
  gap: 0.5rem;
  min-height: 100%;
  align-content: start;
}

.vendor-map-empty h3,
.vendor-map-empty p,
.vendor-route-shell p {
  margin: 0;
}

.vendor-route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.vendor-route-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.vendor-route-swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 251, 244, 0.88);
}

.vendor-route-copy {
  display: grid;
  gap: 0.15rem;
}

.vendor-route-name,
.vendor-selectable-name {
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.vendor-route-booth,
.vendor-selectable-booth {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.35;
}

.vendor-selectable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.vendor-alpha-groups {
  display: grid;
  gap: 1rem;
}

.vendor-alpha-group {
  display: grid;
  gap: 0.75rem;
}

.vendor-alpha-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.1rem;
}

.vendor-alpha-toggle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: default;
}

.vendor-alpha-divider {
  flex: 1 1 auto;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(205, 183, 163, 0.95);
  font-family: "DM Serif Display", serif;
  color: var(--plum);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  line-height: 1.04;
}

.vendor-alpha-meta {
  flex: 0 0 auto;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-alpha-chevron {
  display: none;
}

.vendor-alpha-groups[data-collapsible="true"] .vendor-alpha-toggle {
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}

.vendor-alpha-groups[data-collapsible="true"] .vendor-alpha-chevron {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  border-right: 2px solid var(--plum);
  border-bottom: 2px solid var(--plum);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.vendor-alpha-groups[data-collapsible="true"] .vendor-alpha-group[data-expanded="true"] .vendor-alpha-chevron {
  transform: rotate(-135deg);
}

.vendor-alpha-groups[data-collapsible="true"] .vendor-alpha-group[data-expanded="false"] .vendor-selectable-list {
  display: none;
}

.vendor-alpha-group + .vendor-alpha-group {
  margin-top: 0.1rem;
}

.vendor-alpha-group .vendor-selectable-list {
  margin-top: 0;
}

.vendor-alpha-copy {
  display: none;
}

.vendor-alpha-badge {
  display: none;
}

.vendor-alpha-copy h4,
.vendor-alpha-copy p {
  display: none;
}

.vendor-alpha-copy h4 {
  display: none;
}

.vendor-alpha-copy p {
  display: none;
}

@media (max-width: 760px) {
  .vendor-alpha-group {
    gap: 0.6rem;
  }

  .vendor-alpha-toggle {
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
  }

  .vendor-alpha-divider {
    width: auto;
    padding-bottom: 0.35rem;
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  .vendor-alpha-meta {
    margin-left: auto;
    white-space: nowrap;
  }

  .vendor-alpha-chevron {
    display: inline-block;
    flex: 0 0 auto;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid var(--plum);
    border-bottom: 2px solid var(--plum);
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .vendor-alpha-group[data-expanded="true"] .vendor-alpha-chevron {
    transform: rotate(-135deg);
  }

  .vendor-alpha-group[data-expanded="false"] .vendor-selectable-list {
    display: none;
  }
}

.vendor-selectable-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  scroll-margin-top: 6rem;
}

.vendor-selectable-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.34rem;
  border-radius: 20px 0 0 20px;
  background: var(--vendor-accent, transparent);
}

.vendor-selectable-item.is-favorite {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    inset 0 0 0 2px var(--vendor-accent),
    0 10px 20px rgba(91, 58, 99, 0.08);
}

.vendor-selectable-item.is-briefly-focused {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    inset 0 0 0 2px rgba(126, 158, 120, 0.92),
    0 0 0 4px rgba(126, 158, 120, 0.12);
}

.vendor-selectable-copy {
  display: grid;
  gap: 0.18rem;
}

.vendor-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(205, 183, 163, 0.92);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.96);
  color: var(--rose);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  appearance: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.vendor-favorite-button[aria-pressed="true"] {
  border-color: transparent;
  background: var(--vendor-accent, var(--rose));
  color: #fffaf1;
  box-shadow: 0 12px 20px rgba(91, 58, 99, 0.16);
}

.vendor-favorite-button-heart {
  display: block;
  width: 1rem;
  height: 0.94rem;
  font-size: 0;
  line-height: 0;
  background-color: currentColor;
  -webkit-mask: url("assets/decor/hero-heart.svg") center / contain no-repeat;
  mask: url("assets/decor/hero-heart.svg") center / contain no-repeat;
}

.vendor-match-card {
  padding: 1.15rem;
  display: grid;
  gap: 0.75rem;
}

.festival-card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.1rem;
}

.festival-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  color: #fffaf1;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(95, 139, 143, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.festival-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(95, 139, 143, 0.24);
}

.festival-link-secondary {
  border: 1px solid rgba(205, 183, 163, 0.95);
  background: rgba(255, 251, 244, 0.96);
  color: var(--plum);
  box-shadow: var(--shadow-soft);
}

.festival-link-secondary:hover {
  box-shadow: 0 12px 24px rgba(91, 58, 99, 0.14);
}

.festival-link-disabled {
  color: var(--text-soft);
  opacity: 0.92;
  pointer-events: none;
}

.festival-link::after {
  content: "\2197";
  margin-left: 0.35rem;
}

.festival-card-footer .festival-link::after,
.next-festival-link::after,
.festival-detail-actions .festival-link::after,
.submit-festival-cta-link::after,
.vendor-detail-actions .festival-link::after {
  content: none;
}

.festival-link-disabled::after {
  content: none;
}

.featured-card .festival-card-body {
  padding: 1rem 1rem 1.1rem;
}

.featured-card .festival-card-title {
  font-size: 1.55rem;
}

.featured-card .festival-card-location {
  font-size: 1.08rem;
}

.featured-card .festival-card-date-detail {
  font-size: 1.03rem;
}

.featured-card .festival-card-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.featured-card .festival-card-note {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-card:first-child .festival-card-media {
  aspect-ratio: 16 / 8.1;
}

.featured-card:first-child .festival-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.featured-card:first-child .festival-card-title {
  font-size: 2.1rem;
}

.featured-card:first-child .festival-card-location {
  font-size: 1.18rem;
}

.featured-card:first-child .festival-card-date-detail {
  font-size: 1.12rem;
}

.empty-state {
  padding: 1.5rem;
  text-align: center;
}

.empty-state h3 {
  font-size: 1.5rem;
}

.empty-state p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.site-footer {
  padding-top: 1.6rem;
  text-align: center;
}

body.vendor-embed-mode {
  background-image: none;
}

body.vendor-embed-mode .drawer-toggle,
body.vendor-embed-mode .site-drawer,
body.vendor-embed-mode .site-drawer-backdrop,
body.vendor-embed-mode .site-footer,
body.vendor-embed-mode .vendor-directory-header {
  display: none !important;
}

body.vendor-embed-mode .page-shell,
body.vendor-embed-mode .vendor-directory-page,
body.vendor-embed-mode .vendor-directory-shell,
body.vendor-embed-mode .vendor-view-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

body.vendor-embed-mode .browse-shell.vendor-directory-shell {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body.vendor-embed-mode .browse-shell.vendor-directory-shell::before {
  content: none;
  display: none;
  border: 0;
}

.market-hero,
.hero-side,
.browse-shell,
.featured-card,
.festival-card {
  animation: rise 480ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-shell input:focus-visible,
.drawer-toggle:focus-visible,
.site-drawer-close:focus-visible,
.site-drawer-link:focus-visible,
.hero-search-shell input:focus-visible,
.hero-search-button:focus-visible,
.hero-social-link:focus-visible,
.hero-shortcut:focus-visible,
.filter-chip:focus-visible,
.date-filter-input:focus-visible,
.vendor-filter-input:focus-visible,
.filter-action-button:focus-visible,
.directory-clear-all:focus-visible,
.mobile-filter-toggle:focus-visible,
.mobile-clear-all-filters:focus-visible,
.festival-month-toggle:focus-visible,
.festival-link:focus-visible,
.festival-card-vendor-link:focus-visible,
.festival-card-inline-flag:focus-visible,
.next-festival-vendor-link:focus-visible,
.vendor-directory-back:focus-visible,
.vendor-selector-toggle:focus-visible,
.vendor-section-toggle:focus-visible,
.vendor-control-select:focus-visible,
.vendor-directory-clear:focus-visible,
.vendor-source-link:focus-visible,
.vendor-chip-link:focus-visible,
.vendor-alpha-toggle:focus-visible,
.vendor-overview-link:focus-visible,
.submission-field input:focus-visible,
.submission-select:focus-visible,
.submission-field textarea:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(91, 58, 99, 0.26);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
  }
}

@media (max-width: 1120px) {
  .hero-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 48rem);
  }

  .browse-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel-shell {
    grid-column: 1 / -1;
  }

  .filter-panel .filter-chip {
    min-width: 0;
  }

  .festival-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .browse-header {
    flex-direction: column;
    align-items: start;
  }

  .directory-meta-side {
    justify-items: start;
  }

  .directory-note {
    text-align: left;
  }

  .submit-festival-cta {
    grid-template-columns: 1fr;
  }

  .vendor-directory-controls,
  .vendor-overview-grid,
  .vendor-match-grid {
    grid-template-columns: 1fr;
  }

  .hero-side h1 {
    font-size: clamp(2.35rem, 6.8vw, 3.6rem);
  }

  .hero-launchpad {
    padding: 2rem 0.85rem 1.65rem;
  }

  .hero-launch-shell {
    width: min(100%, 43rem);
    gap: 0.75rem;
  }

  .hero-brand-copy h1 {
    font-size: clamp(1.9rem, 4.8vw, 2.75rem);
    letter-spacing: 0.07em;
  }

  .hero-keywords {
    font-size: 0.8rem;
    gap: 0.4rem 0.7rem;
  }

  .hero-search-stack {
    width: min(100%, 43rem);
  }

  .hero-shortcuts {
    width: 100%;
  }

  .browse-controls {
    grid-template-columns: 1fr;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-header-copy {
    max-width: 42rem;
  }

  .hero-header-copy::before,
  .hero-header-copy::after {
    content: none;
  }

  .hero-subdivider-line {
    width: 4.25rem;
  }

  .next-festival-spotlight {
    margin-inline: clamp(0.7rem, 1.8vw, 1.15rem);
    padding: 1.05rem;
  }

  .next-festival-shell {
    grid-template-columns: 1fr;
    padding-inline: clamp(1.3rem, 2.6vw, 1.85rem);
  }

  .next-festival-panel {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }

  .next-festival-mascot-left {
    left: -4.8rem;
    bottom: -1.25rem;
    height: clamp(12.55rem, 17vw, 15.15rem);
  }

  .next-festival-mascot-right {
    right: -4.8rem;
    bottom: -1.25rem;
    height: clamp(13rem, 17.8vw, 15.75rem);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 0.9rem), var(--max-width));
  }

  .about-story-card {
    order: 1;
  }

  .about-photo-card {
    order: 2;
  }

  .vendor-map-grid,
  .vendor-overview-grid,
  .vendor-match-grid {
    grid-template-columns: 1fr;
  }

  body.drawer-layout .page-shell {
    padding-top: 4.5rem;
  }

  .site-header,
  .directory-meta,
  .festival-card-footer,
  .vendor-detail-actions {
    flex-direction: column;
    align-items: start;
  }

  .site-nav {
    width: 100%;
  }

  .drawer-toggle {
    top: max(0.75rem, env(safe-area-inset-top, 0px) + 0.35rem);
    left: max(0.75rem, env(safe-area-inset-left, 0px) + 0.35rem);
    min-height: 2.8rem;
    padding: 0.62rem 0.88rem 0.62rem 0.78rem;
    font-size: 0.84rem;
  }

  .site-drawer {
    width: min(21rem, calc(100vw - 0.7rem));
  }

  .hero-side,
  .browse-shell {
    padding: 1.2rem;
  }

  .vendor-map-actions,
  .vendor-map-actions .festival-link,
  .vendor-map-actions .vendor-map-clear,
  .vendor-map-actions .vendor-map-print {
    width: 100%;
  }

  .vendor-page-section-toolbar,
  .vendor-page-section-toggle-all {
    width: 100%;
  }

  .vendor-section-toggle {
    align-items: center;
    gap: 0.75rem;
  }

  .vendor-section-toggle-copy {
    max-width: none;
  }

  .vendor-section-toggle-side {
    gap: 0.6rem;
    padding-top: 0;
  }

  .vendor-section-toggle-meta {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .vendor-selector-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .vendor-selector-toolbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .vendor-selector-sort-field,
  .vendor-selector-sort-select {
    width: 100%;
    min-width: 0;
  }

  .vendor-group-toggle-all {
    width: 100%;
  }

  .vendor-selectable-list {
    grid-template-columns: 1fr;
  }

  .hero-launchpad {
    padding: 1.3rem 0.15rem 0.35rem;
  }

  .hero-launch-shell {
    width: 100%;
    gap: 0.9rem;
  }

  .hero-brand-copy h1 {
    max-width: 16ch;
    font-size: clamp(1.6rem, 7.2vw, 2.15rem);
    letter-spacing: 0.06em;
  }

  .hero-keywords {
    gap: 0.3rem 0.55rem;
    font-size: 0.72rem;
  }

  .hero-socials {
    gap: 0.5rem;
    margin-top: 0.72rem;
  }

  .hero-social-link {
    min-height: 2.3rem;
    padding: 0.5rem 0.78rem;
    font-size: 0.8rem;
  }

  .hero-social-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-search-frame {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.55rem;
    border-radius: 1.6rem;
  }

  .hero-search-shell {
    padding: 0 0.5rem 0 0.85rem;
  }

  .hero-search-shell input {
    min-height: 3rem;
    font-size: 1rem;
  }

  .hero-search-button {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
  }

  .hero-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.35rem;
    border-radius: 1.6rem;
  }

  .hero-shortcut {
    min-height: 4.7rem;
    padding: 0.85rem 0.5rem;
  }

  .hero-shortcut::after {
    content: none;
  }

  .hero-side-header {
    padding-top: 1.1rem;
  }

  .browse-controls {
    align-items: stretch;
  }

  .date-filter-panel,
  .vendor-filter-panel,
  .filter-panel-shell {
    align-items: stretch;
  }

  .submission-form-grid {
    grid-template-columns: 1fr;
  }

  .date-filter-panel,
  .vendor-filter-panel,
  .filter-panel-shell,
  .filter-panel,
  .date-filter-controls,
  .vendor-filter-controls,
  .filter-action-group,
  .date-filter-field,
  .date-filter-input,
  .vendor-filter-field,
  .vendor-filter-input,
  .filter-action-button,
  .directory-clear-all {
    width: 100%;
  }

  .date-filter-field,
  .date-filter-input,
  .vendor-filter-field,
  .vendor-filter-input,
  .filter-action-button,
  .directory-clear-all {
    min-width: 0;
    max-width: 100%;
  }

  .date-filter-controls,
  .vendor-filter-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .date-filter-input,
  .vendor-filter-input {
    display: block;
    inline-size: 100%;
    max-inline-size: 100%;
  }

  input[type="date"].date-filter-input {
    -webkit-appearance: none;
    appearance: none;
  }

  .hero-bunting {
    display: none;
  }

  .hero-side-header::before,
  .hero-side-header::after {
    content: none;
  }

  .next-festival-spotlight {
    margin-inline: 0;
    padding: 1rem;
  }

  .next-festival-shell {
    padding-inline: 0;
  }

  .next-festival-media {
    min-height: 220px;
  }

  .next-festival-panel {
    padding: 0;
  }

  .next-festival-mascot {
    display: none;
  }

  .next-festival-link {
    width: 100%;
  }

  .mobile-directory-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
  }

  .mobile-filter-toggle,
  .mobile-clear-all-filters {
    min-height: 3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex: 1 1 12rem;
    padding: 0 1rem;
    border: 1px solid rgba(205, 183, 163, 0.95);
    background: rgba(255, 253, 248, 0.96);
    color: var(--plum);
    box-shadow: var(--shadow-soft);
  }

  .mobile-filter-toggle.is-active {
    border-color: rgba(91, 58, 99, 0.22);
    background: rgba(255, 250, 244, 0.98);
  }

  .mobile-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    min-height: 1.5rem;
    padding: 0 0.38rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--plum));
    color: #fff7f1;
    font-size: 0.76rem;
    font-weight: 900;
  }

  .mobile-clear-all-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 1rem;
    border: 1px solid rgba(205, 183, 163, 0.95);
    background: rgba(255, 253, 248, 0.96);
    color: var(--plum);
    box-shadow: var(--shadow-soft);
  }

  .mobile-clear-all-filters:disabled {
    opacity: 0.45;
    box-shadow: none;
  }

  .browse-controls {
    display: none;
  }

  .browse-controls[data-mobile-open="true"] {
    display: grid;
  }

  .directory-meta {
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .directory-meta-summary,
  .directory-meta-side {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }

  .directory-meta-side .directory-clear-all {
    display: none;
  }

  .directory-meta-side .directory-section-toggle-all {
    display: inline-flex;
    justify-self: start;
  }

  .festival-grid {
    gap: 0.95rem;
  }

  .festival-month-section {
    gap: 0.8rem;
  }

  .festival-month-toggle {
    align-items: center;
    gap: 0.65rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
  }

  .festival-month-divider {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .festival-month-summary {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .festival-month-chevron {
    display: inline-block;
    width: 0.72rem;
    height: 0.72rem;
    border-right: 2px solid var(--plum);
    border-bottom: 2px solid var(--plum);
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .festival-month-section[data-expanded="true"] .festival-month-chevron {
    transform: rotate(-135deg);
  }

  .festival-month-section[data-expanded="false"] .festival-month-grid {
    display: none;
  }

  .festival-month-grid,
  .featured-grid,
  .festival-grid {
    grid-template-columns: 1fr;
  }

  .festival-card-media {
    aspect-ratio: 16 / 8.8;
  }

  .festival-card-body {
    gap: 0.72rem;
    padding: 0.92rem 0.92rem 1rem;
  }

  .festival-card-title {
    font-size: 1.48rem;
  }

  .festival-card-location {
    font-size: 1.08rem;
  }

  .festival-card-date-detail {
    font-size: 1.02rem;
  }

  .festival-card-description {
    display: none;
  }

  .next-festival-vendor-link,
  .vendor-directory-clear,
  .vendor-detail-actions .festival-link {
    width: 100%;
  }

  .festival-card-footer .festival-link {
    width: 100%;
  }

  .submission-actions .festival-link {
    width: 100%;
  }

  .vendor-map-marker {
    width: 1.95rem;
    height: 1.95rem;
  }

  .vendor-map-marker-number {
    min-width: 1.45rem;
    font-size: 0.64rem;
  }

  .featured-card:first-child {
    grid-column: auto;
    min-height: 240px;
  }

  .festival-card-topline {
    flex-direction: column;
    align-items: start;
  }

  .hero-side h1 {
    max-width: none;
  }

  .hero-upcoming-copy h2 {
    font-size: clamp(2.35rem, 9vw, 3.05rem);
  }
}

@media print {
  @page {
    margin: 0.5in;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: #fff !important;
  }

  body::before {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  .browse-shell::before,
  .hero-side::before {
    content: none !important;
    display: none !important;
    border: 0 !important;
  }

  .drawer-toggle,
  .site-drawer,
  .site-drawer-backdrop,
  .site-footer,
  .vendor-directory-back,
  .vendor-detail-actions,
  .vendor-map-actions,
  .vendor-favorite-button,
  .vendor-route-shell {
    display: none !important;
  }

  body.drawer-layout .page-shell,
  .page-shell {
    width: 100% !important;
    max-width: none !important;
    padding-top: 0 !important;
  }

  .browse-shell {
    padding: 0 !important;
    border: 0 !important;
    background: #fff !important;
  }

  .vendor-directory-header {
    display: none !important;
  }

  .vendor-summary-shell {
    display: none !important;
  }

  .vendor-selector-header-row,
  .vendor-selector-toolbar {
    display: none !important;
  }

  .vendor-detail-shell,
  .vendor-map-canvas-shell,
  .vendor-selector-shell,
  .vendor-selectable-item,
  .vendor-count-pill,
  .vendor-count-pill-soft {
    background: #fff !important;
    box-shadow: none !important;
  }

  .vendor-detail-shell,
  .vendor-map-canvas-shell,
  .vendor-selector-shell {
    border-color: rgba(205, 183, 163, 0.92) !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .vendor-map-grid {
    grid-template-columns: 1fr;
  }

  .vendor-detail-shell {
    margin: 0 0 0.2in !important;
    padding: 0 0 0.18in !important;
  }

  .vendor-detail-header {
    gap: 0.35rem;
  }

  .vendor-detail-header .vendor-detail-copy {
    max-width: none;
  }

  .vendor-map-shell {
    margin-top: 0 !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .vendor-map-shell .vendor-map-canvas-shell {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .vendor-map-shell .vendor-map-header {
    display: none !important;
  }

  .vendor-map-shell .vendor-print-map-heading {
    display: grid !important;
    gap: 0.4rem;
    margin-bottom: 0.95rem;
  }

  .vendor-map-shell .vendor-muted-meta {
    margin-top: 0.18in;
  }

  .vendor-map-shell .vendor-map-stage {
    border-radius: 18px !important;
  }

  .vendor-map-stage {
    max-height: 8.7in;
  }

  .vendor-page-section-toolbar,
  .vendor-section-toggle {
    display: none !important;
  }

  .vendor-collapsible-section > .vendor-section-content {
    display: block !important;
  }

  body.print-has-favorites .vendor-selector-shell {
    break-before: page;
    page-break-before: always;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body:not(.print-has-favorites) .vendor-selector-shell {
    display: none !important;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-detail-header {
    display: none !important;
  }

  body.print-has-favorites .vendor-selector-shell > * {
    display: none !important;
  }

  body.print-has-favorites .vendor-selector-shell > .vendor-print-route-shell {
    display: grid !important;
    gap: 0.95rem;
    max-width: 7.2in;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-section-heading {
    display: grid !important;
    gap: 0.45rem;
    margin-bottom: 0;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-section-heading .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-section-heading h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-section-heading h3 {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.15;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-section-heading .vendor-detail-copy {
    max-width: 5.8in;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-route-card {
    padding: 0.22in 0.24in !important;
    border-radius: 18px !important;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-route-card .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-route-card h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.08;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.5rem;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-print-route-card,
  body.print-has-favorites .vendor-selector-shell .vendor-route-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-item {
    gap: 0.5rem;
    padding: 0.08rem 0;
    align-items: start;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-swatch {
    width: 0.72rem;
    height: 0.72rem;
    margin-top: 0.28rem;
    box-shadow: none;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-copy {
    gap: 0.06rem;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-name {
    font-size: 1rem;
    line-height: 1.28;
  }

  body.print-has-favorites .vendor-selector-shell .vendor-route-booth {
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .vendor-map-marker {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.94),
      0 10px 16px rgba(91, 58, 99, 0.12) !important;
  }
}
