:root {
  --orange: #ff6a18;
  --orange-dark: #ef5a06;
  --black: #141414;
  --text: #1d1d1f;
  --muted: #646464;
  --line: #ececec;
  --bg: #ffffff;
  --soft: #f8f8f8;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --container: 1220px;
}

.mobile-menu-toggle,
.mobile-site-menu {
  display: none;
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0;
  }

  .site-header .brand {
    width: auto;
    text-align: left;
  }

  .site-header .brand img {
    width: min(176px, 52vw);
  }

  body:not(.admin-body) .site-header .main-nav,
  body:not(.admin-body) .site-header .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    min-height: 42px;
    padding: 0 0.78rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    cursor: pointer;
  }

  .mobile-menu-toggle-bars {
    display: grid;
    gap: 4px;
    width: 18px;
  }

  .mobile-menu-toggle-bars span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle-bars span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-mobile-menu-open .mobile-menu-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-site-menu {
    grid-column: 1 / -1;
    display: block;
    padding: 0.82rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  }

  .mobile-site-menu[hidden] {
    display: none !important;
  }

  .mobile-site-menu-nav,
  .mobile-site-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.54rem;
  }

  .mobile-site-menu-actions {
    margin-top: 0.65rem;
    padding-top: 0.62rem;
    border-top: 1px solid #edf0f4;
  }

  .mobile-site-menu-nav a,
  .mobile-site-menu-social {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.62rem;
    border: 1px solid #edf0f4;
    border-radius: 11px;
    background: #fbfcfd;
    color: #26313d;
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
  }

  .mobile-site-menu-social {
    min-height: 34px;
    gap: 0.34rem;
    padding: 0.34rem 0.44rem;
    border-color: transparent;
    background: transparent;
    color: #667085;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: none;
  }

  .mobile-site-menu-social::before {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    font-family: Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    background: #f2f4f7;
    box-shadow: none;
  }

  .mobile-site-menu-social[href*="facebook.com"] {
    color: #667085;
  }

  .mobile-site-menu-social[href*="facebook.com"]::before {
    content: "f";
    border-radius: 999px;
  }

  .mobile-site-menu-social[href*="instagram.com"] {
    color: #667085;
  }

  .mobile-site-menu-social[href*="instagram.com"]::before {
    content: "ig";
    border-radius: 999px;
    font-size: 0.56rem;
  }

  .mobile-site-menu-nav a[aria-current="page"] {
    border-color: rgba(255, 106, 24, 0.22);
    background: #fff5ed;
    color: var(--orange-dark);
  }

  .mobile-site-menu-actions .button {
    grid-column: 1 / -1;
    min-height: 42px;
    border-radius: 11px;
    font-size: 0.84rem;
  }
}

@media (max-width: 390px) {
  .mobile-menu-toggle-text {
    display: none;
  }

  .mobile-menu-toggle {
    width: 42px;
    padding: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.admin-html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.checkout-body {
  background: linear-gradient(180deg, #fff7f1 0%, #fff 240px);
}

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

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

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.065);
  backdrop-filter: blur(16px);
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(239, 216, 202, 0.9);
  background:
    linear-gradient(180deg, #fffaf7 0%, #fff 72%),
    #fff;
}

.site-footer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.75rem);
  min-height: 112px;
  padding: 1.45rem 0;
}

.site-footer-copy {
  display: grid;
  gap: 0.22rem;
  max-width: 680px;
}

.site-footer-legal {
  margin: 0;
  color: #2f2925;
  font-size: 0.96rem;
  line-height: 1.3;
  font-weight: 800;
}

.site-footer-meta {
  margin: 0;
  color: #66584f;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 700;
}

.site-footer-disclaimer {
  max-width: 660px;
  margin: 0.42rem 0 0;
  color: #75675f;
  font-size: 0.79rem;
  line-height: 1.5;
  font-weight: 700;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.58rem 0.62rem;
  max-width: min(100%, 620px);
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 160, 124, 0.32);
  background: rgba(255, 255, 255, 0.92);
  color: #6b594f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 8px 18px rgba(86, 54, 36, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-footer-links a.site-footer-social {
  width: 38px;
  min-width: 38px;
  padding: 0;
  gap: 0;
  color: #8f6f61;
  border-color: rgba(109, 89, 79, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.site-footer-links a.site-footer-social > span:not(.social-icon) {
  display: none;
}

.site-footer-links a.site-footer-email {
  color: var(--orange);
  border-color: rgba(255, 106, 24, 0.24);
  background: #fffdfb;
  letter-spacing: 0;
  text-transform: none;
}

.social-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2e8e1;
  color: #8d6758;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.social-icon-instagram,
.header-social-instagram {
  overflow: hidden;
  background: #f2e8e1;
}

.social-icon-instagram::before,
.social-icon-instagram::after,
.header-social-instagram::before,
.header-social-instagram::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: currentColor;
}

.social-icon-instagram::before {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.social-icon-instagram::after {
  width: 4px;
  height: 4px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 4px -4px 0 -2px currentColor;
}

.site-footer-links a:hover {
  color: var(--orange);
  border-color: rgba(255, 106, 24, 0.45);
  background: #fffaf7;
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.11);
  transform: translateY(-1px);
}

.site-footer-links a.site-footer-social:hover {
  color: #7e5b4d;
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff8f4;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0 0.6rem;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 126, 44, 0.14), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 165, 92, 0.1), transparent 18%);
  pointer-events: none;
}

.legal-hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.8rem;
  line-height: 0.95;
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-section {
  padding-top: 1rem;
}

.legal-layout {
  display: grid;
}

.legal-card {
  max-width: 900px;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.45rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-updated {
  margin-bottom: 0.9rem !important;
  color: var(--orange) !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-page {
  background: #fbfcfd;
}

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

.network-brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #141414;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: 0;
}

.network-brand-copy {
  display: grid;
  gap: 0.04rem;
  color: #172033;
  line-height: 1.05;
}

.network-brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.network-brand-copy small {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-hero {
  padding: clamp(3.4rem, 8vw, 6.8rem) 0 clamp(2.5rem, 6vw, 4.8rem);
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(27, 48, 75, 0.86)),
    url("assets/apopka-buzz-share.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.network-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.network-hero-copy {
  max-width: 760px;
}

.network-hero-copy .eyebrow {
  color: #f7c56e;
}

.network-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.network-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.7;
}

.network-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.network-proof-panel {
  display: grid;
  gap: 0.32rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.network-proof-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-proof-panel strong {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 1.02rem;
}

.network-section {
  background: #fff;
}

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

.network-site-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.network-site-card:hover,
.network-site-card:focus-visible {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.network-site-card img {
  width: min(210px, 72%);
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.network-site-card strong {
  color: #172033;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.network-site-card span {
  color: #596579;
  font-size: 0.95rem;
  line-height: 1.65;
}

.network-billing-section {
  border-top: 1px solid #e7edf3;
  background: #f5f8fb;
}

.network-billing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.network-billing-grid h2 {
  margin: 0 0 0.7rem;
  color: #172033;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.network-billing-grid p {
  max-width: 760px;
  margin: 0;
  color: #596579;
  font-size: 1.02rem;
  line-height: 1.78;
}

.network-descriptor-list {
  display: grid;
  gap: 0.75rem;
}

.network-descriptor-list span {
  display: block;
  padding: 0.92rem 1rem;
  border: 1px solid #dde6ef;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .network-hero-layout,
  .network-billing-grid {
    grid-template-columns: 1fr;
  }

  .network-site-grid {
    grid-template-columns: 1fr;
  }

  .network-site-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .network-brand {
    gap: 0.55rem;
  }

  .network-brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.18rem;
  }

  .network-brand-copy strong {
    font-size: 1.25rem;
  }

  .network-brand-copy small {
    font-size: 0.62rem;
  }

  .network-hero {
    padding: 3rem 0 2.2rem;
  }

  .network-hero-actions .button {
    width: 100%;
  }
}

.category-link-card {
  display: block;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 24, 0.22);
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.12);
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 3.1rem 0;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 10, 22, 0.92) 0%, rgba(5, 10, 22, 0.78) 48%, rgba(5, 10, 22, 0.5) 100%),
    url("assets/coverphoto.jpg");
  background-size: cover;
  background-position: center;
}

.news-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.62fr);
  gap: 2rem;
  align-items: center;
  max-width: 1120px;
}

.news-hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 0;
}

.news-hero-copy .eyebrow {
  margin: 0;
  color: #ffb483;
}

.news-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.4rem;
  line-height: 0.95;
}

.news-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.news-hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.news-hero-actions .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.news-feature-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.news-feature-panel > span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-feature-panel > strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.news-feature-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-feature-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.2rem;
}

.news-feature-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  border: 1px solid #f0e3da;
  border-radius: 999px;
  background: #fff8f2;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.mayor-desk-section {
  padding: 2.2rem 0 0;
  background: #fff;
}

.mayor-desk-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr) minmax(220px, 0.72fr);
  gap: 0.7rem;
  align-items: stretch;
  padding: 0.85rem;
  border: 1px solid #dfe9e5;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #fffaf7 0%, #fff 52%, #f8fbff 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.mayor-desk-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), #2563eb 62%, #159947 100%);
}

.mayor-desk-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.15rem 0.2rem 0.15rem 0.55rem;
}

.mayor-desk-copy .eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.mayor-desk-copy h2 {
  margin: 0;
  color: #071225;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.25rem;
  line-height: 0.95;
}

.mayor-desk-copy p:not(.eyebrow) {
  max-width: 300px;
  margin: 0;
  color: #3d4653;
  font-size: 0.9rem;
  line-height: 1.42;
}

.mayor-desk-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.12rem;
}

.mayor-desk-actions .button {
  min-height: 36px;
  padding: 0 0.82rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

.mayor-desk-standard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  align-content: center;
  min-width: 0;
  padding: 0.72rem 0.8rem;
  border: 1px solid #dfe8ef;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.mayor-desk-standard span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mayor-desk-standard strong {
  color: #071225;
  font-size: 0.98rem;
  line-height: 1.15;
}

.mayor-desk-standard p {
  margin: 0;
  color: #536170;
  font-size: 0.82rem;
  line-height: 1.42;
}

.mayor-desk-empty,
.mayor-desk-rule,
.mayor-desk-update {
  border: 1px solid #e2e7ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.mayor-desk-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  min-width: 0;
}

.mayor-desk-empty,
.mayor-desk-rule,
.mayor-desk-update {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
  align-content: center;
  min-height: 92px;
  padding: 0.7rem 0.78rem;
}

.mayor-desk-empty {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fffaf7;
}

.mayor-desk-empty strong,
.mayor-desk-rule strong,
.mayor-desk-update strong {
  color: #071225;
  font-size: 0.94rem;
  line-height: 1.18;
}

.mayor-desk-empty span,
.mayor-desk-rule span,
.mayor-desk-update span,
.mayor-desk-update p {
  color: #536170;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mayor-desk-rule {
  border-color: rgba(37, 99, 235, 0.16);
  background: #f7fbff;
}

.mayor-desk-rule span,
.mayor-desk-update span {
  color: #1658d9;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.mayor-desk-update {
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.mayor-desk-update:hover,
.mayor-desk-update:focus-visible {
  border-color: rgba(255, 106, 24, 0.34);
  box-shadow: 0 14px 28px rgba(255, 106, 24, 0.1);
  transform: translateY(-1px);
}

.mayor-desk-update:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.mayor-desk-update p {
  margin: 0;
}

.news-story-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.news-story-card {
  display: block;
}

.news-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.news-main-feed {
  display: grid;
  gap: 1rem;
}

.news-story-card h3 {
  margin: 0.65rem 0 0.45rem;
  line-height: 1.05;
}

.news-story-card p {
  color: var(--muted);
  line-height: 1.62;
}

.news-card-action {
  display: inline-flex;
  margin-top: 0.2rem;
  color: var(--orange);
  font-weight: 800;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.news-story-card {
  padding: 1rem;
}

.news-category-card {
  --news-accent: var(--orange);
  --news-soft: #fff6ef;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 0.82rem;
  color: inherit;
  min-height: 190px;
  height: 100%;
  padding: 1.18rem;
  border-color: #e7edf3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 253, 255, 0.94) 100%);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.news-category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--news-accent);
}

.news-category-card[data-category="business"] {
  --news-accent: #ff6a18;
  --news-soft: #fff3eb;
}

.news-category-card[data-category="food_events"] {
  --news-accent: #2563eb;
  --news-soft: #eef5ff;
}

.news-category-card[data-category="community"] {
  --news-accent: #159947;
  --news-soft: #effaf3;
}

.news-category-card[data-category="guides"] {
  --news-accent: #7c3aed;
  --news-soft: #f4f0ff;
}

.news-category-card:hover,
.news-category-card.is-active {
  border-color: var(--news-accent);
  background:
    linear-gradient(180deg, var(--news-soft) 0%, #fff 86%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.news-category-card:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.28);
  outline-offset: 3px;
}

.news-story-card h3 {
  font-size: 1.25rem;
}

.news-story-card h3 a {
  color: inherit;
}

.news-story-card p {
  margin-bottom: 0;
}

.news-category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.news-category-count {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  flex: 0 0 auto;
  padding: 0 0.62rem;
  border-radius: 999px;
  background: var(--news-soft);
  color: var(--news-accent);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.news-category-card .news-card-action {
  align-self: end;
  margin-top: 0;
  color: var(--news-accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.news-category-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.72rem;
}

.news-category-card p {
  max-width: 36rem;
  margin: 0;
  font-size: 0.96rem;
}

.news-category-section {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid #e1e8ef;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  scroll-margin-top: 110px;
}

.news-category-section[hidden] {
  display: none;
}

.news-category-section-head h3 {
  margin: 0.45rem 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.news-category-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-article-list {
  display: grid;
  gap: 0.7rem;
}

.news-category-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid #e6edf4;
  border-radius: 12px;
  background: #fff;
  color: inherit;
}

.news-category-article.has-thumbnail {
  grid-template-columns: 112px minmax(0, 1fr) auto;
}

.news-category-article-thumb {
  width: 112px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  background: #fffaf4;
}

.news-category-article:hover h4 {
  color: var(--orange);
}

.news-category-article h4 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.news-category-article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.news-category-article span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-empty-state {
  display: grid;
  gap: 0.28rem;
  place-items: center;
  min-height: 86px;
  padding: 1rem;
  border: 1px dashed #e5d8cd;
  border-radius: 12px;
  background: #fffaf7;
  color: #4b5563;
  text-align: center;
}

.news-empty-state strong {
  color: #111827;
}

.news-empty-state span {
  color: #667085;
  font-size: 0.9rem;
}

.article-main {
  padding: 2.25rem 0 3rem;
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 340px);
}

.article-detail {
  display: grid;
  gap: 1.35rem;
  max-width: 920px;
}

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

.article-header h1 {
  max-width: 840px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.7rem;
  line-height: 0.92;
}

.article-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-meta span + span::before {
  content: "/";
  margin-right: 0.75rem;
  color: #c9c0ba;
}

.article-cover {
  width: 100%;
  max-width: 760px;
  max-height: 320px;
  justify-self: start;
  object-fit: contain;
  background: #fff;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-body {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.78;
}

.article-body p {
  margin: 0;
}

.article-empty {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.events-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  align-items: center;
  padding: 4rem 0 3.8rem;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 8, 18, 0.96) 0%, rgba(4, 8, 18, 0.86) 40%, rgba(4, 8, 18, 0.58) 72%, rgba(4, 8, 18, 0.4) 100%),
    linear-gradient(180deg, rgba(255, 106, 24, 0.18) 0%, rgba(255, 106, 24, 0) 36%),
    url("assets/coverphoto.jpg");
  background-size: cover;
  background-position: center;
}

.events-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 18, 0) 0%, rgba(4, 8, 18, 0.2) 50%, rgba(4, 8, 18, 0.78) 100%);
  pointer-events: none;
}

.events-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.events-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 378px);
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
}

.events-hero-copy {
  display: grid;
  align-content: center;
  gap: 1.05rem;
  max-width: 660px;
}

.events-hero-kicker {
  justify-self: start;
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.events-hero-copy .eyebrow {
  margin: 0;
  color: #ffb483;
}

.events-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.65rem;
  line-height: 0.92;
  text-wrap: balance;
}

.events-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

.events-hero-actions {
  display: flex;
  gap: 0.78rem;
  flex-wrap: wrap;
  padding-top: 0.15rem;
}

.events-hero-actions .button {
  min-height: 48px;
  border-radius: 8px;
  padding: 0 1.25rem;
  font-weight: 900;
}

.events-hero-actions .button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.events-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  max-width: 650px;
  padding-top: 0.48rem;
}

.events-hero-proof span {
  position: relative;
  min-width: 0;
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 0.16rem;
  overflow: hidden;
  padding: 0.72rem 0.8rem 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.09) 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.events-hero-proof span::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  bottom: 0.78rem;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: var(--orange);
}

.events-hero-proof strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.05;
}

.events-feature-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 378px);
  display: grid;
  gap: 0.9rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 245, 0.96) 100%);
  color: var(--text);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.events-feature-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb36f 55%, #2579ff 100%);
}

.events-feature-panel > span {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  min-height: 26px;
  padding: 0 0.58rem;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 999px;
  background: #fff2e8;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.events-feature-panel > strong {
  color: #161a22;
  font-size: 1.5rem;
  line-height: 1.08;
  text-wrap: balance;
}

.events-feature-panel p {
  margin: 0;
  color: #5b6470;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.events-feature-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.2rem;
}

.events-feature-tags a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.78rem;
  border: 1px solid #f1d7c7;
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(255, 106, 24, 0.06);
}

.events-feature-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 0.95rem;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 106, 24, 0.18);
}

.event-calendar-section {
  padding-top: 2.55rem;
}

.events-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
}

.event-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-filter-panel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.event-toolbar-label {
  color: #536170;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-filter-buttons {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.event-filter-button {
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid #f0e7e1;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.event-filter-button:hover,
.event-filter-button.is-active {
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff3eb;
  color: var(--orange);
}

.event-filter-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.events-list {
  display: grid;
  gap: 0.85rem;
}

.event-list-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.event-list-card:hover {
  border-color: rgba(255, 106, 24, 0.28);
  box-shadow: 0 16px 32px rgba(255, 106, 24, 0.09);
  transform: translateY(-1px);
}

.event-list-card.is-featured,
.event-grid-card.is-featured {
  border-color: rgba(255, 106, 24, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.12) 0%, rgba(255, 255, 255, 0.96) 38%, #fffaf4 100%);
  box-shadow: 0 18px 38px rgba(255, 106, 24, 0.16);
}

.event-list-card.is-paid-placement::before,
.event-grid-card.is-paid-placement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb14a 100%);
}

.event-list-card.is-featured {
  grid-template-columns: minmax(182px, 226px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 174px;
  padding: 1.15rem 1.25rem 1.2rem;
}

.event-list-card.is-paid-placement .event-thumb {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 142px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.event-list-card.is-paid-placement .event-thumb img,
.event-grid-card.is-paid-placement .event-thumb img {
  object-fit: contain;
  background: #fff8f2;
}

.event-list-card.is-paid-placement .event-list-copy {
  align-self: center;
  padding-right: 7rem;
}

.event-list-card.is-paid-placement .event-meta-row span,
.event-grid-card.is-paid-placement .event-meta-row span {
  border: 1px solid rgba(255, 106, 24, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.event-list-card.is-featured .event-list-copy h3 {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1;
}

.event-list-card.is-featured .event-list-copy p {
  -webkit-line-clamp: 3;
}

.event-grid-card.is-featured {
  position: relative;
  overflow: hidden;
}

.event-grid-card.is-featured .event-thumb {
  aspect-ratio: 16 / 9;
}

.event-grid-card.is-featured .event-grid-copy h3 {
  font-size: 1.35rem;
}

.event-grid-card .event-feature-tag {
  justify-self: start;
  width: fit-content;
}

.event-list-card.is-paid-placement .event-feature-tag {
  position: absolute;
  top: 0.86rem;
  right: 1rem;
  justify-self: auto;
  border: 1px solid rgba(255, 106, 24, 0.24);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.22);
}

.event-grid-card.is-paid-placement .event-feature-tag {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  z-index: 2;
  justify-self: auto;
  width: auto;
  border: 1px solid rgba(255, 106, 24, 0.22);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.22);
}

.event-list-card.is-spotlight,
.event-grid-card.is-spotlight {
  border-color: rgba(108, 76, 244, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.14) 0%, rgba(255, 255, 255, 0.96) 42%, #f8f5ff 100%);
  box-shadow:
    0 18px 38px rgba(255, 106, 24, 0.13),
    0 16px 34px rgba(108, 76, 244, 0.1);
}

.event-list-card.is-spotlight::before,
.event-grid-card.is-spotlight::before {
  background: linear-gradient(90deg, var(--orange) 0%, #6c4cf4 100%);
}

.event-list-card.is-spotlight .event-feature-tag,
.event-grid-card.is-spotlight .event-feature-tag {
  border-color: rgba(108, 76, 244, 0.26);
  background: #6c4cf4;
  color: #fff;
  box-shadow: 0 10px 20px rgba(108, 76, 244, 0.2);
}

.event-thumb {
  display: block;
  overflow: hidden;
  align-self: start;
  width: 132px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #eef0f2;
}

.event-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fffaf4;
}

.event-thumb img.is-default-event-image,
.event-detail-media img.is-default-event-image {
  object-fit: contain;
  object-position: center;
  background: #fffaf4;
}

.event-list-copy {
  min-width: 0;
}

.event-meta-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.45rem;
}

.event-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-list-copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.event-list-copy h3 a,
.event-grid-copy h3 a {
  color: inherit;
}

.event-list-copy p {
  max-width: 720px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-feature-tag {
  justify-self: end;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 106, 24, 0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-promo-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: var(--shadow);
}

.event-promo-panel h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.event-promo-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.event-promo-points {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-promo-points li {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 0.7rem;
  border: 1px solid #f0e3da;
  border-radius: 8px;
  background: #fff;
  color: #51382c;
  font-size: 0.82rem;
  font-weight: 900;
}

.event-promo-panel .button {
  width: 100%;
}

.events-grid-view {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.event-grid-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.event-grid-card .event-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.event-grid-card .event-thumb img {
  height: 100%;
}

.event-grid-copy {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.event-grid-copy h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.event-grid-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.event-empty-state {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
  border: 1px dashed #ddd6cf;
  border-radius: 12px;
  background: #fffdfb;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.event-empty-state strong {
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.2;
}

.event-empty-state span {
  max-width: 520px;
  line-height: 1.5;
}

.event-empty-state a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 106, 24, 0.26);
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.event-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.3rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.event-view-button {
  min-height: 42px;
  padding: 0 0.9rem;
  border: 1px solid #f0e7e1;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.event-view-button.is-active {
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff3eb;
  color: var(--orange);
}

@media (max-width: 900px) {
  .events-hero-proof {
    max-width: none;
  }

  .event-view-toggle {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .events-hero {
    padding: 2.35rem 0 2.25rem;
  }

  .events-feature-panel {
    gap: 0.72rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .events-feature-panel > strong {
    font-size: 1.32rem;
  }

  .events-feature-panel p {
    font-size: 0.92rem;
  }

  .events-hero-proof {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .events-hero-proof span {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    padding: 0.56rem 0.68rem 0.56rem 0.8rem;
  }

  .events-hero-proof span::before {
    top: 0.56rem;
    bottom: 0.56rem;
  }

  .event-filter-panel {
    gap: 0.65rem;
  }

  .event-view-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .event-view-toggle .event-toolbar-label {
    flex: 1 1 auto;
  }
}

.event-detail-main {
  padding: 2.25rem 0 3rem;
  background: linear-gradient(180deg, #fff7f1 0%, #fff 280px);
}

.event-detail-shell {
  display: grid;
  gap: 1rem;
}

.event-back-link {
  color: var(--orange);
  font-weight: 800;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: start;
}

.event-detail-copy {
  display: grid;
  gap: 1rem;
}

.event-detail-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.7rem;
  line-height: 0.92;
}

.event-detail-meta,
.event-detail-facts {
  display: grid;
  gap: 0.45rem;
}

.event-detail-meta span {
  color: var(--muted);
  font-weight: 800;
}

.event-detail-facts {
  max-width: 620px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.event-detail-facts p {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 0.75rem;
  margin: 0;
  color: var(--muted);
}

.event-detail-facts strong {
  color: var(--text);
}

.event-detail-description {
  display: grid;
  gap: 0.8rem;
  max-width: 720px;
  color: #30343a;
  font-size: 1.04rem;
  line-height: 1.7;
}

.event-detail-description p {
  margin: 0;
}

.event-detail-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.event-detail-media img.is-default-event-image {
  aspect-ratio: 3 / 2;
}

.event-submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  align-items: start;
}

.event-submit-main {
  background:
    radial-gradient(circle at 16% 5%, rgba(255, 106, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #fff7f1 0%, #fff 290px);
}

.event-submit-panel {
  display: grid;
  gap: 1.15rem;
}

.event-submit-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0e7e1;
}

.event-submit-form {
  display: grid;
  gap: 1rem;
}

.form-section {
  display: grid;
  gap: 0.95rem;
  padding-top: 1.1rem;
  border-top: 1px solid #f0e7e1;
}

.form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-section-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.form-section-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-section-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.15;
}

.form-section-head p {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-section > label.full {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.event-upload-field {
  min-height: 172px;
  margin-top: 0;
}

.event-upload-field:has(.upload-preview-shell:not([hidden])) .upload-copy {
  display: none;
}

.event-submit-sidebar {
  top: 108px;
}

.event-submit-side-card {
  display: grid;
  gap: 0.85rem;
}

.event-submit-side-card .summary-description {
  margin: 0;
}

.event-tier-options {
  display: grid;
  gap: 0.62rem;
}

.event-tier-card {
  display: grid;
  gap: 0.22rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid #eee3dc;
  border-radius: 12px;
  background: #fff;
}

.event-tier-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-tier-card strong {
  color: var(--text);
  line-height: 1.2;
}

.event-tier-card small {
  color: var(--muted);
  line-height: 1.4;
}

.event-tier-card-highlight {
  border-color: rgba(255, 106, 24, 0.28);
  background: #fff8f2;
}

.event-submit-steps {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
}

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

.event-submit-steps li::before {
  content: counter(list-item);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.nav-wrap {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(max-content, auto) minmax(270px, 0.95fr);
  align-items: center;
  column-gap: clamp(0.9rem, 1.8vw, 1.75rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
  min-width: 0;
  padding: 0.22rem 0;
}

.brand img {
  width: clamp(220px, 18.5vw, 292px);
  height: auto;
}

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.main-nav {
  justify-content: center;
  justify-self: center;
  padding: 0.42rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.nav-actions {
  justify-content: flex-end;
  justify-self: end;
  gap: 0.62rem;
  min-width: 0;
}

.nav-wrap > .brand + .nav-actions {
  grid-column: 3;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(109, 89, 79, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #8d6758;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-social-link > span:not(.header-social-icon) {
  display: none;
}

.header-social-link:hover {
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff7f1;
  box-shadow: 0 9px 20px rgba(255, 106, 24, 0.08);
  transform: translateY(-1px);
}

.header-social-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2e8e1;
  color: #8d6758;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-social-icon.header-social-instagram {
  background: #f2e8e1;
}

.header-social-instagram::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.header-social-instagram::after {
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 5px -5px 0 -2px currentColor;
}

.header-social-link[href*="facebook.com"],
.site-footer-links a.site-footer-social[href*="facebook.com"] {
  border-color: rgba(24, 119, 242, 0.28);
  background: linear-gradient(180deg, #fff 0%, #f1f7ff 100%);
  color: #174ea6;
  box-shadow:
    0 12px 24px rgba(24, 119, 242, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.header-social-link[href*="instagram.com"],
.site-footer-links a.site-footer-social[href*="instagram.com"] {
  border-color: rgba(193, 53, 132, 0.28);
  background: linear-gradient(180deg, #fff 0%, #fff2f6 100%);
  color: #a62673;
  box-shadow:
    0 12px 24px rgba(193, 53, 132, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.header-social-link[href*="facebook.com"] .header-social-icon,
.site-footer-links a.site-footer-social[href*="facebook.com"] .social-icon {
  background: linear-gradient(135deg, #1877f2 0%, #0b5fc6 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 16px rgba(24, 119, 242, 0.26);
}

.header-social-link[href*="instagram.com"] .header-social-icon,
.site-footer-links a.site-footer-social[href*="instagram.com"] .social-icon {
  background: radial-gradient(circle at 30% 28%, #ffd776 0 16%, #f56040 36%, #c13584 62%, #405de6 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 8px 16px rgba(193, 53, 132, 0.26);
}

.header-social-link:hover .header-social-icon,
.site-footer-links a.site-footer-social:hover .social-icon {
  transform: scale(1.08);
}

.header-social-link[href*="facebook.com"]:hover,
.site-footer-links a.site-footer-social[href*="facebook.com"]:hover {
  border-color: rgba(24, 119, 242, 0.45);
  background: linear-gradient(180deg, #fff 0%, #eaf3ff 100%);
  color: #0b5fc6;
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.18);
}

.header-social-link[href*="instagram.com"]:hover,
.site-footer-links a.site-footer-social[href*="instagram.com"]:hover {
  border-color: rgba(193, 53, 132, 0.45);
  background: linear-gradient(180deg, #fff 0%, #ffeaf1 100%);
  color: #97266d;
  box-shadow: 0 14px 28px rgba(193, 53, 132, 0.18);
}

.header-social-link:focus-visible,
.site-footer-links a.site-footer-social:focus-visible,
.mobile-site-menu-social:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.26);
  outline-offset: 3px;
}

.header-social-link,
.site-footer-links a.site-footer-social {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #667085;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.header-social-icon,
.site-footer-links a.site-footer-social .social-icon {
  width: 24px;
  height: 24px;
  background: #f4f6f8;
  color: #667085;
  font-size: 0.82rem;
  box-shadow: none;
}

.site-footer-links a.site-footer-social .social-icon-instagram::before {
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.site-footer-links a.site-footer-social .social-icon-instagram::after {
  width: 6px;
  height: 6px;
  box-shadow: 5px -5px 0 -2px currentColor;
}

.header-social-link[href*="facebook.com"],
.header-social-link[href*="instagram.com"],
.site-footer-links a.site-footer-social[href*="facebook.com"],
.site-footer-links a.site-footer-social[href*="instagram.com"] {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #667085;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.header-social-link[href*="facebook.com"] .header-social-icon,
.site-footer-links a.site-footer-social[href*="facebook.com"] .social-icon {
  background: #edf4ff;
  color: #2f68c9;
  box-shadow: none;
}

.header-social-link[href*="instagram.com"] .header-social-icon,
.site-footer-links a.site-footer-social[href*="instagram.com"] .social-icon {
  background: #fff1f5;
  color: #bd547a;
  box-shadow: none;
}

.header-social-link:hover,
.site-footer-links a.site-footer-social:hover {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fffaf7;
  color: #667085;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.header-social-link:hover .header-social-icon,
.site-footer-links a.site-footer-social:hover .social-icon {
  transform: scale(1.03);
}

.header-social-link[href*="facebook.com"]:hover,
.header-social-link[href*="instagram.com"]:hover,
.site-footer-links a.site-footer-social[href*="facebook.com"]:hover,
.site-footer-links a.site-footer-social[href*="instagram.com"]:hover {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fffaf7;
  color: #667085;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.main-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: #262a31;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #fff3eb;
  color: #c94d0c;
}

.main-nav a[aria-current="page"] {
  color: var(--orange);
  background: #fff3eb;
  font-weight: 900;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.32rem;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
}

.site-header .button {
  min-height: 44px;
  padding: 0 1.08rem;
  border-radius: 999px;
  font-size: 0.84rem;
  box-shadow: 0 10px 22px rgba(255, 106, 24, 0.18);
}

.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:disabled,
.button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

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

.button-primary,
.button-accent {
  color: #fff;
  background: linear-gradient(180deg, #ff7a2d 0%, var(--orange-dark) 100%);
  box-shadow: 0 12px 24px rgba(255, 106, 24, 0.22);
}

.button-outline {
  color: var(--orange);
  background: #fff;
  border: 1px solid rgba(255, 106, 24, 0.4);
}

.button-danger {
  color: #fff;
  background: #9f1d1d;
  border: 1px solid #9f1d1d;
}

.wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(4, 6, 18, 0.78) 0%, rgba(10, 10, 22, 0.62) 46%, rgba(4, 6, 18, 0.78) 100%),
    url("assets/apopka-city-hall-sunset.jpg");
  background-size: cover;
  background-position: center;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.hero-carousel,
.hero-carousel-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
  background: #071225;
}

.hero-carousel-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1100ms ease, transform 7600ms ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  gap: 0.42rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: background 220ms ease, width 220ms ease;
}

.hero-carousel-dot.is-active {
  width: 42px;
  background: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.hero-copy {
  max-width: 860px;
  min-width: 0;
  display: grid;
  justify-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 0.7rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-domain-pill {
  display: none;
}

.hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6.3rem;
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 840px;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 680px;
  margin: 1rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0.5rem;
  width: min(100%, 760px);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.hero-search .button {
  min-height: 64px;
  border-radius: 14px;
  white-space: nowrap;
}

.search-field {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.15rem;
  background: #fff;
}

.location-field {
  border-left: 1px solid var(--line);
}

.field-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #707070;
  font-size: 1.25rem;
}

.field-icon svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field input,
.search-field select,
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  color: var(--text);
  background: transparent;
}

.search-field input::placeholder {
  color: #8f8f8f;
}

.popular-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.popular-row strong {
  font-size: 1.1rem;
}

.popular-row a,
.popular-row button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
}

.popular-row button:hover,
.popular-row button:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.hero-popular-row {
  justify-content: center;
  margin-top: 0.95rem;
}

.hero-popular-row strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.hero-popular-row a {
  border-radius: 8px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-proof {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.05rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-card {
  align-self: end;
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(19, 19, 19, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hero-card h2,
.section-head h2,
.category-card h3,
.business-copy h3,
.cta-copy h2,
.package-card h3,
.contact-card h3 {
  margin: 0;
}

.hero-card h2 {
  font-size: 1.8rem;
}

.hero-card p {
  margin: 0.45rem 0 0;
  font-size: 1rem;
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  color: var(--orange);
  font-size: 1.5rem;
}

.section {
  padding: 2.2rem 0 0;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section-head.left {
  display: block;
}

.section-head h2 {
  font-size: 2.55rem;
  line-height: 1.05;
}

.section-head a {
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
}

.section-head p {
  color: var(--muted);
  margin: 0.55rem 0 0;
  max-width: 620px;
}

.section-head-rich {
  align-items: flex-end;
}

.section-head-rich > div {
  max-width: 700px;
}

.section-link,
#featured-events .section-head a.section-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 106, 24, 0.24);
  border-radius: 8px;
  background: #fff8f2;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.section-link:hover,
.section-link:focus-visible {
  border-color: rgba(255, 106, 24, 0.4);
  background: #fff2e8;
  box-shadow: 0 12px 24px rgba(255, 106, 24, 0.12);
  transform: translateY(-1px);
}

.directory-hero {
  min-height: calc(100vh - 92px);
  padding: 0;
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.directory-shell {
  display: grid;
  grid-template-columns: minmax(390px, 32vw) minmax(0, 1fr);
  min-height: calc(100vh - 92px);
  width: 100%;
}

.directory-shell.is-list-view {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.directory-title {
  display: grid;
  gap: 0.36rem;
  padding: 0.1rem 0.08rem 0.72rem;
}

.directory-kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 106, 24, 0.2);
  border-radius: 8px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-title h1 {
  margin: 0;
  color: #050609;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.15rem, 2.85vw, 3rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.directory-title p {
  margin: 0;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.42;
}

.directory-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.directory-proof span {
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 0.08rem;
  padding: 0.55rem 0.5rem;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
  color: #667085;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
}

.directory-proof strong {
  color: #111827;
  font-size: 0.88rem;
  line-height: 1.1;
}

.explorer-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  position: absolute;
  z-index: 4;
  top: 1.1rem;
  left: clamp(1rem, 3.4vw, 3.6rem);
  right: 1rem;
  overflow-x: auto;
  padding: 0.15rem 19rem 0.35rem 0.1rem;
  scrollbar-width: none;
}

.explorer-toolbar::-webkit-scrollbar {
  display: none;
}

.explorer-chip,
.mini-filter {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #16181d;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.explorer-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
  padding: 0 1.05rem;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.explorer-chip.is-active {
  color: #fff;
  border-color: rgba(255, 106, 24, 0.8);
  background: linear-gradient(180deg, #ff8740 0%, var(--orange) 100%);
}

.explorer-chip:hover,
.mini-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 24, 0.32);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}

.explorer-sidebar,
.map-panel {
  background: #fff;
}

.explorer-sidebar {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  max-height: calc(100vh - 92px);
  padding: 1.05rem 0.92rem 0.92rem;
  display: grid;
  grid-template-rows: auto auto auto auto auto auto minmax(0, 1fr) auto;
  gap: 0.68rem;
  overflow: hidden;
  border-right: 1px solid #e5e7eb;
  box-shadow: 8px 0 28px rgba(15, 23, 42, 0.08);
}

.directory-shell.is-list-view .explorer-sidebar {
  min-height: 0;
  max-height: none;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 1.6rem;
  overflow: visible;
  border-right: 0;
  background: transparent;
  box-shadow: none;
}

.directory-shell.is-list-view .map-panel {
  display: none;
}

.explorer-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 0;
  overflow: hidden;
  border: 1px solid #ead9ce;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(255, 106, 24, 0.1);
}

.explorer-search-field,
.explorer-location {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0 0.85rem;
  background: #fff;
}

.explorer-search-field {
  grid-column: 1 / -1;
  min-width: 0;
  border-bottom: 1px solid #edf0f4;
}

.explorer-location {
  min-height: 42px;
  border-right: 1px solid #edf0f4;
  color: #4b5563;
  font-size: 0.84rem;
  white-space: nowrap;
}

.explorer-location strong {
  font-weight: 700;
}

.explorer-search-field span,
.explorer-location span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f6f8fb;
  color: #667085;
  font-size: 0.82rem;
}

.explorer-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
  min-width: 0;
}

.explorer-search .button {
  min-height: 46px;
  border-radius: 0 0 11px 0;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: none;
}

.directory-view-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
}

.directory-view-label {
  color: #536170;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-view-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  background: #f7f9fc;
}

.directory-view-button {
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #5f6b7a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.directory-view-button.is-active {
  background: #fff;
  color: #111827;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.list-category-bar {
  display: none;
}

.directory-shell.is-list-view .list-category-bar {
  display: flex;
  gap: 0.52rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.05rem 0.05rem 0.32rem;
  scrollbar-width: none;
}

.directory-shell.is-list-view .list-category-bar::-webkit-scrollbar {
  display: none;
}

.list-category-bar .explorer-chip {
  min-height: 40px;
  padding: 0 0.86rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.explorer-filters {
  display: flex;
  gap: 0.42rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.05rem 0.05rem 0.28rem;
  scrollbar-width: none;
}

.explorer-filters::-webkit-scrollbar {
  display: none;
}

.mini-filter {
  min-width: max-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0 0.74rem;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.explorer-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fff;
  color: #4b5563;
  font-size: 0.86rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.explorer-results-head p {
  margin: 0;
}

.explorer-results-head strong {
  color: #111827;
}

.business-list {
  display: grid;
  gap: 0.5rem;
  overflow: auto;
  padding: 0 0.15rem 0 0;
  align-content: start;
}

.business-list > .business-empty {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 1.35rem 1rem;
  border-radius: 12px;
  background: #fffaf7;
  font-weight: 800;
}

.business-search-notice {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #f2d3bc;
  border-radius: 10px;
  background: #fff7ed;
  color: #7c2d12;
  line-height: 1.35;
}

.business-search-notice strong {
  color: #431407;
  font-size: 0.92rem;
}

.business-search-notice span {
  font-size: 0.82rem;
  font-weight: 700;
}

.directory-shell.is-list-view .business-list {
  grid-template-columns: 1fr;
  gap: 0.82rem;
  overflow: visible;
  padding: 0;
}

.business-list-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.68rem;
  min-height: 82px;
  overflow: hidden;
  padding: 0.64rem 0.76rem 0.64rem 0.66rem;
  border: 1px solid #e1e7ef;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.directory-shell.is-list-view .business-list-card {
  grid-template-columns: 104px minmax(0, 1fr) minmax(150px, 190px);
  align-items: stretch;
  gap: 1rem;
  min-height: 158px;
  padding: 1rem 1rem 1rem 0.95rem;
  cursor: default;
  border-color: #dde6ef;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.92) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.065);
}

.business-list-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: transparent;
  transition: background 160ms ease;
}

.business-list-card:hover,
.business-list-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 24, 0.34);
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.085);
}

.directory-shell.is-list-view .business-list-card:hover,
.directory-shell.is-list-view .business-list-card.is-active {
  border-color: rgba(255, 106, 24, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 246, 240, 1) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.092);
}

.business-list-card:hover::before,
.business-list-card.is-active::before {
  background: var(--orange);
}

.business-list-card > img,
.business-list-placeholder {
  align-self: center;
  justify-self: center;
  width: 50px;
  height: 50px;
  min-height: 0;
  padding: 0.34rem;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    inset 0 0 0 4px #fff,
    0 8px 18px rgba(15, 23, 42, 0.07);
}

.business-list-card > img {
  object-fit: contain;
}

.directory-shell.is-list-view .business-list-card > img,
.directory-shell.is-list-view .business-list-placeholder {
  align-self: center;
  width: 96px;
  height: 96px;
  padding: 0.58rem;
  border-color: #dde6ef;
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 6px #fff,
    0 14px 28px rgba(15, 23, 42, 0.08);
}

.business-list-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.08), rgba(37, 121, 255, 0.08)),
    #f8fafc;
  border: 1px solid #e5e7eb;
  color: #f15f16;
  font-size: 1.18rem;
  font-weight: 700;
}

.business-list-copy {
  align-self: center;
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.directory-shell.is-list-view .business-list-copy {
  align-self: center;
  gap: 0.46rem;
}

.business-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-width: 0;
}

.business-list-top > div {
  min-width: 0;
}

.business-list-top h3,
.map-bottom-copy strong {
  margin: 0;
}

.business-list-top h3 {
  color: #07090f;
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.directory-shell.is-list-view .business-list-top {
  align-items: flex-start;
  gap: 0.8rem;
}

.directory-shell.is-list-view .business-list-top h3 {
  font-size: 1.12rem;
  line-height: 1.12;
  -webkit-line-clamp: 2;
}

.pin-orange { background: linear-gradient(180deg, #ff944d 0%, #ff6a18 100%); }
.pin-blue { background: linear-gradient(180deg, #54a8ff 0%, #2579ff 100%); }
.pin-green { background: linear-gradient(180deg, #5ddf78 0%, #2db653 100%); }
.pin-cyan { background: linear-gradient(180deg, #51c8f2 0%, #1ea6d9 100%); }
.pin-teal { background: linear-gradient(180deg, #52d4bd 0%, #159b8d 100%); }
.pin-purple { background: linear-gradient(180deg, #a177ff 0%, #6c4cf4 100%); }
.pin-gold { background: linear-gradient(180deg, #ffcf62 0%, #f0a900 100%); }
.pin-pink { background: linear-gradient(180deg, #ff8fb0 0%, #f25586 100%); }
.pin-gray { background: linear-gradient(180deg, #9aa3ad 0%, #68727d 100%); }

.business-category-label {
  color: #536170;
  margin-top: 0.02rem;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-shell.is-list-view .business-category-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.28rem;
  padding: 0 0.52rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-tier-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding: 0 0.46rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.business-tier-badge-featured {
  background: var(--orange);
}

.business-tier-badge-sponsored {
  background: #2563eb;
}

.business-tier-badge-partner,
.business-tier-badge-verified {
  background: #1f9d55;
}

.business-list-meta {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  min-width: 0;
  color: #667085;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.business-list-meta .business-detail-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f6f8fb;
  color: #768294;
}

.business-list-meta .business-detail-icon svg {
  width: 11px;
  height: 11px;
}

.business-list-meta-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.business-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  width: fit-content;
  max-width: 100%;
  color: #3f4d63;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.business-review-link span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-review-stars {
  flex: 0 0 auto;
  color: #f59e0b;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.business-review-link:hover,
.business-review-link:focus-visible {
  color: #c94d0c;
}

.directory-shell.is-list-view .business-list-meta {
  color: #526174;
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.directory-shell.is-list-view .business-list-meta-text {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.directory-shell.is-list-view .business-review-link {
  min-height: 28px;
  padding: 0 0.58rem;
  border: 1px solid #f6d99a;
  border-radius: 999px;
  background: #fff9e8;
  color: #6b4f00;
}

.business-list-location-chip {
  display: none;
}

.directory-shell.is-list-view .business-list-location-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 0 0.62rem;
  border: 1px solid #ffd6bf;
  border-radius: 999px;
  background: #fff7f0;
  color: #c94d0c;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.business-map-secondary {
  display: none;
}

.business-list-expanded {
  display: none;
}

.directory-shell.is-list-view .business-list-expanded {
  display: grid;
  gap: 0.54rem;
  padding-top: 0.05rem;
}

.business-list-description {
  margin: 0;
  color: #303846;
  font-size: 0.91rem;
  line-height: 1.44;
}

.business-list-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.business-list-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
  max-width: 100%;
  min-height: 30px;
  padding: 0 0.62rem;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #fff;
  color: #455468;
  font-size: 0.76rem;
  font-weight: 800;
}

.business-list-detail strong {
  flex: 0 0 auto;
  color: #8a95a4;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.business-list-detail span,
.business-list-detail a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-list-detail a {
  color: inherit;
  text-decoration: none;
}

.business-list-detail a:hover,
.business-list-detail a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.business-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-self: end;
}

.directory-shell.is-list-view .business-list-actions {
  flex-direction: column;
  flex-wrap: nowrap;
  align-self: stretch;
  justify-content: center;
  padding-left: 1rem;
  border-left: 1px solid #edf0f4;
}

.business-list-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  border: 1px solid #dfe6ee;
  border-radius: 9px;
  background: #fff;
  color: #2d3748;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.directory-shell.is-list-view .business-list-actions a {
  width: 100%;
}

.business-list-actions a:hover {
  border-color: rgba(255, 106, 24, 0.36);
  background: #fff0e6;
}

.business-list-actions a.business-list-action-primary {
  border-color: rgba(255, 106, 24, 0.9);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.18);
}

.business-list-actions a.business-list-action-primary:hover {
  border-color: #e95b10;
  background: #e95b10;
}

.business-hours-line {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0;
  color: #4b5563;
  font-size: 0.76rem;
  line-height: 1.2;
}

.directory-shell.is-list-view .business-hours-line {
  width: fit-content;
  min-height: 28px;
  padding: 0 0.58rem;
  border: 1px solid #dcefe3;
  border-radius: 999px;
  background: #f3fbf5;
  color: #3f6f50;
  font-size: 0.76rem;
  font-weight: 800;
}

.directory-shell.is-list-view .business-hours-line.is-closed,
.directory-shell.is-list-view .business-hours-line.is-unknown,
.directory-shell.is-list-view .business-hours-line.is-unlisted {
  border-color: #e5e7eb;
  background: #f8fafc;
  color: #667085;
}

.business-hours-line strong {
  color: #15803d;
  font-size: 0.78rem;
}

.business-hours-line.is-closed strong,
.business-hours-line.is-unknown strong,
.business-hours-line.is-unlisted strong {
  color: #6b7280;
}

.directory-shell:not(.is-list-view) .directory-kicker,
.directory-shell:not(.is-list-view) .directory-proof,
.directory-shell:not(.is-list-view) .explorer-filters {
  display: none;
}

.directory-shell:not(.is-list-view) .explorer-sidebar {
  padding: 0.72rem 0.72rem 0.72rem;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  gap: 0.38rem;
}

.directory-shell:not(.is-list-view) .directory-title {
  gap: 0.14rem;
  padding: 0;
}

.directory-shell:not(.is-list-view) .directory-title h1 {
  font-size: clamp(1.48rem, 1.72vw, 2rem);
  line-height: 0.98;
}

.directory-shell:not(.is-list-view) .directory-title p {
  color: #667085;
  font-size: 0.76rem;
  line-height: 1.24;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.directory-shell:not(.is-list-view) .explorer-search {
  grid-template-columns: minmax(0, 1fr) 82px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
}

.directory-shell:not(.is-list-view) .explorer-search-field {
  grid-column: auto;
  min-height: 39px;
  padding: 0 0.58rem;
  border-bottom: 0;
}

.directory-shell:not(.is-list-view) .explorer-search-field span {
  width: 22px;
  height: 22px;
  font-size: 0.72rem;
}

.directory-shell:not(.is-list-view) .explorer-search-field input {
  font-size: 0.84rem;
}

.directory-shell:not(.is-list-view) .explorer-location {
  display: none;
}

.directory-shell:not(.is-list-view) .explorer-search .button {
  min-height: 39px;
  padding: 0 0.48rem;
  border-radius: 0 9px 9px 0;
  font-size: 0.76rem;
}

.directory-shell:not(.is-list-view) .directory-view-controls {
  min-height: 38px;
  padding: 0.25rem;
  justify-content: end;
  border-radius: 10px;
  box-shadow: none;
}

.directory-shell:not(.is-list-view) .directory-view-label {
  margin-right: auto;
  font-size: 0.68rem;
}

.directory-shell:not(.is-list-view) .directory-view-toggle {
  grid-template-columns: repeat(2, minmax(54px, 1fr));
  border-radius: 10px;
}

.directory-shell:not(.is-list-view) .directory-view-button {
  min-height: 28px;
  border-radius: 8px;
  font-size: 0.74rem;
}

.directory-shell:not(.is-list-view) .explorer-results-head {
  min-height: 34px;
  padding: 0.34rem 0.5rem;
  border-radius: 10px;
  font-size: 0.76rem;
  box-shadow: none;
}

.directory-shell:not(.is-list-view) .business-list {
  gap: 0.5rem;
  padding-right: 0;
}

.directory-shell:not(.is-list-view) .business-list-card {
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 0.62rem;
  min-height: 88px;
  padding: 0.62rem 0.68rem 0.62rem 0.62rem;
  border-color: #dfe7f0;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
}

.directory-shell:not(.is-list-view) .business-list-card.is-tier-featured,
.directory-shell:not(.is-list-view) .business-list-card.is-tier-sponsored {
  border-color: rgba(255, 106, 24, 0.35);
  background:
    linear-gradient(90deg, rgba(255, 245, 238, 0.86) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.095), 0 8px 18px rgba(15, 23, 42, 0.045);
}

.directory-shell:not(.is-list-view) .business-list-card:hover,
.directory-shell:not(.is-list-view) .business-list-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 24, 0.45);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.105);
}

.directory-shell:not(.is-list-view) .business-list-card > img,
.directory-shell:not(.is-list-view) .business-list-placeholder {
  width: 46px;
  height: 46px;
  padding: 0.25rem;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 4px #fff,
    0 9px 18px rgba(15, 23, 42, 0.08);
}

.directory-shell:not(.is-list-view) .business-list-copy {
  align-self: stretch;
  align-content: center;
  gap: 0.22rem;
}

.directory-shell:not(.is-list-view) .business-list-top {
  align-items: center;
  gap: 0.45rem;
}

.directory-shell:not(.is-list-view) .business-list-top h3 {
  font-size: 0.93rem;
  line-height: 1.08;
}

.directory-shell:not(.is-list-view) .business-category-label,
.directory-shell:not(.is-list-view) .business-hours-line {
  display: none;
}

.directory-shell:not(.is-list-view) .business-tier-badge {
  min-height: 19px;
  padding: 0 0.44rem;
  font-size: 0.52rem;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
}

.directory-shell:not(.is-list-view) .business-list-meta {
  color: #536170;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.24;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.directory-shell:not(.is-list-view) .business-review-link {
  min-height: 21px;
  padding: 0 0.44rem;
  border: 1px solid #f6d99a;
  border-radius: 999px;
  background: #fff9e8;
  color: #6b4f00;
  font-size: 0.62rem;
}

.directory-shell:not(.is-list-view) .business-review-stars {
  font-size: 0.64rem;
}

.business-list-contact-row,
.business-list-phone {
  display: none;
}

.directory-shell:not(.is-list-view) .business-list-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.28rem;
  min-width: 0;
  padding-top: 0.03rem;
}

.directory-shell:not(.is-list-view) .business-list-phone,
.directory-shell:not(.is-list-view) .business-map-secondary {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 22px;
  gap: 0.28rem;
  padding: 0 0.46rem;
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.directory-shell:not(.is-list-view) .business-list-phone {
  border: 1px solid rgba(255, 106, 24, 0.26);
  background: #fff7f0;
  color: #c94d0c;
}

.directory-shell:not(.is-list-view) a.business-list-phone:hover,
.directory-shell:not(.is-list-view) a.business-list-phone:focus-visible {
  border-color: rgba(255, 106, 24, 0.52);
  background: #fff0e6;
}

.directory-shell:not(.is-list-view) .business-list-phone .business-detail-icon,
.directory-shell:not(.is-list-view) .business-map-secondary .business-detail-icon {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
}

.directory-shell:not(.is-list-view) .business-list-phone .business-detail-icon {
  color: var(--orange);
}

.directory-shell:not(.is-list-view) .business-map-secondary {
  border: 1px solid #edf0f4;
  background: #fff;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
}

.directory-shell:not(.is-list-view) a.business-map-secondary:hover,
.directory-shell:not(.is-list-view) a.business-map-secondary:focus-visible {
  border-color: rgba(15, 23, 42, 0.18);
  background: #f8fafc;
  color: #1f2937;
}

.directory-shell:not(.is-list-view) .business-map-secondary span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.workflow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.62rem;
  border-radius: 999px;
  background: #fff5ef;
  border: 1px solid rgba(255, 106, 24, 0.18);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-pill.is-live {
  background: #eefbf1;
  border-color: rgba(45, 182, 83, 0.2);
  color: #219146;
}

.workflow-pill.is-featured {
  background: #fff8dd;
  border-color: rgba(240, 169, 0, 0.22);
  color: #a87500;
}

.workflow-pill.is-denied {
  background: #fff1f1;
  border-color: rgba(159, 29, 29, 0.2);
  color: #9f1d1d;
}

.workflow-pill.is-default {
  background: #f8fafc;
  border-color: #e5e7eb;
  color: #475569;
}

.admin-address-pill {
  white-space: nowrap;
}

.admin-tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 24, 0.18);
  background: #fff3eb;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-tier-badge.is-middle {
  border-color: rgba(37, 99, 235, 0.22);
  background: #edf4ff;
  color: #1658d9;
}

.admin-tier-badge.is-top {
  border-color: rgba(255, 106, 24, 0.28);
  background: linear-gradient(135deg, #fff4eb 0%, #ffe8d9 100%);
  color: #e94e0a;
}

.admin-tier-badge.is-default {
  border-color: #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
}

.explorer-more {
  align-self: end;
  height: 56px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 106, 24, 0.26);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  color: var(--orange);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 106, 24, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.explorer-more:hover,
.explorer-more:focus-visible {
  border-color: rgba(255, 106, 24, 0.42);
  box-shadow: 0 14px 28px rgba(255, 106, 24, 0.12);
  transform: translateY(-1px);
}

.map-panel {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: #f8fafc;
}

.featured-toggle {
  position: absolute;
  z-index: 5;
  top: 5.75rem;
  right: 1rem;
  min-width: 205px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 14px 32px rgba(255, 106, 24, 0.11);
  color: #51382c;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.28;
  cursor: pointer;
}

.featured-toggle input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.toggle-track {
  width: 43px;
  height: 24px;
  border-radius: 999px;
  background: #d5dae2;
  position: relative;
  flex: 0 0 auto;
  transition: background 160ms ease;
}

.toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.22);
  transition: transform 160ms ease;
}

.featured-toggle input:checked + .toggle-track {
  background: var(--orange);
}

.featured-toggle input:checked + .toggle-track::after {
  transform: translateX(19px);
}

.map-status {
  position: absolute;
  z-index: 5;
  top: 10rem;
  right: 1rem;
  width: 205px;
  margin: 0;
  padding: 0.68rem 0.82rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.map-stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 92px);
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    linear-gradient(180deg, #edf3ea 0%, #f6f0e4 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

.map-stage.is-live {
  background: #e8eee3;
}

.map-stage .mapboxgl-map,
.map-stage .mapboxgl-canvas-container,
.map-stage .mapboxgl-canvas {
  width: 100%;
  height: 100%;
}

.map-stage .mapboxgl-ctrl-top-right {
  top: 10.5rem;
  right: 1rem;
}

.map-stage .mapboxgl-ctrl-bottom-right {
  right: 1rem;
  bottom: 7.35rem;
}

.map-stage .mapboxgl-ctrl-group {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.mapbox-business-marker {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  appearance: none;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mapbox-business-pin {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 0;
  font-size: 0.88rem;
  line-height: 1;
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.mapbox-business-pin-icon {
  transform: rotate(45deg);
}

.mapbox-business-marker.is-map-featured .mapbox-business-pin,
.map-marker.is-map-featured {
  width: 38px;
  height: 38px;
  border-width: 4px;
  outline: 3px solid rgba(255, 106, 24, 0.18);
  box-shadow: 0 16px 30px rgba(255, 106, 24, 0.24);
}

.mapbox-business-marker.is-map-sponsored .mapbox-business-pin,
.map-marker.is-map-sponsored {
  width: 42px;
  height: 42px;
  border-width: 4px;
  outline: 4px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
}

.mapbox-business-marker.is-map-featured,
.mapbox-business-marker.is-map-sponsored,
.map-marker.is-map-featured,
.map-marker.is-map-sponsored {
  z-index: 4;
}

.mapbox-business-marker.is-active .mapbox-business-pin {
  transform: rotate(-45deg) scale(1.16);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.mapbox-business-marker.is-map-featured.is-active .mapbox-business-pin,
.map-marker.is-map-featured.is-active {
  transform: rotate(-45deg) scale(1.18);
}

.mapbox-business-marker.is-map-sponsored.is-active .mapbox-business-pin,
.map-marker.is-map-sponsored.is-active {
  transform: rotate(-45deg) scale(1.2);
}

.mapboxgl-popup-content:has(.mapbox-business-popup) {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.16);
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.mapbox-business-popup {
  min-width: 300px;
  max-width: 360px;
  padding: 1.05rem;
  background:
    linear-gradient(180deg, #fff 0%, #fff9f5 100%);
}

.mapbox-business-popup h3 {
  margin: 0.28rem 0 0.14rem;
  color: #090b12;
  font-size: 1.22rem;
  line-height: 1.02;
}

.mapbox-business-popup p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.mapbox-popup-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.mapbox-business-popup.is-standard .mapbox-popup-head {
  grid-template-columns: 48px minmax(0, 1fr);
}

.mapbox-business-popup.is-standard .mapbox-popup-head::before {
  content: "◆";
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e7edf4;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.mapbox-popup-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0.34rem;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mapbox-popup-logo-fallback {
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.1), rgba(37, 121, 255, 0.1)),
    #fff;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
}

.mapbox-popup-details {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.mapbox-popup-details span {
  display: grid;
  gap: 0.16rem;
  min-height: 34px;
  padding: 0.48rem 0.62rem;
  border: 1px solid #e7edf4;
  border-radius: 10px;
  background: #fff;
  color: #263244;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.mapbox-popup-details strong {
  color: #7a8492;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mapbox-popup-description {
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.38;
}

.mapbox-popup-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.mapbox-popup-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 106, 24, 0.24);
  border-radius: 999px;
  background: #fff8f2;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.mapbox-popup-actions a:first-child {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.2);
}

.mapbox-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fallback-map,
.map-water,
.map-road,
.map-markers,
.map-controls,
.map-focus-dot,
.map-label {
  position: absolute;
}

.fallback-map {
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.84) 1px, transparent 1px),
    linear-gradient(180deg, #eef5ea 0%, #f6f0e5 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

.fallback-map::before,
.fallback-map::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.fallback-map::before {
  left: -4%;
  bottom: -6%;
  width: 34%;
  height: 32%;
  border-radius: 52% 48% 45% 55% / 48% 58% 42% 52%;
  background: linear-gradient(180deg, rgba(141, 207, 255, 0.86), rgba(109, 189, 245, 0.76));
}

.fallback-map::after {
  top: -7%;
  right: -5%;
  width: 24%;
  height: 25%;
  border-radius: 0 0 0 62%;
  background: rgba(129, 201, 139, 0.24);
}

.map-water {
  background: linear-gradient(180deg, rgba(141, 207, 255, 0.8), rgba(109, 189, 245, 0.72));
  filter: blur(0.2px);
}

.water-west {
  left: -3%;
  bottom: 2%;
  width: 25%;
  height: 30%;
  border-radius: 54% 46% 40% 60% / 48% 55% 45% 52%;
}

.water-south {
  left: 34%;
  bottom: -6%;
  width: 18%;
  height: 14%;
  border-radius: 58% 42% 0 0 / 72% 48% 0 0;
  opacity: 0.8;
}

.map-road {
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(236, 218, 182, 0.7),
    inset 0 0 0 2px rgba(248, 198, 98, 0.38);
}

.road-1 {
  top: -2%;
  left: 48%;
  width: 12px;
  height: 108%;
}

.road-2 {
  top: 18%;
  left: -2%;
  width: 104%;
  height: 10px;
}

.road-3 {
  top: 54%;
  left: -4%;
  width: 98%;
  height: 12px;
  transform: rotate(-4deg);
}

.road-4 {
  top: 8%;
  left: 18%;
  width: 10px;
  height: 92%;
  transform: rotate(12deg);
}

.road-5 {
  top: 0;
  right: 18%;
  width: 10px;
  height: 102%;
  transform: rotate(-10deg);
}

.road-6 {
  top: 38%;
  left: 10%;
  width: 84%;
  height: 10px;
  transform: rotate(18deg);
}

.map-label {
  z-index: 2;
  color: rgba(50, 58, 51, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.map-city {
  top: 40%;
  left: 53%;
  font-size: 1.55rem;
  color: rgba(21, 25, 23, 0.84);
}

.map-lake {
  left: 6%;
  bottom: 10%;
  color: #4f87b0;
}

.map-park {
  top: 10%;
  left: 34%;
  max-width: 120px;
  text-align: center;
}

.map-markers {
  inset: 0;
  z-index: 3;
}

.map-marker {
  position: absolute;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 3px solid #fff;
  appearance: none;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.map-marker::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.map-marker::after {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  transform: rotate(45deg);
}

.map-marker:hover,
.map-marker.is-active {
  transform: rotate(-45deg) scale(1.14);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
  filter: saturate(1.08);
}

.map-marker.pin-orange::after { color: #ff6a18; }
.map-marker.pin-blue::after { color: #2579ff; }
.map-marker.pin-green::after { color: #2db653; }
.map-marker.pin-purple::after { color: #6c4cf4; }
.map-marker.pin-teal::after { color: #159b8d; }
.map-marker.pin-gold::after { color: #f0a900; }
.map-marker.pin-pink::after { color: #f25586; }
.map-marker.pin-cyan::after { color: #1ea6d9; }
.map-marker.pin-gray::after { color: #68727d; }

.map-focus-dot {
  left: 45%;
  top: 58%;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(70, 148, 255, 0.96);
  box-shadow: 0 0 0 10px rgba(70, 148, 255, 0.18);
}

.map-controls {
  z-index: 4;
  right: 1rem;
  bottom: 7.35rem;
  display: grid;
  gap: 0.5rem;
}

.map-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}

.map-fallback-note {
  position: absolute;
  left: 1rem;
  bottom: 7.35rem;
  z-index: 4;
  max-width: 320px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #4b5563;
  font-size: 0.84rem;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.map-bottom-banner {
  position: absolute;
  z-index: 4;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  border: 1px solid #f2ded2;
  background: linear-gradient(90deg, #fff5ec 0%, #fff 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.banner-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff944d 0%, var(--orange) 100%);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.26);
}

.map-bottom-copy {
  display: grid;
  gap: 0.25rem;
}

.map-bottom-tag {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.56rem;
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-bottom-copy strong {
  color: #10131a;
  font-size: 1.2rem;
  line-height: 1.2;
}

.map-bottom-copy span {
  color: #4b5563;
  line-height: 1.45;
}

.business-empty {
  padding: 1.1rem;
  border: 1px dashed #e5d7ce;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: #fffaf7;
}

.business-empty-large {
  padding: 2.25rem 1.5rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.home-empty-state {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
}

.home-empty-state strong {
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.2;
}

.home-empty-state span {
  max-width: 520px;
}

.home-empty-state a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 106, 24, 0.26);
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-featured-section {
  padding: 1.85rem 0 0.95rem;
  scroll-margin-top: 116px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.home-featured-head {
  position: relative;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #edf0f4;
}

.home-featured-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.home-featured-head .eyebrow {
  color: #c94d0c;
}

.home-featured-head h2 {
  max-width: 620px;
  text-wrap: balance;
}

.home-featured-head p:not(.eyebrow) {
  max-width: 580px;
  color: #4f5560;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.home-featured-head .section-link {
  min-width: 148px;
  background: #fff;
}

.home-featured-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.home-featured-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(226px, 252px);
  gap: 0.86rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.1rem 0.1rem 0.45rem;
}

.home-featured-track::-webkit-scrollbar {
  display: none;
}

.home-featured-track.is-centered {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.home-business-card {
  position: relative;
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08),
    0 5px 14px rgba(255, 106, 24, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-business-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ff6a18 0%, #ffb36f 52%, #2579ff 100%);
  opacity: 0.9;
  z-index: 2;
}

.home-business-card.is-sponsored::before {
  background: linear-gradient(90deg, #2563eb 0%, #51c8f2 46%, #ff6a18 100%);
}

.home-business-card:hover {
  border-color: rgba(255, 106, 24, 0.46);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.12),
    0 8px 20px rgba(255, 106, 24, 0.1);
  transform: translateY(-2px);
}

.home-business-card-inner {
  display: grid;
  grid-template-rows: 116px 1fr;
  height: 100%;
  color: inherit;
}

.home-business-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 106, 24, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 24, 0.15), transparent 34%),
    linear-gradient(135deg, #fff6ef 0%, #f8fbff 100%);
  overflow: visible;
}

.home-business-card.is-sponsored .home-business-media {
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(135deg, #f2f7ff 0%, #fff8f2 100%);
}

.home-business-card.is-partner .home-business-media,
.home-business-card.is-verified .home-business-media {
  background:
    radial-gradient(circle at 16% 0%, rgba(31, 157, 85, 0.13), transparent 34%),
    linear-gradient(135deg, #f4fff7 0%, #fff8f2 100%);
}

.home-business-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 106, 24, 0.2), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(37, 121, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #fff3ea 0%, #f7fbff 100%);
}

.home-business-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.95), transparent 43%),
    linear-gradient(135deg, rgba(255, 106, 24, 0.18) 0%, rgba(37, 121, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.58) 52%, rgba(255, 250, 246, 0.96) 100%);
}

.home-business-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.28;
  filter: blur(0.8px) saturate(0.72) contrast(0.78) brightness(1.14);
  transform: scale(1.06);
}

.home-business-cover-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.home-business-logo-plate {
  position: absolute;
  left: 50%;
  bottom: 0.64rem;
  z-index: 3;
  width: 74px;
  height: 74px;
  transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0.34rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.05),
    0 12px 26px rgba(15, 23, 42, 0.16);
}

.home-business-card.is-sponsored .home-business-logo-plate {
  border-color: rgba(37, 99, 235, 0.12);
}

.home-business-card.is-partner .home-business-logo-plate,
.home-business-card.is-verified .home-business-logo-plate {
  border-color: rgba(31, 157, 85, 0.14);
}

.home-business-logo-plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 999px;
}

.home-business-logo-plate .home-business-placeholder {
  width: 100%;
  height: 100%;
}

.home-business-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(135deg, #fff7f0 0%, #ffe4d3 100%);
  color: var(--orange);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.home-business-badge {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  left: auto;
  z-index: 2;
}

.home-business-badge .business-tier-badge {
  min-height: 22px;
  padding: 0 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.86);
  font-size: 0.58rem;
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.22);
}

.home-business-copy {
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 0.3rem;
  height: 100%;
  padding: 2.45rem 0.78rem 0.78rem;
  text-align: left;
}

.home-business-card h3 {
  margin: 0;
  color: #080b12;
  font-size: 1.08rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.home-business-category {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.25;
}

.home-business-description {
  min-height: 0;
  max-width: 100%;
  margin-top: 0.02rem;
  padding-top: 0.38rem;
  border-top: 1px solid #edf0f4;
  color: #3f4754;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-business-details {
  display: grid;
  gap: 0.28rem;
  width: 100%;
  margin-top: 0.04rem;
}

.home-business-location,
.home-business-phone,
.home-business-website,
.home-business-hours {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.52rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.32;
  text-decoration: none;
}

a.home-business-phone,
a.home-business-website {
  transition: color 160ms ease;
}

.home-business-website.is-unlisted {
  color: #7c8794;
}

a.home-business-phone:hover,
a.home-business-phone:focus-visible,
a.home-business-website:hover,
a.home-business-website:focus-visible {
  color: #c94d0c;
}

a.home-business-phone:focus-visible,
a.home-business-website:focus-visible {
  outline: 2px solid rgba(255, 106, 24, 0.28);
  outline-offset: 3px;
  border-radius: 8px;
}

.home-business-location .business-detail-icon,
.home-business-phone .business-detail-icon,
.home-business-website .business-detail-icon,
.home-business-hours .business-detail-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff0e6;
  color: var(--orange);
  font-size: 0.68rem;
  line-height: 1;
}

.business-detail-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.external-link-icon {
  flex: 0 0 auto;
  width: 0.92em;
  height: 0.92em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  width: 100%;
  margin-top: 0.06rem;
}

.home-business-tags span {
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.54rem;
  border-radius: 999px;
  background: #f4f6f8;
  color: #344054;
  font-size: 0.64rem;
  font-weight: 800;
}

.home-business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  justify-self: stretch;
  width: 100%;
  min-height: 30px;
  margin-top: 0;
  padding: 0 0.74rem;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.18);
}

.home-business-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.34rem;
  align-self: end;
  margin-top: auto;
}

.home-business-cta,
.home-business-email {
  text-decoration: none;
}

.home-business-email {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 1px solid rgba(255, 106, 24, 0.22);
  border-radius: 8px;
  background: #fff;
  color: #c94d0c;
  font-size: 0.74rem;
  font-weight: 900;
}

.home-business-email .business-detail-icon {
  width: 17px;
  height: 17px;
  background: #fff0e6;
  color: var(--orange);
}

.home-business-email .business-detail-icon svg {
  width: 11px;
  height: 11px;
}

.promoted-business-section {
  padding-top: 1rem;
}

.promoted-business-section-events {
  padding-bottom: 0.1rem;
}

.promoted-business-shell {
  display: grid;
  gap: 0.82rem;
  padding: 0.95rem;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
  background:
    linear-gradient(90deg, rgba(255, 248, 242, 0.82) 0%, rgba(255, 255, 255, 0) 54%),
    #fff;
}

.promoted-business-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.promoted-business-head .eyebrow {
  margin-bottom: 0.28rem;
}

.promoted-business-head h2 {
  margin: 0;
  color: #071225;
  font-size: 1.55rem;
  line-height: 1.08;
}

.promoted-business-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.promoted-business-actions > a {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.promoted-business-controls {
  display: inline-flex;
  gap: 0.35rem;
}

.promoted-business-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 24, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.promoted-business-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.promoted-business-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 276px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.2rem 0.2rem 0.78rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.promoted-business-track::-webkit-scrollbar {
  display: none;
}

.promoted-business-track.is-centered {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.promoted-business-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 140px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 15px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  color: inherit;
  scroll-snap-align: start;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    0 7px 18px rgba(255, 106, 24, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.promoted-business-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: auto;
  height: 4px;
  background: linear-gradient(90deg, #ff6a18 0%, #ffb36f 52%, #2579ff 100%);
  opacity: 0.9;
  z-index: 2;
}

.promoted-business-card.is-sponsored::before {
  background: linear-gradient(90deg, #2563eb 0%, #51c8f2 46%, #ff6a18 100%);
}

.promoted-business-card:hover,
.promoted-business-card:focus-within {
  border-color: rgba(255, 106, 24, 0.46);
  box-shadow:
    0 21px 46px rgba(15, 23, 42, 0.14),
    0 10px 24px rgba(255, 106, 24, 0.12);
  transform: translateY(-2px);
}

.promoted-business-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 106, 24, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 24, 0.15), transparent 34%),
    linear-gradient(135deg, #fff6ef 0%, #f8fbff 100%);
  overflow: visible;
}

.promoted-business-card.is-sponsored .promoted-business-media {
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(135deg, #f2f7ff 0%, #fff8f2 100%);
}

.promoted-business-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 106, 24, 0.2), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(37, 121, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #fff3ea 0%, #f7fbff 100%);
}

.promoted-business-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.95), transparent 43%),
    linear-gradient(135deg, rgba(255, 106, 24, 0.18) 0%, rgba(37, 121, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.58) 52%, rgba(255, 250, 246, 0.96) 100%);
}

.promoted-business-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0.28;
  filter: blur(0.8px) saturate(0.72) contrast(0.78) brightness(1.14);
  transform: scale(1.06);
}

.promoted-business-cover-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.promoted-business-logo {
  position: absolute;
  left: 50%;
  bottom: 0.82rem;
  z-index: 3;
  width: 92px;
  height: 92px;
  transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0.42rem;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.05),
    0 12px 26px rgba(15, 23, 42, 0.16);
}

.promoted-business-card.is-sponsored .promoted-business-logo {
  background: #f7fbff;
  color: #2563eb;
}

.promoted-business-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 999px;
}

.promoted-business-initials {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(135deg, #fff7f0 0%, #ffe4d3 100%);
  color: var(--orange);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.promoted-business-media .business-tier-badge {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  z-index: 2;
  min-height: 22px;
  padding: 0 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.86);
  font-size: 0.58rem;
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.22);
}

.promoted-business-copy {
  display: grid;
  justify-items: stretch;
  gap: 0.38rem;
  min-width: 0;
  padding: 3rem 0.86rem 0.9rem;
  text-align: left;
}

.promoted-business-copy h3 {
  margin: 0;
  color: #071225;
  font-size: 1.12rem;
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.promoted-business-category,
.promoted-business-description,
.promoted-business-location,
.promoted-business-phone,
.promoted-business-website,
.promoted-business-hours {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promoted-business-category {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
}

.promoted-business-description {
  margin-top: 0.08rem;
  padding-top: 0.55rem;
  border-top: 1px solid #edf0f4;
  color: #3f4754;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.promoted-business-details {
  display: grid;
  gap: 0.34rem;
  width: 100%;
}

.promoted-business-location,
.promoted-business-phone,
.promoted-business-website,
.promoted-business-hours {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.52rem;
  margin: 0;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.32;
  text-decoration: none;
}

a.promoted-business-phone,
a.promoted-business-website {
  transition: color 160ms ease;
}

a.promoted-business-phone:hover,
a.promoted-business-phone:focus-visible,
a.promoted-business-website:hover,
a.promoted-business-website:focus-visible {
  color: #c94d0c;
}

a.promoted-business-phone:focus-visible,
a.promoted-business-website:focus-visible,
.promoted-business-cta:focus-visible {
  outline: 2px solid rgba(255, 106, 24, 0.28);
  outline-offset: 3px;
}

.promoted-business-location .business-detail-icon,
.promoted-business-phone .business-detail-icon,
.promoted-business-website .business-detail-icon,
.promoted-business-hours .business-detail-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff0e6;
  color: var(--orange);
  font-size: 0.68rem;
  line-height: 1;
}

.promoted-business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  width: 100%;
  margin-top: 0.08rem;
}

.promoted-business-tags span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.54rem;
  border-radius: 999px;
  background: #f4f6f8;
  color: #344054;
  font-size: 0.68rem;
  font-weight: 800;
}

.promoted-business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  width: 100%;
  min-height: 34px;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.18);
}

.promoted-business-empty {
  display: grid;
  justify-items: start;
  gap: 0.32rem;
  margin: 0;
  padding: 1rem;
  border: 1px dashed #ead9ce;
  border-radius: 12px;
  background: #fffaf7;
  color: var(--muted);
  font-weight: 800;
}

.promoted-business-empty strong {
  color: #071225;
  font-size: 1rem;
  line-height: 1.2;
}

.promoted-business-empty span {
  max-width: 680px;
  line-height: 1.45;
}

.promoted-business-empty a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.32rem;
  padding: 0 0.82rem;
  border: 1px solid rgba(255, 106, 24, 0.26);
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .promoted-business-head {
    display: grid;
    align-items: start;
  }

  .promoted-business-actions {
    justify-content: space-between;
  }

  .promoted-business-track {
    grid-auto-columns: minmax(248px, 276px);
  }
}

@media (max-width: 640px) {
  .promoted-business-section {
    padding-top: 0.85rem;
  }

  .promoted-business-shell {
    padding: 0.82rem 0.7rem;
  }

  .promoted-business-head h2 {
    font-size: 1.35rem;
  }

  .promoted-business-track {
    grid-auto-columns: min(78vw, 276px);
    gap: 0.78rem;
  }

  .promoted-business-card {
    grid-template-rows: 130px 1fr;
    min-height: 100%;
  }

  .promoted-business-media {
    min-height: 130px;
    padding: 0;
  }

  .promoted-business-logo {
    width: 84px;
    height: 84px;
  }

  .promoted-business-media .business-tier-badge {
    top: 0.58rem;
    right: 0.58rem;
    min-height: 20px;
    padding: 0 0.42rem;
    font-size: 0.54rem;
  }

  .promoted-business-copy {
    gap: 0.34rem;
    padding: 2.85rem 0.78rem 0.82rem;
  }

  .promoted-business-copy h3 {
    font-size: 1.06rem;
  }

  .promoted-business-category {
    min-height: 0;
    font-size: 0.8rem;
  }

  .promoted-business-description {
    font-size: 0.76rem;
  }

  .promoted-business-location,
  .promoted-business-phone,
  .promoted-business-website,
  .promoted-business-hours {
    font-size: 0.7rem;
  }

  .promoted-business-cta {
    min-height: 32px;
    font-size: 0.74rem;
  }
}

#featured-events {
  padding-bottom: 1.5rem;
}

#featured-events .section-head {
  margin-bottom: 1rem;
}

#featured-events .section-head a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 106, 24, 0.24);
  border-radius: 8px;
  background: #fff8f2;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
}

.home-paid-events-panel {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 0;
  padding: 0.82rem;
  border: 1px solid rgba(255, 106, 24, 0.3);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.1) 0%, rgba(255, 255, 255, 0.98) 38%, #fff8f2 100%);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.1),
    0 12px 30px rgba(255, 106, 24, 0.1);
}

.home-paid-events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.home-paid-events-head h3 {
  margin: 0.1rem 0 0;
  color: #12151c;
  font-size: 1.42rem;
  line-height: 1.06;
}

.home-paid-events-head a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 106, 24, 0.28);
  border-radius: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.home-paid-events-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.home-paid-event-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, calc((100% - 0.82rem) / 2));
  grid-template-columns: none;
  gap: 0.82rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.12rem 0.1rem 0.68rem;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-paid-event-grid::-webkit-scrollbar {
  display: none;
}

.home-paid-event-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 106, 24, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.14) 0%, rgba(255, 255, 255, 0.98) 39%, #fffaf4 100%);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.12),
    0 12px 28px rgba(255, 106, 24, 0.12);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-paid-event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb14a 100%);
  z-index: 2;
}

.home-paid-event-card:hover {
  border-color: rgba(255, 106, 24, 0.56);
  box-shadow:
    0 24px 52px rgba(15, 23, 42, 0.14),
    0 16px 34px rgba(255, 106, 24, 0.16);
  transform: translateY(-2px);
}

.home-paid-event-card.is-spotlight {
  border-color: rgba(108, 76, 244, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.14) 0%, rgba(255, 255, 255, 0.96) 42%, #f8f5ff 100%);
  box-shadow:
    0 18px 38px rgba(255, 106, 24, 0.12),
    0 14px 30px rgba(108, 76, 244, 0.1);
}

.home-paid-event-card.is-spotlight::before {
  background: linear-gradient(90deg, var(--orange) 0%, #6c4cf4 100%);
}

.home-paid-event-card a {
  display: grid;
  grid-template-columns: minmax(220px, 238px) minmax(0, 1fr);
  grid-template-rows: none;
  min-height: 160px;
  align-items: stretch;
  color: inherit;
}

.home-paid-event-card.is-spotlight a {
  grid-template-columns: minmax(224px, 244px) minmax(0, 1fr);
}

.home-paid-event-media {
  position: relative;
  display: grid;
  align-self: stretch;
  place-items: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0.48rem;
  border-right: 1px solid rgba(255, 106, 24, 0.14);
  border-bottom: 0;
  background:
    linear-gradient(135deg, #fff6ef 0%, #eef5ff 100%);
}

.home-paid-event-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #fff6ef 0%, #f2f7ff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.home-paid-event-card.is-default-image .home-paid-event-media {
  align-content: center;
  place-items: center;
  background:
    linear-gradient(135deg, #fff5ed 0%, #f2f7ff 56%, #fffaf4 100%);
}

.home-paid-event-card.is-default-image .home-paid-event-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  border-radius: 10px;
  opacity: 1;
  filter: saturate(0.98) contrast(0.98);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.13);
}

.home-paid-event-card.is-default-image .home-event-date {
  top: auto;
  bottom: 0.5rem;
}

.home-paid-event-copy {
  display: grid;
  align-content: start;
  gap: 0.22rem;
  min-width: 0;
  padding: 0.66rem 0.78rem;
}

.home-event-placement-tag {
  justify-self: start;
  min-height: 21px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.54rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 9px 18px rgba(255, 106, 24, 0.18);
}

.home-paid-event-card.is-spotlight .home-event-placement-tag {
  background: #6c4cf4;
  box-shadow: 0 9px 18px rgba(108, 76, 244, 0.18);
}

.home-paid-event-copy h3 {
  margin: 0;
  color: #0f1219;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-paid-event-card.is-spotlight .home-paid-event-copy h3 {
  font-size: 1.08rem;
}

.home-paid-event-copy p {
  display: -webkit-box;
  margin: 0.04rem 0 0;
  color: #4a4f58;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.28;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.home-paid-event-card .home-event-date {
  left: 0.5rem;
  bottom: 0.5rem;
  width: 44px;
  min-height: 50px;
  border-radius: 10px;
}

.home-paid-event-card .home-event-date span,
.home-paid-event-card .home-event-date small {
  font-size: 0.5rem;
}

.home-paid-event-card .home-event-date strong {
  font-size: 1.52rem;
}

.home-events-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.home-event-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 276px);
  grid-template-columns: none;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.25rem 0.2rem 0.9rem;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-event-grid::-webkit-scrollbar {
  display: none;
}

.home-event-grid.is-centered {
  justify-content: center;
}

.home-event-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 15px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    0 7px 18px rgba(255, 106, 24, 0.06);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ff6a18 0%, #ffb36f 52%, #2579ff 100%);
  opacity: 0.9;
  z-index: 2;
}

.home-event-card:hover {
  border-color: rgba(255, 106, 24, 0.46);
  box-shadow:
    0 21px 46px rgba(15, 23, 42, 0.14),
    0 10px 24px rgba(255, 106, 24, 0.12);
  transform: translateY(-2px);
}

.home-event-card.is-featured {
  border-color: rgba(255, 106, 24, 0.32);
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
}

.home-event-card.is-spotlight {
  border-color: rgba(108, 76, 244, 0.34);
  background: linear-gradient(180deg, #fff 0%, #f8f5ff 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.11),
    0 8px 20px rgba(108, 76, 244, 0.09);
}

.home-event-card.is-spotlight::before {
  background: linear-gradient(90deg, #6c4cf4 0%, #9d7cff 52%, #ff6a18 100%);
}

.home-event-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
}

.home-event-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 106, 24, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 24, 0.15), transparent 34%),
    linear-gradient(135deg, #fff6ef 0%, #f8fbff 100%);
}

.home-event-thumb {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #fffaf4;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-event-card:hover .home-event-thumb {
  filter: saturate(1.05);
  transform: none;
}

.home-event-card.is-default-image {
  background:
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.home-event-card.is-default-image .home-event-media {
  aspect-ratio: auto;
  min-height: 88px;
  background:
    linear-gradient(135deg, #fff6ef 0%, #eef5ff 100%);
}

.home-event-card.is-default-image .home-event-thumb {
  opacity: 0.2;
  filter: saturate(0.72) contrast(0.96);
}

.home-event-card.is-default-image .home-event-copy p {
  -webkit-line-clamp: 3;
}

.home-event-thumb-placeholder {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-event-date {
  position: absolute;
  left: 0.72rem;
  bottom: 0.72rem;
  width: 58px;
  min-height: 64px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.08rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #253f66 0%, #10233d 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.home-event-date::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--orange);
}

.home-event-date span {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-event-date strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  line-height: 0.86;
}

.home-event-date small {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-event-copy {
  display: grid;
  justify-items: stretch;
  gap: 0.38rem;
  min-width: 0;
  padding: 0.86rem;
  text-align: left;
}

.home-event-copy h3 {
  margin: 0;
  color: #080b12;
  font-size: 1.12rem;
  line-height: 1.12;
  font-weight: 900;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-event-time,
.home-event-venue {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.76rem;
  line-height: 1.25;
}

.home-event-time {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.home-event-venue {
  color: #303846;
  font-weight: 800;
}

.home-event-copy p {
  display: -webkit-box;
  margin: 0.08rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid #edf0f4;
  color: #3f4754;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.34;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
  min-width: 0;
  margin-top: 0.04rem;
}

.home-event-category {
  flex: 0 1 auto;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.54rem;
  border-radius: 999px;
  background: #f4f6f8;
  color: #344054;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-event-action {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

.home-news-section {
  padding-top: 0.5rem;
}

.home-news-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.home-news-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 276px);
  grid-template-columns: none;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.25rem 0.2rem 0.9rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-news-list::-webkit-scrollbar {
  display: none;
}

.home-news-list.is-centered {
  justify-content: center;
}

.home-news-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 15px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    0 7px 18px rgba(255, 106, 24, 0.06);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ff6a18 0%, #ffb36f 52%, #2579ff 100%);
  opacity: 0.9;
  z-index: 2;
}

.home-news-card:hover {
  border-color: rgba(255, 106, 24, 0.46);
  box-shadow:
    0 21px 46px rgba(15, 23, 42, 0.14),
    0 10px 24px rgba(255, 106, 24, 0.12);
  transform: translateY(-2px);
}

.home-news-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
}

.home-news-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 106, 24, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 24, 0.15), transparent 34%),
    linear-gradient(135deg, #fff6ef 0%, #f8fbff 100%);
  isolation: isolate;
}

.home-news-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  background-image: var(--home-news-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.12);
  opacity: 0.66;
  transform: scale(1.06);
}

.home-news-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.1), rgba(255, 250, 246, 0.24)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 246, 239, 0.2));
}

.home-news-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-news-card:hover .home-news-media img {
  filter: saturate(1.05);
  transform: none;
}

.home-news-source {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: 100%;
  padding: 0 0.55rem;
  border: 1px solid rgba(16, 35, 61, 0.12);
  border-radius: 999px;
  background: #10233d;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.home-news-copy {
  display: grid;
  justify-items: stretch;
  gap: 0.38rem;
  min-width: 0;
  padding: 0.86rem;
  text-align: left;
}

.home-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.home-news-category {
  min-width: 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-news-copy h3 {
  margin: 0;
  color: #080b12;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-news-copy p {
  display: -webkit-box;
  margin: 0.08rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid #edf0f4;
  color: #3f4754;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.34;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
  min-width: 0;
  margin-top: 0.04rem;
}

.home-news-copy time {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-news-footer > span {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.advertise-section {
  padding: 2.4rem 0;
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.advertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: center;
}

.advertise-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 620px;
}

.advertise-copy h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.02;
}

.advertise-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.advertise-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.05rem 0 0;
  padding: 0;
  list-style: none;
}

.advertise-proof-list li {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fff;
  color: #314155;
  font-size: 0.82rem;
  font-weight: 900;
}

.advertise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.25rem;
}

.advertise-option-grid {
  display: grid;
  gap: 0.7rem;
}

.advertise-option-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 88px;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.advertise-option-card:hover,
.advertise-option-card:focus-visible {
  border-color: rgba(255, 106, 24, 0.34);
  background: #fffaf7;
  box-shadow: 0 14px 28px rgba(255, 106, 24, 0.1);
  transform: translateY(-1px);
}

.advertise-option-card:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.advertise-option-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.advertise-option-orange {
  background: linear-gradient(180deg, #ff8d3b, #ff6213);
}

.advertise-option-blue {
  background: linear-gradient(180deg, #5595ff, #2563eb);
}

.advertise-option-green {
  background: linear-gradient(180deg, #43c66c, #159947);
}

.advertise-option-cyan {
  background: linear-gradient(180deg, #42c9ef, #16a8d8);
}

.advertise-option-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.advertise-option-copy strong {
  color: #071225;
  line-height: 1.18;
}

.advertise-option-copy small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.38;
}

.advertise-option-card em {
  justify-self: end;
  color: var(--orange);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.carousel-button {
  position: absolute;
  top: 54px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 106, 24, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  transform: translateY(-50%);
}

.carousel-button:hover {
  transform: translateY(calc(-50% - 1px));
}

#home-featured-prev {
  left: -1rem;
}

#home-featured-next {
  right: -1rem;
}

#home-events-prev {
  left: -1rem;
}

#home-events-next {
  right: -1rem;
}

#home-paid-events-prev {
  top: 50%;
  left: -1rem;
}

#home-paid-events-next {
  top: 50%;
  right: -1rem;
}

#home-news-prev {
  left: -1rem;
}

#home-news-next {
  right: -1rem;
}

.category-grid,
.business-grid,
.package-grid,
.order-grid {
  display: grid;
  gap: 1.15rem;
}

.category-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.9rem;
}

.category-section {
  padding-top: 2.65rem;
  scroll-margin-top: 96px;
}

.category-section .section-head {
  margin-bottom: 1rem;
}

.category-card,
.business-card,
.package-card,
.contact-card,
.order-form,
.cta-banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card {
  --category-accent: #ff6a18;
  --category-accent-2: #ffb36f;
  --category-soft: #fff4ed;
  --category-border: rgba(255, 106, 24, 0.24);
  --category-shadow: rgba(255, 106, 24, 0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  min-height: 188px;
  overflow: hidden;
  min-width: 0;
  padding: 1.05rem 0.72rem 0.78rem;
  text-align: center;
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fff 46%, #fffaf7 100%);
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--category-accent), var(--category-accent-2));
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 4px 0 auto;
  z-index: -1;
  height: 64px;
  background: linear-gradient(180deg, var(--category-soft) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.72;
}

.category-card:has(.category-icon.blue) {
  --category-accent: #2579ff;
  --category-accent-2: #67b4ff;
  --category-soft: #eef6ff;
  --category-border: rgba(37, 121, 255, 0.24);
  --category-shadow: rgba(37, 121, 255, 0.15);
}

.category-card:has(.category-icon.green) {
  --category-accent: #2eb639;
  --category-accent-2: #7ade80;
  --category-soft: #f0fbf1;
  --category-border: rgba(46, 182, 57, 0.24);
  --category-shadow: rgba(46, 182, 57, 0.15);
}

.category-card:has(.category-icon.purple) {
  --category-accent: #5840f5;
  --category-accent-2: #9486ff;
  --category-soft: #f4f2ff;
  --category-border: rgba(88, 64, 245, 0.24);
  --category-shadow: rgba(88, 64, 245, 0.15);
}

.category-card:has(.category-icon.gold) {
  --category-accent: #f5a900;
  --category-accent-2: #ffd461;
  --category-soft: #fff8df;
  --category-border: rgba(245, 169, 0, 0.28);
  --category-shadow: rgba(245, 169, 0, 0.15);
}

.category-card:has(.category-icon.pink) {
  --category-accent: #f25586;
  --category-accent-2: #ff9db8;
  --category-soft: #fff1f6;
  --category-border: rgba(242, 85, 134, 0.24);
  --category-shadow: rgba(242, 85, 134, 0.15);
}

.category-card:has(.category-icon.cyan) {
  --category-accent: #16a8d8;
  --category-accent-2: #64d7f4;
  --category-soft: #edfaff;
  --category-border: rgba(22, 168, 216, 0.24);
  --category-shadow: rgba(22, 168, 216, 0.15);
}

.category-card:has(.category-icon.teal) {
  --category-accent: #159b8d;
  --category-accent-2: #61ddcf;
  --category-soft: #effbf9;
  --category-border: rgba(21, 155, 141, 0.24);
  --category-shadow: rgba(21, 155, 141, 0.15);
}

.category-link-card:hover,
.category-link-card:focus-visible {
  border-color: var(--category-border);
  background: linear-gradient(180deg, #fff 0%, var(--category-soft) 100%);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.1),
    0 10px 22px var(--category-shadow);
  transform: translateY(-3px);
}

.category-link-card:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.2);
  outline-offset: 3px;
}

.category-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0.12rem auto 0.72rem;
  border: 3px solid #fff;
  font-size: 1.42rem;
  color: #fff;
  box-shadow:
    0 12px 22px var(--category-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.category-icon.orange { background: linear-gradient(180deg, #ff8d3b, #ff6213); }
.category-icon.blue { background: linear-gradient(180deg, #49a2ff, #1c74ff); }
.category-icon.green { background: linear-gradient(180deg, #5fd464, #2eb639); }
.category-icon.purple { background: linear-gradient(180deg, #7a67ff, #5840f5); }
.category-icon.gold { background: linear-gradient(180deg, #ffcb32, #ffb100); }
.category-icon.pink { background: linear-gradient(180deg, #ff8fb0, #f25586); }
.category-icon.cyan { background: linear-gradient(180deg, #42c9ef, #16a8d8); }
.category-icon.teal { background: linear-gradient(180deg, #47d7c1, #159b8d); }

.category-card h3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 2.24em;
  max-width: 11ch;
  color: #111827;
  font-size: 1.06rem;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 0.24rem;
}

.category-card p {
  max-width: 14ch;
  min-height: 2.35em;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.category-card-action {
  width: min(100%, 88px);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 0.7rem;
  border: 1px solid var(--category-border);
  border-radius: 8px;
  background: #fff;
  color: var(--category-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 16px var(--category-shadow);
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.category-link-card:hover .category-card-action,
.category-link-card:focus-visible .category-card-action {
  border-color: transparent;
  background: var(--category-accent);
  color: #fff;
  box-shadow: 0 10px 18px var(--category-shadow);
}

.category-card p,
.business-copy p,
.package-card p,
.contact-card li {
  color: var(--muted);
}

.business-grid,
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-card {
  overflow: hidden;
  position: relative;
}

.business-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  background: rgba(54, 54, 54, 0.84);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.business-copy {
  padding: 1.1rem 1rem 1rem;
}

.business-copy h3 {
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}

.business-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
}

.business-meta span {
  min-width: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0 0.2rem;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8d8d8;
}

.carousel-dots .active {
  width: 20px;
  background: var(--orange);
}

.cta-banner {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.4rem;
  margin-top: 0.4rem;
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
}

.cta-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8d3b, #ff6213);
  color: #fff;
  font-size: 2rem;
}

.cta-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.package-grid {
  margin-top: 1.2rem;
}

.package-card {
  padding: 1.35rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.package-card:hover,
.package-card.selected {
  border-color: rgba(255, 106, 24, 0.5);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 34px rgba(255, 106, 24, 0.12);
  transform: translateY(-2px);
}

.package-card .button {
  margin-top: 1rem;
}

.package-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid #f0dfd4;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  box-shadow: var(--shadow);
}

.package-selection-bar .button.is-disabled {
  pointer-events: none;
}

.package-selection-copy {
  display: grid;
  gap: 0.2rem;
}

.package-selection-label {
  margin: 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#selected-package-name {
  font-size: 1.05rem;
}

.package-name {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange);
}

.package-card h3 {
  font-size: 2.8rem;
  margin: 0.35rem 0 0.55rem;
}

.pricing-page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.7rem 0 1.4rem;
  border-bottom: 1px solid #f0e4dc;
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.11) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.contact-page-hero {
  padding: 3rem 0 1.8rem;
  background:
    linear-gradient(180deg, #fff7f0 0%, #fff 100%);
}

.pricing-page-hero-inner,
.pricing-header,
.contact-page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.pricing-page-hero h1,
.pricing-header h2,
.contact-page-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.6rem;
  line-height: 0.95;
}

.pricing-page-hero p:not(.eyebrow),
.pricing-header p:not(.eyebrow),
.contact-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pricing-hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.pricing-hero-actions .button {
  min-height: 48px;
  border-radius: 8px;
}

.contact-intake-hero {
  padding: 2.8rem 0 2.6rem;
  background:
    linear-gradient(180deg, #fff7f0 0%, #fff 42%, #f8fafc 100%);
}

.contact-simple-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 196px);
  display: grid;
  align-items: center;
  padding: 3.7rem 0 3.4rem;
  background:
    linear-gradient(115deg, rgba(255, 106, 24, 0.09) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(245deg, rgba(37, 121, 255, 0.07) 0%, rgba(255, 255, 255, 0) 31%),
    linear-gradient(180deg, #fff 0%, #fffaf6 54%, #f8fafc 100%);
  border-top: 1px solid #f1f3f6;
}

.contact-simple-hero::before {
  content: "";
  position: absolute;
  inset: 11% 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 106, 24, 0), rgba(255, 106, 24, 0.22), rgba(37, 121, 255, 0.18), rgba(37, 121, 255, 0));
}

.contact-intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-simple-hero .contact-intake-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(410px, 0.9fr);
  gap: 4.1rem;
  align-items: center;
  max-width: 1080px;
}

.contact-intake-copy {
  display: grid;
  gap: 1rem;
  max-width: 620px;
  text-align: left;
}

.contact-simple-hero .contact-intake-copy {
  gap: 1.02rem;
  max-width: 520px;
}

.contact-intake-copy h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.55rem;
  line-height: 0.95;
}

.contact-simple-hero .contact-intake-copy h1 {
  max-width: 470px;
  font-size: 4rem;
  letter-spacing: 0;
}

.contact-intake-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.contact-simple-hero .contact-intake-copy p:not(.eyebrow) {
  max-width: 445px;
  color: #4f5560;
  font-weight: 700;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  padding-top: 0.25rem;
}

.contact-quick-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.68rem;
  border: 1px solid #e6ebf1;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.contact-quick-links a:hover,
.contact-quick-links a:focus-visible {
  border-color: rgba(255, 106, 24, 0.34);
  color: var(--orange);
}

.contact-quick-links a:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.2);
  outline-offset: 2px;
}

.contact-route-panel {
  display: grid;
  gap: 0.75rem;
  max-width: 480px;
  margin-top: 0.15rem;
}

.contact-note {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid #edf0f4;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.contact-note strong {
  color: #111827;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-note span {
  color: #667085;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 0.15rem;
}

.contact-message-grid {
  padding-top: 0;
  gap: 0.62rem;
}

.contact-topic-card {
  min-width: 0;
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-message-grid .contact-topic-card {
  min-height: 68px;
  align-content: start;
  gap: 0.14rem;
  padding: 0.64rem 0.72rem;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
}

.contact-message-grid .contact-topic-card strong {
  font-size: 0.94rem;
}

.contact-message-grid .contact-topic-card span {
  font-size: 0.78rem;
  line-height: 1.28;
}

.contact-topic-card:hover,
.contact-topic-card:focus-visible {
  border-color: rgba(255, 106, 24, 0.34);
  background: #fffaf7;
  box-shadow: 0 12px 24px rgba(255, 106, 24, 0.09);
  transform: translateY(-1px);
}

.contact-topic-card:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.contact-topic-card strong {
  color: #071225;
  line-height: 1.2;
}

.contact-topic-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.contact-intake-form {
  border-radius: 12px;
}

.contact-simple-hero .contact-intake-form {
  max-width: 560px;
  justify-self: end;
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(255, 106, 24, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.1),
    0 10px 24px rgba(255, 106, 24, 0.05);
}

.contact-simple-hero .contact-intake-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb36f 54%, #2579ff 100%);
}

.contact-form-head {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #edf0f4;
}

.contact-form-head h2 {
  margin: 0;
  color: #071225;
  font-size: 1.7rem;
  line-height: 1.12;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1.1rem;
  width: 100%;
  max-width: 70rem;
  margin: 1.4rem auto 0;
}

.pricing-page-section .pricing-card-grid {
  margin-top: 0;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto minmax(8.1rem, 1fr) auto;
  gap: 1rem;
  height: 100%;
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid #eaded6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within,
.pricing-card.selected {
  border-color: rgba(255, 106, 24, 0.45);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.13);
  transform: translateY(-2px);
}

.pricing-card.is-featured {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
}

.pricing-card.is-featured:hover,
.pricing-card.is-featured:focus-within,
.pricing-card.is-featured.selected {
  border-color: rgba(255, 106, 24, 0.45);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.13);
}

.pricing-card-badge {
  position: absolute;
  top: -0.72rem;
  left: 50%;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-card-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.pricing-card-heading {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.pricing-card-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  align-items: center;
  min-width: 0;
}

.pricing-card-label-row .package-name {
  min-width: 0;
}

.pricing-tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tier-badge-orange {
  background: #fff1e8;
  color: var(--orange);
}

.pricing-tier-badge-blue {
  background: #edf4ff;
  color: #1658d9;
}

.pricing-tier-badge-green {
  background: #ecfdf3;
  color: #15803d;
}

.pricing-tier-badge-cyan {
  background: #ecfbff;
  color: #087ea4;
}

.tier-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  min-height: 30px;
  padding: 0 0.68rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.tier-badge-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.74rem;
}

.tier-badge-featured {
  background: #ff6a18;
}

.tier-badge-sponsored {
  background: #2563eb;
}

.tier-badge-partner,
.tier-badge-verified {
  background: #1f9d55;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.pricing-icon-orange {
  background: linear-gradient(180deg, #ff8d3b, #ff6213);
}

.pricing-icon-blue {
  background: linear-gradient(180deg, #5595ff, #2563eb);
}

.pricing-icon-green {
  background: linear-gradient(180deg, #43c66c, #159947);
}

.pricing-icon-purple {
  background: linear-gradient(180deg, #8b6cff, #5f35de);
}

.pricing-icon-cyan {
  background: linear-gradient(180deg, #42c9ef, #16a8d8);
}

.pricing-card h3 {
  margin: 0.15rem 0 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.pricing-description {
  min-height: 4.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-price {
  display: flex;
  align-items: end;
  gap: 0.25rem;
  width: fit-content;
  min-width: 154px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfd;
}

.pricing-card.is-featured .pricing-price {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fff7f0;
}

.pricing-price strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  line-height: 0.88;
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-cancel-note {
  margin: -0.65rem 0 -0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-feature-list {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.45rem;
  color: #30343a;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pricing-feature-list li.is-highlight {
  color: #111827;
}

.pricing-feature-list li.is-highlight.is-blue .pricing-feature-copy strong {
  color: #1252d8;
}

.pricing-feature-list li.is-highlight.is-orange .pricing-feature-copy strong {
  color: var(--orange);
}

.pricing-feature-list li.is-highlight.is-green .pricing-feature-copy strong {
  color: #15803d;
}

.pricing-feature-list li.is-highlight.is-purple .pricing-feature-copy strong {
  color: #5f35de;
}

.pricing-feature-list li.is-highlight.is-cyan .pricing-feature-copy strong {
  color: #087ea4;
}

.pricing-feature-check {
  color: var(--orange);
  font-weight: 900;
}

.pricing-feature-list li.is-highlight.is-blue .pricing-feature-check {
  color: #1252d8;
}

.pricing-card:has(.pricing-tier-badge-blue) .pricing-feature-check {
  color: #1252d8;
}

.pricing-card:has(.pricing-tier-badge-green) .pricing-feature-check {
  color: #15803d;
}

.pricing-card:has(.pricing-tier-badge-purple) .pricing-feature-check {
  color: #5f35de;
}

.pricing-card:has(.pricing-tier-badge-cyan) .pricing-feature-check {
  color: #087ea4;
}

.pricing-feature-list li.is-highlight.is-orange .pricing-feature-check {
  color: var(--orange);
}

.pricing-feature-list li.is-highlight.is-green .pricing-feature-check {
  color: #15803d;
}

.pricing-feature-list li.is-highlight.is-purple .pricing-feature-check {
  color: #5f35de;
}

.pricing-feature-list li.is-highlight.is-cyan .pricing-feature-check {
  color: #087ea4;
}

.pricing-feature-copy {
  min-width: 0;
}

.pricing-feature-copy strong,
.pricing-feature-copy small {
  display: block;
}

.pricing-feature-copy small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.pricing-card .button {
  align-self: end;
  margin-top: 0.15rem;
}

.pricing-card-fit {
  margin: -0.28rem 0 0.1rem;
  padding: 0;
  color: #6f7a89;
  font-size: 0.81rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
}

.pricing-proof-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(112px, 1fr));
  align-items: stretch;
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 24, 0.16);
  border-radius: 16px;
  background: linear-gradient(90deg, #fff2ea 0%, #fff8f4 100%);
  box-shadow: 0 14px 30px rgba(255, 106, 24, 0.08);
}

.pricing-proof-intro {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.pricing-proof-icon,
.pricing-proof-stat span {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 900;
}

.pricing-proof-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 20px rgba(255, 106, 24, 0.12);
}

.pricing-proof-intro strong,
.pricing-proof-stat strong {
  color: var(--text);
  line-height: 1.2;
}

.pricing-proof-intro p,
.pricing-proof-stat p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.pricing-proof-stat {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.22rem;
  min-height: 112px;
  padding: 0.85rem;
  border-left: 1px solid rgba(255, 106, 24, 0.14);
  text-align: center;
}

.pricing-proof-stat span {
  min-height: 25px;
  font-size: 1.2rem;
}

.pricing-proof-stat p {
  margin-top: 0;
  font-size: 0.82rem;
}

.pricing-selection-bar {
  margin-top: 1rem;
}

.pricing-cta-banner {
  margin-top: 0;
}

.pricing-hub-hero {
  padding-bottom: 1rem;
}

.pricing-hub-section {
  padding-top: 1rem;
}

.pricing-hub-head {
  max-width: 680px;
  margin-bottom: 0.85rem;
}

.pricing-hub-head h2 {
  font-size: 2.1rem;
}

.pricing-hub-head p:not(.eyebrow) {
  max-width: 540px;
  font-size: 0.96rem;
}

.pricing-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid #dde3eb;
  border-radius: 14px;
  background: #f8fafc;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.pricing-category-card {
  position: relative;
  min-width: 0;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  align-items: center;
  gap: 0.25rem 0.85rem;
  padding: 0.85rem 0.95rem 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.pricing-category-card::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 3px;
  height: 40px;
  border-radius: 999px;
  background: #dfe3ea;
  transform: translateY(-50%);
}

.pricing-category-card:has(.pricing-category-icon-orange)::before {
  background: var(--orange);
}

.pricing-category-card:has(.pricing-category-icon-blue)::before {
  background: #2563eb;
}

.pricing-category-card:has(.pricing-category-icon-green)::before {
  background: #159947;
}

.pricing-category-card:has(.pricing-category-icon-cyan)::before {
  background: #16a8d8;
}

.pricing-category-card:hover,
.pricing-category-card:focus-visible {
  border-color: #dfe3ea;
  background: #f8fafc;
  transform: translateY(-1px);
}

.pricing-category-card.is-active {
  border-color: rgba(255, 106, 24, 0.32);
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.pricing-category-card.is-active:hover {
  background: #fff;
  transform: none;
}

.pricing-category-card:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.pricing-category-grid .pricing-category-icon {
  display: none;
}

.pricing-category-icon,
.pricing-compact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
}

.pricing-category-icon-orange {
  background: linear-gradient(180deg, #ff8d3b, #ff6213);
}

.pricing-category-icon-blue {
  background: linear-gradient(180deg, #5595ff, #2563eb);
}

.pricing-category-icon-green {
  background: linear-gradient(180deg, #43c66c, #159947);
}

.pricing-category-icon-cyan {
  background: linear-gradient(180deg, #42c9ef, #16a8d8);
}

.pricing-category-copy {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.45rem;
}

.pricing-category-copy h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.pricing-category-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.pricing-category-card.is-active .pricing-category-copy p {
  color: #6f625a;
}

.pricing-category-card strong {
  justify-self: end;
  padding: 0.28rem 0.55rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #475467;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.pricing-category-card.is-active strong {
  border-color: rgba(255, 106, 24, 0.22);
  background: #fff;
  color: var(--orange);
}

.pricing-section-head {
  align-items: end;
  padding: 0.95rem 1rem;
  border: 1px solid #edf0f4;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: linear-gradient(90deg, #fffaf7 0%, #fff 100%);
}

.pricing-section-head p:not(.eyebrow) {
  max-width: 680px;
}

.pricing-page-section,
.pricing-compact-section {
  scroll-margin-top: 104px;
}

.pricing-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.1rem;
  align-items: start;
}

.pricing-area-layout-wide {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-area-main {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1.05rem;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}

.pricing-static-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 1rem;
  height: 100%;
  padding: 1.15rem;
  border: 1px solid #e4e8ef;
  border-top-width: 4px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  cursor: pointer;
}

.pricing-static-card-blue {
  border-top-color: #2563eb;
}

.pricing-static-card-orange {
  border-top-color: var(--orange);
}

.pricing-static-card-green {
  border-top-color: #159947;
}

.pricing-static-card-purple {
  border-top-color: #6c4cf4;
}

.pricing-static-card-cyan {
  border-top-color: #16a8d8;
}

.pricing-static-card.is-featured {
  border-color: rgba(255, 106, 24, 0.28);
  border-top-color: var(--orange);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 40px rgba(255, 106, 24, 0.12);
}

.pricing-static-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.pricing-static-card:hover,
.pricing-static-card:focus-within,
.pricing-static-card.selected {
  border-color: rgba(255, 106, 24, 0.45);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.13);
  transform: translateY(-2px);
}

.pricing-static-card.is-featured.selected {
  border-color: rgba(255, 106, 24, 0.45);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 18px 36px rgba(255, 106, 24, 0.13);
}

.pricing-static-card-badge {
  position: absolute;
  top: -0.82rem;
  left: 50%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-static-card-top {
  display: grid;
  gap: 0.4rem;
  min-height: 136px;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #edf0f4;
}

.pricing-static-card-top h3 {
  margin: 0;
  color: #071225;
  font-size: 1.45rem;
  line-height: 1.08;
}

.pricing-static-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-tier-badge-purple {
  background: #f0ecff;
  color: #5f35de;
}

.pricing-static-price {
  display: grid;
  gap: 0.18rem;
  width: fit-content;
  min-width: 150px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfd;
}

.pricing-static-card.is-featured .pricing-static-price {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fff7f0;
}

.pricing-static-price strong {
  color: #071225;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.45rem;
  line-height: 0.88;
}

.pricing-static-price span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.pricing-static-features {
  display: grid;
  gap: 0.58rem;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-static-features li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.48rem;
  color: #293241;
  font-size: 0.9rem;
  line-height: 1.35;
}

.pricing-static-features li.is-highlight {
  color: #111827;
}

.pricing-static-features li.is-highlight.is-blue .pricing-feature-copy strong {
  color: #1252d8;
}

.pricing-static-features li.is-highlight.is-orange .pricing-feature-copy strong {
  color: var(--orange);
}

.pricing-static-features li.is-highlight.is-green .pricing-feature-copy strong {
  color: #15803d;
}

.pricing-static-features li.is-highlight.is-purple .pricing-feature-copy strong {
  color: #5f35de;
}

.pricing-static-features li.is-highlight.is-cyan .pricing-feature-copy strong {
  color: #087ea4;
}

.pricing-static-features li::before,
.pricing-area-side-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.32rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.pricing-static-duration {
  margin: 0;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid #edf0f4;
  border-radius: 999px;
  background: #fbfcfd;
  color: #536170;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.pricing-comparison-shell {
  position: relative;
  overflow: auto;
  border: 1px solid #e2e7ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.pricing-comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #e8edf3;
  text-align: center;
  vertical-align: middle;
}

.pricing-comparison-table tr:last-child th,
.pricing-comparison-table tr:last-child td {
  border-bottom: 0;
}

.pricing-comparison-table thead th {
  background: #f8fafc;
  color: #0b1324;
  font-weight: 900;
}

.pricing-comparison-table th:first-child {
  width: 34%;
  text-align: left;
}

.pricing-comparison-table th:first-child,
.pricing-comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 1px 0 0 #e8edf3;
}

.pricing-comparison-table thead th:first-child {
  z-index: 2;
  background: #f8fafc;
}

.pricing-comparison-table tbody th {
  color: #172033;
  font-weight: 800;
}

.pricing-comparison-table td {
  color: #435165;
  font-weight: 800;
}

.pricing-comparison-table th span {
  display: block;
  margin-top: 0.1rem;
  color: var(--orange);
  font-size: 0.82rem;
}

.pricing-area-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
}

.pricing-area-side-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem;
  border: 1px solid #e2e7ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.pricing-area-side-card-warm {
  border-color: rgba(255, 106, 24, 0.16);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.pricing-area-side-card-dark {
  border-color: rgba(6, 22, 50, 0.18);
  background: #061632;
  color: #fff;
}

.pricing-area-side-card h3 {
  margin: 0;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1.12;
}

.pricing-area-side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-area-side-card-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-area-side-card-dark .button {
  background: #fff;
  color: #061632;
  border-color: #fff;
}

.pricing-area-side-icon {
  width: 48px;
  height: 48px;
}

.pricing-area-side-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-area-side-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.48rem;
  color: #273244;
  line-height: 1.35;
  font-weight: 700;
}

.pricing-area-layout-notes-below .pricing-area-side {
  position: static;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-area-layout-notes-below .pricing-area-side-card {
  height: 100%;
}

.pricing-compact-list {
  display: grid;
  gap: 0.85rem;
}

.pricing-compact-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(146px, auto) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid #eaded6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  scroll-margin-top: 104px;
}

.pricing-compact-copy {
  display: grid;
  gap: 0.3rem;
}

.pricing-compact-copy h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.pricing-compact-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-compact-price {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  text-align: right;
}

.pricing-compact-price strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.15;
}

.pricing-compact-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-home-cta .cta-actions,
.pricing-cta-banner .cta-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.order-grid {
  grid-template-columns: minmax(0, 1.1fr) 340px;
  align-items: start;
}

.order-form {
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
  align-items: start;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
  min-width: 0;
}

.form-grid .full {
  grid-column: 1 / -1;
}

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

.form-section-divider {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.16rem 0.72rem;
  align-items: center;
  margin-top: 0.15rem;
  padding: 0.85rem 0 0.1rem;
  border-top: 1px solid #f0e7e1;
}

.form-section-divider:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-section-divider span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.form-section-divider strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.form-section-divider small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-form input,
.order-form select,
.order-form textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.admin-article-form input,
.admin-article-form select,
.admin-article-form textarea,
.admin-business-form input,
.admin-business-form select,
.admin-business-form textarea,
.admin-event-form input,
.admin-event-form select,
.admin-event-form textarea,
.event-submit-form input,
.event-submit-form select,
.event-submit-form textarea {
  margin-top: 0;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.25;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.order-form input::placeholder,
.order-form textarea::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder,
.admin-article-form input::placeholder,
.admin-article-form textarea::placeholder,
.admin-business-form input::placeholder,
.admin-business-form textarea::placeholder,
.admin-event-form input::placeholder,
.admin-event-form textarea::placeholder,
.event-submit-form input::placeholder,
.event-submit-form textarea::placeholder {
  color: #9ca3af;
}

.checkout-form label small,
.order-form label small,
.event-submit-form label small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-form input.is-invalid,
.checkout-form select.is-invalid,
.checkout-form textarea.is-invalid,
.order-form input.is-invalid,
.order-form select.is-invalid,
.order-form textarea.is-invalid {
  border-color: rgba(177, 63, 18, 0.75);
  background: #fff8f6;
  box-shadow: 0 0 0 4px rgba(177, 63, 18, 0.1);
}

.checkout-form label.has-invalid-field,
.order-form label.has-invalid-field {
  color: #9f1d1d;
}

.order-form input[type="checkbox"],
.checkout-form input[type="checkbox"],
.admin-article-form input[type="checkbox"],
.admin-business-form input[type="checkbox"],
.admin-event-form input[type="checkbox"],
.event-submit-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  accent-color: var(--orange);
}

.order-form textarea,
.checkout-form textarea,
.admin-article-form textarea,
.admin-business-form textarea,
.admin-event-form textarea,
.event-submit-form textarea {
  min-height: 150px;
  resize: vertical;
}

.business-hours {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fffdfb;
}

.business-hours summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.business-hours summary::-webkit-details-marker {
  display: none;
}

.business-hours summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange);
  font-weight: 900;
}

.business-hours[open] summary {
  margin-bottom: 0.65rem;
}

.business-hours[open] summary::after {
  content: "-";
}

.business-hours summary span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-business-real-estate-options,
.admin-business-schedule-options {
  margin: 0;
  padding: 0.78rem 0.85rem;
  border: 1px solid #e1e7ef;
  border-radius: 14px;
  background: #fff;
}

.admin-business-real-estate-options {
  border-color: rgba(255, 106, 24, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 244, 236, 0.86) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 12px 28px rgba(255, 106, 24, 0.08);
}

.admin-business-real-estate-options summary,
.admin-business-schedule-options summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

.admin-business-real-estate-options summary::-webkit-details-marker,
.admin-business-schedule-options summary::-webkit-details-marker {
  display: none;
}

.admin-business-real-estate-options summary::after,
.admin-business-schedule-options summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--orange);
  font-weight: 900;
}

.admin-business-schedule-options summary::after {
  background: #eef2f7;
  color: #475467;
}

.admin-business-real-estate-options[open] summary,
.admin-business-schedule-options[open] summary {
  margin-bottom: 0.65rem;
}

.admin-business-real-estate-options[open] summary::after,
.admin-business-schedule-options[open] summary::after {
  content: "-";
}

.admin-business-real-estate-options summary em,
.admin-business-schedule-options summary em {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-business-real-estate-panel {
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.admin-business-schedule-toggle {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  color: var(--text);
  font-weight: 800;
}

.admin-business-schedule-toggle input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  accent-color: var(--orange);
}

.admin-business-schedule-fields {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.72rem;
}

.admin-business-schedule-fields.is-disabled {
  opacity: 0.55;
}

.business-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.business-hours-row {
  display: grid;
  grid-template-columns: 4.7rem minmax(0, 1fr);
  gap: 0.35rem;
  align-items: center;
  min-width: 0;
  padding: 0.35rem;
  border: 1px solid #eee3dc;
  border-radius: 10px;
  background: #fff;
}

.business-hours-row.is-open {
  grid-template-columns: 4.7rem minmax(6.4rem, 0.85fr) repeat(2, minmax(4.9rem, 1fr));
}

.business-hours-row:not(.is-open) input[type="time"],
.business-hours-row:not(.is-open) [data-business-hours-open],
.business-hours-row:not(.is-open) [data-business-hours-close] {
  display: none;
}

.business-hours-row span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-form .business-hours-row input,
.checkout-form .business-hours-row select,
.admin-business-form .business-hours-row select {
  margin-top: 0;
  min-width: 0;
  min-height: 36px;
  padding: 0.48rem 0.58rem;
  border-radius: 9px;
  font-size: 0.8rem;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.admin-article-form input:focus,
.admin-article-form select:focus,
.admin-article-form textarea:focus,
.admin-business-form input:focus,
.admin-business-form select:focus,
.admin-business-form textarea:focus,
.admin-event-form input:focus,
.admin-event-form select:focus,
.admin-event-form textarea:focus,
.event-submit-form input:focus,
.event-submit-form select:focus,
.event-submit-form textarea:focus {
  border-color: rgba(255, 106, 24, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
  background: #fffdfb;
}

.order-form input[type="checkbox"]:focus,
.checkout-form input[type="checkbox"]:focus,
.admin-article-form input[type="checkbox"]:focus,
.admin-business-form input[type="checkbox"]:focus,
.admin-event-form input[type="checkbox"]:focus,
.event-submit-form input[type="checkbox"]:focus {
  background: transparent;
  box-shadow: none;
}

.order-form input[type="checkbox"]:focus-visible,
.checkout-form input[type="checkbox"]:focus-visible,
.admin-article-form input[type="checkbox"]:focus-visible,
.admin-business-form input[type="checkbox"]:focus-visible,
.admin-event-form input[type="checkbox"]:focus-visible,
.event-submit-form input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.contact-card {
  padding: 1.3rem;
}

.contact-card ul {
  padding-left: 1.15rem;
  line-height: 1.7;
}

.contact-section {
  padding-bottom: 2.2rem;
  background:
    linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.4rem;
}

.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  line-height: 0.95;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 106, 24, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #7a5541;
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-social-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(24, 119, 242, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #175fbf;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-social-link:hover {
  border-color: rgba(24, 119, 242, 0.42);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.14);
  transform: translateY(-1px);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-intake-form .form-grid {
  gap: 0.88rem 1rem;
}

.contact-intake-form .form-grid label {
  gap: 0.38rem;
  color: #5f6673;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-intake-form input,
.contact-intake-form select,
.contact-intake-form textarea {
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  border-color: #dfe5ec;
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.03);
}

.contact-intake-form textarea {
  min-height: 128px;
}

.contact-intake-form input::placeholder,
.contact-intake-form textarea::placeholder {
  color: #9aa0aa;
  font-weight: 700;
}

.contact-intake-form .button-primary {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 1.15rem;
  box-shadow:
    0 12px 24px rgba(255, 106, 24, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.contact-simple-hero .contact-form-head {
  gap: 0.34rem;
  margin-bottom: 0.2rem;
  padding-bottom: 0.72rem;
}

.contact-simple-hero .contact-form-head h2 {
  font-size: 1.62rem;
}

.checkout-main {
  padding: 2rem 0 3rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 1.25rem;
  align-items: start;
}

.checkout-panel,
.summary-card,
.checkout-package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checkout-panel {
  padding: 1.35rem;
}

.checkout-header h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.3rem;
  line-height: 0.95;
}

.checkout-header p {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
}

.checkout-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 1rem 0 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid #f0e1d7;
}

.checkout-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #51463f;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.checkout-proof-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-block {
  padding-top: 0.25rem;
}

.checkout-block-head h2,
.summary-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.65rem;
}

.checkout-block-head {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkout-block-head h2 {
  margin-bottom: 0.35rem;
}

.checkout-block-help {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.checkout-change-button {
  min-height: 42px;
  padding: 0 1rem;
}

.checkout-package-card.is-locked {
  cursor: default;
}

.checkout-package-card.is-locked:hover {
  transform: none;
}

.checkout-package-grid {
  display: grid;
  gap: 0.9rem;
}

.checkout-code-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #f0e1d7;
  border-radius: 14px;
  background: #fffaf7;
}

.checkout-code-card strong {
  color: var(--text);
  line-height: 1.2;
}

.checkout-code-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.checkout-code-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

.checkout-code-control input {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.9rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.checkout-code-control input:focus {
  border-color: rgba(255, 106, 24, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
  outline: 0;
}

.checkout-code-control .button {
  min-height: 48px;
  border-radius: 10px;
  box-shadow: none;
}

.checkout-code-status {
  margin: 0;
  color: #9f1d1d;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.checkout-code-status.is-success {
  color: #15803d;
}

.checkout-package-card {
  display: block;
  padding: 1rem;
  cursor: pointer;
}

.checkout-package-card:hover:not(.is-locked),
.checkout-package-card:focus-within:not(.is-locked),
.checkout-package-card.selected {
  border-color: rgba(255, 106, 24, 0.55);
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
  box-shadow: 0 12px 26px rgba(255, 106, 24, 0.12);
}

.checkout-package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.checkout-selected-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.65rem;
  border: 1px solid rgba(23, 133, 74, 0.14);
  border-radius: 999px;
  background: #e9fbf0;
  color: #15803d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.checkout-package-top strong {
  font-size: 1.15rem;
}

.checkout-package-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.24rem;
  flex-wrap: wrap;
  color: var(--orange);
  font-weight: 900;
  line-height: 1.05;
  text-align: right;
}

.checkout-package-price .checkout-price-amount {
  font-size: 1.12rem;
}

.checkout-package-price .checkout-price-term {
  font-size: 0.92rem;
}

.checkout-package-copy p,
.summary-description,
.checkout-note,
.checkout-error {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-actions {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.checkout-error {
  margin: 0;
  color: #b13f12;
  font-weight: 600;
}

.upload-field {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  margin-top: 0.45rem;
  padding: 1.2rem;
  border: 1.5px dashed rgba(255, 106, 24, 0.35);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  text-align: center;
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.upload-field.is-dragover {
  border-color: rgba(255, 106, 24, 0.78);
  background: linear-gradient(180deg, #fff0e7 0%, #fffaf6 100%);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.upload-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  min-height: auto;
  margin: 0;
  padding: 0;
}

#ad-image-field.is-upload-minimized .upload-field {
  display: none;
}

.upload-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 440px;
}

.upload-copy strong {
  color: var(--text);
  font-size: 1.02rem;
}

.upload-copy span,
.upload-preview-copy span {
  color: var(--muted);
  line-height: 1.5;
}

.upload-preview-shell {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid #eee3dc;
  border-radius: 16px;
  background: #fffaf7;
}

.upload-preview-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #f0e1d7;
}

.upload-preview-shell.is-logo-preview img {
  background: #fff;
  object-fit: contain;
  padding: 0.35rem;
}

.upload-preview-shell.is-property-preview img {
  background: #f2f4f7;
  object-fit: cover;
  padding: 0;
}

.upload-preview-shell.is-cover-preview img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.upload-preview-copy {
  display: grid;
  gap: 0.35rem;
}

.upload-preview-copy strong {
  font-size: 1rem;
  color: var(--text);
}

.upload-change-button {
  justify-self: start;
  min-height: 36px;
  margin-top: 0.25rem;
  padding: 0 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
}

.upload-change-button:hover,
.upload-change-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.52);
  color: var(--orange-dark);
  outline: 0;
}

.checkout-summary {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 116px;
}

.summary-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.summary-review-card {
  border-color: rgba(255, 106, 24, 0.18);
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.summary-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
}

.summary-title-group {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}

.summary-brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 0.36rem;
  border: 1px solid #f0e1d7;
  border-radius: 12px;
  background: #fff;
}

.summary-card-head h2 {
  margin: 0;
  line-height: 1.1;
}

.summary-secure-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.72rem;
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 999px;
  background: #effbf3;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.summary-price-block {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid #f0e1d7;
  border-radius: 14px;
  background: #fff;
}

.summary-price-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-price {
  display: flex;
  align-items: flex-end;
  gap: 0.34rem;
  flex-wrap: wrap;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text);
  line-height: 0.9;
}

.summary-price .checkout-price-amount {
  font-size: 3.2rem;
  line-height: 0.9;
}

.summary-price .checkout-price-term {
  padding-bottom: 0.24rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
}

.summary-description {
  margin: 0;
}

.summary-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.intake-purchase-summary {
  margin: 1rem 0;
  border-color: rgba(255, 106, 24, 0.2);
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  box-shadow: 0 14px 30px rgba(255, 106, 24, 0.08);
}

.intake-purchase-summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.intake-purchase-summary-head .eyebrow {
  margin-bottom: 0.3rem;
}

.intake-purchase-summary-head h2 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.purchase-status-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.72rem;
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: 999px;
  background: #effbf3;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.purchase-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.purchase-summary-grid div {
  display: grid;
  gap: 0.28rem;
  padding: 0.72rem;
  border: 1px solid #f0e1d7;
  border-radius: 10px;
  background: #fff;
  min-width: 0;
}

.purchase-summary-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.purchase-summary-grid strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.billing-portal-control {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.billing-portal-label {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.billing-portal-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.billing-portal-control .button {
  width: 100%;
  min-height: 44px;
}

.billing-portal-control .checkout-error {
  margin: 0;
}

.event-upgrade-control {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.event-upgrade-label {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.event-upgrade-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-upgrade-options {
  display: grid;
  gap: 0.6rem;
}

.event-upgrade-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.7rem;
  align-items: center;
  min-height: 58px;
  padding: 0.72rem;
  border: 1px solid #f0d4c0;
  border-radius: 10px;
  background: #fffaf7;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.event-upgrade-button:hover,
.event-upgrade-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.1);
  outline: 0;
}

.event-upgrade-button.is-disabled,
.event-upgrade-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.event-upgrade-button span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.event-upgrade-button strong,
.event-upgrade-button small {
  overflow-wrap: anywhere;
}

.event-upgrade-button small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.event-upgrade-button em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.event-upgrade-button b {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.62rem;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.summary-change-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 106, 24, 0.32);
  border-radius: 10px;
  background: #fff;
  color: var(--orange);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.summary-change-button:hover,
.summary-change-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.5);
  background: #fff3eb;
  transform: translateY(-1px);
}

.summary-change-button:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.summary-included {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.95rem;
  border-top: 1px solid #f0e7e1;
}

.summary-included > strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.2;
}

.summary-included .summary-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 0;
  list-style: none;
}

.summary-included .summary-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  color: #30343a;
  line-height: 1.42;
}

.summary-included .summary-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.summary-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.summary-assurance span {
  min-height: 42px;
  display: grid;
  align-items: center;
  padding: 0.58rem 0.65rem;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  background: #fbfcfd;
  color: #475467;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.summary-next-card {
  gap: 0.8rem;
}

.summary-next-card .eyebrow {
  margin-bottom: 0;
}

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

.summary-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.summary-steps strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--orange);
  font-size: 0.82rem;
  line-height: 1;
}

.success-shell {
  max-width: 760px;
}

.success-card {
  margin: 3rem auto 0;
  padding: 2rem;
}

.success-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.6rem;
  line-height: 0.95;
}

.success-card p {
  color: var(--muted);
  line-height: 1.7;
}

.success-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.admin-page {
  min-height: calc(100vh - 124px);
}

.admin-body:not(.is-admin-unlocked) .site-header .nav-wrap {
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
}

.admin-body:not(.is-admin-unlocked) .site-header .brand {
  justify-self: center;
}

.admin-body:not(.is-admin-unlocked) .site-header .brand img {
  width: clamp(240px, 30vw, 360px);
}

.admin-body:not(.is-admin-unlocked) .admin-header-actions {
  display: none;
}

.admin-login-card {
  max-width: 440px;
  margin: 2rem auto 0;
}

.admin-login-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.2rem;
  line-height: 0.95;
}

.admin-login-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.admin-login-form .button {
  width: 100%;
}

.admin-header-actions {
  margin-left: auto;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 1.25rem;
  align-items: start;
}

.admin-page .checkout-panel {
  display: grid;
  gap: 1rem;
}

.admin-section-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.5rem;
  border: 1px solid #e5ded8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);
}

.admin-section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1rem;
  border: 1px solid #ddd6cf;
  border-radius: 12px;
  background: #fffaf6;
  color: #3b434d;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.admin-section-button:hover,
.admin-section-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.42);
  color: var(--orange);
  transform: translateY(-1px);
  outline: none;
}

.admin-section-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange) 0%, #f4510b 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 106, 24, 0.26);
}

.admin-orders-card {
  order: 1;
}

.admin-businesses-card {
  order: 2;
}

.admin-articles-card {
  order: 3;
}

.admin-events-card {
  order: 4;
}

.admin-tools-card,
.admin-orders-card,
.admin-businesses-card {
  margin-top: 0;
}

.admin-tools-head,
.admin-order-top,
.admin-order-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-tools-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-orders-list {
  display: grid;
  gap: 0.9rem;
}

.admin-review-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}

.admin-stat {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem;
  border: 1px solid #efe5de;
  border-radius: 12px;
  background: #fff;
}

.admin-stat strong {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
}

.admin-stat span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-revenue-stats {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

.admin-revenue-total {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #efe5de;
}

.admin-revenue-total strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.admin-revenue-total span,
.admin-revenue-breakdown span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-revenue-breakdown {
  display: grid;
  gap: 0.5rem;
}

.admin-revenue-breakdown strong {
  color: var(--text);
}

.admin-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.admin-filter-button {
  min-height: 38px;
  padding: 0 0.85rem;
  border: 1px solid #efe5de;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-filter-button.is-active {
  border-color: rgba(255, 106, 24, 0.35);
  background: #fff2e8;
  color: var(--orange);
}

.admin-business-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) minmax(150px, 190px);
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.admin-business-search,
.admin-business-category-filter,
.admin-business-tier-filter {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-business-search input,
.admin-business-category-filter select,
.admin-business-tier-filter select {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #efe5de;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.admin-businesses-list {
  display: grid;
  gap: 0.85rem;
}

.admin-business-form {
  display: grid;
  gap: 1rem;
  margin: -0.25rem 0 1rem 5rem;
  padding: 1rem;
  border: 1px solid #efe5de;
  border-radius: 16px;
  background: #fffaf7;
}

.admin-business-form[hidden] {
  display: none;
}

.admin-business-form h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.admin-form-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.admin-field-help {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.admin-google-place-panel {
  display: grid;
  gap: 0.62rem;
  padding: 0.82rem;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-google-place-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-google-place-head > span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.admin-google-place-head strong {
  color: #071225;
  font-size: 0.95rem;
  line-height: 1.2;
}

.admin-google-place-head small,
.admin-google-place-status {
  margin: 0;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.36;
}

.admin-google-place-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.42rem;
}

.admin-google-place-actions .button {
  min-height: 38px;
  padding: 0 0.78rem;
  font-size: 0.78rem;
}

.admin-google-place-results {
  display: grid;
  gap: 0.42rem;
}

.admin-google-place-option {
  display: grid;
  gap: 0.18rem;
  width: 100%;
  padding: 0.62rem 0.72rem;
  border: 1px solid #dfe6ef;
  border-radius: 9px;
  background: #fff;
  color: #071225;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-google-place-option strong {
  font-size: 0.88rem;
  line-height: 1.22;
}

.admin-google-place-option span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.32;
}

.admin-google-place-option:hover,
.admin-google-place-option:focus-visible {
  border-color: rgba(255, 106, 24, 0.48);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.admin-business-form textarea#business-promo-details {
  min-height: 150px;
}

.admin-business-upload {
  min-height: 170px;
}

.admin-business-cover-image-field {
  display: grid;
  gap: 0.65rem;
}

.admin-business-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border: 1px solid #efe5de;
  border-radius: 14px;
  background: #fff;
}

.admin-business-card.is-expanded {
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  padding: 0.9rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.admin-business-thumb {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0.4rem;
  border: 1px solid #e3d8d0;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow: hidden;
}

.admin-business-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-business-copy {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.admin-business-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.admin-business-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-business-details {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.admin-business-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-business-card.is-expanded .admin-business-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-business-meta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-business-note {
  display: grid;
  gap: 0.3rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid #f0e7e1;
  border-radius: 12px;
  background: #fff;
}

.admin-business-note strong {
  color: var(--text);
  font-size: 0.84rem;
}

.admin-business-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-address-note {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fffaf7;
}

.admin-duplicate-note {
  border-color: rgba(159, 29, 29, 0.18);
  background: #fff8f8;
}

.admin-duplicate-list {
  display: grid;
  gap: 0.38rem;
  margin: 0.55rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.45;
}

.admin-duplicate-list strong {
  color: var(--text);
}

.admin-business-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
}

.admin-business-card.is-expanded .admin-business-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.admin-business-actions .button {
  min-height: 38px;
  padding: 0 0.8rem;
}

.admin-order-card {
  padding: 1rem;
  border: 1px solid #efe5de;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.admin-order-card.is-compact {
  padding: 0.85rem 1rem;
  background: #fff;
}

.admin-order-plan {
  margin: 0 0 0.25rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-order-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.admin-order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0.95rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-compact-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem 0.9rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-compact-meta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-order-hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-password-field {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-password-field input {
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font: inherit;
}

.admin-password-control {
  position: relative;
  display: block;
}

.admin-password-control input {
  width: 100%;
  padding-right: 5rem;
}

.admin-password-toggle {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 106, 24, 0.22);
  border-radius: 10px;
  background: #fff7f0;
  color: var(--orange);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.admin-password-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.admin-password-toggle:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.25);
  outline-offset: 2px;
}

.admin-submission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: start;
  margin-top: 0.95rem;
}

.admin-submission-details {
  display: grid;
  gap: 0.85rem;
}

.admin-submission-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid #f0e7e1;
  border-radius: 12px;
  background: #fff;
}

.admin-submission-copy strong {
  color: var(--text);
  font-size: 0.86rem;
}

.admin-submission-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

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

.admin-submission-image-item {
  display: grid;
  gap: 0.5rem;
}

.admin-submission-image-item strong {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-submission-image-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-submission-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid #efe5de;
  border-radius: 14px;
  background: #f8f8f8;
}

.admin-submission-image .button {
  width: 100%;
}

.admin-submission-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px dashed #e3d8d0;
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.admin-articles-card {
  display: grid;
  gap: 1rem;
}

.admin-article-form {
  display: grid;
  gap: 1rem;
  padding-top: 0.2rem;
}

.admin-event-form {
  display: grid;
  gap: 1rem;
  padding-top: 0.2rem;
}

.admin-event-recurrence-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
  padding: 0.78rem;
  border: 1px solid rgba(255, 106, 24, 0.2);
  border-radius: 12px;
  background: #fff8f2;
}

.admin-event-recurrence-panel[hidden] {
  display: none;
}

.admin-event-recurrence-panel label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-event-recurrence-panel .admin-field-help {
  grid-column: 1 / -1;
  margin: 0;
}

.admin-compact-form .form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-compact-form .admin-wide {
  grid-column: span 2;
}

.admin-compact-form .admin-half {
  grid-column: span 2;
}

.admin-compact-form input,
.admin-compact-form select,
.admin-compact-form textarea {
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.admin-compact-form .admin-checkbox-row {
  min-height: 46px;
  align-self: end;
  padding: 0.55rem 0.7rem;
  border: 1px solid #efe5de;
  border-radius: 10px;
  background: #fffaf7;
}

.admin-compact-form .upload-field {
  min-height: 126px;
  padding: 0.8rem;
  border-radius: 12px;
}

.admin-article-form textarea#article-body {
  min-height: 210px;
}

.admin-article-form textarea#article-excerpt,
.admin-event-form textarea#admin-event-excerpt {
  min-height: 92px;
}

.admin-event-form textarea#admin-event-description {
  min-height: 166px;
}

.admin-checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.admin-checkbox-row input {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  accent-color: var(--orange);
}

.admin-article-upload {
  margin-top: 0;
}

.admin-article-actions,
.admin-article-card-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-articles-list {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.2rem;
}

.admin-article-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid #efe5de;
  border-radius: 16px;
  background: #fff;
}

.admin-news-article-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.72rem 0.85rem;
}

.admin-news-article-card .admin-article-card-copy {
  gap: 0.28rem;
}

.admin-news-article-card .admin-article-card-copy h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.admin-news-article-card .admin-article-card-copy p {
  font-size: 0.82rem;
  line-height: 1.35;
}

.admin-news-article-card .admin-article-card-actions .button {
  min-height: 38px;
  padding: 0 0.85rem;
}

.admin-news-empty-state {
  justify-items: start;
  text-align: left;
}

.admin-news-empty-state strong {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.2;
}

.admin-news-empty-state span {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-article-thumb {
  display: grid;
  place-items: center;
  width: 120px;
  height: 96px;
  min-height: 96px;
  border: 1px dashed #e3d8d0;
  border-radius: 12px;
  background: #fffaf7;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
}

.admin-article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-event-card {
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.9rem;
}

.admin-event-card .admin-article-thumb {
  width: 84px;
  height: 63px;
  min-height: 0;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.1;
}

.admin-event-card .admin-article-card-copy {
  gap: 0.32rem;
}

.admin-event-card .admin-article-card-copy h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.admin-event-card .admin-article-card-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.86rem;
  line-height: 1.35;
}

.admin-event-card .admin-compact-meta {
  gap: 0.36rem 0.55rem;
  font-size: 0.78rem;
}

.admin-article-card-copy {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.admin-article-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-article-card-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.admin-article-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.admin-article-card-actions {
  align-self: stretch;
  align-content: start;
}

.workflow-strip {
  padding: 0.85rem 0.95rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.workflow-step {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0.65rem 0.7rem;
  border-radius: 14px;
  border: 1px solid #ececec;
  background: #fafafa;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.workflow-step.is-complete {
  background: #fff6ef;
  border-color: rgba(255, 106, 24, 0.24);
  color: var(--orange);
}

.workflow-step.is-active {
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.11);
}

.intake-complete-card {
  margin-top: 1rem;
}
.service-area-shell {
  display: grid;
  gap: 0.7rem;
}

.promo-details-field textarea {
  min-height: 170px;
}

.property-checkout-panel {
  display: grid;
  gap: 1rem;
}

.property-checkout-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.property-checkout-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.property-checkout-head h2 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.12;
}

.property-checkout-head p,
.property-checkout-next p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.property-checkout-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0f0f1;
}

.property-checkout-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a18 0%, #111 100%);
  transition: width 180ms ease;
}

.property-checkout-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ece7e1;
}

.property-checkout-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 0.7rem;
  row-gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #ece7e1;
}

.property-checkout-dot {
  width: 13px;
  height: 13px;
  margin-top: 0.2rem;
  border: 2px solid #d7d7da;
  border-radius: 999px;
  background: #fff;
}

.property-checkout-list li.is-complete .property-checkout-dot {
  border-color: #15803d;
  background: #15803d;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.1);
}

.property-checkout-list li.is-recommended .property-checkout-dot {
  border-color: rgba(255, 106, 24, 0.78);
  background: #fff8f2;
}

.property-checkout-list strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.property-checkout-list small {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.property-checkout-list em {
  grid-column: 2;
  justify-self: start;
  padding: 0.28rem 0.48rem;
  border-radius: 8px;
  background: #f4f4f5;
  color: #62646a;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.property-checkout-list li.is-complete em {
  background: #ecfdf3;
  color: #15803d;
}

.property-checkout-list li.is-recommended em {
  background: #fff2e8;
  color: var(--orange-dark);
}

.property-checkout-next {
  padding-top: 0.1rem;
}

.property-checkout-next strong {
  color: var(--text);
  font-size: 0.94rem;
}

.service-area-toggle {
  display: grid;
  grid-template-columns: 18px minmax(0, auto);
  align-items: center;
  column-gap: 0.5rem;
  width: fit-content;
  min-height: 44px;
  padding: 0.64rem 0.78rem;
  border: 1px solid #eee3dc;
  border-radius: 10px;
  background: #fffaf7;
  color: #51463f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-area-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.service-area-toggle span {
  display: inline-block;
}

.service-address-field input:disabled {
  background: #f6f6f6;
  color: #888;
  cursor: not-allowed;
}

.real-estate-intake-panel,
.real-estate-property-panel {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 106, 24, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8f2 0%, #fff 100%);
}

.real-estate-property-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.real-estate-property-head strong {
  display: block;
  color: var(--text);
  font-weight: 900;
}

.real-estate-property-head p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.real-estate-property-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.real-estate-property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.real-estate-property-grid .full {
  grid-column: 1 / -1;
}

.real-estate-submitter-field {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.real-estate-submitter-field legend {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.real-estate-submitter-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.real-estate-submitter-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  min-height: 92px;
  padding: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.real-estate-submitter-option:hover,
.real-estate-submitter-option.is-selected {
  border-color: rgba(255, 106, 24, 0.52);
  background: #fffaf5;
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.1);
}

.real-estate-submitter-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.real-estate-submitter-option input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0.1rem 0 0;
  padding: 0;
  accent-color: var(--orange);
}

.real-estate-submitter-option span {
  display: grid;
  gap: 0.2rem;
}

.real-estate-submitter-option strong {
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
}

.real-estate-submitter-option small,
.real-estate-subsection-title span,
.real-estate-property-grid label small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.real-estate-subsection-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.real-estate-subsection-title strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.real-estate-intake-toggle {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: var(--text);
  font-weight: 800;
}

.real-estate-intake-toggle input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0.12rem 0 0;
  padding: 0;
  border: 0;
  accent-color: var(--orange);
}

.real-estate-intake-toggle span {
  display: grid;
  gap: 0.2rem;
}

.real-estate-intake-toggle small,
.real-estate-intake-panel p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.real-estate-intake-panel p {
  margin: 0;
}

.real-estate-license-link {
  color: #1d4ed8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.real-estate-license-link:hover {
  color: #1e40af;
}

.nonprofit-intake-panel {
  border-color: rgba(22, 168, 216, 0.24);
  background: linear-gradient(180deg, #edfaff 0%, #fff 100%);
}

.nonprofit-intake-panel.is-active {
  box-shadow: 0 12px 24px rgba(22, 168, 216, 0.1);
}

.nonprofit-donation-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(22, 168, 216, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
}

.nonprofit-donation-toggle input {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  accent-color: #16a8d8;
}

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

.community-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(430px, 64vh, 540px);
  overflow: hidden;
  padding: 2.35rem 0;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 27, 45, 0.88) 0%, rgba(5, 27, 45, 0.7) 48%, rgba(5, 27, 45, 0.34) 100%),
    url("assets/coverphoto.jpg");
  background-position: center;
  background-size: cover;
}

.community-hero-wrap {
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

.community-hero h1 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.community-hero-actions,
.community-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-submit-band {
  padding: 2.5rem 0;
  background: #f7fbfd;
}

.community-submit-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.community-submit-wrap h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-submit-wrap p {
  max-width: 780px;
  margin-top: 0.65rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.community-directory-section {
  background: #fff;
}

.community-resource-search {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.community-resource-search label {
  min-width: min(330px, 56vw);
}

.community-resource-search input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d8e5ea;
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.community-resource-grid {
  display: grid;
  gap: 1rem;
}

.community-resource-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #dbe9ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.community-resource-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 1px solid rgba(22, 168, 216, 0.2);
  border-radius: 8px;
  background: #eefaff;
  color: #075985;
  font-weight: 900;
}

.community-resource-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-resource-copy {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.community-resource-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}

.community-resource-category {
  margin: 0 0 0.22rem;
  color: #08739d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.community-resource-card h3 {
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-resource-type {
  align-self: start;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #eefaff;
  color: #075985;
  font-size: 0.76rem;
  font-weight: 900;
}

.community-resource-description,
.community-resource-disclosure {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.community-resource-disclosure {
  padding: 0.65rem 0.75rem;
  border-left: 4px solid #16a8d8;
  background: #f4fbfd;
  color: #365666;
  font-size: 0.86rem;
}

.community-resource-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.community-resource-details span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.55rem;
  border: 1px solid #dbe9ee;
  border-radius: 999px;
  color: #365666;
  font-size: 0.82rem;
  font-weight: 800;
}

.community-resource-empty {
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .community-hero {
    min-height: 500px;
    padding: 3rem 0 2.2rem;
  }

  .community-submit-wrap {
    grid-template-columns: 1fr;
  }

  .community-resource-search {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .community-resource-search label {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .community-resource-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.78rem;
  }

  .community-resource-logo {
    width: 64px;
    height: 64px;
  }

  .community-resource-actions .button {
    flex: 1 1 120px;
  }
}

.real-estate-authorization-toggle {
  padding: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 10px;
  background: #fff;
}

.real-estate-intake-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.real-estate-intake-fields.is-disabled {
  display: none;
}

.real-estate-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 2.35rem 0;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 13, 27, 0.88) 0%, rgba(4, 13, 27, 0.7) 42%, rgba(4, 13, 27, 0.34) 100%),
    url("assets/coverphoto.jpg");
  background-size: cover;
  background-position: center;
}

.real-estate-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(560px, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.real-estate-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.real-estate-hero-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.9rem;
  line-height: 0.92;
}

.real-estate-hero-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.55;
}

.real-estate-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.real-estate-hero-points span {
  display: grid;
  gap: 0.18rem;
  min-height: 86px;
  align-content: center;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.35;
}

.real-estate-hero-points span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.real-estate-hero-points strong {
  color: #fff;
  font-size: 0.94rem;
}

.real-estate-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.real-estate-field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
  color: #424b5a;
  font-size: 0.82rem;
  font-weight: 700;
}

.real-estate-field-wide {
  grid-column: span 2;
}

.real-estate-field input,
.real-estate-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 0.85rem;
  border: 1px solid #dfe3ea;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: 0;
}

.real-estate-field input:focus,
.real-estate-field select:focus {
  border-color: rgba(255, 106, 24, 0.64);
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.real-estate-search-panel .button {
  min-height: 52px;
  border-radius: 9px;
  white-space: nowrap;
}

.real-estate-section {
  padding-bottom: 2rem;
}

.real-estate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.35rem;
  align-items: start;
}

.real-estate-feed {
  display: grid;
  gap: 1.4rem;
  min-width: 0;
}

.real-estate-section-head {
  margin-top: 0.3rem;
}

.real-estate-section-head span {
  color: var(--muted);
  font-weight: 800;
}

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

.real-estate-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid #e2e7ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.real-estate-card-media {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(3, 9, 23, 0.08), rgba(3, 9, 23, 0.38)),
    url("assets/coverphoto.jpg");
  background-size: cover;
  background-position: center;
}

.real-estate-card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-estate-card-media:has(.real-estate-card-image)::before,
.real-estate-card-media:has(.real-estate-card-image)::after {
  display: none;
}

.real-estate-card-media::before,
.real-estate-card-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.real-estate-card-media::before {
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 44%;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.92) 12% 22%, transparent 22% 36%, rgba(255, 255, 255, 0.92) 36% 46%, transparent 46% 58%, rgba(255, 255, 255, 0.92) 58% 68%, transparent 68% 100%),
    linear-gradient(180deg, rgba(243, 238, 230, 0.96), rgba(203, 195, 184, 0.94));
  box-shadow: 0 -40px 0 -16px rgba(255, 255, 255, 0.85);
}

.real-estate-card-media::after {
  left: 9%;
  right: 9%;
  bottom: 39%;
  height: 42px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(36, 48, 67, 0.94);
}

.real-estate-home-blue {
  background-position: 52% 45%;
}

.real-estate-home-green {
  background-position: 32% 50%;
}

.real-estate-home-gold {
  background-position: 60% 60%;
}

.real-estate-home-teal {
  background-position: 42% 42%;
}

.real-estate-home-purple {
  background-position: 72% 46%;
}

.real-estate-listing-badge,
.real-estate-save-button {
  position: absolute;
  z-index: 2;
}

.real-estate-listing-badge {
  top: 0.75rem;
  left: 0.75rem;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.62rem;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.real-estate-listing-badge,
.real-estate-save-button {
  z-index: 2;
}

.real-estate-listing-badge.is-promoted {
  background: #2563eb;
}

.real-estate-listing-badge.is-featured {
  background: #ff6a18;
}

.real-estate-save-button {
  top: 0.7rem;
  right: 0.7rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #526070;
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.real-estate-save-button.is-saved {
  color: #f25586;
}

.real-estate-card-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 0.9rem;
}

.real-estate-card-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.real-estate-address {
  display: grid;
  gap: 0.16rem;
  margin: 0;
  color: #283241;
  line-height: 1.35;
}

.real-estate-address span,
.real-estate-description {
  color: var(--muted);
}

.real-estate-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #536170;
  font-size: 0.86rem;
  font-weight: 700;
}

.real-estate-description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
}

.real-estate-agent-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid #eef0f3;
}

.real-estate-agent-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.real-estate-agent-row span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.real-estate-agent-row small {
  color: var(--muted);
  line-height: 1.35;
}

.real-estate-agent-row .button {
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.real-estate-card-compact .real-estate-card-media {
  min-height: 160px;
}

.real-estate-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1rem;
}

.real-estate-promo-card,
.real-estate-side-card,
.real-estate-feature-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 14px;
}

.real-estate-promo-card {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  border: 1px solid rgba(255, 106, 24, 0.16);
  background: linear-gradient(135deg, #fff4eb 0%, #fff 100%);
  box-shadow: var(--shadow);
}

.real-estate-promo-card .button {
  grid-column: 2;
}

.real-estate-sidebar-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
}

.real-estate-promo-card h3,
.real-estate-side-card h3,
.real-estate-feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.real-estate-promo-card p,
.real-estate-side-card p,
.real-estate-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.real-estate-side-card {
  border: 1px solid #e2e7ee;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.real-estate-disclaimer-card p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.real-estate-check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.real-estate-check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.45rem;
  line-height: 1.35;
  font-weight: 700;
}

.real-estate-check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.real-estate-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #07162d 0%, #001f43 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 31, 67, 0.2);
}

.real-estate-feature-card p {
  color: rgba(255, 255, 255, 0.86);
}

.real-estate-feature-card strong {
  font-size: 0.95rem;
}

.real-estate-services-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 106, 24, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  box-shadow: var(--shadow);
}

.real-estate-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 262px));
  gap: 0.8rem;
  align-items: stretch;
  justify-content: start;
}

.real-estate-service-business-card {
  width: 100%;
}

.real-estate-service-business-card .home-business-copy {
  align-items: center;
  gap: 0.12rem;
  padding-top: 2.62rem;
}

.real-estate-service-business-card h3 {
  width: 100%;
  text-align: center;
}

.real-estate-service-business-card .home-business-category {
  width: 100%;
  color: #415065;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.real-estate-service-business-card .home-business-description {
  width: 100%;
  min-height: 0;
  margin-top: 0;
  padding-top: 0.06rem;
  border-top: 0;
  color: #172033;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
}

.real-estate-service-business-card .home-business-details {
  align-self: stretch;
  width: 100%;
  margin-top: 0.36rem;
  padding-top: 0.52rem;
  border-top: 1px solid #e5e7eb;
}

.real-estate-service-business-card .home-business-actions {
  align-self: stretch;
  width: 100%;
}

.real-estate-service-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid #eee3dc;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.real-estate-service-card.is-tier-featured {
  border-color: rgba(255, 106, 24, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.95) 0%, #fff 100%);
  box-shadow: 0 10px 24px rgba(255, 106, 24, 0.1), 0 8px 18px rgba(15, 23, 42, 0.045);
}

.real-estate-service-card.is-tier-sponsored {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.96) 0%, #fff 100%);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1), 0 8px 18px rgba(15, 23, 42, 0.045);
}

.real-estate-service-badge-row {
  width: 100%;
  min-height: 22px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: -0.1rem;
}

.real-estate-service-badge-row .business-tier-badge,
.real-estate-feature-card > .business-tier-badge {
  min-height: 22px;
  padding: 0 0.52rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  font-size: 0.56rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.real-estate-service-logo {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  justify-self: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid #f0e1d7;
  background: #fff7f0;
  color: var(--orange);
  font-weight: 900;
}

.real-estate-service-card.is-tier-sponsored .real-estate-service-logo {
  border-color: #dbeafe;
  background: #f3f8ff;
  color: #0f4f86;
}

.real-estate-service-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-estate-service-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.real-estate-service-type {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.real-estate-service-card.is-tier-sponsored .real-estate-service-type {
  color: #0f4f86;
}

.real-estate-service-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.real-estate-service-card .button {
  min-height: 40px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
}

.real-estate-partner-logo {
  width: 112px;
  height: 78px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.real-estate-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-estate-more-services {
  display: grid;
  gap: 0.8rem;
}

.real-estate-more-service {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.real-estate-more-service .real-estate-service-logo {
  width: 46px;
  height: 46px;
  font-size: 0.76rem;
}

.real-estate-more-service strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.2;
}

.real-estate-more-service span {
  color: var(--muted);
  font-size: 0.8rem;
}

.real-estate-more-service a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}


@media (max-width: 1200px) {
  .nav-wrap {
    min-height: 92px;
    grid-template-columns: minmax(234px, 0.78fr) minmax(max-content, auto) minmax(242px, 0.86fr);
    column-gap: 0.7rem;
  }

  .brand img {
    width: clamp(212px, 19vw, 252px);
  }

  .main-nav {
    gap: 0.22rem;
  }

  .nav-actions {
    gap: 0.48rem;
  }

  .main-nav a {
    min-height: 36px;
    padding: 0 0.58rem;
    font-size: 0.82rem;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-step {
    min-height: 48px;
    padding: 0.6rem 0.65rem;
  }

}

@media (max-width: 920px) {
  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1150px) {
  .site-footer-wrap {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .site-footer-links {
    justify-content: start;
  }

  .directory-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .explorer-sidebar {
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .business-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .map-panel {
    min-height: 720px;
  }

  .map-stage {
    height: 720px;
    min-height: 720px;
  }

  .news-layout,
  .news-hero-layout,
  .events-hero-layout {
    grid-template-columns: 1fr;
  }

  .events-hero-layout {
    gap: 1.35rem;
    max-width: 760px;
  }

  .events-feature-panel {
    justify-self: start;
    width: min(100%, 520px);
  }

  .mayor-desk-card {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .mayor-desk-standard {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .order-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 380px;
  }

  .checkout-summary {
    position: static;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

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

  .admin-review-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-compact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-list-layout {
    grid-template-columns: 1fr;
  }

  .event-submit-layout,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .event-promo-panel {
    position: static;
  }

}

@media (max-width: 1024px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    display: flex;
    min-height: auto;
    padding: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .brand img {
    margin: 0 auto;
    width: min(284px, 100%);
  }

  .main-nav {
    justify-content: center;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-actions {
    justify-content: center;
    width: 100%;
  }

  .hero {
    min-height: 560px;
    background-position: center;
  }

  .hero-grid {
    place-items: center;
    padding: 3rem 0;
  }

  .hero-card {
    max-width: 460px;
  }

  .section-head {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .events-hero-copy h1,
  .news-hero-copy h1,
  .article-header h1,
  .legal-hero h1 {
    font-size: 4.3rem;
  }

  .checkout-header h1,
  .success-card h1 {
    font-size: 3.8rem;
  }

  .section-head h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .nav-wrap,
  .main-nav,
  .nav-actions,
  .business-meta,
  .cta-banner,
  .section-head,
  .site-footer-wrap {
    flex-wrap: wrap;
  }

  .main-nav {
    gap: 1rem;
  }

  .hero-search,
  .contact-layout,
  .business-grid,
  .home-event-grid,
  .home-news-list,
  .package-grid,
  .pricing-category-grid,
  .pricing-area-layout,
  .pricing-tier-grid,
  .pricing-compact-row,
  .pricing-card-grid,
  .form-grid,
  .form-grid-pair,
  .real-estate-property-grid,
  .real-estate-submitter-options,
  .admin-article-card,
  .admin-business-card,
  .admin-business-toolbar,
  .admin-order-meta,
  .admin-compact-meta,
  .admin-business-meta,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .pricing-proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-proof-intro {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 106, 24, 0.14);
  }

  .pricing-proof-stat {
    border-top: 1px solid rgba(255, 106, 24, 0.14);
  }

  .pricing-proof-stat:nth-child(2n) {
    border-left: 0;
  }

  .pricing-compact-price {
    justify-items: start;
    text-align: left;
  }

  .pricing-area-side {
    position: static;
  }

  .pricing-area-layout-notes-below .pricing-area-side {
    grid-template-columns: 1fr;
  }

  .pricing-static-card-top {
    min-height: 0;
  }

  .pricing-description {
    min-height: 0;
  }

  .pricing-compact-row .button,
  .pricing-static-card .button,
  .pricing-home-cta .button,
  .pricing-cta-banner .button {
    width: 100%;
  }

  .pricing-home-cta .cta-actions,
  .pricing-cta-banner .cta-actions {
    justify-content: stretch;
  }

  .checkout-block-head {
    display: grid;
  }

  .service-area-toggle {
    width: 100%;
  }

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

  .advertise-layout,
  .contact-intake-layout {
    grid-template-columns: 1fr;
  }

  .advertise-copy,
  .contact-intake-copy {
    max-width: none;
  }

  .contact-simple-hero {
    align-items: start;
    min-height: 0;
    padding: 2.4rem 0;
  }

  .contact-simple-hero .contact-intake-layout {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .contact-simple-hero .contact-intake-form {
    max-width: none;
    justify-self: stretch;
  }

  .contact-route-panel {
    max-width: none;
  }

  .home-event-grid {
    grid-auto-columns: minmax(248px, 276px);
    grid-template-columns: none;
  }

  .home-paid-event-grid {
    grid-auto-columns: minmax(500px, 540px);
    grid-template-columns: none;
  }

  .home-news-list {
    grid-auto-columns: minmax(248px, 276px);
    grid-template-columns: none;
  }

  .package-selection-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .package-selection-bar .button {
    width: 100%;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .button {
    width: 100%;
  }

  .hero-search {
    width: min(100%, 520px);
    max-width: 100%;
  }

  .hero-search .button {
    width: 100%;
    border-radius: 14px;
  }

  .business-hours-row {
    grid-template-columns: 4.7rem minmax(0, 1fr);
  }

  .business-hours-row.is-open {
    grid-template-columns: 4.7rem minmax(6.4rem, 0.85fr) repeat(2, minmax(4.9rem, 1fr));
  }

  .business-hours-row span {
    grid-column: auto;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .mayor-desk-card,
  .mayor-desk-list {
    grid-template-columns: 1fr;
  }

  .mayor-desk-standard,
  .mayor-desk-empty {
    grid-column: auto;
  }

  .news-category-article {
    grid-template-columns: 1fr;
  }

  .news-category-article.has-thumbnail {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .news-category-article.has-thumbnail > span {
    grid-column: 2;
  }

  .news-category-article-thumb {
    width: 104px;
  }

  .search-field,
  .location-field {
    min-height: 68px;
  }

  .location-field {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .hero {
    min-height: auto;
  }

  .events-hero {
    min-height: auto;
    padding: 3.2rem 0;
    background-position: center top;
  }

  .hero-copy {
    padding-top: 2rem;
  }

  .hero-card {
    width: 100%;
    max-width: none;
  }

  .section-head {
    display: grid;
    gap: 0.5rem;
  }

  .section-head-rich {
    align-items: start;
  }

  .section-link {
    justify-self: start;
  }

  .admin-section-nav {
    grid-template-columns: 1fr;
  }

  .section-actions {
    justify-content: flex-start;
  }

  .event-filter-panel {
    display: grid;
  }

  .event-toolbar {
    display: grid;
  }

  .event-filter-panel p {
    order: -1;
  }

  .explorer-search {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .directory-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .explorer-search-field {
    grid-column: 1 / -1;
  }

  .explorer-location {
    border-right: 1px solid #e5e7eb;
    border-top: 0;
  }

  .explorer-search .button {
    border-radius: 0 0 11px 0;
  }

  .explorer-toolbar {
    top: 0.8rem;
    left: 0.75rem;
    right: 0.75rem;
    padding-right: 0.1rem;
  }

  .featured-toggle {
    top: 4.6rem;
    right: 0.75rem;
  }

  .map-status {
    top: 9.35rem;
    right: 0.75rem;
    width: min(205px, calc(100% - 1.5rem));
  }

  .map-bottom-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .map-bottom-banner .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .map-panel {
    min-height: 640px;
  }

  .map-stage {
    height: 640px;
    min-height: 640px;
  }

  .map-status {
    white-space: normal;
  }

  .section-head a {
    white-space: normal;
  }

  .business-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-meta .button {
    width: 100%;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .upload-preview-shell {
    grid-template-columns: 1fr;
  }

  .admin-article-actions,
  .admin-article-card-actions,
  .admin-business-actions {
    justify-content: stretch;
  }

  .admin-article-actions .button,
  .admin-article-card-actions .button,
  .admin-business-actions .button {
    flex: 1 1 160px;
  }

  .admin-event-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .admin-event-card .admin-article-thumb {
    width: 76px;
    height: 57px;
  }

  .admin-event-card .admin-article-card-actions {
    grid-column: 1 / -1;
  }

  .event-list-card {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
  }

  .event-list-card.is-featured {
    grid-template-columns: 136px minmax(0, 1fr);
    min-height: 0;
    padding: 1rem;
  }

  .event-list-card.is-paid-placement .event-list-copy {
    padding-right: 0;
    padding-top: 1.65rem;
  }

  .event-list-card .event-thumb {
    width: 112px;
    height: auto;
  }

  .event-list-card.is-paid-placement .event-thumb {
    width: 100%;
    min-height: 104px;
  }

  .event-feature-tag {
    grid-column: 2;
    justify-self: start;
  }

  .event-list-card.is-paid-placement .event-feature-tag {
    top: 0.72rem;
    right: 0.85rem;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .nav-wrap {
    padding: 0.85rem 0;
  }

  .brand img {
    width: min(244px, 100%);
  }

  .main-nav {
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .main-nav a {
    font-size: 0.96rem;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .header-social-link {
    min-height: 40px;
  }

  .site-footer-wrap {
    justify-content: center;
    text-align: center;
    justify-items: center;
  }

  .site-footer-copy {
    justify-items: center;
  }

  .site-footer-links {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
    width: min(100%, 300px);
    max-width: 100%;
  }

  .site-footer-links a {
    width: 100%;
  }

  .site-footer-links a.site-footer-social {
    width: 40px;
    justify-self: center;
  }

  .site-footer-links a:not(.site-footer-social) {
    grid-column: 1 / -1;
  }

  .directory-shell.is-list-view .explorer-sidebar {
    width: min(calc(100% - 1rem), 100%);
    padding: 0.8rem 0 1.1rem;
  }

  .directory-shell.is-list-view .business-list-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.68rem;
    min-height: 0;
    padding: 0.72rem;
  }

  .directory-shell.is-list-view .business-list-card > img,
  .directory-shell.is-list-view .business-list-placeholder {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .business-list-description {
    font-size: 0.84rem;
  }

  .business-list-actions a {
    flex: 1 1 110px;
  }

  .directory-shell.is-list-view .business-list-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    padding-left: 0;
    padding-top: 0.65rem;
    border-left: 0;
    border-top: 1px solid #edf0f4;
  }

  .legal-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .header-social-link,
  .nav-actions .button {
    width: 100%;
  }

  .hero {
    min-height: 570px;
    align-items: end;
  }

  .hero-carousel-slide img {
    object-position: center bottom;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 6, 18, 0.32) 0%, rgba(4, 6, 18, 0.58) 38%, rgba(4, 6, 18, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.22));
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-kicker,
  .hero-popular-row,
  .hero-proof {
    display: none;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 3.45rem;
    line-height: 0.9;
    text-wrap: balance;
  }

  .events-hero-copy h1,
  .news-hero-copy h1 {
    font-size: 3.15rem;
  }

  .hero p {
    max-width: 22rem;
    margin: 0.7rem auto 1.1rem;
    font-size: 1rem;
    line-height: 1.38;
  }

  .hero-grid {
    padding: 5rem 0 2.6rem;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr) 96px;
    width: min(100%, 23rem);
    gap: 0.28rem;
    padding: 0.28rem;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  }

  .hero-search .button {
    min-height: 48px;
    border-radius: 10px;
    font-size: 0.92rem;
  }

  .hero-search .search-field {
    min-height: 48px;
    gap: 0.5rem;
    padding: 0 0.78rem;
  }

  .hero-search .field-icon {
    font-size: 1rem;
  }

  .hero-search input {
    font-size: 0.92rem;
  }

  .news-hero-actions .button,
  .events-hero-actions .button,
  .mayor-desk-actions .button {
    width: 100%;
  }

  .popular-row {
    gap: 0.5rem;
  }

  .popular-row strong {
    width: 100%;
  }

  .popular-row a,
  .popular-row button {
    min-height: 34px;
    font-size: 0.88rem;
  }

  .section-head h2,
  .business-copy h3 {
    font-size: 1.7rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .package-card,
  .pricing-card,
  .home-business-card,
  .home-event-card,
  .checkout-panel,
  .summary-card,
  .order-form,
  .contact-card {
    border-radius: 16px;
  }

  .category-card {
    min-height: 172px;
    padding: 0.95rem 0.78rem 0.78rem;
  }

  .business-list-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.55rem;
    min-height: 78px;
    padding: 0.52rem 0.62rem 0.52rem 0.58rem;
  }

  .business-list-card > img,
  .business-list-placeholder {
    width: 46px;
    height: 46px;
  }

  .business-list-top h3 {
    font-size: 0.94rem;
  }

  .business-category-label {
    font-size: 0.74rem;
  }

  .business-list-meta {
    font-size: 0.74rem;
  }

  .business-hours-line {
    font-size: 0.74rem;
  }

  .business-hours-line strong {
    font-size: 0.76rem;
  }

  .business-copy,
  .package-card,
  .checkout-panel,
  .summary-card,
  .contact-card {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .summary-price .checkout-price-amount,
  .package-card h3 {
    font-size: 2.6rem;
  }

  .summary-card-head,
  .summary-assurance,
  .intake-purchase-summary-head,
  .purchase-summary-grid {
    grid-template-columns: 1fr;
  }

  .checkout-main {
    padding: 1.25rem 0 2rem;
  }

  .checkout-block-help {
    font-size: 0.92rem;
  }

  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea,
  .order-form input,
  .order-form select,
  .order-form textarea {
    font-size: 1rem;
  }

  .form-section-divider {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.12rem 0.65rem;
  }

  .form-section-divider span {
    width: 32px;
    height: 32px;
  }

  .checkout-actions .button {
    width: 100%;
  }

  .purchase-status-badge {
    justify-self: start;
  }

  .checkout-code-control {
    grid-template-columns: 1fr;
  }

  .checkout-code-control .button {
    width: 100%;
  }

  .pricing-page-hero h1,
  .pricing-header h2,
  .contact-page-hero h1,
  .contact-copy h2 {
    font-size: 3.2rem;
  }

  .pricing-hero-actions .button {
    width: 100%;
  }

  .pricing-feature-list,
  .pricing-description {
    min-height: 0;
  }

  .pricing-category-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .pricing-category-card strong {
    justify-self: start;
  }

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

  .pricing-category-copy p {
    display: none;
  }

  .pricing-static-card {
    padding: 1rem;
  }

  .pricing-static-price strong {
    font-size: 3rem;
  }

  .pricing-comparison-table {
    min-width: 620px;
  }

  .pricing-proof-bar {
    grid-template-columns: 1fr;
  }

  .pricing-proof-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pricing-proof-stat {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 106, 24, 0.14);
  }

  .advertise-section {
    padding: 1.7rem 0;
  }

  .advertise-copy h2 {
    font-size: 2.05rem;
  }

  .advertise-actions .button {
    width: 100%;
  }

  .advertise-option-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
  }

  .advertise-option-icon {
    width: 42px;
    height: 42px;
  }

  .advertise-option-card em {
    grid-column: 2;
    justify-self: start;
  }

  .contact-intake-hero {
    padding: 2rem 0;
  }

  .contact-intake-copy h1 {
    font-size: 3.1rem;
  }

  .contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-link {
    width: 100%;
    justify-content: center;
  }

  .home-featured-track {
    grid-auto-columns: min(74vw, 242px);
    gap: 0.72rem;
    padding: 0.1rem 0.08rem 0.45rem;
  }

  .mayor-desk-card {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .mayor-desk-copy {
    padding-left: 0.45rem;
  }

  .mayor-desk-copy h2 {
    font-size: 2rem;
  }

  .home-business-card-inner {
    grid-template-columns: none;
    grid-template-rows: 108px 1fr;
  }

  .home-business-media {
    min-height: 108px;
    padding: 0;
  }

  .home-business-cover {
    border-radius: 16px 16px 0 0;
  }

  .home-business-logo-plate {
    width: 68px;
    height: 68px;
    padding: 0.3rem;
  }

  .home-business-badge {
    top: 0.42rem;
    right: 0.42rem;
    left: auto;
  }

  .home-business-badge .business-tier-badge {
    min-height: 20px;
    padding: 0 0.42rem;
    font-size: 0.54rem;
  }

  .home-business-copy {
    gap: 0.28rem;
    padding: 2.28rem 0.7rem 0.72rem;
  }

  .home-business-card h3 {
    font-size: 1.06rem;
  }

  .home-business-category {
    min-height: 0;
    font-size: 0.8rem;
  }

  .home-business-description {
    display: none;
  }

  .home-business-details {
    grid-template-columns: 1fr;
    gap: 0.24rem;
    margin-top: 0.05rem;
  }

  .home-business-location,
  .home-business-phone,
  .home-business-website,
  .home-business-hours {
    font-size: 0.7rem;
  }

  .home-business-tags {
    display: none;
  }

  .home-business-cta {
    justify-self: stretch;
    min-height: 28px;
    padding: 0 0.65rem;
    font-size: 0.74rem;
  }

  .home-business-actions {
    gap: 0.3rem;
  }

  .home-business-email {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .carousel-button {
    display: grid;
    top: 48px;
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--orange);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px rgba(255, 106, 24, 0.26);
  }

  #home-featured-prev {
    left: -0.05rem;
  }

  #home-featured-next {
    right: -0.05rem;
  }

  #home-events-prev {
    left: -0.05rem;
  }

  #home-events-next {
    right: -0.05rem;
  }

  #home-paid-events-prev {
    left: -0.05rem;
  }

  #home-paid-events-next {
    right: -0.05rem;
  }

  #home-news-prev {
    left: -0.05rem;
  }

  #home-news-next {
    right: -0.05rem;
  }

  .checkout-header h1,
  .success-card h1 {
    font-size: 2.7rem;
  }

  .business-hours-grid {
    grid-template-columns: 1fr;
  }

  .business-hours-row.is-open {
    grid-template-columns: 4.7rem minmax(6.4rem, 0.85fr) repeat(2, minmax(4.9rem, 1fr));
  }

  .success-actions .button {
    width: 100%;
  }

  .event-list-card {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .event-list-card.is-featured,
  .event-grid-card.is-featured {
    grid-column: auto;
  }

  .event-list-card.is-featured {
    grid-template-columns: 1fr;
  }

  .event-list-card.is-paid-placement .event-list-copy {
    padding-top: 0;
  }

  .events-grid-view {
    grid-template-columns: 1fr;
  }

  .event-list-card .event-thumb {
    width: 100%;
    height: auto;
  }

  .event-list-card.is-paid-placement .event-thumb {
    min-height: 0;
  }

  .event-grid-card .event-thumb {
    height: auto;
  }

  .event-feature-tag {
    grid-column: auto;
  }

  .event-list-card.is-paid-placement .event-feature-tag {
    top: 1.65rem;
    right: 1.65rem;
  }

  .event-filter-button {
    flex: 1 1 calc(50% - 0.45rem);
  }

  .event-detail-copy h1 {
    font-size: 3rem;
  }

  .event-detail-facts p {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 0.75rem), var(--container));
  }

  .explorer-chip,
  .mini-filter {
    font-size: 0.82rem;
  }

  .explorer-filters {
    grid-template-columns: 1fr;
  }

  .map-stage {
    height: 560px;
    min-height: 560px;
  }

  .map-panel {
    min-height: 560px;
  }

  .map-city {
    font-size: 1.15rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p,
  .checkout-header p,
  .success-card p {
    font-size: 0.96rem;
  }

  .events-hero-copy h1,
  .news-hero-copy h1,
  .article-header h1,
  .legal-hero h1 {
    font-size: 2.8rem;
  }

  .search-field,
  .location-field,
  .button {
    min-height: 56px;
  }

  .section {
    padding-top: 1.5rem;
  }

  .section-head h2,
  .business-copy h3,
  .home-event-copy h3,
  .pricing-card h3,
  .checkout-block-head h2,
  .summary-card h2 {
    font-size: 1.45rem;
  }

  .pricing-page-hero h1,
  .pricing-header h2,
  .contact-page-hero h1,
  .contact-copy h2 {
    font-size: 2.65rem;
  }

  .pricing-price strong {
    font-size: 3rem;
  }

  .category-card h3 {
    font-size: 1rem;
  }


  .explorer-sidebar {
    padding: 0.65rem;
  }

  .directory-title h1 {
    font-size: 2.2rem;
  }

  .directory-title p {
    font-size: 0.86rem;
  }

  .directory-proof {
    grid-template-columns: 1fr;
    gap: 0.38rem;
  }

  .directory-proof span {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    padding: 0.48rem 0.55rem;
  }

  .directory-view-controls {
    display: grid;
    gap: 0.45rem;
  }

  .explorer-search {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .explorer-search-field,
  .explorer-location {
    min-height: 42px;
    padding: 0 0.65rem;
  }

  .explorer-search .button {
    min-height: 42px;
    padding: 0 0.85rem;
  }

  .mini-filter {
    min-height: 36px;
    padding: 0 0.68rem;
  }

  .business-list-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.5rem;
    min-height: 72px;
    padding: 0.48rem 0.56rem 0.48rem 0.52rem;
  }

  .business-list-card > img,
  .business-list-placeholder {
    width: 42px;
    height: 42px;
  }

  .business-list-top h3 {
    font-size: 0.9rem;
  }

  .business-list-meta {
    font-size: 0.72rem;
  }

  .workflow-pill {
    min-height: 22px;
    font-size: 0.7rem;
  }

  .form-grid {
    gap: 0.9rem;
  }

  .form-section-divider {
    padding-top: 0.75rem;
  }

  .form-section-divider small {
    font-size: 0.8rem;
  }

  .business-hours {
    padding: 0.8rem;
  }

  .business-hours-grid {
    grid-template-columns: 1fr;
  }

  .business-hours-row,
  .business-hours-row.is-open {
    grid-template-columns: 1fr;
  }

  .news-hero-copy,
  .events-hero-copy {
    padding: 1rem 0;
  }

  .upload-field {
    min-height: 130px;
    padding: 1rem;
  }

  .upload-preview-shell {
    padding: 0.8rem;
  }

  .real-estate-property-panel,
  .real-estate-intake-panel {
    padding: 0.82rem;
  }

  .real-estate-subsection-title {
    display: grid;
    align-items: start;
    gap: 0.2rem;
  }

  .event-list-card,
  .event-promo-panel {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .event-list-copy h3 {
    font-size: 1.25rem;
  }

  .event-meta-row span {
    min-height: 26px;
    font-size: 0.7rem;
  }

  .event-filter-panel {
    border-radius: 14px;
    padding: 0.6rem;
  }
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-business-card,
  .admin-business-card.is-expanded {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .admin-business-card .admin-business-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .admin-business-form {
    margin-left: 0;
  }

  .admin-business-form .admin-tools-head {
    display: grid;
    justify-content: stretch;
  }

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

  .admin-compact-form .admin-wide,
  .admin-compact-form .admin-half {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .admin-business-card,
  .admin-business-card.is-expanded {
    grid-template-columns: 1fr;
  }

  .admin-business-thumb {
    width: 74px;
    height: 74px;
    min-height: 74px;
  }

  .admin-business-form {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .admin-business-form h3 {
    font-size: 1.15rem;
  }

  .admin-business-actions .button,
  .admin-business-form .admin-article-actions .button {
    flex: 1 1 100%;
  }

  .home-event-grid {
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 276px);
    grid-template-columns: none;
    gap: 0.78rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-paid-events-panel {
    padding: 0.82rem;
    border-radius: 12px;
  }

  .home-paid-events-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.52rem;
  }

  .home-paid-events-head h3 {
    font-size: 1.2rem;
  }

  .home-paid-events-head a {
    width: 100%;
  }

  .home-paid-event-grid {
    grid-auto-flow: column;
    grid-auto-columns: min(92vw, 430px);
    grid-template-columns: none;
    gap: 0.78rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  #home-paid-events-prev,
  #home-paid-events-next {
    top: 76px;
  }

  .home-paid-event-card a,
  .home-paid-event-card.is-spotlight a {
    grid-template-columns: minmax(118px, 40%) minmax(0, 1fr);
    min-height: 144px;
  }

  .home-paid-event-media {
    min-height: 0;
    margin: 0;
    padding: 0.48rem;
    border-right: 1px solid rgba(255, 106, 24, 0.14);
    border-bottom: 0;
  }

  .home-paid-event-thumb {
    min-height: 0;
  }

  .home-paid-event-card.is-default-image .home-paid-event-thumb {
    min-height: 0;
  }

  .home-paid-event-card.is-default-image .home-event-date {
    top: auto;
    bottom: 0.42rem;
  }

  .home-paid-event-card .home-event-date {
    left: 0.42rem;
    bottom: 0.42rem;
    width: 42px;
    min-height: 48px;
  }

  .home-paid-event-card .home-event-date strong {
    font-size: 1.32rem;
  }

  .home-paid-event-copy {
    gap: 0.18rem;
    padding: 0.55rem 0.58rem;
  }

  .home-event-placement-tag {
    min-height: 20px;
    padding: 0 0.42rem;
    font-size: 0.56rem;
  }

  .home-paid-event-copy h3,
  .home-paid-event-card.is-spotlight .home-paid-event-copy h3 {
    font-size: 0.9rem;
    line-height: 1.08;
  }

  .home-paid-event-copy p {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .home-event-card a {
    grid-template-rows: auto 1fr;
  }

  .home-event-media {
    min-height: 0;
  }

  .home-event-date {
    width: 54px;
    min-height: 58px;
  }

  .home-event-date strong {
    font-size: 1.75rem;
  }

  .home-event-thumb {
    min-height: 0;
  }

  .home-event-copy {
    padding: 0.78rem;
  }

  .home-event-copy h3 {
    font-size: 1.05rem;
  }

  .home-news-list {
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 276px);
    grid-template-columns: none;
    gap: 0.78rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-news-card a {
    grid-template-rows: auto 1fr;
  }

  .home-news-media {
    min-height: 0;
  }

  .home-news-media img {
    min-height: 0;
  }

  .home-news-copy {
    padding: 0.78rem;
  }

  .home-news-copy h3 {
    font-size: 1rem;
  }

}

@media (max-width: 1150px) {
  .real-estate-hero-grid,
  .real-estate-layout {
    grid-template-columns: 1fr;
  }

  .real-estate-search-panel {
    max-width: 860px;
  }

  .real-estate-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .main-nav a[aria-current="page"]::after {
    bottom: -0.45rem;
  }

  .admin-body:not(.is-admin-unlocked) .site-header .nav-wrap {
    padding-top: 2.35rem;
    padding-bottom: 0.45rem;
  }
}

@media (max-width: 900px) {
  .real-estate-hero {
    padding: 2rem 0;
  }

  .real-estate-hero-copy h1 {
    font-size: 4rem;
  }

  .real-estate-search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .real-estate-grid,
  .real-estate-sidebar,
  .real-estate-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .real-estate-hero-copy h1 {
    font-size: 3rem;
  }

  .real-estate-hero-points,
  .real-estate-search-panel,
  .real-estate-grid,
  .real-estate-sidebar,
  .real-estate-services-grid,
  .real-estate-intake-fields {
    grid-template-columns: 1fr;
  }

  .real-estate-hero-points span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .real-estate-search-panel {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .real-estate-agent-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .real-estate-agent-row .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .real-estate-promo-card {
    grid-template-columns: 1fr;
  }

  .real-estate-promo-card .button {
    grid-column: auto;
  }
}

/* Admin dashboard shell */
.admin-body {
  background: #f8fafc;
}

.admin-body.is-admin-unlocked {
  background: #fff;
}

.admin-body.is-admin-unlocked .site-header {
  display: none;
}

.admin-body.is-admin-unlocked .checkout-main {
  min-height: 100vh;
  padding: 0;
}

.admin-body.is-admin-unlocked .checkout-main > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.admin-app-shell {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  min-height: 100vh;
  color: #090c14;
  background: #fff;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 0.95rem;
  padding: 1.45rem 1rem 1.2rem;
  border-right: 1px solid #e8edf3;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf7 100%);
  box-shadow: 8px 0 28px rgba(15, 23, 42, 0.04);
}

.admin-sidebar-logo {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0.2rem 0.25rem;
}

.admin-sidebar-logo img {
  width: min(226px, 100%);
  height: auto;
}

.admin-sidebar-kicker {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 0 0.35rem;
  padding: 0 0.72rem;
  border: 1px solid #e8edf3;
  border-radius: 999px;
  background: #fff;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-sidebar .admin-section-nav {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.28rem;
  padding: 0.42rem;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.admin-section-button {
  min-height: 50px;
  justify-content: flex-start;
  gap: 0.72rem;
  padding: 0 0.66rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.admin-section-button:hover,
.admin-section-button:focus-visible {
  border-color: #f2ded2;
  background: #fffaf7;
  color: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 106, 24, 0.08);
  transform: none;
}

.admin-section-button:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.admin-section-button.is-active {
  border-color: rgba(255, 106, 24, 0.22);
  background: linear-gradient(90deg, #fff1e8 0%, #fff8f2 100%);
  color: var(--orange);
  box-shadow:
    inset 3px 0 0 var(--orange),
    0 10px 22px rgba(255, 106, 24, 0.09);
}

.admin-nav-icon,
.admin-dashboard-row-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
}

.admin-nav-icon {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f8fafc;
  color: #344054;
}

.admin-section-button:hover .admin-nav-icon,
.admin-section-button:focus-visible .admin-nav-icon,
.admin-section-button.is-active .admin-nav-icon {
  border-color: rgba(255, 106, 24, 0.16);
  background: #fff;
  color: inherit;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.admin-nav-icon svg,
.admin-dashboard-row-icon svg,
.admin-metric-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.admin-sidebar-footer {
  display: grid;
  gap: 0.28rem;
  padding: 0.42rem;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.admin-settings-button {
  color: #344054;
}

.admin-sidebar-logout {
  color: #9f1d1d;
}

.admin-sidebar-logout:hover,
.admin-sidebar-logout:focus-visible {
  border-color: rgba(159, 29, 29, 0.16);
  background: #fff5f5;
  color: #9f1d1d;
}

.admin-main {
  min-width: 0;
  padding: 2.35rem 2rem 3rem;
  background:
    linear-gradient(180deg, #fff 0%, #fff 64px, #fbfcfd 64px, #fff 100%);
}

.admin-main-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.admin-main-header h1 {
  margin: 0;
  color: #080b12;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.admin-main-header p {
  margin: 0.7rem 0 0;
  color: #475467;
  font-size: 1rem;
  line-height: 1.45;
}

.admin-main-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.admin-site-switcher {
  min-width: 220px;
  display: grid;
  gap: 0.35rem;
}

.admin-site-switcher span {
  color: #344054;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.admin-site-select {
  min-height: 46px;
  padding: 0 2.35rem 0 0.9rem;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background-color: #fff;
  color: #111827;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: none;
}

.admin-site-select:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 106, 24, 0.18);
  outline-offset: 1px;
}

.admin-main-actions .button,
.admin-range-pill,
.admin-compact-button {
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  box-shadow: none;
}

.admin-range-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfe3ea;
  background: #fff;
  color: #111827;
  font-weight: 800;
}

.admin-panel,
.admin-dashboard-panel {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.admin-panel {
  padding: 1.25rem;
}

.admin-dashboard-card {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.admin-paid-orders-panel {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-paid-orders-head,
.admin-paid-order-row {
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.admin-paid-orders-head {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-paid-orders-head h3 {
  margin: 0.35rem 0 0;
  color: #07090f;
  font-size: 1.15rem;
  line-height: 1.15;
}

.admin-paid-orders-head > strong {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff3eb;
  color: var(--orange);
  font-size: 1.15rem;
}

.admin-paid-orders-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.admin-paid-order-row {
  grid-template-columns: minmax(0, 1fr) 110px 132px auto;
  padding: 0.85rem 0.95rem;
  border-top: 1px solid #eef0f3;
}

.admin-paid-order-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.admin-paid-order-row:first-child {
  border-top: 0;
}

.admin-paid-order-row strong,
.admin-paid-order-row span,
.admin-paid-order-row time {
  min-width: 0;
}

.admin-paid-order-row strong {
  display: block;
  color: #111827;
  line-height: 1.25;
}

.admin-paid-order-row span:not(.workflow-pill),
.admin-paid-order-row time {
  color: #475467;
  font-size: 0.88rem;
  line-height: 1.35;
}

.admin-business-form-host {
  display: grid;
}

.admin-order-editor-host {
  display: grid;
}

.admin-editor-form {
  margin: 0 0 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.admin-order-editor-form.is-real-estate-order-editor {
  overflow: hidden;
  border-color: #dfe6ef;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.admin-real-estate-order-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 1rem 1rem;
}

.admin-order-controls-grid {
  padding-top: 0;
}

.admin-order-editor-form > .form-grid {
  padding: 0 1rem 1rem;
}

.admin-order-editor-form input:not([type="checkbox"]),
.admin-order-editor-form select,
.admin-order-editor-form textarea {
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 0.92rem;
}

.admin-order-editor-form textarea {
  min-height: 132px;
}

.admin-order-editor-form .admin-article-actions {
  padding: 0 1rem 1rem;
}

.admin-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.admin-metric-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 1rem;
  align-items: start;
  min-height: 158px;
  padding: 1.35rem 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

button.admin-metric-card {
  width: 100%;
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

button.admin-metric-card:hover {
  border-color: rgba(255, 106, 24, 0.34);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

button.admin-metric-card:focus-visible {
  border-color: rgba(255, 106, 24, 0.48);
  outline: 3px solid rgba(255, 106, 24, 0.18);
  outline-offset: 2px;
}

.admin-metric-copy {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.admin-metric-label,
.admin-metric-note {
  margin: 0;
}

.admin-metric-label {
  color: #111827;
  font-weight: 900;
}

.admin-metric-copy strong {
  color: #07090f;
  font-size: 2rem;
  line-height: 1;
}

.admin-metric-note {
  color: #128034;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.admin-metric-orange .admin-metric-note {
  color: var(--orange);
}

.admin-metric-blue .admin-metric-note {
  color: #1658d9;
}

.admin-metric-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--orange);
}

.admin-metric-green .admin-metric-icon {
  background: #eaf8ed;
  color: #108534;
}

.admin-metric-blue .admin-metric-icon {
  background: #edf4ff;
  color: #1658d9;
}

.admin-dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.admin-dashboard-panel {
  overflow: hidden;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #e5e7eb;
}

.admin-panel-head h2,
.admin-tools-head h2 {
  margin: 0;
  color: #07090f;
  font-size: 1.35rem;
  line-height: 1.2;
}

.admin-dashboard-list {
  display: grid;
}

.admin-dashboard-row,
.admin-dashboard-order-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-top: 1px solid #eef0f3;
}

.admin-dashboard-row:first-child,
.admin-dashboard-order-row:first-child {
  border-top: 0;
}

.admin-dashboard-row {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.admin-dashboard-row-icon {
  width: 46px;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #111827;
}

.admin-dashboard-row strong,
.admin-dashboard-order-row strong {
  display: block;
  color: #111827;
  line-height: 1.25;
}

.admin-dashboard-row span,
.admin-dashboard-order-row span,
.admin-dashboard-order-row time {
  color: #475467;
  line-height: 1.4;
}

.admin-dashboard-order-row {
  grid-template-columns: minmax(0, 1fr) 128px 82px minmax(136px, auto);
}

.admin-tools-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-tools-head .eyebrow {
  margin-bottom: 0.35rem;
}

.admin-tools-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-tools-actions .button,
.admin-article-actions .button,
.admin-article-card-actions .button,
.admin-business-actions .button {
  min-height: 42px;
  border-radius: 8px;
  box-shadow: none;
}

.admin-review-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 1rem 0;
}

.admin-stat {
  border-color: #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.admin-stat strong {
  font-size: 1.45rem;
}

.admin-overview-stats {
  margin: 1rem 0 1.15rem;
}

.admin-stat-button {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-stat-button:hover,
.admin-stat-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.34);
  background: #fffaf7;
  box-shadow: 0 10px 22px rgba(255, 106, 24, 0.08);
  transform: translateY(-1px);
}

.admin-stat-button:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 2px;
}

.admin-stat-button.is-active {
  border-color: rgba(255, 106, 24, 0.42);
  background: linear-gradient(180deg, #fff6ef 0%, #fff 100%);
  box-shadow: inset 3px 0 0 var(--orange);
}

.admin-stat-button.is-active span {
  color: var(--orange);
}

.admin-filter-bar {
  margin: 0 0 1rem;
}

.admin-filter-button {
  min-height: 42px;
  border-color: #dfe3ea;
  border-radius: 8px;
  color: #111827;
}

.admin-filter-button.is-active {
  border-color: rgba(255, 106, 24, 0.45);
  background: #fff3eb;
  color: var(--orange);
}

.admin-business-toolbar {
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 224px) minmax(170px, 210px);
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.admin-business-search input,
.admin-business-category-filter select,
.admin-business-tier-filter select {
  min-height: 46px;
  border-color: #dfe3ea;
  border-radius: 8px;
}

.admin-orders-list,
.admin-businesses-list,
.admin-articles-list,
.admin-real-estate-list {
  gap: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.admin-order-card,
.admin-business-card,
.admin-article-card,
.admin-real-estate-row {
  border: 0;
  border-radius: 0;
  border-top: 1px solid #eef0f3;
  background: #fff;
  box-shadow: none;
}

.admin-order-card:first-child,
.admin-business-card:first-child,
.admin-article-card:first-child,
.admin-real-estate-row:first-child {
  border-top: 0;
}

.admin-order-card {
  padding: 1.1rem 1.25rem;
}

.admin-business-card {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  padding: 1rem 1.25rem;
}

.admin-business-card.is-expanded {
  grid-template-columns: 74px minmax(0, 1fr);
  border-radius: 0;
  background: #fffdfb;
}

.admin-business-thumb {
  width: 66px;
  height: 66px;
  min-height: 66px;
  padding: 0.45rem;
  border-color: #dfe3ea;
  border-radius: 999px;
  background: #fff;
}

.admin-business-card h3,
.admin-article-card-copy h3,
.admin-real-estate-copy h3,
.admin-order-card h3 {
  color: #07090f;
}

.admin-business-card h3 {
  font-size: 1.08rem;
}

.admin-business-actions {
  justify-content: flex-end;
}

.admin-real-estate-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.25rem;
}

.admin-real-estate-copy {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

.admin-pricing-editor {
  display: grid;
  gap: 1rem;
}

.admin-pricing-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.admin-pricing-metric {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
  min-height: 112px;
  align-content: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.admin-pricing-metric span {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-pricing-metric strong {
  color: #07090f;
  font-size: 2rem;
  line-height: 1;
}

.admin-pricing-metric p {
  margin: 0;
  color: #475467;
  font-size: 0.86rem;
  line-height: 1.35;
}

.admin-pricing-area {
  display: grid;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.admin-pricing-area[open] {
  border-color: rgba(255, 106, 24, 0.18);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.admin-pricing-area-head {
  cursor: pointer;
  list-style: none;
}

.admin-pricing-area-head::-webkit-details-marker {
  display: none;
}

.admin-pricing-area-head,
.admin-pricing-offer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-pricing-area-head {
  align-items: center;
  padding: 1rem;
  background: linear-gradient(90deg, #fffaf7 0%, #fff 100%);
}

.admin-pricing-area-title {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.admin-pricing-area-head:focus-visible {
  outline: 3px solid rgba(255, 106, 24, 0.22);
  outline-offset: 4px;
}

.admin-pricing-area-head h3,
.admin-pricing-offer-top h4 {
  margin: 0.35rem 0 0;
  color: #07090f;
  line-height: 1.15;
}

.admin-pricing-area-head p,
.admin-pricing-offer-top p {
  margin: 0.25rem 0 0;
  color: #475467;
  line-height: 1.45;
}

.admin-pricing-area-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.admin-pricing-area-price {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.78rem;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.admin-pricing-chevron {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  color: #475467;
  background: #fff;
}

.admin-pricing-chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 160ms ease;
}

.admin-pricing-area[open] .admin-pricing-chevron::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.admin-pricing-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border-top: 1px solid #eef0f3;
  background: #fbfcfd;
}

.admin-pricing-offer-card {
  --pricing-offer-accent: var(--orange);
  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.admin-pricing-offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pricing-offer-accent);
}

.admin-pricing-offer-blue {
  --pricing-offer-accent: #2563eb;
}

.admin-pricing-offer-green {
  --pricing-offer-accent: #159947;
}

.admin-pricing-offer-purple {
  --pricing-offer-accent: #6c4cf4;
}

.admin-pricing-offer-cyan {
  --pricing-offer-accent: #16a8d8;
}

.admin-pricing-offer-card.is-inactive {
  background: #f8fafc;
}

.admin-pricing-offer-card.is-inactive::before {
  background: #98a2b3;
}

.admin-pricing-offer-top {
  align-items: start;
  padding: 1rem;
  border-bottom: 1px solid #eef0f3;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.admin-pricing-offer-heading {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.admin-pricing-offer-summary {
  display: grid;
  justify-items: end;
  gap: 0.22rem;
  min-width: 122px;
  text-align: right;
}

.admin-pricing-offer-summary strong {
  color: #07090f;
  font-size: 1.45rem;
  line-height: 1;
}

.admin-pricing-offer-summary > span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-pricing-switch,
.admin-pricing-checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
  font-weight: 800;
}

.admin-pricing-switch input,
.admin-pricing-checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.admin-pricing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
}

.admin-pricing-form-grid label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: #475467;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-pricing-form-grid .full {
  grid-column: 1 / -1;
}

.admin-pricing-form-grid input,
.admin-pricing-form-grid select,
.admin-pricing-form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.78rem;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.admin-pricing-form-grid textarea {
  min-height: 98px;
  resize: vertical;
}

.admin-coupons-card {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8edf3;
}

.admin-coupon-create,
.admin-coupon-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-coupon-create {
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-coupon-create label,
.admin-coupon-form-grid label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: #475467;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-coupon-create .full,
.admin-coupon-form-grid .full {
  grid-column: 1 / -1;
}

.admin-coupon-create input,
.admin-coupon-create textarea,
.admin-coupon-form-grid input,
.admin-coupon-form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.78rem;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.admin-coupon-create textarea,
.admin-coupon-form-grid textarea {
  min-height: 84px;
  resize: vertical;
}

.admin-coupon-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.admin-coupon-code-row .button,
.admin-coupon-create > .button {
  min-height: 44px;
  border-radius: 8px;
  box-shadow: none;
}

.admin-coupon-area-field {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fff;
}

.admin-coupon-area-field legend {
  padding: 0 0.35rem;
  color: #475467;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-coupon-area-field label {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-coupon-area-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  accent-color: var(--orange);
}

.admin-coupons-list {
  display: grid;
  gap: 0.85rem;
}

.admin-coupon-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.admin-coupon-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.admin-coupon-card-head h3 {
  margin: 0.35rem 0 0.15rem;
  color: #07090f;
  font-size: 1.2rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.admin-coupon-card-head p {
  margin: 0;
  color: #536170;
  line-height: 1.4;
}

.admin-coupon-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-coupon-actions .button {
  min-height: 38px;
  padding: 0 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: none;
}

.admin-real-estate-copy h3,
.admin-real-estate-copy p,
.admin-real-estate-copy small {
  margin: 0;
}

.admin-real-estate-copy p,
.admin-real-estate-copy small {
  color: #475467;
  line-height: 1.45;
}

.admin-order-top {
  align-items: start;
}

.admin-order-plan {
  color: var(--orange);
  letter-spacing: 0.04em;
}

.admin-order-meta,
.admin-compact-meta {
  color: #475467;
}

.admin-submission-copy {
  border-color: #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.admin-submission-image img {
  border-color: #e5e7eb;
  border-radius: 10px;
}

.admin-article-card {
  padding: 1rem 1.25rem;
}

.admin-news-article-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-article-thumb {
  border-color: #dfe3ea;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-business-form {
  margin: 0;
  border: 0;
  border-top: 1px solid #eef0f3;
  border-radius: 0;
  background: #fffaf7;
}

.admin-compact-form input,
.admin-compact-form select,
.admin-compact-form textarea,
.admin-business-form input,
.admin-business-form select,
.admin-business-form textarea {
  border-color: #dfe3ea;
  border-radius: 8px;
}

.workflow-pill,
.news-label,
.admin-tier-badge {
  min-height: 25px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.button-danger {
  background: #e51c2a;
  border-color: #e51c2a;
}

@media (max-width: 1320px) {
  .admin-dashboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-dashboard-panels {
    grid-template-columns: 1fr;
  }

  .admin-pricing-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .admin-app-shell {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .admin-sidebar {
    padding: 1.25rem 0.75rem;
  }

  .admin-sidebar-logo img,
  .admin-sidebar-kicker,
  .admin-section-button span:last-child {
    display: none;
  }

  .admin-section-button {
    justify-content: center;
    padding: 0;
  }

  .admin-section-button.is-active {
    box-shadow: inset 0 3px 0 var(--orange);
  }

  .admin-dashboard-metrics,
  .admin-review-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-pricing-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-app-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto auto;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .admin-sidebar-logo img,
  .admin-sidebar-kicker {
    display: block;
  }

  .admin-sidebar .admin-section-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .admin-section-button span:last-child {
    display: inline;
  }

  .admin-section-button {
    justify-content: flex-start;
    min-width: max-content;
    padding: 0 0.8rem;
  }

  .admin-sidebar-footer {
    display: none;
  }

  .admin-main {
    padding: 1.3rem 1rem 2rem;
  }

  .admin-main-header,
  .admin-tools-head {
    display: grid;
  }

  .admin-main-actions,
  .admin-tools-actions {
    justify-content: stretch;
  }

  .admin-main-actions .button,
  .admin-range-pill,
  .admin-tools-actions .button {
    width: 100%;
  }

  .admin-dashboard-metrics,
  .admin-review-stats,
  .admin-pricing-overview,
  .admin-business-toolbar,
  .admin-pricing-offer-grid,
  .admin-pricing-form-grid,
  .admin-event-recurrence-panel {
    grid-template-columns: 1fr;
  }

  .admin-pricing-area-head,
  .admin-pricing-offer-top {
    display: grid;
  }

  .admin-metric-card,
  .admin-dashboard-row,
  .admin-dashboard-order-row,
  .admin-paid-order-row,
  .admin-business-card,
  .admin-business-card.is-expanded,
  .admin-real-estate-row,
  .admin-article-card,
  .admin-news-article-card {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-order-row {
    align-items: start;
  }

  .admin-business-actions,
  .admin-paid-order-actions,
  .admin-article-card-actions {
    justify-content: stretch;
  }

  .admin-paid-order-actions .button {
    flex: 1 1 140px;
  }
}

.admin-order-list-head,
.admin-order-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(148px, 0.62fr) minmax(96px, 0.42fr) minmax(150px, 0.68fr) minmax(126px, auto);
  gap: 0.85rem;
  align-items: center;
}

.admin-order-list-head {
  min-height: 42px;
  padding: 0 1rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #667085;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.admin-order-list-head span:last-child {
  text-align: right;
}

.admin-order-list-head + .admin-order-card {
  border-top: 0;
}

.admin-order-card {
  gap: 0.85rem;
  padding: 0.82rem 1rem;
  background: #fff;
}

.admin-order-card.is-expanded {
  align-items: start;
  background: #fffdfb;
}

.admin-order-primary {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.admin-order-plan {
  margin: 0;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-card h3 {
  color: #07090f;
  font-size: 1.02rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.admin-order-primary > span {
  min-width: 0;
  color: #475467;
  font-size: 0.84rem;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-cell {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  color: #475467;
  font-size: 0.88rem;
  line-height: 1.35;
}

.admin-order-cell > span {
  display: none;
}

.admin-order-cell time,
.admin-order-cell strong {
  color: #111827;
  font-weight: 800;
}

.admin-order-cell time {
  white-space: normal;
}

.admin-order-amount-cell strong {
  font-size: 0.95rem;
}

.admin-order-status-cell .workflow-pill {
  justify-self: start;
}

.admin-order-details {
  grid-column: 1 / -1;
  padding-top: 0.9rem;
  border-top: 1px solid #eef0f3;
}

.admin-submission-grid {
  grid-template-columns: minmax(0, 1fr) minmax(168px, 190px);
  gap: 1rem;
  align-items: start;
  margin-top: 0;
}

.admin-submission-details {
  gap: 0.72rem;
}

.admin-order-meta {
  gap: 0.5rem;
  margin: 0;
  color: #344054;
  font-size: 0.88rem;
}

.admin-order-review-meta,
.admin-order-pending-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-order-fact {
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: start;
  gap: 0.18rem;
  padding: 0.62rem 0.68rem;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  background: #fbfcfd;
  overflow: hidden;
}

.admin-order-fact strong {
  color: #667085;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-transform: uppercase;
}

.admin-order-fact em {
  color: #1d2939;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.admin-order-fact.is-empty em {
  color: #667085;
  font-weight: 700;
}

.admin-order-fact.is-wide {
  grid-column: span 2;
}

.admin-order-fact.is-full {
  grid-column: 1 / -1;
}

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

.admin-submission-copy {
  min-height: 72px;
  gap: 0.32rem;
  padding: 0.72rem 0.78rem;
}

.admin-submission-copy strong {
  color: #475467;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-submission-copy p {
  color: #344054;
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-submission-image {
  gap: 0.6rem;
  padding: 0.55rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.admin-submission-image img {
  width: 100%;
  max-height: 180px;
  aspect-ratio: 1 / 1;
  padding: 0.35rem;
  border: 0;
  border-radius: 8px;
  background: #f8fafc;
  object-fit: contain;
}

.admin-submission-image .button {
  min-height: 40px;
  border-radius: 8px;
  font-size: 0.84rem;
}

.admin-submission-empty {
  min-height: 132px;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-intake-pending-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  background: linear-gradient(90deg, #fbfcfd 0%, #fff 100%);
}

.admin-intake-pending-copy {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-width: 0;
}

.admin-intake-pending-copy .workflow-pill {
  justify-self: start;
}

.admin-intake-pending-copy strong {
  color: #111827;
  font-size: 1.08rem;
  line-height: 1.2;
}

.admin-intake-pending-copy p {
  max-width: 460px;
  margin: 0;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-order-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.admin-order-actions .button {
  min-height: 38px;
  padding: 0 0.78rem;
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: none;
}

.admin-order-actions .admin-order-hint {
  margin-right: auto;
  color: #667085;
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-review-request-shell {
  grid-column: 1 / -1;
  padding-top: 0.88rem;
  border-top: 1px solid #eef0f3;
}

.admin-review-request-form {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1.18fr) auto;
  gap: 0.78rem;
  align-items: end;
}

.admin-review-request-copy {
  display: grid;
  gap: 0.25rem;
  align-self: center;
  min-width: 0;
}

.admin-review-request-copy h4 {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.2;
}

.admin-review-request-copy p:not(.eyebrow) {
  margin: 0;
  color: #667085;
  font-size: 0.86rem;
  line-height: 1.4;
}

.admin-review-request-form label {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.admin-review-request-form label > span {
  color: #344054;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-review-request-form textarea {
  width: 100%;
  min-height: 112px;
  padding: 0.72rem 0.78rem;
  border: 1px solid #d6dde8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  line-height: 1.42;
  resize: vertical;
}

.admin-review-request-form textarea:focus {
  border-color: rgba(255, 90, 20, 0.78);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 90, 20, 0.12);
}

.admin-review-request-form textarea.is-invalid {
  border-color: rgba(220, 38, 38, 0.78);
  background: #fffafa;
}

.admin-review-request-actions {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.admin-review-request-actions .button {
  min-height: 38px;
  padding: 0 0.78rem;
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: none;
}

@media (max-width: 980px) {
  .admin-order-list-head {
    display: none;
  }

  .admin-order-card,
  .admin-order-card.is-expanded {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 1rem;
  }

  .admin-order-cell {
    grid-column: 1;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .admin-order-cell > span {
    display: block;
    color: #667085;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .admin-order-actions {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .admin-order-details {
    grid-column: 1 / -1;
  }

  .admin-submission-grid,
  .admin-intake-pending-card {
    grid-template-columns: 1fr;
  }

  .admin-order-review-meta,
  .admin-order-pending-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-submission-image {
    max-width: 220px;
  }

  .admin-review-request-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-review-request-actions {
    justify-content: stretch;
  }

  .admin-review-request-actions .button {
    flex: 1 1 160px;
  }
}

@media (max-width: 760px) {
  .admin-coupon-create,
  .admin-coupon-form-grid,
  .admin-coupon-card-head {
    grid-template-columns: 1fr;
  }

  .admin-coupon-actions {
    justify-content: stretch;
  }

  .admin-coupon-actions .button,
  .admin-coupon-create > .button {
    width: 100%;
  }
}

/* Real estate admin editor polish */
.admin-real-estate-editor {
  position: relative;
  gap: 0;
  overflow: hidden;
  margin: 0 0 1.05rem;
  padding: 0;
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.admin-real-estate-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #edf0f4;
  background: linear-gradient(180deg, #fbfcfd 0%, #fff 100%);
}

.admin-real-estate-editor-head .eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.admin-real-estate-editor-head h3 {
  margin: 0.18rem 0 0;
  color: #071225;
  font-size: 1.08rem;
  line-height: 1.15;
}

.admin-real-estate-editor > .form-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.78rem;
  padding: 1rem;
}

.admin-real-estate-editor .form-grid > label {
  min-width: 0;
}

.admin-real-estate-editor .admin-wide,
.admin-real-estate-editor .admin-half {
  grid-column: span 3;
}

.admin-real-estate-editor .admin-checkbox-row {
  align-self: stretch;
}

.admin-page label.is-required-missing > span:first-child::after,
.admin-page .admin-checkbox-row.is-required-missing > span::after,
.admin-page fieldset.is-required-missing legend::after {
  content: "Required";
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 0.45rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b42318;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-page input.needs-input:not([type="checkbox"]):not([type="radio"]),
.admin-page select.needs-input,
.admin-page textarea.needs-input {
  border-color: rgba(220, 38, 38, 0.78);
  background: #fffafa;
  box-shadow:
    0 0 0 4px rgba(220, 38, 38, 0.12),
    0 0 22px rgba(220, 38, 38, 0.18);
}

.admin-page input.needs-input:not([type="checkbox"]):not([type="radio"]):focus,
.admin-page select.needs-input:focus,
.admin-page textarea.needs-input:focus {
  border-color: rgba(220, 38, 38, 0.88);
  background: #fffafa;
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(220, 38, 38, 0.16),
    0 0 26px rgba(220, 38, 38, 0.24);
}

.admin-page .admin-checkbox-row.is-required-missing,
.admin-page fieldset.is-required-missing {
  border-color: rgba(220, 38, 38, 0.28);
  background: #fff7f7;
  box-shadow:
    0 0 0 4px rgba(220, 38, 38, 0.08),
    0 0 22px rgba(220, 38, 38, 0.12);
}

.admin-page input[type="checkbox"].needs-input,
.admin-page input[type="radio"].needs-input {
  outline: 3px solid rgba(220, 38, 38, 0.22);
  outline-offset: 2px;
}

.admin-real-estate-editor textarea#admin-real-estate-description,
.admin-real-estate-editor .upload-field {
  min-height: 166px;
}

.admin-real-estate-photo-manager {
  display: grid;
  gap: 0.72rem;
  padding: 0.85rem;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-real-estate-photo-empty {
  display: grid;
  gap: 0.18rem;
  min-height: 92px;
  place-content: center;
  border: 1px dashed #cfd7e3;
  border-radius: 10px;
  color: #667085;
  text-align: center;
}

.admin-real-estate-photo-empty strong,
.admin-real-estate-photo-summary strong,
.admin-real-estate-photo-item strong {
  color: #101828;
  font-weight: 900;
}

.admin-real-estate-photo-empty span,
.admin-real-estate-photo-summary span,
.admin-real-estate-photo-item span {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.32;
}

.admin-real-estate-photo-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.admin-real-estate-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 0.68rem;
}

.admin-real-estate-photo-item {
  display: grid;
  gap: 0.52rem;
  min-width: 0;
  padding: 0.56rem;
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  background: #fff;
}

.admin-real-estate-photo-item.is-primary {
  border-color: rgba(255, 106, 24, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 106, 24, 0.1);
}

.admin-real-estate-photo-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #eef2f6;
}

.admin-real-estate-primary-choice {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-real-estate-primary-choice input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: var(--orange);
}

.admin-real-estate-editor .admin-article-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  align-items: center;
  padding: 0.78rem 1rem;
  border-top: 1px solid #edf0f4;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.admin-form-save-status {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  padding: 0 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

.admin-form-save-status:empty {
  display: none;
}

.admin-form-save-status.is-busy {
  border-color: #dfe6ef;
  background: #f8fafc;
  color: #344054;
}

.admin-form-save-status.is-success {
  border-color: #bbf7d0;
  background: #ecfdf3;
  color: #15803d;
}

.admin-form-save-status.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b42318;
}

@media (max-width: 1080px) {
  .admin-real-estate-editor > .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-real-estate-editor .admin-wide,
  .admin-real-estate-editor .admin-half {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .admin-real-estate-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-real-estate-editor > .form-grid {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .admin-real-estate-editor .admin-wide,
  .admin-real-estate-editor .admin-half {
    grid-column: 1 / -1;
  }

  .admin-real-estate-editor .admin-article-actions {
    align-items: stretch;
  }

  .admin-form-save-status {
    width: 100%;
    margin-right: 0;
    border-radius: 10px;
    text-align: center;
  }
}

/* Mobile UX refinements */
@media (max-width: 760px) {
  .site-header .nav-wrap {
    gap: 0.45rem;
    padding: 0.62rem 0 0.72rem;
  }

  .site-header .brand {
    padding: 0.15rem 0;
  }

  .site-header .brand img {
    width: min(226px, 76vw);
  }

  .site-header .main-nav {
    gap: 0.35rem;
    padding: 0;
  }

  .site-header .main-nav a {
    min-height: 32px;
    padding: 0.26rem 0.34rem;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  .site-header .nav-actions {
    gap: 0.42rem;
  }

  .site-header .header-social-link {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .site-header .header-social-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .site-header .button {
    min-height: 42px;
    padding: 0 0.95rem;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .directory-shell:not(.is-list-view) .business-review-link,
  .directory-shell:not(.is-list-view) .business-list-phone,
  .directory-shell:not(.is-list-view) .business-map-secondary {
    min-height: 34px;
    padding: 0 0.58rem;
  }

  .directory-shell.is-list-view .business-review-link,
  .directory-shell.is-list-view .business-list-location-chip,
  .directory-shell.is-list-view .business-hours-line,
  .business-list-actions a {
    min-height: 40px;
  }

  a.promoted-business-phone,
  a.promoted-business-website,
  .home-business-phone,
  .home-business-website,
  .home-business-cta,
  .home-business-email {
    min-height: 36px;
  }

  .home-featured-shell,
  .home-events-shell,
  .home-news-shell,
  .promoted-business-shell {
    position: relative;
  }

  .home-featured-shell::after,
  .home-events-shell::after,
  .home-news-shell::after,
  .promoted-business-shell::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 34px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 82%);
    z-index: 3;
  }

  .promoted-business-shell::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff8f2 82%);
  }

  .home-featured-track,
  .home-event-grid,
  .home-news-list,
  .promoted-business-track {
    padding-right: 1.75rem;
    scroll-padding-inline: 0.2rem 1.75rem;
  }

  .checkout-package-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.3rem;
    align-items: start;
  }

  .checkout-package-price {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .events-hero-copy h1,
  .news-hero-copy h1,
  .real-estate-hero-copy h1,
  .pricing-page-hero h1,
  .contact-intake-copy h1,
  .article-header h1,
  .event-detail-copy h1,
  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .checkout-header h1,
  .success-card h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 420px) {
  .site-header .main-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header .main-nav a {
    font-size: 0.72rem;
  }

  .site-header .brand img {
    width: min(198px, 72vw);
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .events-hero-copy h1,
  .news-hero-copy h1,
  .real-estate-hero-copy h1,
  .pricing-page-hero h1,
  .contact-intake-copy h1,
  .article-header h1,
  .event-detail-copy h1,
  .legal-hero h1 {
    font-size: 2.24rem;
  }
}

@media (max-width: 760px) {
  .admin-order-card,
  .admin-order-card.is-expanded {
    grid-template-columns: 1fr;
  }

  .admin-order-review-meta,
  .admin-order-pending-meta,
  .admin-real-estate-order-summary {
    grid-template-columns: 1fr;
  }

  .admin-order-fact.is-wide,
  .admin-order-fact.is-full {
    grid-column: auto;
  }

  .admin-submission-image {
    max-width: none;
  }

  .admin-order-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: stretch;
    padding-top: 0.65rem;
    border-top: 1px solid #eef0f3;
  }

  .admin-order-actions .button {
    flex: 1 1 150px;
  }
}

/* Business listings admin polish */
.admin-businesses-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-color: #dfe3ea;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.72) 0%, rgba(255, 255, 255, 0) 210px),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-businesses-card > .admin-tools-head {
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 0 0 1rem;
  border-bottom: 1px solid #eef0f3;
}

.admin-businesses-card .admin-tools-head .eyebrow {
  margin: 0 0 0.28rem;
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.admin-businesses-card .admin-tools-head h2 {
  font-size: 2.15rem;
  line-height: 1;
}

.admin-businesses-card .admin-tools-actions {
  gap: 0.55rem;
}

.admin-businesses-card .admin-tools-actions .button {
  min-height: 44px;
  padding: 0 1.05rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 900;
}

#admin-business-status {
  max-width: 760px;
  margin: -0.15rem 0 0;
  color: #536170;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.48;
}

#admin-business-stats.admin-review-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.62rem;
  margin: 0;
}

#admin-business-stats .admin-stat {
  position: relative;
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 0.24rem;
  overflow: hidden;
  padding: 0.86rem 0.82rem;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

#admin-business-stats .admin-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #dfe3ea;
}

#admin-business-stats .admin-stat:nth-child(1)::before {
  background: var(--orange);
}

#admin-business-stats .admin-stat:nth-child(2)::before {
  background: #f0a900;
}

#admin-business-stats .admin-stat:nth-child(4)::before {
  background: #2563eb;
}

#admin-business-stats .admin-stat:nth-child(5)::before {
  background: #159947;
}

#admin-business-stats .admin-stat strong {
  color: #07090f;
  font-size: 1.62rem;
  line-height: 0.9;
}

#admin-business-stats .admin-stat span {
  color: #56606d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
}

.admin-businesses-card .admin-business-toolbar {
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 220px) minmax(180px, 220px);
  gap: 0.8rem;
  margin: 0.1rem 0 0;
  padding: 0.9rem;
  border-color: #e3e8ef;
  border-radius: 14px;
  background: #fbfcfd;
  box-shadow: inset 0 1px 0 #fff;
}

.admin-businesses-card .admin-business-search,
.admin-businesses-card .admin-business-category-filter,
.admin-businesses-card .admin-business-tier-filter {
  gap: 0.4rem;
  color: #5f6b7a;
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.admin-businesses-card .admin-business-search input,
.admin-businesses-card .admin-business-category-filter select,
.admin-businesses-card .admin-business-tier-filter select {
  min-height: 46px;
  border-color: #d8dee8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.035);
}

.admin-businesses-card .admin-filter-bar {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  margin: -0.25rem 0 0;
  padding: 0.35rem;
  border: 1px solid #e3e8ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.admin-businesses-card .admin-filter-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 0.78rem;
  border-color: transparent;
  border-radius: 999px;
  background: transparent;
  color: #475467;
  font-size: 0.78rem;
}

.admin-businesses-card .admin-filter-button:hover,
.admin-businesses-card .admin-filter-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.16);
  background: #fff8f2;
  color: var(--orange);
}

.admin-businesses-card .admin-filter-button.is-active {
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff1e8;
  color: var(--orange);
}

@media (max-width: 760px) {
  .admin-businesses-card {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .admin-businesses-card > .admin-tools-head {
    display: grid;
    gap: 0.85rem;
  }

  .admin-businesses-card .admin-tools-actions,
  .admin-businesses-card .admin-tools-actions .button {
    width: 100%;
  }

  #admin-business-stats.admin-review-stats,
  .admin-businesses-card .admin-business-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-businesses-card .admin-filter-bar {
    width: 100%;
    border-radius: 14px;
  }
}

/* Dashboard admin polish */
.admin-dashboard-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem;
  border: 1px solid #dfe3ea;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.72) 0%, rgba(255, 255, 255, 0) 220px),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-dashboard-card .admin-dashboard-metrics {
  gap: 0.72rem;
}

.admin-dashboard-card .admin-metric-card {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 0.75rem;
  padding: 1rem;
  border-color: #e3e8ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

.admin-dashboard-card .admin-metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #dfe3ea;
}

.admin-dashboard-card .admin-metric-orange::before {
  background: var(--orange);
}

.admin-dashboard-card .admin-metric-green::before {
  background: #159947;
}

.admin-dashboard-card .admin-metric-blue::before {
  background: #2563eb;
}

.admin-dashboard-card .admin-metric-copy {
  gap: 0.5rem;
}

.admin-dashboard-card .admin-metric-label {
  color: #56606d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.admin-dashboard-card .admin-metric-copy strong {
  color: #07090f;
  font-size: 1.8rem;
  line-height: 0.95;
}

.admin-dashboard-card .admin-metric-note {
  color: #536170;
  font-size: 0.86rem;
  line-height: 1.36;
}

.admin-dashboard-card .admin-metric-orange .admin-metric-note {
  color: #d9520d;
}

.admin-dashboard-card .admin-metric-green .admin-metric-note {
  color: #128034;
}

.admin-dashboard-card .admin-metric-blue .admin-metric-note {
  color: #1658d9;
}

.admin-dashboard-card .admin-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff4eb;
  box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
}

.admin-dashboard-card .admin-metric-green .admin-metric-icon {
  background: #eaf8ed;
}

.admin-dashboard-card .admin-metric-blue .admin-metric-icon {
  background: #edf4ff;
}

.admin-alert-panel {
  display: grid;
  overflow: hidden;
  margin: 0.9rem 0;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.admin-alert-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eef0f3;
  background: linear-gradient(90deg, #fffaf7 0%, #fff 100%);
}

.admin-alert-head > div {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.admin-alert-head strong {
  color: #071225;
  font-size: 1.08rem;
  line-height: 1.2;
}

.admin-alert-list {
  display: grid;
}

.admin-alert-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-top: 1px solid #eef0f3;
}

.admin-alert-row:first-child {
  border-top: 0;
}

.admin-alert-row.is-warning,
.admin-alert-row.is-overdue {
  background: #fffaf4;
}

.admin-alert-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #ffe0cb;
  border-radius: 12px;
  background: #fff4eb;
  color: var(--orange);
}

.admin-alert-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-alert-row > div {
  min-width: 0;
}

.admin-alert-row strong {
  display: block;
  color: #071225;
  font-size: 0.98rem;
  line-height: 1.2;
}

.admin-alert-row span:not(.admin-alert-icon):not(.workflow-pill) {
  color: #536170;
  font-size: 0.86rem;
  line-height: 1.38;
}

.admin-alert-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-dashboard-card .admin-dashboard-panels {
  gap: 0.9rem;
  margin-top: 0;
}

.admin-dashboard-card .admin-dashboard-panel {
  overflow: hidden;
  border-color: #e3e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.admin-dashboard-card .admin-panel-head {
  min-height: 64px;
  padding: 0.95rem 1rem;
  border-bottom-color: #eef0f3;
  background: linear-gradient(90deg, #fffaf7 0%, #fff 100%);
}

.admin-dashboard-card .admin-panel-head h2 {
  font-size: 1.22rem;
  line-height: 1.15;
}

.admin-dashboard-card .admin-compact-button {
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-dashboard-card .admin-dashboard-list {
  background: #fff;
}

.admin-dashboard-card .admin-dashboard-row,
.admin-dashboard-card .admin-dashboard-order-row {
  min-width: 0;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-top-color: #eef0f3;
}

.admin-dashboard-card .admin-dashboard-row {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.admin-dashboard-card .admin-dashboard-row-icon {
  width: 42px;
  height: 42px;
  border-color: #e3e8ef;
  background: #fbfcfd;
  color: #344054;
}

.admin-dashboard-card .admin-dashboard-row > div,
.admin-dashboard-card .admin-dashboard-order-row > div {
  min-width: 0;
}

.admin-dashboard-card .admin-dashboard-row strong,
.admin-dashboard-card .admin-dashboard-order-row strong {
  color: #071225;
  font-size: 0.98rem;
  line-height: 1.2;
}

.admin-dashboard-card .admin-dashboard-row span,
.admin-dashboard-card .admin-dashboard-order-row span:not(.workflow-pill),
.admin-dashboard-card .admin-dashboard-order-row time {
  color: #536170;
  font-size: 0.86rem;
  line-height: 1.38;
}

.admin-dashboard-card .admin-dashboard-order-row {
  grid-template-columns: minmax(0, 1fr) 104px 86px minmax(124px, auto);
}

.admin-dashboard-card .admin-dashboard-order-row > strong {
  color: #071225;
  font-size: 0.95rem;
  justify-self: start;
}

.admin-dashboard-card .workflow-pill {
  justify-self: start;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  .admin-dashboard-card .admin-dashboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .admin-dashboard-card .admin-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-dashboard-card {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .admin-dashboard-card .admin-dashboard-metrics,
  .admin-dashboard-card .admin-dashboard-row,
  .admin-dashboard-card .admin-dashboard-order-row,
  .admin-alert-row {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-card .admin-panel-head,
  .admin-alert-head {
    display: grid;
    gap: 0.75rem;
    align-items: start;
  }

  .admin-dashboard-card .admin-panel-head .button,
  .admin-alert-actions,
  .admin-alert-actions .button {
    width: 100%;
  }
}

/* Admin workflow panels polish */
.admin-orders-card,
.admin-real-estate-card,
.admin-events-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-color: #dfe3ea;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.72) 0%, rgba(255, 255, 255, 0) 220px),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-orders-card > .admin-tools-head,
.admin-real-estate-card > .admin-tools-head,
.admin-events-card > .admin-tools-head {
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 0 0 1rem;
  border-bottom: 1px solid #eef0f3;
}

.admin-orders-card > .admin-tools-head .eyebrow,
.admin-real-estate-card > .admin-tools-head .eyebrow,
.admin-events-card > .admin-tools-head .eyebrow {
  margin: 0 0 0.28rem;
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.admin-orders-card > .admin-tools-head h2,
.admin-real-estate-card > .admin-tools-head h2,
.admin-events-card > .admin-tools-head h2 {
  font-size: 2.15rem;
  line-height: 1;
}

.admin-orders-card .admin-tools-actions,
.admin-real-estate-card .admin-tools-actions,
.admin-events-card .admin-tools-actions {
  gap: 0.55rem;
}

.admin-orders-card .admin-tools-actions .button,
.admin-real-estate-card .admin-tools-actions .button,
.admin-events-card .admin-tools-actions .button {
  min-height: 44px;
  padding: 0 1.05rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 900;
}

#admin-action-status,
#admin-real-estate-status,
#admin-real-estate-provider-status,
#admin-event-status {
  max-width: 760px;
  margin: -0.15rem 0 0;
  color: #536170;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.48;
}

#admin-review-stats.admin-review-stats,
#admin-real-estate-overview-stats.admin-review-stats,
#admin-real-estate-stats.admin-review-stats,
#admin-event-stats.admin-review-stats {
  display: grid;
  gap: 0.62rem;
  margin: 0;
}

#admin-review-stats.admin-review-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#admin-real-estate-overview-stats.admin-review-stats,
#admin-real-estate-stats.admin-review-stats,
#admin-event-stats.admin-review-stats {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

#admin-review-stats .admin-stat,
#admin-real-estate-overview-stats .admin-stat,
#admin-real-estate-stats .admin-stat,
#admin-event-stats .admin-stat {
  position: relative;
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 0.24rem;
  overflow: hidden;
  padding: 0.86rem 0.82rem;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

#admin-review-stats .admin-stat::before,
#admin-real-estate-overview-stats .admin-stat::before,
#admin-real-estate-stats .admin-stat::before,
#admin-event-stats .admin-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #dfe3ea;
}

#admin-review-stats .admin-stat:nth-child(1)::before,
#admin-real-estate-overview-stats .admin-stat:nth-child(1)::before,
#admin-real-estate-stats .admin-stat:nth-child(1)::before,
#admin-event-stats .admin-stat:nth-child(1)::before {
  background: var(--orange);
}

#admin-review-stats .admin-stat:nth-child(2)::before,
#admin-real-estate-overview-stats .admin-stat:nth-child(2)::before,
#admin-real-estate-stats .admin-stat:nth-child(2)::before,
#admin-event-stats .admin-stat:nth-child(2)::before {
  background: #f0a900;
}

#admin-review-stats .admin-stat:nth-child(3)::before,
#admin-real-estate-overview-stats .admin-stat:nth-child(3)::before,
#admin-real-estate-stats .admin-stat:nth-child(3)::before,
#admin-event-stats .admin-stat:nth-child(3)::before {
  background: #2563eb;
}

#admin-review-stats .admin-stat:nth-child(4)::before,
#admin-real-estate-overview-stats .admin-stat:nth-child(4)::before,
#admin-real-estate-stats .admin-stat:nth-child(4)::before,
#admin-event-stats .admin-stat:nth-child(4)::before {
  background: #159947;
}

#admin-review-stats .admin-stat strong,
#admin-real-estate-overview-stats .admin-stat strong,
#admin-real-estate-stats .admin-stat strong,
#admin-event-stats .admin-stat strong {
  color: #07090f;
  font-size: 1.62rem;
  line-height: 0.9;
}

#admin-review-stats .admin-stat span,
#admin-real-estate-overview-stats .admin-stat span,
#admin-real-estate-stats .admin-stat span,
#admin-event-stats .admin-stat span {
  color: #56606d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
}

.admin-orders-card .admin-filter-bar {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  margin: -0.25rem 0 0;
  padding: 0.35rem;
  border: 1px solid #e3e8ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.admin-orders-card .admin-filter-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 0.78rem;
  border-color: transparent;
  border-radius: 999px;
  background: transparent;
  color: #475467;
  font-size: 0.78rem;
}

.admin-orders-card .admin-filter-button:hover,
.admin-orders-card .admin-filter-button:focus-visible {
  border-color: rgba(255, 106, 24, 0.16);
  background: #fff8f2;
  color: var(--orange);
}

.admin-orders-card .admin-filter-button.is-active {
  border-color: rgba(255, 106, 24, 0.24);
  background: #fff1e8;
  color: var(--orange);
}

.admin-real-estate-card > .admin-paid-orders-panel,
.admin-events-card > .admin-paid-orders-panel {
  margin: 0;
  padding: 0.95rem;
  border-color: #e3e8ef;
  border-radius: 14px;
  background: #fbfcfd;
  box-shadow: inset 0 1px 0 #fff;
}

.admin-real-estate-card > .admin-paid-orders-panel .admin-paid-orders-head,
.admin-events-card > .admin-paid-orders-panel .admin-paid-orders-head {
  align-items: center;
}

.admin-real-estate-card > .admin-paid-orders-panel .admin-paid-orders-head h3,
.admin-events-card > .admin-paid-orders-panel .admin-paid-orders-head h3 {
  font-size: 1.14rem;
}

.admin-orders-card .admin-orders-list,
.admin-real-estate-card .admin-articles-list,
.admin-real-estate-card .admin-real-estate-list,
.admin-events-card .admin-articles-list {
  margin-top: 0.1rem;
}

@media (max-width: 1080px) {
  #admin-review-stats.admin-review-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-orders-card,
  .admin-real-estate-card,
  .admin-events-card {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .admin-orders-card > .admin-tools-head,
  .admin-real-estate-card > .admin-tools-head,
  .admin-events-card > .admin-tools-head {
    display: grid;
    gap: 0.85rem;
  }

  .admin-orders-card .admin-tools-actions,
  .admin-real-estate-card .admin-tools-actions,
  .admin-events-card .admin-tools-actions,
  .admin-orders-card .admin-tools-actions .button,
  .admin-real-estate-card .admin-tools-actions .button,
  .admin-events-card .admin-tools-actions .button {
    width: 100%;
  }

  #admin-review-stats.admin-review-stats,
  #admin-real-estate-overview-stats.admin-review-stats,
  #admin-real-estate-stats.admin-review-stats,
  #admin-event-stats.admin-review-stats {
    grid-template-columns: 1fr;
  }

  .admin-orders-card .admin-filter-bar {
    width: 100%;
    border-radius: 14px;
  }

  .admin-real-estate-card > .admin-paid-orders-panel,
  .admin-events-card > .admin-paid-orders-panel {
    padding: 0.85rem;
  }
}

/* Mobile responsiveness hardening */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .nav-wrap,
  .main-nav,
  .nav-actions,
  .hero-copy,
  .news-hero-copy,
  .events-hero-copy,
  .real-estate-hero-copy,
  .pricing-page-hero-inner,
  .contact-intake-copy,
  .checkout-panel,
  .summary-card,
  .admin-main,
  .admin-panel {
    min-width: 0;
  }

  .site-header {
    overflow: hidden;
  }

  .nav-wrap {
    gap: 0.7rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.5rem;
    width: 100%;
  }

  .main-nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.38rem;
    border: 1px solid #f0e7e1;
    border-radius: 8px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .main-nav a[aria-current="page"] {
    border-color: rgba(255, 106, 24, 0.26);
    background: #fff3eb;
  }

  .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .header-social-link,
  .nav-actions .button {
    min-width: 0;
    justify-content: center;
  }

  .hero h1,
  .news-hero-copy h1,
  .events-hero-copy h1,
  .real-estate-hero-copy h1,
  .pricing-page-hero h1,
  .contact-intake-copy h1,
  .article-header h1,
  .event-detail-copy h1,
  .legal-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-search,
  .real-estate-search-panel,
  .contact-intake-form,
  .checkout-layout,
  .event-submit-layout {
    width: 100%;
  }

  .news-feature-panel,
  .events-feature-panel,
  .event-promo-panel,
  .real-estate-side-card,
  .real-estate-feature-card,
  .real-estate-services-panel,
  .pricing-comparison-shell {
    max-width: 100%;
  }

  .pricing-comparison-shell,
  .admin-filter-bar,
  .admin-businesses-card .admin-filter-bar,
  .admin-orders-card .admin-filter-bar,
  .admin-sidebar .admin-section-nav {
    -webkit-overflow-scrolling: touch;
  }

  .admin-main-header h1,
  .admin-businesses-card .admin-tools-head h2,
  .admin-orders-card > .admin-tools-head h2,
  .admin-real-estate-card > .admin-tools-head h2,
  .admin-events-card > .admin-tools-head h2 {
    font-size: 1.65rem;
  }

  .admin-main-header p,
  #admin-action-status,
  #admin-business-status,
  #admin-real-estate-status,
  #admin-real-estate-provider-status,
  #admin-event-status {
    font-size: 0.92rem;
  }

  .admin-pricing-area-meta,
  .admin-paid-orders-head {
    display: grid;
    justify-items: start;
  }

  .admin-pricing-offer-summary {
    justify-items: start;
    min-width: 0;
    text-align: left;
  }

  .workflow-pill,
  .admin-tier-badge,
  .business-tier-badge {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .directory-hero {
    min-height: 0;
  }

  .map-panel {
    display: grid;
    gap: 0.72rem;
    min-height: 0;
    padding: 0.72rem;
    background: #f5f6f7;
  }

  .explorer-toolbar,
  .featured-toggle,
  .map-status,
  .map-bottom-banner,
  .map-fallback-note {
    position: static;
  }

  .explorer-toolbar {
    order: 1;
    padding: 0.1rem 0 0.25rem;
  }

  .featured-toggle {
    order: 2;
    width: 100%;
    min-width: 0;
  }

  .map-status {
    order: 3;
    width: 100%;
  }

  .map-stage {
    order: 4;
    height: 500px;
    min-height: 500px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
  }

  .map-bottom-banner {
    order: 5;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .map-fallback-note {
    max-width: none;
  }

  .map-stage .mapboxgl-ctrl-top-right {
    top: 0.75rem;
    right: 0.75rem;
  }

  .map-stage .mapboxgl-ctrl-bottom-right {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .admin-sidebar .admin-section-nav {
    scrollbar-width: none;
  }

  .admin-sidebar .admin-section-nav::-webkit-scrollbar,
  .admin-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .admin-panel,
  .admin-dashboard-card,
  .admin-businesses-card,
  .admin-orders-card,
  .admin-real-estate-card,
  .admin-events-card {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .admin-pricing-area-head,
  .admin-pricing-offer-top,
  .admin-pricing-form-grid,
  .admin-pricing-offer-grid {
    padding: 0.85rem;
  }

  .admin-order-primary > span,
  .business-list-meta,
  .admin-paid-order-row span:not(.workflow-pill),
  .admin-paid-order-row time {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

@media (max-width: 420px) {
  .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .news-hero-copy h1,
  .events-hero-copy h1,
  .real-estate-hero-copy h1,
  .contact-intake-copy h1,
  .pricing-page-hero h1,
  .article-header h1,
  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .news-category-article.has-thumbnail,
  .real-estate-more-service {
    grid-template-columns: 1fr;
  }

  .news-category-article-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .news-category-article.has-thumbnail > span {
    grid-column: auto;
  }

  .home-news-copy {
    padding: 0.85rem;
  }

  .map-bottom-banner,
  .admin-metric-card,
  .admin-dashboard-card .admin-metric-card {
    grid-template-columns: 1fr;
  }

  .admin-metric-icon {
    width: 44px;
    height: 44px;
  }

  .admin-tools-actions .button,
  .admin-order-actions .button,
  .admin-article-actions .button,
  .admin-article-card-actions .button,
  .admin-business-actions .button {
    flex-basis: 100%;
  }
}

/* Dense business listing queue */
.admin-businesses-card {
  gap: 0.78rem;
  padding: 1.1rem;
}

.admin-businesses-card > .admin-tools-head {
  padding-bottom: 0.78rem;
}

.admin-businesses-card .admin-tools-head h2 {
  font-size: 1.95rem;
}

.admin-businesses-card .admin-tools-actions .button {
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

#admin-business-status {
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.36;
}

#admin-business-stats.admin-review-stats {
  gap: 0.48rem;
}

#admin-business-stats .admin-stat {
  min-height: 62px;
  gap: 0.15rem;
  padding: 0.68rem 0.72rem;
  border-radius: 10px;
}

#admin-business-stats .admin-stat strong {
  font-size: 1.38rem;
}

#admin-business-stats .admin-stat span {
  font-size: 0.64rem;
}

.admin-businesses-card .admin-business-toolbar {
  grid-template-columns: minmax(260px, 1fr) minmax(168px, 200px) minmax(168px, 200px);
  gap: 0.58rem;
  padding: 0.68rem;
  border-radius: 10px;
}

.admin-businesses-card .admin-business-search,
.admin-businesses-card .admin-business-category-filter,
.admin-businesses-card .admin-business-tier-filter {
  gap: 0.28rem;
  font-size: 0.66rem;
}

.admin-businesses-card .admin-business-search input,
.admin-businesses-card .admin-business-category-filter select,
.admin-businesses-card .admin-business-tier-filter select {
  min-height: 40px;
  padding: 0.64rem 0.72rem;
  border-radius: 8px;
  font-size: 0.88rem;
}

.admin-businesses-card .admin-filter-bar {
  margin-top: -0.1rem;
  padding: 0.28rem;
}

.admin-businesses-card .admin-filter-button {
  min-height: 30px;
  padding: 0 0.68rem;
  font-size: 0.72rem;
}

.admin-business-list-tools {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.46rem 0.62rem;
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  background: #fbfcfd;
}

.admin-business-list-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34rem;
  color: #536170;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-business-list-count strong {
  color: #071225;
  font-size: 1rem;
}

.admin-business-load-more {
  min-height: 34px;
  padding: 0 0.82rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: none;
}

.admin-business-list-complete {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-businesses-card .admin-businesses-list {
  border-radius: 10px;
}

.admin-businesses-card .admin-business-card {
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 74px;
  padding: 0.58rem 0.72rem;
}

.admin-businesses-card .admin-business-card.is-expanded {
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  padding: 0.78rem;
}

.admin-businesses-card .admin-business-card.is-admin-highlight {
  border-color: rgba(255, 90, 20, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 90, 20, 0.13), 0 18px 42px rgba(255, 90, 20, 0.16);
}

.admin-businesses-card .admin-business-thumb {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0.28rem;
  border-radius: 999px;
  font-size: 0.62rem;
}

.admin-businesses-card .admin-business-copy {
  gap: 0.22rem;
}

.admin-businesses-card .admin-article-card-top {
  gap: 0.26rem;
}

.admin-businesses-card .news-label,
.admin-businesses-card .workflow-pill,
.admin-businesses-card .admin-tier-badge {
  min-height: 22px;
  padding: 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.admin-businesses-card .admin-business-card h3 {
  font-size: 0.98rem;
  line-height: 1.14;
}

.admin-business-row-meta {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
  margin: 0;
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.28;
}

.admin-business-row-meta span + span::before {
  content: "/";
  margin-right: 0.42rem;
  color: #b9c1cc;
}

.admin-businesses-card .admin-business-actions {
  gap: 0.36rem;
  justify-content: flex-end;
}

.admin-businesses-card .admin-business-card.is-expanded .admin-business-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.admin-businesses-card .admin-business-actions .button {
  min-height: 34px;
  padding: 0 0.68rem;
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-businesses-card .admin-business-social-button {
  border-color: rgba(255, 91, 20, 0.36);
  color: #d9410a;
}

.admin-businesses-card .admin-business-social-button:hover,
.admin-businesses-card .admin-business-social-button:focus-visible {
  border-color: rgba(255, 91, 20, 0.72);
  background: rgba(255, 91, 20, 0.08);
}

.admin-businesses-card .admin-business-details {
  gap: 0.58rem;
  padding-top: 0.48rem;
}

@media (max-width: 760px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .category-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title action"
      "icon copy action";
    align-items: center;
    gap: 0.12rem 0.72rem;
    min-height: 0;
    padding: 0.68rem 0.72rem;
    text-align: left;
    border-radius: 12px;
  }

  .category-icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 1.12rem;
  }

  .category-card h3 {
    grid-area: title;
    justify-content: flex-start;
    min-height: 0;
    max-width: none;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.12;
  }

  .category-card p {
    grid-area: copy;
    max-width: none;
    min-height: 0;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .category-card-action {
    grid-area: action;
    width: auto;
    min-width: 74px;
    min-height: 30px;
    margin-top: 0;
    padding: 0 0.55rem;
    font-size: 0.65rem;
  }

  .directory-hero {
    min-height: 0;
    background: #fff;
  }

  .directory-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .directory-shell .map-panel {
    display: none;
  }

  .explorer-sidebar,
  .directory-shell.is-list-view .explorer-sidebar {
    min-height: 0;
    max-height: none;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.5rem 0.8rem;
    grid-template-rows: auto auto auto auto minmax(0, 1fr);
    gap: 0.36rem;
    overflow: visible;
    border-right: 0;
    background: #fff;
    box-shadow: none;
  }

  .directory-title {
    gap: 0.16rem;
    padding: 0;
  }

  .directory-kicker,
  .directory-proof,
  .directory-view-controls,
  .explorer-filters,
  .explorer-more {
    display: none;
  }

  .list-category-bar,
  .directory-shell.is-list-view .list-category-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.34rem;
    overflow: visible;
    padding: 0.08rem 0 0.18rem;
  }

  .list-category-bar .explorer-chip,
  .directory-shell.is-list-view .list-category-bar .explorer-chip {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 0 0.72rem;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.055);
  }

  .directory-title h1 {
    font-size: 1.65rem;
    line-height: 0.96;
  }

  .directory-title p {
    font-size: 0.78rem;
    line-height: 1.24;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .explorer-search {
    grid-template-columns: minmax(0, 1fr) 76px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(255, 106, 24, 0.08);
  }

  .explorer-search-field {
    grid-column: auto;
    min-height: 40px;
    padding: 0 0.55rem;
    border-bottom: 0;
  }

  .explorer-location {
    display: none;
  }

  .explorer-search-field span {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .explorer-search-field input {
    font-size: 0.86rem;
  }

  .explorer-search .button {
    min-height: 40px;
    padding: 0 0.48rem;
    border-radius: 0 9px 9px 0;
    font-size: 0.76rem;
  }

  .explorer-results-head {
    min-height: 34px;
    padding: 0.34rem 0.48rem;
    border-radius: 10px;
    font-size: 0.76rem;
    box-shadow: none;
  }

  .business-list,
  .directory-shell.is-list-view .business-list {
    gap: 0.46rem;
    overflow: visible;
    padding: 0;
  }

  .business-list-card,
  .directory-shell.is-list-view .business-list-card {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 0.56rem;
    min-height: 80px;
    padding: 0.56rem 0.62rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.055);
  }

  .business-list-card > img,
  .business-list-placeholder,
  .directory-shell.is-list-view .business-list-card > img,
  .directory-shell.is-list-view .business-list-placeholder {
    width: 44px;
    height: 44px;
    padding: 0.23rem;
    border-radius: 12px;
    box-shadow: inset 0 0 0 4px #fff, 0 7px 15px rgba(15, 23, 42, 0.065);
  }

  .business-list-copy,
  .directory-shell.is-list-view .business-list-copy {
    gap: 0.16rem;
  }

  .business-list-top,
  .directory-shell.is-list-view .business-list-top {
    align-items: center;
    gap: 0.36rem;
  }

  .business-list-top h3,
  .directory-shell.is-list-view .business-list-top h3 {
    font-size: 0.9rem;
    line-height: 1.05;
    -webkit-line-clamp: 1;
  }

  .business-category-label,
  .directory-shell.is-list-view .business-category-label,
  .business-hours-line,
  .directory-shell.is-list-view .business-hours-line,
  .directory-shell.is-list-view .business-list-expanded,
  .directory-shell.is-list-view .business-list-actions {
    display: none;
  }

  .business-tier-badge {
    min-height: 18px;
    padding: 0 0.38rem;
    font-size: 0.5rem;
  }

  .business-list-meta,
  .directory-shell.is-list-view .business-list-meta {
    color: #667085;
    font-size: 0.68rem;
    line-height: 1.18;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .business-list-meta .business-detail-icon {
    width: 16px;
    height: 16px;
  }

  .directory-shell:not(.is-list-view) .business-list-contact-row {
    gap: 0.25rem;
  }

  .directory-shell:not(.is-list-view) .business-list-phone,
  .directory-shell:not(.is-list-view) .business-map-secondary {
    min-height: 21px;
    padding: 0 0.4rem;
    font-size: 0.61rem;
  }
}

.admin-businesses-card .admin-business-meta {
  gap: 0.4rem;
}

.admin-businesses-card .admin-business-note,
.admin-businesses-card .admin-order-fact {
  border-radius: 8px;
}

@media (max-width: 760px) {
  .admin-businesses-card {
    gap: 0.72rem;
    padding: 0.9rem;
  }

  .admin-businesses-card .admin-tools-actions,
  .admin-businesses-card .admin-tools-actions .button {
    width: 100%;
  }

  .admin-business-list-tools {
    display: grid;
    justify-items: stretch;
  }

  .admin-business-load-more {
    width: 100%;
  }

  .admin-businesses-card .admin-business-card,
  .admin-businesses-card .admin-business-card.is-expanded {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .admin-businesses-card .admin-business-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 0.48rem;
  }

  .admin-businesses-card .admin-business-actions .button {
    flex: 1 1 calc(50% - 0.36rem);
  }
}

/* Final mobile overrides for dense admin panels */
@media (max-width: 760px) {
  .admin-dashboard-card,
  .admin-businesses-card,
  .admin-orders-card,
  .admin-real-estate-card,
  .admin-events-card,
  .admin-pricing-card,
  .admin-articles-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-dashboard-card > *,
  .admin-businesses-card > *,
  .admin-orders-card > *,
  .admin-real-estate-card > *,
  .admin-events-card > *,
  .admin-pricing-card > *,
  .admin-articles-card > * {
    min-width: 0;
  }

  .admin-businesses-card .admin-business-toolbar {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .admin-businesses-card .admin-business-search,
  .admin-businesses-card .admin-business-category-filter,
  .admin-businesses-card .admin-business-tier-filter {
    min-width: 0;
  }

  .admin-businesses-card .admin-business-card,
  .admin-businesses-card .admin-business-card.is-expanded {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .admin-businesses-card .admin-business-card,
  .admin-businesses-card .admin-business-card.is-expanded {
    grid-template-columns: 1fr;
  }

  .admin-businesses-card .admin-business-thumb {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }

  .admin-businesses-card .admin-business-actions .button {
    flex-basis: 100%;
  }
}

/* Admin usability polish */
.admin-body.is-admin-unlocked {
  background: #f6f8fb;
}

.admin-body.is-admin-unlocked .button {
  letter-spacing: 0;
}

.admin-app-shell {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 220px),
    #fff;
}

.admin-sidebar {
  border-right-color: #dfe6ef;
  background:
    linear-gradient(180deg, #fff 0%, #fff9f4 100%);
}

.admin-sidebar .admin-section-nav,
.admin-sidebar-footer {
  border-color: #dfe6ef;
  background: rgba(255, 255, 255, 0.92);
}

.admin-main {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 78px, #f6f8fb 100%);
}

.admin-main-header {
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid #e5eaf1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}

.admin-main-header h1 {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.admin-main-header p {
  max-width: 780px;
  color: #536170;
}

.admin-main-actions .button,
.admin-range-pill,
.admin-compact-button,
.admin-tools-actions .button,
.admin-order-actions .button,
.admin-business-actions .button,
.admin-article-actions .button,
.admin-article-card-actions .button {
  border-radius: 9px;
}

.admin-main-actions .button:hover,
.admin-tools-actions .button:hover,
.admin-order-actions .button:hover,
.admin-business-actions .button:hover,
.admin-article-actions .button:hover,
.admin-article-card-actions .button:hover,
.admin-compact-button:hover {
  transform: translateY(-1px);
}

.admin-panel,
.admin-dashboard-card,
.admin-businesses-card,
.admin-orders-card,
.admin-real-estate-card,
.admin-events-card,
.admin-pricing-card,
.admin-articles-card {
  border-color: #dfe6ef;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-tools-head {
  align-items: center;
}

.admin-tools-head h2,
.admin-panel-head h2 {
  letter-spacing: 0;
}

.admin-tool-subcopy {
  max-width: 720px;
  margin: 0.35rem 0 0;
  color: #536170;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.admin-filter-bar,
.admin-businesses-card .admin-filter-bar,
.admin-orders-card .admin-filter-bar {
  border-color: #dfe6ef;
}

.admin-filter-button,
.event-filter-button,
.event-view-button,
.admin-section-button {
  user-select: none;
}

.admin-business-toolbar,
.admin-paid-orders-panel,
.admin-pricing-area,
.admin-editor-form,
.admin-coupons-card {
  border-color: #dfe6ef;
}

.admin-dashboard-card .admin-dashboard-panel,
.admin-orders-list,
.admin-businesses-list,
.admin-articles-list,
.admin-real-estate-list,
.admin-paid-orders-list {
  border-color: #dfe6ef;
}

.admin-order-card:hover,
.admin-business-card:hover,
.admin-article-card:hover,
.admin-real-estate-row:hover,
.admin-paid-order-row:hover,
.admin-dashboard-row:hover,
.admin-dashboard-order-row:hover {
  background: #fffaf7;
}

.admin-businesses-card,
.admin-orders-card,
.admin-real-estate-card,
.admin-events-card,
.admin-articles-card,
.admin-pricing-card {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border-color: #dfe6ef;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.64) 0%, rgba(255, 255, 255, 0) 210px),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.admin-businesses-card > .admin-tools-head,
.admin-orders-card > .admin-tools-head,
.admin-real-estate-card > .admin-tools-head,
.admin-events-card > .admin-tools-head,
.admin-articles-card > .admin-tools-head,
.admin-pricing-card > .admin-tools-head {
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid #eef0f3;
}

.admin-businesses-card > .admin-tools-head .eyebrow,
.admin-orders-card > .admin-tools-head .eyebrow,
.admin-real-estate-card > .admin-tools-head .eyebrow,
.admin-events-card > .admin-tools-head .eyebrow,
.admin-articles-card > .admin-tools-head .eyebrow,
.admin-pricing-card > .admin-tools-head .eyebrow {
  margin: 0 0 0.28rem;
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.admin-businesses-card > .admin-tools-head h2,
.admin-orders-card > .admin-tools-head h2,
.admin-real-estate-card > .admin-tools-head h2,
.admin-events-card > .admin-tools-head h2,
.admin-articles-card > .admin-tools-head h2,
.admin-pricing-card > .admin-tools-head h2 {
  font-size: clamp(1.58rem, 1.9vw, 1.82rem);
  line-height: 1.04;
}

.admin-businesses-card .admin-tools-actions,
.admin-orders-card .admin-tools-actions,
.admin-real-estate-card .admin-tools-actions,
.admin-events-card .admin-tools-actions,
.admin-articles-card .admin-tools-actions,
.admin-pricing-card > .admin-tools-head .admin-tools-actions {
  gap: 0.5rem;
}

.admin-businesses-card .admin-tools-actions .button,
.admin-orders-card .admin-tools-actions .button,
.admin-real-estate-card .admin-tools-actions .button,
.admin-events-card .admin-tools-actions .button,
.admin-articles-card .admin-tools-actions .button,
.admin-pricing-card > .admin-tools-head .admin-tools-actions .button {
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: none;
}

#admin-action-status,
#admin-business-status,
#admin-real-estate-status,
#admin-real-estate-provider-status,
#admin-event-status,
#admin-article-status,
#admin-pricing-status,
#admin-coupons-status {
  max-width: 760px;
  margin: -0.1rem 0 0;
  color: #536170;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.44;
}

#admin-review-stats.admin-review-stats,
#admin-business-stats.admin-review-stats,
#admin-real-estate-overview-stats.admin-review-stats,
#admin-real-estate-stats.admin-review-stats,
#admin-event-stats.admin-review-stats,
#admin-article-stats.admin-review-stats,
.admin-pricing-overview {
  gap: 0.62rem;
  margin: 0;
}

#admin-article-stats.admin-review-stats {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

#admin-article-stats .admin-stat,
.admin-pricing-metric {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  padding: 0.86rem 0.82rem;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

#admin-article-stats .admin-stat::before,
.admin-pricing-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #dfe3ea;
}

#admin-article-stats .admin-stat:nth-child(1)::before,
.admin-pricing-metric:nth-child(1)::before {
  background: var(--orange);
}

#admin-article-stats .admin-stat:nth-child(2)::before,
.admin-pricing-metric:nth-child(2)::before {
  background: #f0a900;
}

#admin-article-stats .admin-stat:nth-child(3)::before,
.admin-pricing-metric:nth-child(3)::before {
  background: #2563eb;
}

#admin-article-stats .admin-stat:nth-child(4)::before,
.admin-pricing-metric:nth-child(4)::before {
  background: #159947;
}

#admin-article-stats .admin-stat strong,
.admin-pricing-metric strong {
  color: #07090f;
  font-size: 1.62rem;
  line-height: 0.9;
}

#admin-article-stats .admin-stat span,
.admin-pricing-metric span {
  color: #56606d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
}

.admin-articles-card > .admin-paid-orders-panel {
  margin: 0;
  padding: 0.95rem;
  border-color: #e3e8ef;
  border-radius: 14px;
  background: #fbfcfd;
  box-shadow: inset 0 1px 0 #fff;
}

.admin-articles-card > .admin-paid-orders-panel .admin-paid-orders-head {
  align-items: center;
}

.admin-articles-card > .admin-paid-orders-panel .admin-paid-orders-head h3 {
  font-size: 1.14rem;
}

.admin-articles-card .admin-articles-list {
  margin-top: 0.1rem;
}

.admin-coupons-card {
  position: relative;
  display: grid;
  gap: 0.82rem;
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid #dfe6ef;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fff8f3 0%, rgba(255, 255, 255, 0) 185px),
    #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.admin-coupons-card > .admin-tools-head {
  align-items: center;
  min-height: 0;
  padding: 0 0 0.78rem;
  border-bottom: 1px solid #eef0f3;
}

.admin-coupon-create {
  position: relative;
  grid-template-columns: minmax(230px, 1.2fr) minmax(180px, 0.9fr) minmax(112px, 0.5fr) minmax(112px, 0.5fr) minmax(128px, 0.58fr);
  gap: 0.64rem;
  padding: 0.82rem;
  border-color: #dfe6ef;
  border-radius: 14px;
  background: #fbfcfd;
  box-shadow: inset 0 1px 0 #fff;
}

.admin-coupon-create[hidden],
.admin-coupon-form-grid[hidden] {
  display: none;
}

.admin-coupon-create-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  padding-bottom: 0.12rem;
}

.admin-coupon-create-head strong {
  color: #071225;
  font-size: 1rem;
  line-height: 1.2;
}

.admin-coupon-create-copy {
  margin: 0.18rem 0 0;
  max-width: 620px;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.admin-coupon-presets {
  display: inline-flex;
  gap: 0.36rem;
  flex-wrap: wrap;
}

.admin-coupon-presets button {
  min-height: 32px;
  padding: 0 0.68rem;
  border: 1px solid rgba(255, 106, 24, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.admin-coupon-presets button:hover,
.admin-coupon-presets button:focus-visible {
  border-color: rgba(255, 106, 24, 0.46);
  background: #fff1e8;
  transform: translateY(-1px);
}

.admin-coupon-create label,
.admin-coupon-form-grid label {
  color: #536170;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-coupon-create input,
.admin-coupon-create textarea,
.admin-coupon-form-grid input,
.admin-coupon-form-grid textarea,
.admin-pricing-form-grid input,
.admin-pricing-form-grid select,
.admin-pricing-form-grid textarea,
.admin-business-search input,
.admin-business-category-filter select,
.admin-business-tier-filter select {
  border-color: #d8e0ea;
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.025);
}

.admin-coupon-create input:focus,
.admin-coupon-create textarea:focus,
.admin-coupon-form-grid input:focus,
.admin-coupon-form-grid textarea:focus,
.admin-pricing-form-grid input:focus,
.admin-pricing-form-grid select:focus,
.admin-pricing-form-grid textarea:focus,
.admin-business-search input:focus,
.admin-business-category-filter select:focus,
.admin-business-tier-filter select:focus {
  border-color: rgba(255, 106, 24, 0.64);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.admin-coupon-code-field {
  grid-column: span 2;
}

.admin-coupon-code-row {
  grid-template-columns: minmax(0, 1fr) minmax(94px, auto);
  gap: 0.44rem;
}

.admin-coupon-code-field input,
.admin-coupon-code-row input {
  color: #071225;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-coupon-code-field input[readonly] {
  background: #f3f6fa;
  color: #667085;
  box-shadow: none;
  cursor: not-allowed;
}

.admin-coupon-code-field small {
  color: #7a8594;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.admin-coupon-create > .button {
  align-self: end;
  min-height: 44px;
  min-width: 156px;
  font-weight: 900;
}

.admin-coupon-area-field {
  gap: 0.46rem;
  padding: 0.68rem;
  border-color: #d8e0ea;
  border-radius: 10px;
}

.admin-coupon-area-field label {
  min-height: 32px;
  padding: 0 0.58rem;
  border: 1px solid #edf0f4;
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
}

.admin-coupon-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.admin-coupon-summary-grid span {
  min-height: 62px;
  display: grid;
  gap: 0.12rem;
  align-content: center;
  padding: 0.72rem 0.82rem;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #fbfcfd;
  color: #667085;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-coupon-summary-grid strong {
  color: #071225;
  font-size: 1.45rem;
  line-height: 0.95;
}

.admin-coupons-list {
  gap: 0.7rem;
}

.admin-coupon-card {
  position: relative;
  display: grid;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0.76rem 0.82rem 0.76rem 0.92rem;
  border-color: #dfe6ef;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.admin-coupon-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #cfd7e3;
}

.admin-coupon-card.is-active::before {
  background: #159947;
}

.admin-coupon-card.is-inactive::before {
  background: #98a2b3;
}

.admin-coupon-card.is-partial-code::before {
  background: #2563eb;
}

.admin-coupon-card.is-full-code.is-active::before {
  background: var(--orange);
}

.admin-coupon-card-head {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.58rem;
}

.admin-coupon-title {
  min-width: 0;
}

.admin-coupon-percent {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0.34rem 0.42rem;
  border: 1px solid rgba(255, 106, 24, 0.18);
  border-radius: 12px;
  background: #fff4eb;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.admin-coupon-card.is-partial-code .admin-coupon-percent {
  border-color: rgba(37, 99, 235, 0.16);
  background: #edf4ff;
  color: #1658d9;
}

.admin-coupon-card-head h3 {
  margin-top: 0.18rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.admin-coupon-card-head p {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 700;
}

.admin-coupon-actions {
  gap: 0.42rem;
}

.admin-coupon-actions .button {
  min-height: 36px;
  padding: 0 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-coupon-form-grid {
  grid-template-columns: minmax(210px, 1.18fr) minmax(170px, 1fr) minmax(100px, 0.48fr) minmax(108px, 0.52fr) minmax(120px, 0.56fr) auto;
  gap: 0.58rem;
  margin-top: 0.08rem;
  padding: 0.68rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-coupon-editor-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-coupon-form-grid .admin-pricing-switch {
  min-height: 44px;
  align-self: end;
  justify-content: center;
  padding: 0 0.72rem;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  background: #fff;
  letter-spacing: 0;
  text-transform: none;
}

.admin-settings-card {
  display: grid;
  gap: 0.72rem;
  padding: 0.86rem;
  background:
    linear-gradient(180deg, #fbfcfd 0%, #fff 220px),
    #fff;
}

.admin-settings-section {
  min-width: 0;
  overflow: hidden;
}

.admin-settings-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 86px;
  margin: 0;
  padding: 0.78rem 0.84rem;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 #fff, 0 6px 16px rgba(15, 23, 42, 0.03);
}

.admin-settings-section-head > div:first-child {
  min-width: 0;
}

.admin-settings-section-head .eyebrow {
  margin-bottom: 0.22rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

.admin-settings-section-head h2 {
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.08;
}

.admin-settings-section-head .admin-tool-subcopy {
  max-width: 760px;
  margin-top: 0.24rem;
  font-size: 0.86rem;
  line-height: 1.34;
}

.admin-settings-section-content {
  display: grid;
  gap: 0.78rem;
  min-width: 0;
  padding-top: 0.72rem;
}

.admin-settings-collapse-button {
  min-width: 0;
}

.admin-settings-section.is-collapsed .admin-tools-head {
  margin-bottom: 0;
}

.admin-settings-section.is-collapsed .admin-settings-section-head {
  min-height: 68px;
  padding-block: 0.62rem;
}

.admin-settings-section.is-collapsed .admin-settings-section-head h2 {
  font-size: 1.18rem;
}

.admin-settings-section.is-collapsed .admin-tool-subcopy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.admin-settings-section.is-collapsed .admin-settings-section-content {
  padding-top: 0;
}

.admin-tax-panel {
  display: grid;
  gap: 0.68rem;
  padding: 0.76rem;
  border: 1px solid #dfe6ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.admin-tax-panel .admin-tools-head {
  margin-bottom: 0;
}

.admin-tax-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.admin-tax-year-field {
  display: grid;
  grid-template-columns: auto minmax(84px, 96px);
  align-items: center;
  gap: 0.42rem;
  color: #536170;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-tax-year-field select {
  min-width: 0;
  min-height: 38px;
  padding: 0.48rem 0.62rem;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  background: #fff;
  color: #071225;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
}

.admin-settings-section-head .admin-tools-actions {
  align-items: center;
  gap: 0.42rem;
}

.admin-settings-section-head .button,
.admin-tax-actions .button {
  min-height: 38px;
  padding: 0 0.78rem;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.admin-settings-section-head .button-primary {
  box-shadow: 0 8px 16px rgba(255, 106, 24, 0.18);
}

.admin-settings-section-head .admin-settings-collapse-button {
  color: #d85b1c;
}

.admin-settings-section.is-collapsed .admin-settings-collapse-button {
  border-color: rgba(255, 106, 24, 0.28);
  background: #fff7f1;
}

.admin-tax-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.admin-tax-stats .admin-stat {
  min-width: 0;
  border-color: #dfe6ef;
  background: #fbfcfd;
}

.admin-tax-stats .admin-stat strong {
  font-size: 1.18rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.admin-tax-stats .admin-stat p {
  margin: 0;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.admin-tax-profile-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0.62rem;
  align-items: end;
  padding: 0.78rem;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfd;
}

.admin-tax-profile-form label {
  min-width: 0;
  display: grid;
  gap: 0.28rem;
  color: #536170;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-tax-profile-form .full {
  grid-column: 1 / -2;
}

.admin-tax-profile-form input,
.admin-tax-profile-form select,
.admin-tax-profile-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 0.56rem 0.68rem;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #fff;
  color: #071225;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-tax-profile-form textarea {
  min-height: 74px;
  resize: vertical;
}

.admin-tax-profile-form input:focus,
.admin-tax-profile-form select:focus,
.admin-tax-profile-form textarea:focus,
.admin-tax-year-field select:focus {
  border-color: rgba(255, 106, 24, 0.6);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 106, 24, 0.1);
}

.admin-tax-profile-form .button {
  min-height: 38px;
  padding: 0 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-tax-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-tax-detail-panel,
.admin-tax-checklist-card {
  min-width: 0;
  padding: 0.84rem;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  background: #fff;
}

.admin-tax-detail-panel h3,
.admin-tax-checklist-card h3 {
  margin: 0 0 0.62rem;
  color: #071225;
  font-size: 0.98rem;
  line-height: 1.2;
}

.admin-tax-table {
  display: grid;
  gap: 0.42rem;
}

.admin-tax-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.58rem;
  border: 1px solid #edf0f4;
  border-radius: 9px;
  background: #fbfcfd;
}

.admin-tax-table span {
  min-width: 0;
  color: #344054;
  font-size: 0.84rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.admin-tax-table strong {
  color: #071225;
  font-size: 0.86rem;
}

.admin-tax-table small {
  color: #667085;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-tax-checklist-card ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding-left: 1.08rem;
  color: #475467;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.42;
}

.admin-traffic-panel {
  display: grid;
  gap: 0.68rem;
  padding: 0.76rem;
  border: 1px solid #dfe6ef;
  border-radius: 16px;
  background: #fbfcfd;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.admin-traffic-panel .admin-tools-head {
  margin-bottom: 0;
}

.admin-home-carousel-panel {
  display: grid;
  gap: 0.68rem;
  padding: 0.76rem;
  border: 1px solid #dfe6ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.admin-home-carousel-panel .admin-tools-head {
  margin-bottom: 0;
}

.admin-traffic-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.admin-traffic-stats .admin-stat {
  min-width: 0;
  border-color: #dfe6ef;
  background: #fff;
}

.admin-traffic-stats .admin-stat strong {
  font-size: 1.18rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.admin-traffic-details {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  gap: 0.75rem;
}

.admin-traffic-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  grid-column: 1 / -1;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fff;
}

.admin-traffic-focus-panel h3 {
  margin: 0 0 0.65rem;
  color: #071225;
  font-size: 1rem;
  line-height: 1.2;
}

.admin-traffic-focus-list {
  display: grid;
  gap: 0.55rem;
}

.admin-traffic-focus-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.72rem;
  border: 1px solid #e5ebf2;
  border-left: 4px solid #98a2b3;
  border-radius: 10px;
  background: #fbfcfd;
}

.admin-traffic-focus-item.is-working {
  border-left-color: #17a34a;
  background: #f4fbf6;
}

.admin-traffic-focus-item.is-focus {
  border-left-color: var(--orange);
  background: #fff8f3;
}

.admin-traffic-focus-item.is-watch {
  border-left-color: #2563eb;
  background: #f5f8ff;
}

.admin-traffic-focus-item strong {
  color: #071225;
  font-size: 0.92rem;
  line-height: 1.2;
}

.admin-traffic-focus-item p {
  margin: 0;
  color: #475467;
  font-size: 0.86rem;
  line-height: 1.38;
}

.admin-traffic-area-list {
  display: grid;
  gap: 0.42rem;
}

.admin-traffic-area-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.55rem;
  align-items: center;
  min-width: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eef2f6;
}

.admin-traffic-area-row:last-child {
  border-bottom: 0;
}

.admin-traffic-area-row a {
  min-width: 0;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.admin-traffic-area-row a:hover {
  color: var(--orange);
}

.admin-traffic-area-row span {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-traffic-area-row strong {
  min-width: 44px;
  padding: 0.18rem 0.36rem;
  border-radius: 999px;
  color: #667085;
  background: #f2f4f7;
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
}

.admin-traffic-area-row strong.is-up {
  color: #11752f;
  background: #eaf8ed;
}

.admin-traffic-area-row strong.is-down {
  color: #b42318;
  background: #fff1f0;
}

.admin-traffic-detail-panel {
  min-width: 0;
  padding: 0.86rem;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  background: #fff;
}

.admin-traffic-detail-panel h3 {
  margin: 0 0 0.65rem;
  color: #071225;
  font-size: 0.98rem;
  line-height: 1.2;
}

.admin-traffic-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-traffic-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
  color: #475467;
  font-size: 0.88rem;
  line-height: 1.3;
}

.admin-traffic-list a,
.admin-traffic-list span {
  min-width: 0;
  color: #344054;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-traffic-list a:hover {
  color: var(--orange);
}

.admin-traffic-list strong {
  color: #071225;
  font-size: 0.9rem;
}

.admin-home-carousel-form {
  display: grid;
  gap: 0.78rem;
  padding: 0.86rem;
  border-color: #dfe6ef;
  background: #fbfcfd;
}

.admin-home-carousel-form input {
  width: 100%;
  min-height: 42px;
  padding: 0.66rem 0.78rem;
  border: 1px solid #d8e0ea;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
  box-shadow: 0 7px 16px rgba(15, 23, 42, 0.025);
}

.admin-home-carousel-form input:focus {
  border-color: rgba(255, 106, 24, 0.64);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 106, 24, 0.12);
}

.admin-home-carousel-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  box-shadow: none;
  accent-color: var(--orange);
}

.admin-home-carousel-upload {
  min-height: 132px;
  margin-top: 0.28rem;
  padding: 0.86rem;
  border-radius: 12px;
}

.admin-home-carousel-list {
  display: grid;
  gap: 0.58rem;
}

.admin-home-carousel-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: center;
  padding: 0.66rem;
  border: 1px solid #dfe6ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.035);
}

.admin-home-carousel-card.is-inactive {
  background: #fbfcfd;
}

.admin-home-carousel-thumb {
  overflow: hidden;
  border: 1px solid #edf0f4;
  border-radius: 9px;
  background: #f8fafc;
}

.admin-home-carousel-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.admin-home-carousel-fields {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.admin-home-carousel-card-head {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
  min-width: 0;
}

.admin-home-carousel-card-head strong {
  min-width: 0;
  color: #071225;
  font-size: 0.92rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.admin-home-carousel-card-head > span:last-child {
  color: #667085;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-home-carousel-edit-grid {
  display: grid;
  grid-template-columns: minmax(160px, 1.05fr) 84px minmax(210px, 1.35fr) auto;
  gap: 0.42rem;
  align-items: end;
}

.admin-home-carousel-edit-grid label {
  min-width: 0;
  display: grid;
  gap: 0.24rem;
  color: #536170;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-home-carousel-edit-grid input[type="text"],
.admin-home-carousel-edit-grid input[type="number"] {
  width: 100%;
  min-height: 36px;
  padding: 0.5rem 0.62rem;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #fff;
  color: #071225;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: none;
}

.admin-home-carousel-edit-grid input:focus {
  border-color: rgba(255, 106, 24, 0.6);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 106, 24, 0.1);
}

.admin-home-carousel-active-field {
  min-height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  padding: 0 0.62rem;
  border: 1px solid #d8e0ea;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.admin-home-carousel-active-field input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: var(--orange);
}

.admin-home-carousel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.34rem;
}

.admin-home-carousel-actions .button {
  min-height: 32px;
  padding: 0 0.62rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .admin-coupon-create,
  .admin-coupon-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-coupon-code-field {
    grid-column: 1 / -1;
  }

  .admin-settings-section-head {
    grid-template-columns: 1fr;
  }

  .admin-settings-section-head .admin-tools-actions,
  .admin-tax-actions {
    justify-content: flex-start;
  }

  .admin-traffic-details {
    grid-template-columns: 1fr;
  }

  .admin-traffic-focus-panel {
    grid-template-columns: 1fr;
  }

  .admin-tax-stats,
  .admin-tax-profile-form,
  .admin-tax-breakdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tax-profile-form .full {
    grid-column: 1 / -1;
  }

  .admin-tax-profile-form .button {
    width: fit-content;
  }

  .admin-home-carousel-card {
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
  }

  .admin-home-carousel-edit-grid {
    grid-template-columns: minmax(0, 1fr) 84px;
  }

  .admin-home-carousel-alt-field,
  .admin-home-carousel-active-field {
    grid-column: 1 / -1;
  }

  .admin-coupon-card-head {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .admin-home-carousel-actions,
  .admin-coupon-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .admin-main-header {
    display: grid;
    padding: 0.9rem;
  }

  .admin-businesses-card,
  .admin-orders-card,
  .admin-real-estate-card,
  .admin-events-card,
  .admin-articles-card,
  .admin-pricing-card {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .admin-businesses-card > .admin-tools-head,
  .admin-orders-card > .admin-tools-head,
  .admin-real-estate-card > .admin-tools-head,
  .admin-events-card > .admin-tools-head,
  .admin-articles-card > .admin-tools-head,
  .admin-pricing-card > .admin-tools-head,
  .admin-coupons-card > .admin-tools-head {
    display: grid;
    gap: 0.85rem;
  }

  .admin-businesses-card .admin-tools-actions,
  .admin-orders-card .admin-tools-actions,
  .admin-real-estate-card .admin-tools-actions,
  .admin-events-card .admin-tools-actions,
  .admin-articles-card .admin-tools-actions,
  .admin-pricing-card > .admin-tools-head .admin-tools-actions,
  .admin-coupons-card > .admin-tools-head .admin-tools-actions,
  .admin-businesses-card .admin-tools-actions .button,
  .admin-orders-card .admin-tools-actions .button,
  .admin-real-estate-card .admin-tools-actions .button,
  .admin-events-card .admin-tools-actions .button,
  .admin-articles-card .admin-tools-actions .button,
  .admin-pricing-card > .admin-tools-head .admin-tools-actions .button,
  .admin-coupons-card > .admin-tools-head .admin-tools-actions .button {
    width: 100%;
  }

  .admin-coupon-create,
  .admin-coupon-form-grid,
  .admin-coupon-summary-grid,
  .admin-tax-stats,
  .admin-tax-profile-form,
  .admin-tax-breakdown,
  #admin-article-stats.admin-review-stats,
  .admin-pricing-overview,
  .admin-traffic-stats {
    grid-template-columns: 1fr;
  }

  .admin-coupon-code-field {
    grid-column: 1 / -1;
  }

  .admin-tax-actions,
  .admin-tax-actions .button,
  .admin-settings-section-head .admin-tools-actions,
  .admin-settings-section-head .admin-tools-actions .button,
  .admin-tax-year-field,
  .admin-tax-year-field select,
  .admin-tax-profile-form .button {
    width: 100%;
  }

  .admin-settings-card {
    padding: 0.7rem;
  }

  .admin-settings-section-head {
    min-height: 0;
    padding: 0.72rem;
  }

  .admin-settings-section-head .admin-tools-actions,
  .admin-tax-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-tax-year-field {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .admin-home-carousel-card {
    grid-template-columns: 1fr;
  }

  .admin-home-carousel-thumb {
    max-width: 220px;
  }

  .admin-home-carousel-edit-grid {
    grid-template-columns: 1fr;
  }

  .admin-coupon-create-head {
    display: grid;
  }

  .admin-traffic-area-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-traffic-area-row strong {
    grid-column: 2;
  }

  .admin-coupon-card-head {
    grid-template-columns: 1fr;
  }

  .admin-coupon-percent {
    width: fit-content;
    min-height: 42px;
    padding: 0.45rem 0.7rem;
  }

  .admin-coupon-actions,
  .admin-home-carousel-actions,
  .admin-home-carousel-actions .button,
  .admin-coupon-actions .button,
  .admin-coupon-create > .button,
  .admin-coupon-editor-actions .button {
    width: 100%;
  }
}

/* Final reference-style overrides for featured and sponsored business cards */
.home-featured-track,
.promoted-business-track {
  grid-auto-columns: minmax(232px, 262px);
  gap: 0.82rem;
  align-items: stretch;
  padding: 0.12rem 0.12rem 0.82rem;
}

.home-business-card,
.promoted-business-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fffdfa 100%);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    0 5px 14px rgba(15, 23, 42, 0.05);
}

.home-business-card::before,
.promoted-business-card::before {
  display: none;
}

.home-business-card-inner,
.promoted-business-card {
  grid-template-rows: 126px 1fr;
}

.home-business-media,
.promoted-business-media {
  min-height: 126px;
  background: linear-gradient(135deg, #fff5ed 0%, #eef5ff 100%);
}

.home-business-card.is-sponsored .home-business-media,
.promoted-business-card.is-sponsored .promoted-business-media {
  background: linear-gradient(135deg, #eef6ff 0%, #fff7ef 100%);
}

.home-business-cover,
.promoted-business-cover {
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.14), rgba(37, 99, 235, 0.11)),
    #f7fafc;
}

.home-business-cover::after,
.promoted-business-cover::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.9) 100%);
}

.home-business-cover-image,
.promoted-business-cover-image {
  opacity: 0.86;
  filter: saturate(0.98) contrast(0.94) brightness(1.03);
  transform: none;
}

.home-business-cover-fallback,
.promoted-business-cover-fallback {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(135deg, #fde8dc 0%, #eef5ff 100%);
}

.home-business-logo-plate,
.promoted-business-logo {
  bottom: 0;
  width: 82px;
  height: 82px;
  overflow: hidden;
  padding: 0.28rem;
  border: 4px solid #fff;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 18px 36px rgba(15, 23, 42, 0.2);
}

.home-business-logo-plate img,
.promoted-business-logo img {
  background: #fff;
  box-sizing: border-box;
  padding: 0;
  border-radius: 999px;
  object-fit: contain;
  object-position: center;
}

.home-business-badge,
.promoted-business-media .business-tier-badge {
  top: 0.66rem;
  right: 0.66rem;
}

.home-business-badge .business-tier-badge,
.promoted-business-media .business-tier-badge {
  min-height: 26px;
  padding: 0 0.68rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.home-business-copy,
.promoted-business-copy {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  padding: 2.74rem 0.82rem 0.84rem;
  text-align: left;
}

.home-business-card h3,
.promoted-business-copy h3 {
  color: #101828;
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-business-category,
.promoted-business-category {
  color: #536170;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-business-card.is-sponsored .home-business-category,
.promoted-business-card.is-sponsored .promoted-business-category,
.home-business-card.is-sponsored a.home-business-phone:hover,
.home-business-card.is-sponsored a.home-business-website:hover,
.promoted-business-card.is-sponsored a.promoted-business-phone:hover,
.promoted-business-card.is-sponsored a.promoted-business-website:hover {
  color: #0f4f86;
}

.home-business-review,
.promoted-business-review {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.home-business-review span:last-child,
.promoted-business-review span:last-child {
  color: #667085;
  font-weight: 650;
}

.home-business-review-star,
.promoted-business-review-star {
  color: #f5ad1b;
  font-size: 0.98rem;
  line-height: 1;
}

.home-business-description,
.promoted-business-description {
  display: -webkit-box;
  min-height: 1.08rem;
  margin-top: 0.04rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
  color: #172033;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.home-business-details,
.promoted-business-details {
  gap: 0.24rem;
  margin-top: 0.04rem;
}

.home-business-location,
.home-business-phone,
.home-business-website,
.home-business-hours,
.promoted-business-location,
.promoted-business-phone,
.promoted-business-website,
.promoted-business-hours {
  align-items: flex-start;
  gap: 0.46rem;
  color: #172033;
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.34;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.home-business-location .business-detail-icon,
.home-business-phone .business-detail-icon,
.home-business-website .business-detail-icon,
.home-business-hours .business-detail-icon,
.promoted-business-location .business-detail-icon,
.promoted-business-phone .business-detail-icon,
.promoted-business-website .business-detail-icon,
.promoted-business-hours .business-detail-icon {
  width: 20px;
  height: 20px;
  background: #fff0e6;
  color: #d85c1b;
}

.home-business-hours,
.promoted-business-hours {
  display: none;
}

.home-business-card.is-sponsored .business-detail-icon,
.promoted-business-card.is-sponsored .business-detail-icon {
  background: #eaf3ff;
  color: #0f4f86;
}

.home-business-tags,
.promoted-business-tags {
  display: none;
}

.home-business-tags span,
.promoted-business-tags span {
  min-height: 26px;
  padding: 0 0.66rem;
  background: #f1f3f5;
  color: #344054;
  font-size: 0.72rem;
  font-weight: 650;
}

.home-business-actions,
.promoted-business-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.38rem;
  margin-top: 0.16rem;
}

.home-business-cta,
.promoted-business-cta,
.home-business-email,
.promoted-business-message {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.home-business-cta,
.promoted-business-cta {
  background: #d85c1b;
  color: #fff;
  box-shadow: 0 12px 22px rgba(216, 92, 27, 0.2);
}

.home-business-card.is-sponsored .home-business-cta,
.promoted-business-card.is-sponsored .promoted-business-cta {
  background: #0f4f86;
  box-shadow: 0 12px 22px rgba(15, 79, 134, 0.2);
}

.home-business-email,
.promoted-business-message {
  display: none;
}

.home-business-email .business-detail-icon,
.promoted-business-message .business-detail-icon {
  width: 18px;
  height: 18px;
  background: transparent;
  color: currentColor;
}

.home-business-save,
.promoted-business-save {
  display: none;
}

.home-business-card.is-sponsored .home-business-save,
.promoted-business-card.is-sponsored .promoted-business-save {
  color: #0f4f86;
}

.promoted-business-copy > .promoted-business-cta {
  display: none;
}

@media (max-width: 900px) {
  .home-featured-track,
  .promoted-business-track {
    grid-auto-columns: minmax(226px, 258px);
  }
}

@media (max-width: 640px) {
  .home-featured-track,
  .promoted-business-track {
    grid-auto-columns: minmax(0, calc(100vw - 2rem));
    gap: 0.9rem;
    padding: 0.15rem 1rem 1rem 0;
    scroll-padding-inline: 0 1rem;
  }

  .home-featured-track.is-centered,
  .promoted-business-track.is-centered {
    justify-content: start;
    width: auto;
    margin-inline: 0;
  }

  .home-featured-shell::after,
  .promoted-business-shell::after {
    display: none;
  }

  .home-business-card,
  .promoted-business-card {
    border-radius: 12px;
  }

  .home-business-card-inner,
  .promoted-business-card {
    grid-template-rows: 154px 1fr;
  }

  .home-business-media,
  .promoted-business-media {
    min-height: 154px;
  }

  .home-business-logo-plate,
  .promoted-business-logo {
    width: 92px;
    height: 92px;
  }

  .home-business-copy,
  .promoted-business-copy {
    gap: 0.52rem;
    padding: 3.35rem 1rem 1.08rem;
  }

  .home-business-card h3,
  .promoted-business-copy h3 {
    font-size: 1.28rem;
  }

  .home-business-category,
  .promoted-business-category,
  .home-business-review,
  .promoted-business-review,
  .home-business-description,
  .promoted-business-description,
  .home-business-location,
  .home-business-phone,
  .home-business-website,
  .home-business-hours,
  .promoted-business-location,
  .promoted-business-phone,
  .promoted-business-website,
  .promoted-business-hours {
    font-size: 0.88rem;
  }

  .home-business-description,
  .promoted-business-description {
    min-height: 0;
    padding-top: 0.82rem;
  }

  .home-business-tags {
    display: flex;
  }

  .home-business-tags span,
  .promoted-business-tags span {
    min-height: 29px;
    font-size: 0.78rem;
  }

  .home-business-cta,
  .promoted-business-cta,
  .home-business-email,
  .promoted-business-message {
    min-height: 42px;
    font-size: 0.92rem;
  }

  .carousel-button {
    top: 86px;
  }
}

.home-business-cover::after,
.promoted-business-cover::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(255, 255, 255, 0.03) 56%, rgba(255, 255, 255, 0.82) 100%);
}

.home-business-cover-image,
.promoted-business-cover-image {
  opacity: 1;
  filter: saturate(1) contrast(0.98) brightness(1.02);
}

.home-business-actions,
.promoted-business-action-grid {
  align-self: stretch !important;
  justify-self: stretch;
  width: 100% !important;
  max-width: none;
}

.home-business-actions > *,
.promoted-business-action-grid > * {
  width: 100% !important;
}

@media (max-width: 860px) {
  .home-featured-track,
  .promoted-business-track {
    grid-auto-columns: minmax(238px, 276px) !important;
  }

  .home-featured-track.is-centered,
  .promoted-business-track.is-centered {
    justify-content: start !important;
    width: auto;
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.42rem;
  }

  .promoted-business-button {
    width: 40px;
    height: 40px;
  }

  .home-featured-track,
  .promoted-business-track {
    display: flex;
    gap: 0.75rem;
    padding-right: 0.75rem;
  }

  .home-business-card,
  .promoted-business-card {
    flex: 0 0 min(76vw, 276px);
    align-self: flex-start;
    height: auto !important;
    border-radius: 10px;
  }

  .home-business-card-inner,
  .promoted-business-card {
    height: auto;
    grid-template-rows: 96px auto;
  }

  .home-business-media,
  .promoted-business-media {
    min-height: 96px;
  }

  .home-business-logo-plate,
  .promoted-business-logo {
    width: 58px;
    height: 58px;
    padding: 0.3rem;
    border-width: 3px;
  }

  .home-business-badge,
  .promoted-business-media .business-tier-badge {
    top: 0.52rem;
    right: 0.52rem;
  }

  .home-business-badge .business-tier-badge,
  .promoted-business-media .business-tier-badge {
    min-height: 22px;
    padding: 0 0.52rem;
    font-size: 0.56rem;
  }

  .home-business-copy,
  .promoted-business-copy {
    height: auto !important;
    gap: 0.38rem;
    padding: 2.12rem 0.86rem 0.88rem;
  }

  .home-business-card h3,
  .promoted-business-copy h3 {
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .home-business-category,
  .promoted-business-category {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .home-business-review,
  .promoted-business-review {
    gap: 0.36rem;
    font-size: 0.82rem;
  }

  .home-business-review span:last-child,
  .promoted-business-review span:last-child {
    display: none;
  }

  .home-business-description,
  .promoted-business-description,
  .home-business-hours,
  .promoted-business-hours,
  .home-business-tags,
  .promoted-business-tags,
  .home-business-email,
  .promoted-business-message,
  .home-business-save,
  .promoted-business-save {
    display: none !important;
  }

  .home-business-details,
  .promoted-business-details {
    gap: 0.36rem;
    margin-top: 0.18rem;
  }

  .home-business-location,
  .home-business-phone,
  .home-business-website,
  .promoted-business-location,
  .promoted-business-phone,
  .promoted-business-website {
    gap: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .home-business-location .business-detail-icon,
  .home-business-phone .business-detail-icon,
  .home-business-website .business-detail-icon,
  .promoted-business-location .business-detail-icon,
  .promoted-business-phone .business-detail-icon,
  .promoted-business-website .business-detail-icon {
    width: 25px;
    height: 25px;
  }

  .home-business-actions,
  .promoted-business-action-grid {
    gap: 0;
    margin-top: 0.45rem;
  }

  .home-business-cta,
  .promoted-business-cta {
    min-height: 40px;
    border-radius: 8px;
    font-size: 0.88rem;
  }

  .home-featured-shell .carousel-button {
    display: none;
  }

  .home-business-card-inner,
  .promoted-business-card {
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
  }

  .home-business-media,
  .promoted-business-media {
    min-height: 0;
    border-right: 1px solid rgba(255, 106, 24, 0.12);
    border-bottom: 0;
    background: linear-gradient(180deg, #fff7ef 0%, #f8fbff 100%);
  }

  .home-business-cover,
  .promoted-business-cover,
  .home-business-badge,
  .promoted-business-media .business-tier-badge,
  .home-business-website,
  .promoted-business-website {
    display: none !important;
  }

  .home-business-logo-plate,
  .promoted-business-logo {
    position: static;
    width: 56px;
    height: 56px;
    margin-top: 0.86rem;
    padding: 0.18rem;
    transform: none;
    justify-self: center;
    align-self: start;
  }

  .home-business-copy,
  .promoted-business-copy {
    padding: 0.78rem 0.82rem 0.82rem;
  }

  .home-business-card h3,
  .promoted-business-copy h3 {
    font-size: 0.96rem;
  }

  .home-business-actions,
  .promoted-business-action-grid {
    margin-top: 0.36rem;
  }
}

/* Keep promoted cards internally consistent when optional business data is missing. */
.home-business-card-inner,
.promoted-business-card {
  height: 100%;
}

.home-business-copy,
.promoted-business-copy {
  min-height: 0;
}

.home-business-actions,
.promoted-business-action-grid {
  margin-top: auto;
}

@media (max-width: 640px) {
  .home-business-card,
  .promoted-business-card {
    align-self: stretch;
  }

  .home-business-card-inner,
  .promoted-business-card {
    height: 100%;
  }

  .home-business-actions,
  .promoted-business-action-grid {
    margin-top: auto;
  }
}

/* Premium profile-card treatment shared by homepage, promoted, and real estate service cards. */
.home-featured-track,
.promoted-business-track {
  grid-auto-columns: minmax(286px, 296px);
  gap: 1.35rem;
  align-items: stretch;
  padding: 0.2rem 0.2rem 1.15rem;
}

.real-estate-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(286px, 296px));
  gap: 1.35rem;
  align-items: stretch;
}

.home-business-card,
.promoted-business-card {
  width: 100%;
  max-width: 296px;
  min-height: 596px;
  overflow: hidden;
  border: 1px solid #e4e8ee;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.1),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.home-business-card-inner,
.promoted-business-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 168px minmax(0, 1fr);
  height: 100%;
}

.home-business-media,
.promoted-business-media {
  min-height: 168px;
  border-right: 0;
  border-bottom: 1px solid #edf0f4;
  background: linear-gradient(135deg, #fff5ed 0%, #eef5ff 100%);
}

.home-business-cover,
.promoted-business-cover {
  display: grid !important;
  border-radius: 14px 14px 0 0;
}

.home-business-cover::after,
.promoted-business-cover::after {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(255, 255, 255, 0.02) 54%, rgba(255, 255, 255, 0.84) 100%);
}

.home-business-logo-plate,
.promoted-business-logo {
  position: absolute;
  left: 50%;
  bottom: 0.42rem;
  width: 106px;
  height: 106px;
  margin: 0;
  padding: 0.34rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, 50%);
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(15, 23, 42, 0.08),
    0 18px 38px rgba(15, 23, 42, 0.2);
}

.home-business-badge,
.promoted-business-media .business-tier-badge {
  display: block !important;
}

.home-business-copy,
.promoted-business-copy {
  align-items: center;
  gap: 0.54rem;
  height: 100%;
  padding: 4rem 1.08rem 1.15rem;
  text-align: center;
}

.home-business-card h3,
.promoted-business-copy h3 {
  max-width: 100%;
  margin: 0;
  color: #101828;
  font-size: 1.24rem;
  line-height: 1.12;
  text-align: center;
  overflow-wrap: anywhere;
}

.home-business-category,
.promoted-business-category {
  width: 100%;
  margin: -0.08rem 0 0;
  color: #536170;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.home-business-description,
.promoted-business-description {
  display: block !important;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  height: 2.72rem;
  min-height: 2.72rem;
  margin-top: 0.08rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-business-description.is-license-label,
.promoted-business-description.is-license-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: fit-content;
  max-width: min(100%, 220px);
  height: 2.72rem;
  min-height: 2.72rem;
  margin-top: 0.04rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid #e2e7ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #172033;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
}

.home-business-details,
.promoted-business-details {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 190px;
  margin-top: 0.42rem;
  margin-inline: auto;
  padding-top: 0.78rem;
  border-top: 1px solid #e2e7ee;
}

.home-business-location,
.home-business-phone,
.home-business-website,
.home-business-hours,
.promoted-business-location,
.promoted-business-phone,
.promoted-business-website,
.promoted-business-hours {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0.62rem;
  width: min(100%, 178px);
  max-width: 100%;
  color: #172033;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.home-business-location .business-detail-icon,
.home-business-phone .business-detail-icon,
.home-business-website .business-detail-icon,
.home-business-hours .business-detail-icon,
.promoted-business-location .business-detail-icon,
.promoted-business-phone .business-detail-icon,
.promoted-business-website .business-detail-icon,
.promoted-business-hours .business-detail-icon {
  width: 30px;
  height: 30px;
}

.home-business-tags,
.promoted-business-tags {
  display: none !important;
}

.home-business-tags span,
.promoted-business-tags span {
  min-height: 32px;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 650;
}

.home-business-actions,
.promoted-business-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.58rem;
  align-self: stretch;
  width: 100%;
  margin-top: auto;
}

.home-business-cta,
.promoted-business-cta,
.home-business-email,
.promoted-business-message {
  min-height: 46px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.home-business-email,
.promoted-business-message {
  display: inline-flex !important;
  border: 1px solid #d8dee8;
  background: #fff;
  color: #172033;
  box-shadow: none;
}

.home-business-save,
.promoted-business-save {
  display: none !important;
}

.real-estate-service-business-card .home-business-copy {
  align-items: stretch;
  gap: 0.48rem;
  padding-top: 4rem;
}

.real-estate-service-business-card h3,
.real-estate-service-business-card .home-business-category,
.real-estate-service-business-card .home-business-description {
  text-align: center;
}

.real-estate-service-business-card .home-business-description {
  text-align: center;
}

.real-estate-service-business-card .home-business-description.is-license-label {
  max-width: min(100%, 220px);
  height: 2.72rem;
  min-height: 2.72rem;
  margin-top: 0.04rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid #e2e7ee;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
}

.real-estate-service-business-card .home-business-details {
  margin-top: 0.42rem;
  padding-top: 0.78rem;
  border-top: 1px solid #e2e7ee;
}

@media (max-width: 640px) {
  .home-featured-track,
  .promoted-business-track {
    display: flex;
    gap: 1rem;
    padding: 0.2rem 1rem 1.1rem 0;
  }

  .real-estate-services-grid {
    grid-template-columns: minmax(0, min(100%, 296px));
    justify-content: center;
  }

  .home-business-card,
  .promoted-business-card {
    flex: 0 0 min(84vw, 296px);
    max-width: 296px;
    min-height: 572px;
    height: auto !important;
    border-radius: 14px;
  }

  .home-business-card-inner,
  .promoted-business-card {
    grid-template-columns: 1fr;
    grid-template-rows: 152px minmax(0, 1fr);
    height: 100%;
  }

  .home-business-media,
  .promoted-business-media {
    min-height: 152px;
    border-right: 0;
    border-bottom: 1px solid #edf0f4;
  }

  .home-business-cover,
  .promoted-business-cover {
    display: grid !important;
  }

  .home-business-logo-plate,
  .promoted-business-logo {
    position: absolute;
    left: 50%;
    bottom: 0.42rem;
    width: 98px;
    height: 98px;
    margin: 0;
    padding: 0.32rem;
    transform: translate(-50%, 50%);
  }

  .home-business-badge,
  .promoted-business-media .business-tier-badge {
    top: 0.58rem;
    right: 0.58rem;
  }

  .home-business-badge .business-tier-badge,
  .promoted-business-media .business-tier-badge {
    min-height: 24px;
    padding: 0 0.62rem;
    font-size: 0.61rem;
  }

  .home-business-copy,
  .promoted-business-copy,
  .real-estate-service-business-card .home-business-copy {
    gap: 0.5rem;
    padding: 3.72rem 1rem 1rem;
  }

  .home-business-card h3,
  .promoted-business-copy h3 {
    font-size: 1.12rem;
  }

  .home-business-category,
  .promoted-business-category {
    font-size: 0.86rem;
  }

  .home-business-description,
  .promoted-business-description {
    font-size: 0.84rem;
  }

  .home-business-description.is-license-label,
  .promoted-business-description.is-license-label {
    display: inline-flex !important;
    min-height: 28px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .real-estate-service-business-card .home-business-description.is-license-label {
    min-height: 28px;
    font-size: 0.76rem;
  }

  .home-business-location,
  .home-business-phone,
  .home-business-website,
  .home-business-hours,
  .promoted-business-location,
  .promoted-business-phone,
  .promoted-business-website,
  .promoted-business-hours {
    display: inline-flex !important;
    font-size: 0.84rem;
  }

  .home-business-email,
  .promoted-business-message {
    display: inline-flex !important;
  }
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0;
  }

  .site-header .brand {
    width: auto;
    text-align: left;
  }

  .site-header .brand img {
    width: min(176px, 52vw);
  }

  .site-header .main-nav,
  .site-header .header-social-link {
    display: none;
  }

  .site-header .nav-actions {
    width: auto;
    justify-self: end;
    display: block;
  }

  .site-header .nav-actions .button {
    width: auto;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .admin-body.is-admin-unlocked .admin-app-shell {
    gap: 0;
  }

  .admin-body.is-admin-unlocked .admin-sidebar {
    gap: 0.56rem;
    padding: 0.72rem;
  }

  .admin-body.is-admin-unlocked .admin-sidebar-logo {
    padding: 0;
  }

  .admin-body.is-admin-unlocked .admin-sidebar-logo img {
    width: min(178px, 56vw);
  }

  .admin-body.is-admin-unlocked .admin-sidebar-kicker {
    display: none;
  }

  .admin-body.is-admin-unlocked .admin-sidebar .admin-section-nav {
    grid-auto-columns: minmax(74px, 1fr);
    gap: 0.42rem;
    padding: 0.38rem;
  }

  .admin-body.is-admin-unlocked .admin-section-button {
    min-height: 50px;
    min-width: 0;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.42rem 0.46rem;
    font-size: 0.76rem;
  }

  .admin-body.is-admin-unlocked .admin-nav-icon {
    width: 31px;
    height: 31px;
  }

  .admin-body.is-admin-unlocked .admin-nav-icon svg {
    width: 19px;
    height: 19px;
  }

  .admin-body.is-admin-unlocked .admin-main {
    padding: 0.78rem 0.72rem 1.4rem;
  }

  .admin-body.is-admin-unlocked .admin-main-header {
    gap: 0.58rem;
    margin-bottom: 0.82rem;
    padding: 0.72rem;
    border-radius: 14px;
  }

  .admin-body.is-admin-unlocked .admin-main-header h1 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .admin-body.is-admin-unlocked .admin-main-header p {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .admin-body.is-admin-unlocked .admin-main-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .admin-body.is-admin-unlocked .admin-site-switcher {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .admin-body.is-admin-unlocked .admin-site-select {
    min-height: 42px;
    width: 100%;
  }

  .admin-body.is-admin-unlocked .admin-main-actions .button,
  .admin-body.is-admin-unlocked .admin-range-pill {
    min-height: 42px;
    padding: 0 0.72rem;
  }

  .admin-orders-card {
    gap: 0.72rem;
    padding: 0.78rem;
  }

  .admin-orders-card > .admin-tools-head {
    gap: 0.62rem;
  }

  .admin-orders-card .admin-tools-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .admin-orders-card .admin-tools-actions .button {
    min-height: 43px;
  }

  #admin-review-stats.admin-review-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
  }

  #admin-review-stats .admin-stat {
    min-height: 84px;
    padding: 0.72rem;
  }

  #admin-review-stats .admin-stat strong {
    font-size: 1.48rem;
  }

  #admin-review-stats .admin-stat span {
    font-size: 0.78rem;
  }

  .admin-orders-card .admin-filter-bar {
    display: flex;
    gap: 0.42rem;
    overflow-x: auto;
    padding: 0.36rem;
  }

  .admin-orders-card .admin-filter-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 0.72rem;
  }

  .admin-order-card,
  .admin-order-card.is-expanded {
    gap: 0.62rem;
    padding: 0.82rem;
  }

  .admin-order-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    align-items: stretch;
  }

  .admin-order-actions .button {
    width: 100%;
    min-height: 44px;
    padding: 0 0.64rem;
    font-size: 0.82rem;
  }

  .admin-order-actions .admin-stage-button.button-primary {
    grid-column: 1 / -1;
    order: -1;
  }

  .admin-order-actions .admin-order-delete-button {
    grid-column: 1 / -1;
  }
}

/* Business directory map polish */
.directory-shell {
  grid-template-columns: minmax(386px, 30vw) minmax(0, 1fr);
  background: #f7f9fc;
}

.directory-shell:not(.is-list-view) .explorer-sidebar {
  gap: 0.48rem;
  padding: 0.82rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.72) 0%, rgba(255, 255, 255, 0) 26%),
    #fff;
  border-right-color: #dde5ee;
  box-shadow: 8px 0 30px rgba(15, 23, 42, 0.075);
}

.directory-shell:not(.is-list-view) .directory-title {
  padding: 0 0 0.08rem;
}

.directory-shell:not(.is-list-view) .directory-title h1 {
  font-size: clamp(1.6rem, 1.55vw, 1.95rem);
}

.directory-shell:not(.is-list-view) .directory-title p {
  max-width: 34rem;
  font-size: 0.8rem;
  line-height: 1.3;
}

.directory-shell:not(.is-list-view) .explorer-search {
  grid-template-columns: minmax(0, 1fr) 86px;
  border-color: #f0d8c9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(216, 92, 27, 0.09);
}

.directory-shell:not(.is-list-view) .explorer-search-field {
  min-height: 43px;
  padding: 0 0.66rem;
}

.directory-shell:not(.is-list-view) .explorer-search-field input::placeholder {
  color: #8b97a8;
}

.directory-shell:not(.is-list-view) .explorer-search .button {
  min-height: 43px;
  font-size: 0.78rem;
}

.directory-shell:not(.is-list-view) .directory-view-controls,
.directory-shell:not(.is-list-view) .explorer-results-head {
  border-color: #e7edf5;
  background: rgba(255, 255, 255, 0.92);
}

.directory-shell:not(.is-list-view) .business-list {
  gap: 0.46rem;
  padding: 0.03rem 0.08rem 0.15rem 0;
}

.directory-shell:not(.is-list-view) .business-list-card {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.58rem;
  min-height: 82px;
  padding: 0.56rem 0.64rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.directory-shell:not(.is-list-view) .business-list-card.is-tier-featured,
.directory-shell:not(.is-list-view) .business-list-card.is-tier-sponsored {
  background:
    linear-gradient(90deg, rgba(255, 246, 240, 0.9) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.directory-shell:not(.is-list-view) .business-list-card > img,
.directory-shell:not(.is-list-view) .business-list-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.directory-shell:not(.is-list-view) .business-list-top h3 {
  font-size: 0.94rem;
}

.directory-shell:not(.is-list-view) .business-list-meta {
  font-size: 0.71rem;
}

.directory-shell:not(.is-list-view) .business-review-link {
  min-height: 23px;
  font-size: 0.64rem;
}

.directory-shell:not(.is-list-view) .business-list-phone,
.directory-shell:not(.is-list-view) .business-map-secondary {
  min-height: 24px;
  padding: 0 0.48rem;
  font-size: 0.65rem;
}

.directory-shell:not(.is-list-view) .explorer-more {
  min-height: 50px;
  height: 52px;
  border-radius: 12px;
  background: #fff7f0;
}

.map-panel {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0) 32%),
    #eef3ea;
}

.explorer-toolbar {
  top: 0.95rem;
  left: clamp(0.9rem, 2.5vw, 2.5rem);
  right: 15.2rem;
  gap: 0.46rem;
  padding: 0.08rem 0.18rem 0.32rem 0.08rem;
}

.explorer-toolbar::after {
  content: "";
  position: sticky;
  right: -0.2rem;
  flex: 0 0 34px;
  align-self: stretch;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0), rgba(248, 250, 252, 0.92));
  pointer-events: none;
}

.explorer-chip {
  min-height: 40px;
  gap: 0.46rem;
  padding: 0 0.82rem;
  border-color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
}

.chip-icon {
  width: 22px;
  height: 22px;
  font-size: 0.72rem;
}

.featured-toggle {
  top: 0.95rem;
  right: 1rem;
  min-width: 205px;
  min-height: 58px;
  padding: 0.68rem 0.82rem;
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.92);
  color: #243042;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
}

.map-status {
  top: 4.75rem;
  right: 1rem;
  width: 205px;
  padding: 0.58rem 0.72rem;
  border-color: rgba(226, 232, 240, 0.94);
  background: rgba(255, 255, 255, 0.9);
  color: #455468;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(10px);
}

.map-stage {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.64) 1px, transparent 1px),
    linear-gradient(180deg, #edf5ea 0%, #f7f0e6 100%);
}

.fallback-map {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.76) 1px, transparent 1px),
    linear-gradient(180deg, #edf5ea 0%, #f7f0e6 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

.map-controls {
  bottom: 6.35rem;
}

.map-stage .mapboxgl-ctrl-bottom-right {
  bottom: 6.35rem;
}

.map-fallback-note {
  bottom: 6.35rem;
}

.map-bottom-banner {
  right: auto;
  width: min(760px, calc(100% - 2rem));
  min-height: 72px;
  gap: 0.78rem;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.map-bottom-banner .button {
  min-height: 46px;
  border-radius: 11px;
  white-space: nowrap;
}

.banner-icon {
  width: 46px;
  height: 46px;
  font-size: 1.22rem;
}

.map-bottom-copy {
  gap: 0.14rem;
}

.map-bottom-tag {
  min-height: 22px;
  font-size: 0.64rem;
}

.map-bottom-copy strong {
  font-size: 1.08rem;
}

.map-bottom-copy span {
  font-size: 0.9rem;
  line-height: 1.34;
}

@media (max-width: 1150px) {
  .directory-shell {
    grid-template-columns: 1fr;
  }

  .explorer-toolbar {
    right: 1rem;
    padding-right: 0.12rem;
  }

  .featured-toggle,
  .map-status {
    position: static;
    width: auto;
  }

  .map-panel {
    display: grid;
    gap: 0.72rem;
    min-height: 0;
    padding: 0.8rem;
  }

  .explorer-toolbar,
  .featured-toggle,
  .map-status,
  .map-bottom-banner,
  .map-fallback-note {
    position: static;
  }

  .map-stage {
    height: 620px;
    min-height: 620px;
    border: 1px solid #dde5ee;
    border-radius: 16px;
  }

  .map-bottom-banner {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .directory-shell:not(.is-list-view) .explorer-sidebar,
  .directory-shell.is-list-view .explorer-sidebar {
    padding: 0.7rem 0.62rem 0.9rem;
  }

  .directory-shell:not(.is-list-view) .directory-title h1,
  .directory-title h1 {
    font-size: 1.72rem;
  }

  .directory-shell:not(.is-list-view) .directory-title p,
  .directory-title p {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .directory-shell:not(.is-list-view) .explorer-search,
  .explorer-search {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .list-category-bar,
  .directory-shell.is-list-view .list-category-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-category-bar .explorer-chip,
  .directory-shell.is-list-view .list-category-bar .explorer-chip {
    min-height: 38px;
    padding: 0 0.62rem;
    font-size: 0.76rem;
  }
}

/* Final compact directory card polish. */
.directory-shell:not(.is-list-view) .business-list {
  gap: 0.58rem;
  padding: 0.05rem 0.08rem 0.18rem 0;
}

.directory-shell:not(.is-list-view) .business-list-card {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.66rem;
  min-height: 88px;
  padding: 0.68rem 0.78rem 0.68rem 0.72rem;
  border-color: #e4ebf3;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 253, 0.98) 100%);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.directory-shell:not(.is-list-view) .business-list-card::before {
  width: 3px;
  background: #dbe4ee;
}

.directory-shell:not(.is-list-view) .business-list-card.is-tier-featured,
.directory-shell:not(.is-list-view) .business-list-card.is-tier-sponsored {
  border-color: rgba(255, 106, 24, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 247, 242, 0.76) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow:
    0 10px 24px rgba(216, 92, 27, 0.065),
    0 8px 20px rgba(15, 23, 42, 0.045);
}

.directory-shell:not(.is-list-view) .business-list-card.is-tier-featured::before,
.directory-shell:not(.is-list-view) .business-list-card.is-tier-sponsored::before {
  background: linear-gradient(180deg, #ff8a42 0%, var(--orange) 100%);
}

.directory-shell:not(.is-list-view) .business-list-card.is-tier-partner::before,
.directory-shell:not(.is-list-view) .business-list-card.is-tier-verified::before {
  background: linear-gradient(180deg, #34c76f 0%, #159947 100%);
}

.directory-shell:not(.is-list-view) .business-list-card:hover,
.directory-shell:not(.is-list-view) .business-list-card.is-active {
  border-color: rgba(255, 106, 24, 0.3);
  background:
    linear-gradient(90deg, rgba(255, 247, 242, 0.9) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.09),
    0 8px 18px rgba(255, 106, 24, 0.07);
}

.directory-shell:not(.is-list-view) .business-list-card > img,
.directory-shell:not(.is-list-view) .business-list-placeholder {
  width: 48px;
  height: 48px;
  padding: 0.3rem;
  border-color: #e5ebf2;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    inset 0 0 0 4px #fff,
    0 8px 18px rgba(15, 23, 42, 0.07);
}

.directory-shell:not(.is-list-view) .business-list-copy {
  gap: 0.24rem;
  align-self: center;
  min-width: 0;
}

.directory-shell:not(.is-list-view) .business-list-top {
  display: block;
  padding-right: 4.35rem;
}

.directory-shell:not(.is-list-view) .business-list-top h3 {
  color: #0f172a;
  font-size: 0.96rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.directory-shell:not(.is-list-view) .business-tier-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.62rem;
  min-height: 19px;
  padding: 0 0.44rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.directory-shell:not(.is-list-view) .business-tier-badge-featured {
  border-color: rgba(255, 106, 24, 0.18);
  background: #fff1e8;
  color: #c84b0b;
}

.directory-shell:not(.is-list-view) .business-tier-badge-sponsored {
  border-color: rgba(37, 99, 235, 0.16);
  background: #eef5ff;
  color: #1d4ed8;
}

.directory-shell:not(.is-list-view) .business-tier-badge-partner,
.directory-shell:not(.is-list-view) .business-tier-badge-verified {
  border-color: rgba(22, 163, 74, 0.18);
  background: #effaf3;
  color: #15803d;
}

.directory-shell:not(.is-list-view) .business-list-meta {
  gap: 0.28rem;
  color: #536170;
  font-size: 0.7rem;
  font-weight: 850;
}

.directory-shell:not(.is-list-view) .business-list-meta .business-detail-icon {
  width: 15px;
  height: 15px;
  background: transparent;
  color: #93a0b2;
}

.directory-shell:not(.is-list-view) .business-list-contact-row {
  gap: 0.32rem;
  padding-top: 0.06rem;
}

.directory-shell:not(.is-list-view) .business-list-phone,
.directory-shell:not(.is-list-view) .business-map-secondary {
  min-height: 24px;
  gap: 0.28rem;
  padding: 0 0.52rem;
  border-radius: 999px;
  font-size: 0.65rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.directory-shell:not(.is-list-view) .business-list-phone {
  border-color: rgba(255, 106, 24, 0.22);
  background: #fff5ef;
  color: #c84b0b;
}

.directory-shell:not(.is-list-view) .business-map-secondary {
  border-color: #e3eaf2;
  background: #f9fbfd;
  color: #364152;
}

.directory-shell:not(.is-list-view) .business-list-phone .business-detail-icon,
.directory-shell:not(.is-list-view) .business-map-secondary .business-detail-icon {
  width: 13px;
  height: 13px;
}

@media (max-width: 640px) {
  .directory-shell:not(.is-list-view) .business-list {
    gap: 0.56rem;
  }

  .directory-shell:not(.is-list-view) .business-list-card,
  .directory-shell.is-list-view .business-list-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 88px;
    padding: 0.68rem 0.72rem;
    border-color: #e4ebf3;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 253, 0.98) 100%);
    box-shadow:
      0 10px 24px rgba(15, 23, 42, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .directory-shell.is-list-view .business-list-card::before {
    width: 3px;
    background: #dbe4ee;
  }

  .directory-shell.is-list-view .business-list-card.is-tier-featured,
  .directory-shell.is-list-view .business-list-card.is-tier-sponsored {
    border-color: rgba(255, 106, 24, 0.2);
    background:
      linear-gradient(90deg, rgba(255, 247, 242, 0.76) 0%, rgba(255, 255, 255, 0) 38%),
      linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  }

  .directory-shell.is-list-view .business-list-card.is-tier-featured::before,
  .directory-shell.is-list-view .business-list-card.is-tier-sponsored::before {
    background: linear-gradient(180deg, #ff8a42 0%, var(--orange) 100%);
  }

  .directory-shell.is-list-view .business-list-card.is-tier-partner::before,
  .directory-shell.is-list-view .business-list-card.is-tier-verified::before {
    background: linear-gradient(180deg, #34c76f 0%, #159947 100%);
  }

  .directory-shell:not(.is-list-view) .business-list-card > img,
  .directory-shell:not(.is-list-view) .business-list-placeholder,
  .directory-shell.is-list-view .business-list-card > img,
  .directory-shell.is-list-view .business-list-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .directory-shell:not(.is-list-view) .business-list-top,
  .directory-shell.is-list-view .business-list-top {
    display: block;
    padding-right: 4.35rem;
  }

  .directory-shell:not(.is-list-view) .business-list-top h3,
  .directory-shell.is-list-view .business-list-top h3 {
    font-size: 0.96rem;
    line-height: 1.08;
  }

  .directory-shell.is-list-view .business-tier-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.62rem;
    min-height: 19px;
    padding: 0 0.44rem;
    border: 1px solid transparent;
    font-size: 0.48rem;
    box-shadow: none;
  }

  .directory-shell.is-list-view .business-tier-badge-featured {
    border-color: rgba(255, 106, 24, 0.18);
    background: #fff1e8;
    color: #c84b0b;
  }

  .directory-shell.is-list-view .business-tier-badge-sponsored {
    border-color: rgba(37, 99, 235, 0.16);
    background: #eef5ff;
    color: #1d4ed8;
  }

  .directory-shell.is-list-view .business-tier-badge-partner,
  .directory-shell.is-list-view .business-tier-badge-verified {
    border-color: rgba(22, 163, 74, 0.18);
    background: #effaf3;
    color: #15803d;
  }
}

/* Final mobile header override: phones show logo + hamburger, with actions inside the menu. */
@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  }

  .site-header .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    min-height: 66px;
    padding: 0.48rem 0;
  }

  .site-header .brand {
    width: auto;
    text-align: left;
  }

  .site-header .brand img {
    width: min(158px, 46vw);
  }

  body:not(.admin-body) .site-header .main-nav,
  body:not(.admin-body) .site-header .nav-actions,
  body:not(.admin-body) .site-header .header-social-link {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    min-height: 40px;
    gap: 0.42rem;
    padding: 0 0.72rem;
    border-radius: 14px;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  }

  .mobile-site-menu {
    display: block;
  }

  .mobile-site-menu[hidden] {
    display: none !important;
  }

  #home-paid-events-prev,
  #home-paid-events-next {
    top: 76px !important;
  }
}

/* Final homepage phone polish: keep the first screen compact and readable in mobile browsers. */
@media (max-width: 640px) {
  body:not(.admin-body) .hero {
    min-height: 520px;
    min-height: min(540px, calc(100svh - 66px));
    align-items: stretch;
    background-position: center top;
  }

  body:not(.admin-body) .hero-carousel-slide img {
    object-position: 52% 44%;
  }

  body:not(.admin-body) .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 6, 18, 0.22) 0%, rgba(4, 6, 18, 0.52) 42%, rgba(4, 6, 18, 0.86) 100%),
      radial-gradient(circle at 50% 74%, rgba(0, 0, 0, 0.2), transparent 44%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.18));
  }

  body:not(.admin-body) .hero-grid {
    min-height: inherit;
    place-items: end center;
    padding: 2.35rem 0 calc(3.2rem + env(safe-area-inset-bottom));
  }

  body:not(.admin-body) .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  body:not(.admin-body) .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 12.4vw, 3.15rem);
    line-height: 0.9;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
  }

  body:not(.admin-body) .hero p {
    max-width: 18.8rem;
    margin: 0.62rem auto 1rem;
    font-size: 0.98rem;
    line-height: 1.34;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
  }

  body:not(.admin-body) .hero-search {
    grid-template-columns: minmax(0, 1fr) 92px;
    width: min(100%, 21.5rem);
    gap: 0.32rem;
    padding: 0.34rem;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  }

  body:not(.admin-body) .hero-search .button {
    min-height: 52px;
    padding: 0 0.8rem;
    border-radius: 13px;
    font-size: 0.94rem;
  }

  body:not(.admin-body) .hero-search .search-field {
    min-height: 52px;
    gap: 0.52rem;
    padding: 0 0.82rem;
    border-radius: 13px;
  }

  body:not(.admin-body) .hero-search input {
    font-size: 0.98rem;
  }

  body:not(.admin-body) .hero-carousel-dots {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header .brand img {
    width: min(146px, 45vw);
  }

  .mobile-menu-toggle {
    min-height: 38px;
    padding: 0 0.62rem;
  }

  body:not(.admin-body) .hero-search {
    grid-template-columns: minmax(0, 1fr) 84px;
  }
}

/* Homepage mobile hero treatment aligned to the full-bleed reference layout. */
@media (max-width: 640px) {
  body.home-page .hero {
    min-height: 0;
    align-items: stretch;
    background-position: center top;
  }

  body.home-page .hero-carousel-slide img {
    object-position: 50% 52%;
  }

  body.home-page .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 6, 18, 0.08) 0%, rgba(4, 6, 18, 0.3) 26%, rgba(4, 6, 18, 0.42) 54%, rgba(4, 6, 18, 0.68) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.18));
  }

  body.home-page .hero-grid {
    min-height: 0;
    place-items: stretch center;
    padding: 1rem 0 2rem;
  }

  body.home-page .hero-copy {
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }

  body.home-page .hero-domain-pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.15rem 0 1.55rem;
    padding: 0 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(245, 239, 255, 0.88);
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
  }

  body.home-page .hero-kicker {
    min-height: 40px;
    display: inline-flex;
    margin: 0 0 0.9rem;
    padding: 0 1.08rem;
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    letter-spacing: 0.16em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  }

  body.home-page .hero h1 {
    max-width: min(100%, calc(100vw - 1rem));
    font-size: clamp(2.45rem, 10.2vw, 3.1rem);
    line-height: 0.88;
    text-wrap: wrap;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.44);
  }

  body.home-page .hero p {
    max-width: 22.6rem;
    margin: 0.82rem auto 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.42;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
  }

  body.home-page .hero-search {
    grid-template-columns: minmax(0, 1fr) 96px;
    width: min(calc(100vw - 2rem), 23.4rem);
    max-width: 100%;
    gap: 0.4rem;
    padding: 0.42rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  }

  body.home-page .hero-search .search-field {
    min-height: 56px;
    gap: 0.58rem;
    padding: 0 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #fff;
    color: #111827;
  }

  body.home-page .hero-search input {
    color: #111827;
    font-size: 0.98rem;
    font-weight: 800;
  }

  body.home-page .hero-search input::placeholder {
    color: #6b7280;
    opacity: 1;
  }

  body.home-page .hero-search .button {
    width: 100%;
    min-height: 56px;
    padding: 0 0.72rem;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  body.home-page .hero-popular-row,
  body.home-page .hero-proof {
    display: none !important;
  }
}

@media (max-width: 380px) {
  body.home-page .hero {
    min-height: 0;
  }

  body.home-page .hero-domain-pill {
    min-height: 40px;
    margin-bottom: 1.2rem;
  }

  body.home-page .hero h1 {
    font-size: clamp(2.28rem, 10vw, 2.75rem);
  }

  body.home-page .hero p {
    font-size: 1rem;
    line-height: 1.36;
  }

  body.home-page .hero-search {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 0.34rem;
    padding: 0.34rem;
  }

  body.home-page .hero-search .search-field,
  body.home-page .hero-search .button {
    min-height: 52px;
  }

  body.home-page .hero-search .search-field {
    padding: 0 0.76rem;
  }

  body.home-page .hero-search input {
    font-size: 0.92rem;
  }

  body.home-page .hero-search .button {
    font-size: 0.88rem;
  }
}

/* Tenant polish: Oviedo Buzz uses a fresher civic palette without changing Apopka. */
html[data-site-slug="oviedo"] {
  --orange: #0f766e;
  --orange-dark: #0b5f59;
  --buzz-primary: #0f766e;
  --buzz-secondary: #f2b84b;
  --buzz-accent: #e4572e;
  --buzz-ink: #10231f;
  --buzz-soft: #f2fbf8;
  --line: #dfece7;
}

html[data-site-slug="oviedo"] body:not(.admin-body) {
  color: var(--buzz-ink);
  background: #fbfffd;
}

html[data-site-slug="oviedo"] .site-header {
  border-bottom-color: rgba(15, 118, 110, 0.14);
  background: rgba(251, 255, 253, 0.96);
  box-shadow: 0 12px 32px rgba(16, 35, 31, 0.07);
}

html[data-site-slug="oviedo"] .brand img {
  width: clamp(188px, 15vw, 242px);
  max-height: 96px;
  object-fit: contain;
}

html[data-site-slug="oviedo"] .main-nav {
  border-color: rgba(15, 118, 110, 0.13);
  background: rgba(255, 255, 255, 0.9);
}

html[data-site-slug="oviedo"] .main-nav a:hover,
html[data-site-slug="oviedo"] .main-nav a:focus-visible,
html[data-site-slug="oviedo"] .main-nav a[aria-current="page"] {
  color: #0b5f59;
  background: #eaf7f4;
}

html[data-site-slug="oviedo"] .main-nav a[aria-current="page"]::after {
  background: linear-gradient(90deg, #f2b84b, #e4572e);
}

html[data-site-slug="oviedo"] .button-primary,
html[data-site-slug="oviedo"] .button-accent {
  background: linear-gradient(180deg, #139587 0%, #0b5f59 100%);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

html[data-site-slug="oviedo"] .button-outline,
html[data-site-slug="oviedo"] .section-link,
html[data-site-slug="oviedo"] .home-empty-state a,
html[data-site-slug="oviedo"] .news-feature-links a {
  color: #0b5f59;
  border-color: rgba(15, 118, 110, 0.28);
  background: #f5fffb;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.08);
}

html[data-site-slug="oviedo"] .button-outline:hover,
html[data-site-slug="oviedo"] .section-link:hover,
html[data-site-slug="oviedo"] .section-link:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  background: #eaf7f4;
}

html[data-site-slug="oviedo"] .hero-carousel {
  background: #10231f;
}

html[data-site-slug="oviedo"] .hero-carousel-slide img {
  filter: saturate(1.12) contrast(1.06) brightness(0.94);
  object-position: 50% 46%;
}

html[data-site-slug="oviedo"] .hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 184, 75, 0.2), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(15, 118, 110, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(7, 23, 21, 0.84) 0%, rgba(7, 32, 29, 0.56) 50%, rgba(7, 23, 21, 0.78) 100%),
    linear-gradient(0deg, rgba(5, 18, 16, 0.34), transparent 46%);
}

html[data-site-slug="oviedo"] .news-hero,
html[data-site-slug="oviedo"] .events-hero,
html[data-site-slug="oviedo"] .real-estate-hero {
  background-position: 50% 46%;
}

html[data-site-slug="oviedo"] .news-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 23, 21, 0.9) 0%, rgba(7, 32, 29, 0.72) 48%, rgba(7, 23, 21, 0.5) 100%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.14) 0%, rgba(242, 184, 75, 0) 42%),
    url("assets/oviedo-hero-lake.jpg");
}

html[data-site-slug="oviedo"] .events-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 23, 21, 0.92) 0%, rgba(7, 32, 29, 0.78) 42%, rgba(7, 23, 21, 0.54) 74%, rgba(7, 23, 21, 0.42) 100%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.16) 0%, rgba(242, 184, 75, 0) 38%),
    url("assets/oviedo-hero-lake.jpg");
}

html[data-site-slug="oviedo"] .real-estate-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 23, 21, 0.88) 0%, rgba(7, 32, 29, 0.68) 42%, rgba(7, 23, 21, 0.36) 100%),
    url("assets/oviedo-hero-lake.jpg");
}

html[data-site-slug="oviedo"] .real-estate-card-media {
  background-image:
    linear-gradient(180deg, rgba(7, 23, 21, 0.08), rgba(7, 23, 21, 0.42)),
    url("assets/oviedo-hero-lake.jpg");
  background-position: center;
}

html[data-site-slug="oviedo"] .hero-kicker {
  border-color: rgba(242, 184, 75, 0.5);
  background: rgba(242, 184, 75, 0.18);
  color: #fff8df;
}

html[data-site-slug="oviedo"] .hero-domain-pill {
  background: rgba(234, 247, 244, 0.92);
  color: #0b3d38;
}

html[data-site-slug="oviedo"] .hero h1 {
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.42);
}

html[data-site-slug="oviedo"] .hero-search {
  border-color: rgba(242, 184, 75, 0.58);
  box-shadow:
    0 24px 58px rgba(5, 18, 16, 0.32),
    0 0 0 1px rgba(15, 118, 110, 0.12);
}

html[data-site-slug="oviedo"] .field-icon,
html[data-site-slug="oviedo"] .hero-proof strong {
  color: #f2b84b;
}

html[data-site-slug="oviedo"] .hero-popular-row a {
  border-color: rgba(242, 184, 75, 0.36);
  background: rgba(15, 118, 110, 0.32);
}

html[data-site-slug="oviedo"] .hero-popular-row a:hover,
html[data-site-slug="oviedo"] .hero-popular-row a:focus-visible {
  background: rgba(242, 184, 75, 0.2);
}

html[data-site-slug="oviedo"] .home-featured-section,
html[data-site-slug="oviedo"] .advertise-section {
  background: linear-gradient(180deg, #fff 0%, #f4fbf8 100%);
}

html[data-site-slug="oviedo"] .home-featured-head {
  border-bottom-color: rgba(15, 118, 110, 0.14);
}

html[data-site-slug="oviedo"] .home-featured-head::before {
  background: linear-gradient(90deg, #0f766e, #f2b84b, #e4572e);
}

html[data-site-slug="oviedo"] .home-featured-head .eyebrow,
html[data-site-slug="oviedo"] .eyebrow,
html[data-site-slug="oviedo"] .home-news-category,
html[data-site-slug="oviedo"] .home-event-time,
html[data-site-slug="oviedo"] .home-event-action,
html[data-site-slug="oviedo"] .home-news-footer > span {
  color: #0b5f59;
}

html[data-site-slug="oviedo"] .home-business-card,
html[data-site-slug="oviedo"] .home-event-card,
html[data-site-slug="oviedo"] .home-news-card {
  border-color: rgba(15, 118, 110, 0.18);
  background: linear-gradient(180deg, #fff 0%, #f7fffc 100%);
  box-shadow:
    0 16px 34px rgba(16, 35, 31, 0.08),
    0 7px 18px rgba(15, 118, 110, 0.07);
}

html[data-site-slug="oviedo"] .home-business-card::before,
html[data-site-slug="oviedo"] .home-event-card::before,
html[data-site-slug="oviedo"] .home-news-card::before {
  background: linear-gradient(90deg, #0f766e 0%, #f2b84b 52%, #e4572e 100%);
}

html[data-site-slug="oviedo"] .home-business-card.is-sponsored::before,
html[data-site-slug="oviedo"] .home-event-card.is-spotlight::before {
  background: linear-gradient(90deg, #e4572e 0%, #f2b84b 48%, #0f766e 100%);
}

html[data-site-slug="oviedo"] .home-business-card:hover,
html[data-site-slug="oviedo"] .home-event-card:hover,
html[data-site-slug="oviedo"] .home-news-card:hover {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow:
    0 21px 46px rgba(16, 35, 31, 0.12),
    0 10px 24px rgba(15, 118, 110, 0.11);
}

html[data-site-slug="oviedo"] .home-business-media,
html[data-site-slug="oviedo"] .home-event-media,
html[data-site-slug="oviedo"] .home-news-media {
  border-bottom-color: rgba(15, 118, 110, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(135deg, #f1fbf7 0%, #fff8df 100%);
}

html[data-site-slug="oviedo"] .home-news-source,
html[data-site-slug="oviedo"] .home-event-date {
  background: linear-gradient(180deg, #143d38 0%, #10231f 100%);
}

html[data-site-slug="oviedo"] .home-event-date::after {
  background: #f2b84b;
}

html[data-site-slug="oviedo"] .category-card {
  background: linear-gradient(180deg, #fff 0%, #fff 48%, #f5fffb 100%);
}

html[data-site-slug="oviedo"] .site-footer {
  border-top-color: rgba(15, 118, 110, 0.16);
  background:
    linear-gradient(180deg, #f4fbf8 0%, #fff 72%),
    #fff;
}

html[data-site-slug="oviedo"] .site-footer-legal {
  color: #10231f;
}

html[data-site-slug="oviedo"] .site-footer-meta,
html[data-site-slug="oviedo"] .site-footer-disclaimer {
  color: #4f625e;
}

html[data-site-slug="oviedo"] .site-footer-links a,
html[data-site-slug="oviedo"] .site-footer-links a.site-footer-email {
  border-color: rgba(15, 118, 110, 0.18);
  color: #0b5f59;
  background: rgba(255, 255, 255, 0.92);
}

html[data-site-slug="oviedo"] .site-footer-links a:hover {
  border-color: rgba(15, 118, 110, 0.36);
  background: #effbf8;
  color: #0b5f59;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.1);
}

html[data-site-slug="oviedo"] .mobile-site-menu-nav a[aria-current="page"] {
  border-color: rgba(15, 118, 110, 0.22);
  background: #eaf7f4;
  color: #0b5f59;
}

@media (max-width: 640px) {
  html[data-site-slug="oviedo"] .brand img {
    width: min(168px, 50vw);
    max-height: 74px;
  }

  html[data-site-slug="oviedo"] .hero-carousel-slide img {
    object-position: 50% 50%;
  }

  html[data-site-slug="oviedo"] body.home-page .hero-domain-pill {
    background: rgba(234, 247, 244, 0.9);
    color: #0b3d38;
  }

  html[data-site-slug="oviedo"] body.home-page .hero-kicker {
    border-color: rgba(242, 184, 75, 0.48);
    background: rgba(242, 184, 75, 0.18);
  }
}

@media (max-width: 640px) {
  .contact-simple-hero {
    padding: 2rem 0 2.25rem;
  }

  .contact-simple-hero .contact-intake-layout {
    gap: 1rem;
  }

  .contact-simple-hero .contact-intake-copy {
    gap: 0.78rem;
  }

  .contact-simple-hero .contact-intake-copy h1 {
    max-width: 9.25ch;
    font-size: clamp(3rem, 13vw, 3.45rem);
    line-height: 0.91;
  }

  .contact-simple-hero .contact-intake-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .contact-quick-links {
    gap: 0.42rem;
  }

  .contact-quick-links a {
    min-height: 32px;
    padding: 0 0.58rem;
    font-size: 0.76rem;
  }

  .news-hero-copy .eyebrow,
  .events-hero-copy .eyebrow,
  .real-estate-hero-copy .eyebrow {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  }

  html[data-site-slug="oviedo"] .news-hero-copy .eyebrow,
  html[data-site-slug="oviedo"] .events-hero-copy .eyebrow,
  html[data-site-slug="oviedo"] .real-estate-hero-copy .eyebrow {
    color: #fff8df;
  }

  html[data-site-slug="oviedo"] .events-hero-kicker {
    border-color: rgba(242, 184, 75, 0.5);
    background: rgba(15, 118, 110, 0.34);
    color: #fff8df;
  }
}

html[data-site-slug="collegepark"] {
  --buzz-primary: #6420d2;
  --buzz-secondary: #111827;
}

html[data-site-slug="collegepark"] body:not(.admin-body) {
  color: #17131f;
  background: #fdfbff;
}

html[data-site-slug="collegepark"] .site-header {
  border-bottom-color: rgba(100, 32, 210, 0.14);
  background: rgba(253, 251, 255, 0.96);
  box-shadow: 0 12px 32px rgba(44, 24, 72, 0.08);
}

html[data-site-slug="collegepark"] .brand img {
  width: clamp(188px, 15vw, 242px);
  max-height: 96px;
  object-fit: contain;
}

html[data-site-slug="collegepark"] .main-nav {
  border-color: rgba(100, 32, 210, 0.13);
  background: rgba(255, 255, 255, 0.9);
}

html[data-site-slug="collegepark"] .main-nav a:hover,
html[data-site-slug="collegepark"] .main-nav a:focus-visible,
html[data-site-slug="collegepark"] .main-nav a[aria-current="page"] {
  color: #4c1d95;
  background: rgba(100, 32, 210, 0.08);
}

html[data-site-slug="collegepark"] .main-nav a[aria-current="page"]::after {
  background: #6420d2;
}

html[data-site-slug="collegepark"] .button-primary,
html[data-site-slug="collegepark"] .button-accent {
  background: linear-gradient(135deg, #6420d2, #7c3aed);
  box-shadow: 0 16px 30px rgba(100, 32, 210, 0.22);
}

html[data-site-slug="collegepark"] .button-outline,
html[data-site-slug="collegepark"] .section-link,
html[data-site-slug="collegepark"] .home-empty-state a,
html[data-site-slug="collegepark"] .news-feature-links a {
  color: #4c1d95;
  border-color: rgba(100, 32, 210, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

html[data-site-slug="collegepark"] .button-outline:hover,
html[data-site-slug="collegepark"] .section-link:hover,
html[data-site-slug="collegepark"] .section-link:focus-visible {
  border-color: rgba(100, 32, 210, 0.38);
  background: #f4efff;
}

html[data-site-slug="collegepark"] .hero-carousel {
  background: #090313;
}

html[data-site-slug="collegepark"] .hero-carousel-slide img {
  filter: brightness(0.64) contrast(1.18) saturate(1.46) hue-rotate(-5deg);
  object-position: 55% 50%;
}

html[data-site-slug="collegepark"] .hero-overlay {
  background:
    radial-gradient(circle at 26% 16%, rgba(124, 58, 237, 0.42), transparent 28%),
    radial-gradient(circle at 72% 42%, rgba(245, 158, 11, 0.34), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(139, 92, 246, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(8, 3, 19, 0.92) 0%, rgba(20, 7, 42, 0.68) 45%, rgba(8, 3, 19, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 3, 19, 0.2) 0%, rgba(8, 3, 19, 0.52) 58%, rgba(8, 3, 19, 0.82) 100%);
}

html[data-site-slug="collegepark"] .news-hero,
html[data-site-slug="collegepark"] .events-hero,
html[data-site-slug="collegepark"] .real-estate-hero {
  background-position: 55% 50%;
}

html[data-site-slug="collegepark"] .news-hero,
html[data-site-slug="collegepark"] .events-hero {
  background-image:
    radial-gradient(circle at 72% 40%, rgba(245, 158, 11, 0.28), transparent 30%),
    radial-gradient(circle at 24% 18%, rgba(124, 58, 237, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(8, 3, 19, 0.94) 0%, rgba(20, 7, 42, 0.76) 48%, rgba(8, 3, 19, 0.42) 100%),
    url("assets/college-park-sign.jpg");
}

html[data-site-slug="collegepark"] .real-estate-hero {
  background-image:
    radial-gradient(circle at 70% 40%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(8, 3, 19, 0.92) 0%, rgba(20, 7, 42, 0.66) 48%, rgba(8, 3, 19, 0.34) 100%),
    url("assets/college-park-sign.jpg");
}

html[data-site-slug="collegepark"] .real-estate-card-media {
  background-image:
    radial-gradient(circle at 70% 42%, rgba(245, 158, 11, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 3, 19, 0.12), rgba(8, 3, 19, 0.62)),
    url("assets/college-park-sign.jpg");
  background-position: center;
}

html[data-site-slug="collegepark"] .hero-kicker,
html[data-site-slug="collegepark"] .hero-domain-pill {
  border-color: rgba(168, 85, 247, 0.38);
  background: rgba(22, 7, 46, 0.72);
  color: #f6f0ff;
  box-shadow: 0 0 26px rgba(124, 58, 237, 0.24);
}

html[data-site-slug="collegepark"] .hero h1,
html[data-site-slug="collegepark"] .hero-copy p {
  text-shadow: 0 4px 24px rgba(8, 3, 19, 0.72);
}

html[data-site-slug="collegepark"] .eyebrow,
html[data-site-slug="collegepark"] .home-news-category,
html[data-site-slug="collegepark"] .home-event-time,
html[data-site-slug="collegepark"] .home-event-action,
html[data-site-slug="collegepark"] .home-news-footer > span {
  color: #6420d2;
}

html[data-site-slug="collegepark"] .mobile-site-menu-nav a[aria-current="page"] {
  border-color: rgba(100, 32, 210, 0.22);
  background: #f4efff;
  color: #4c1d95;
}

@media (max-width: 640px) {
  html[data-site-slug="collegepark"] .brand img {
    width: min(168px, 50vw);
    max-height: 74px;
  }
}

@media (max-width: 380px) {
  .contact-simple-hero .contact-intake-copy h1 {
    font-size: clamp(2.72rem, 12.8vw, 3rem);
  }

  .contact-simple-hero .contact-intake-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .pricing-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Buzz Dashboard theme */
.admin-body {
  --orange: #ff6a18;
  --orange-dark: #ef5a06;
  --admin-ink: #21160f;
  --admin-muted: #715a4b;
  --admin-subtle: #fff3eb;
  --admin-surface: #ffffff;
  --admin-surface-alt: #fffaf7;
  --admin-line: #f1d8ca;
  --admin-line-strong: #e8bfa9;
  --admin-deep: #2a1710;
  --admin-deep-2: #4a2412;
  --admin-accent: #ff6a18;
  --admin-accent-strong: #d94f05;
  --admin-accent-rgb: 255, 106, 24;
  --admin-accent-soft: #fff3eb;
  --admin-accent-soft-strong: #ffe4d2;
  --admin-button-start: #ff7a2d;
  --admin-hover-color: #8f3507;
  --admin-warm: var(--admin-accent);
  --admin-warning: #d97706;
  --admin-shadow: 0 18px 38px rgba(74, 36, 18, 0.1);
  --admin-shadow-soft: 0 8px 22px rgba(74, 36, 18, 0.07);
  color: var(--admin-ink);
  background: var(--admin-subtle);
}

html[data-site-slug="oviedo"] .admin-body,
html[data-admin-site-slug="oviedo"] .admin-body,
.admin-body[data-admin-site-slug="oviedo"] {
  --orange: #0f766e;
  --orange-dark: #0b5f59;
  --admin-ink: #10201f;
  --admin-muted: #586a66;
  --admin-subtle: #eef5f2;
  --admin-surface-alt: #f7fbf9;
  --admin-line: #d7e4df;
  --admin-line-strong: #bed2cc;
  --admin-deep: #102a2a;
  --admin-deep-2: #16423f;
  --admin-accent: #0f766e;
  --admin-accent-strong: #0b5f59;
  --admin-accent-rgb: 15, 118, 110;
  --admin-accent-soft: #ecf8f5;
  --admin-accent-soft-strong: #e7f6f3;
  --admin-button-start: #139587;
  --admin-hover-color: #084c47;
  --admin-shadow: 0 18px 38px rgba(16, 42, 42, 0.09);
  --admin-shadow-soft: 0 8px 22px rgba(16, 42, 42, 0.06);
}

html[data-site-slug="collegepark"] .admin-body,
html[data-admin-site-slug="collegepark"] .admin-body,
.admin-body[data-admin-site-slug="collegepark"] {
  --orange: #6420d2;
  --orange-dark: #4c1d95;
  --admin-ink: #1c1329;
  --admin-muted: #665b73;
  --admin-subtle: #f4efff;
  --admin-surface-alt: #fbf8ff;
  --admin-line: #ddd2f1;
  --admin-line-strong: #c7b3e8;
  --admin-deep: #16072e;
  --admin-deep-2: #27124b;
  --admin-accent: #6420d2;
  --admin-accent-strong: #4c1d95;
  --admin-accent-rgb: 100, 32, 210;
  --admin-accent-soft: #f4efff;
  --admin-accent-soft-strong: #eadcff;
  --admin-button-start: #7c3aed;
  --admin-hover-color: #32126d;
  --admin-shadow: 0 18px 38px rgba(39, 18, 75, 0.1);
  --admin-shadow-soft: 0 8px 22px rgba(39, 18, 75, 0.07);
}

.admin-body:not(.is-admin-unlocked) {
  min-height: 100vh;
  background:
    linear-gradient(
      90deg,
      #ff6a18 0%,
      #ff6a18 33.333%,
      #0f766e 33.333%,
      #0f766e 66.666%,
      #6420d2 66.666%,
      #6420d2 100%
    ) top / 100% 7px no-repeat,
    linear-gradient(108deg, #15100d 0%, #241610 56.8%, #fff7f0 57%, #f8fafc 100%);
}

.admin-body:not(.is-admin-unlocked) .site-header {
  position: relative;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.admin-body:not(.is-admin-unlocked) .site-header .nav-wrap.admin-login-nav {
  grid-template-columns: minmax(0, 1fr) auto auto;
  justify-content: stretch;
  justify-items: stretch;
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.admin-login-network-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  justify-self: start;
  min-width: 0;
}

.admin-body:not(.is-admin-unlocked) .admin-login-network-brand .network-brand-mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #fff;
  color: #15100d;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.admin-body:not(.is-admin-unlocked) .admin-login-network-brand .network-brand-copy {
  min-width: 0;
  color: #fff;
}

.admin-body:not(.is-admin-unlocked) .admin-login-network-brand .network-brand-copy strong {
  color: #fff;
  font-size: 1.38rem;
  letter-spacing: 0;
}

.admin-body:not(.is-admin-unlocked) .admin-login-network-brand .network-brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
}

.admin-login-property-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  justify-self: end;
  min-width: 0;
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.admin-login-property-strip img {
  width: 116px;
  height: 42px;
  padding: 0.24rem 0.34rem;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.admin-body:not(.is-admin-unlocked) .checkout-main {
  min-height: calc(100vh - 94px);
  display: grid;
  align-items: center;
  padding: 1.4rem 0 3.5rem;
}

.admin-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 470px);
  gap: 2.2rem;
  align-items: center;
}

.admin-login-intro {
  display: grid;
  gap: 0.95rem;
  max-width: 650px;
  color: #fff;
}

.admin-login-intro .eyebrow {
  color: #ffc07a;
}

.admin-login-intro h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.admin-login-intro p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.admin-login-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.admin-login-brand-card {
  min-height: 86px;
  display: grid;
  align-items: center;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.admin-login-brand-card img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.admin-login-ops-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.admin-login-ops-row span {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-login-ops-row strong,
.admin-login-ops-row small {
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.admin-login-ops-row strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.2;
}

.admin-login-ops-row small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.admin-login-card {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 470px);
  max-width: 470px;
  margin: 0;
  padding: 1.45rem;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--admin-surface-alt) 0%, #ffffff 58%),
    #fff;
  box-shadow: 0 24px 54px rgba(23, 16, 12, 0.16);
}

.admin-login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      #ff6a18 0%,
      #ff6a18 33.333%,
      #0f766e 33.333%,
      #0f766e 66.666%,
      #6420d2 66.666%,
      #6420d2 100%
    );
}

.admin-login-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-login-card-top .eyebrow {
  margin: 0;
}

.admin-login-lock {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--admin-accent-rgb), 0.22);
  border-radius: 8px;
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
}

.admin-login-lock svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.admin-login-card .eyebrow,
.admin-tools-head .eyebrow,
.admin-settings-section-head .eyebrow,
.admin-businesses-card > .admin-tools-head .eyebrow,
.admin-orders-card > .admin-tools-head .eyebrow,
.admin-real-estate-card > .admin-tools-head .eyebrow,
.admin-events-card > .admin-tools-head .eyebrow,
.admin-articles-card > .admin-tools-head .eyebrow,
.admin-pricing-card > .admin-tools-head .eyebrow {
  color: var(--admin-accent-strong);
}

.admin-login-card h1,
.admin-login-card h2 {
  margin: 0;
  color: var(--admin-ink);
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.admin-login-card .summary-description,
#admin-auth-status {
  color: var(--admin-muted);
}

.admin-login-form {
  gap: 1rem;
  margin-top: 0.35rem;
}

.admin-login-form .button {
  min-height: 52px;
  border-radius: 8px;
}

#admin-auth-status {
  min-height: 3.1rem;
}

.admin-password-field {
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  color: var(--admin-ink);
}

.admin-password-field input,
.admin-order-editor-form input:not([type="checkbox"]),
.admin-order-editor-form select,
.admin-order-editor-form textarea,
.admin-business-search input,
.admin-business-category-filter select,
.admin-business-tier-filter select,
.admin-site-select,
.admin-tax-year-field select {
  border-color: var(--admin-line);
  border-radius: 8px;
  background: #fff;
  color: var(--admin-ink);
  box-shadow: inset 0 1px 0 rgba(16, 42, 42, 0.03);
}

.admin-password-field input:focus,
.admin-order-editor-form input:not([type="checkbox"]):focus,
.admin-order-editor-form select:focus,
.admin-order-editor-form textarea:focus,
.admin-business-search input:focus,
.admin-business-category-filter select:focus,
.admin-business-tier-filter select:focus,
.admin-site-select:focus,
.admin-tax-year-field select:focus {
  border-color: rgba(var(--admin-accent-rgb), 0.6);
  outline: 3px solid rgba(var(--admin-accent-rgb), 0.16);
  outline-offset: 1px;
}

.admin-password-toggle {
  border-color: rgba(var(--admin-accent-rgb), 0.26);
  border-radius: 8px;
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
}

.admin-password-toggle:focus-visible,
.admin-section-button:focus-visible,
.admin-stat-button:focus-visible,
button.admin-metric-card:focus-visible {
  outline-color: rgba(var(--admin-accent-rgb), 0.22);
}

.admin-body .button-primary,
.admin-body .button-accent {
  border: 1px solid rgba(var(--admin-accent-rgb), 0.25);
  background: linear-gradient(180deg, var(--admin-button-start) 0%, var(--admin-accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(var(--admin-accent-rgb), 0.2);
}

.admin-body .button-outline {
  border-color: rgba(var(--admin-accent-rgb), 0.28);
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
  box-shadow: none;
}

.admin-body .button-outline:hover,
.admin-body .button-outline:focus-visible {
  border-color: rgba(var(--admin-accent-rgb), 0.5);
  background: var(--admin-accent-soft-strong);
  color: var(--admin-hover-color);
}

.admin-body.is-admin-unlocked {
  background: var(--admin-subtle);
}

.admin-body.is-admin-unlocked .admin-login-shell {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

.admin-body.is-admin-unlocked .admin-login-intro {
  display: none;
}

.admin-app-shell {
  color: var(--admin-ink);
  background:
    linear-gradient(180deg, var(--admin-surface-alt) 0%, var(--admin-subtle) 300px),
    var(--admin-subtle);
}

.admin-sidebar {
  border-right: 0;
  background:
    linear-gradient(180deg, var(--admin-deep) 0%, var(--admin-deep-2) 100%);
  box-shadow: 12px 0 34px rgba(16, 42, 42, 0.18);
}

.admin-sidebar-logo {
  padding: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 28px rgba(0, 0, 0, 0.12);
}

.admin-sidebar-kicker {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #c7d9d5;
}

.admin-sidebar .admin-section-nav,
.admin-sidebar-footer {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.admin-section-button {
  border-radius: 8px;
  color: #dbe8e4;
}

.admin-section-button:hover,
.admin-section-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  box-shadow: none;
}

.admin-section-button.is-active {
  border-color: rgba(242, 184, 75, 0.5);
  background:
    linear-gradient(90deg, rgba(var(--admin-accent-rgb), 0.42), rgba(217, 119, 6, 0.16));
  color: #fff;
  box-shadow: inset 3px 0 0 var(--admin-warm);
}

.admin-nav-icon {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #b7d6cf;
}

.admin-section-button:hover .admin-nav-icon,
.admin-section-button:focus-visible .admin-nav-icon,
.admin-section-button.is-active .admin-nav-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.admin-settings-button {
  color: #dbe8e4;
}

.admin-sidebar-logout {
  color: #ffc9c9;
}

.admin-sidebar-logout:hover,
.admin-sidebar-logout:focus-visible {
  border-color: rgba(255, 201, 201, 0.26);
  background: rgba(255, 201, 201, 0.1);
  color: #fff;
}

.admin-main {
  background:
    linear-gradient(180deg, var(--admin-surface-alt) 0%, var(--admin-subtle) 100%);
}

.admin-main-header {
  border-color: var(--admin-line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), var(--admin-surface-alt));
  box-shadow: var(--admin-shadow-soft);
}

.admin-main-header h1,
.admin-panel-head h2,
.admin-tools-head h2,
.admin-settings-section-head h2 {
  color: var(--admin-ink);
}

.admin-main-header p,
.admin-tool-subcopy,
#admin-action-status,
#admin-business-status,
#admin-real-estate-status,
#admin-real-estate-provider-status,
#admin-event-status,
#admin-article-status,
#admin-pricing-status,
#admin-coupons-status,
.admin-dashboard-row span,
.admin-dashboard-order-row span,
.admin-dashboard-order-row time,
.admin-dashboard-card .admin-dashboard-row span,
.admin-dashboard-card .admin-dashboard-order-row span:not(.workflow-pill),
.admin-dashboard-card .admin-dashboard-order-row time {
  color: var(--admin-muted);
}

.admin-site-switcher span {
  color: var(--admin-ink);
}

.admin-range-pill {
  border-color: var(--admin-line);
  background: #fff;
  color: var(--admin-ink);
}

.admin-panel,
.admin-dashboard-card,
.admin-dashboard-panel,
.admin-businesses-card,
.admin-orders-card,
.admin-real-estate-card,
.admin-events-card,
.admin-pricing-card,
.admin-articles-card,
.admin-settings-card,
.admin-coupons-card,
.admin-tax-panel,
.admin-tools-card {
  border-color: var(--admin-line);
  border-radius: 10px;
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow-soft);
}

.admin-dashboard-card,
.admin-businesses-card,
.admin-orders-card,
.admin-real-estate-card,
.admin-events-card,
.admin-articles-card,
.admin-pricing-card {
  background:
    linear-gradient(180deg, var(--admin-surface-alt) 0%, rgba(255, 255, 255, 0) 190px),
    var(--admin-surface);
}

.admin-businesses-card > .admin-tools-head,
.admin-orders-card > .admin-tools-head,
.admin-real-estate-card > .admin-tools-head,
.admin-events-card > .admin-tools-head,
.admin-articles-card > .admin-tools-head,
.admin-pricing-card > .admin-tools-head,
.admin-panel-head,
.admin-alert-head,
.admin-dashboard-card .admin-panel-head,
.admin-settings-section-head {
  border-color: var(--admin-line);
  background:
    linear-gradient(90deg, var(--admin-accent-soft), rgba(255, 255, 255, 0.96));
}

.admin-dashboard-card .admin-metric-card,
.admin-metric-card,
.admin-stat,
.admin-pricing-metric,
.admin-alert-panel,
.admin-dashboard-card .admin-dashboard-panel,
.admin-business-toolbar,
.admin-paid-orders-panel,
.admin-pricing-area,
.admin-editor-form,
.admin-settings-section-head,
.admin-orders-list,
.admin-businesses-list,
.admin-articles-list,
.admin-real-estate-list,
.admin-paid-orders-list {
  border-color: var(--admin-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--admin-shadow-soft);
}

.admin-dashboard-card .admin-metric-card::before {
  background: var(--admin-line-strong);
}

.admin-dashboard-card .admin-metric-orange::before {
  background: var(--admin-warm);
}

.admin-dashboard-card .admin-metric-green::before {
  background: var(--admin-accent);
}

.admin-dashboard-card .admin-metric-blue::before {
  background: #2563eb;
}

.admin-metric-copy strong,
.admin-dashboard-card .admin-metric-copy strong,
.admin-dashboard-row strong,
.admin-dashboard-order-row strong,
.admin-dashboard-card .admin-dashboard-row strong,
.admin-dashboard-card .admin-dashboard-order-row strong,
.admin-alert-head strong,
.admin-alert-row strong,
.admin-business-card h3,
.admin-article-card-copy h3,
.admin-real-estate-copy h3,
.admin-order-card h3 {
  color: var(--admin-ink);
}

.admin-metric-label,
.admin-dashboard-card .admin-metric-label,
.admin-pricing-metric span,
.admin-stat span {
  color: #58716c;
}

.admin-metric-orange .admin-metric-note,
.admin-dashboard-card .admin-metric-orange .admin-metric-note {
  color: var(--admin-accent-strong);
}

.admin-metric-green .admin-metric-note,
.admin-dashboard-card .admin-metric-green .admin-metric-note {
  color: var(--admin-accent-strong);
}

.admin-metric-blue .admin-metric-note,
.admin-dashboard-card .admin-metric-blue .admin-metric-note {
  color: #1d4ed8;
}

.admin-metric-icon,
.admin-dashboard-card .admin-metric-icon {
  border-radius: 8px;
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
  box-shadow: none;
}

.admin-metric-orange .admin-metric-icon,
.admin-dashboard-card .admin-metric-orange .admin-metric-icon {
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
}

.admin-metric-green .admin-metric-icon,
.admin-dashboard-card .admin-metric-green .admin-metric-icon {
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
}

.admin-metric-blue .admin-metric-icon,
.admin-dashboard-card .admin-metric-blue .admin-metric-icon {
  background: #eff6ff;
  color: #1d4ed8;
}

.admin-alert-row.is-warning,
.admin-alert-row.is-overdue {
  background: #fffaf0;
}

.admin-alert-icon {
  border-color: rgba(217, 119, 6, 0.22);
  border-radius: 8px;
  background: #fff7ed;
  color: #b45309;
}

.admin-stat-button:hover,
.admin-stat-button:focus-visible,
.admin-filter-button:hover,
.admin-filter-button:focus-visible,
.admin-businesses-card .admin-filter-button:hover,
.admin-businesses-card .admin-filter-button:focus-visible,
.admin-orders-card .admin-filter-button:hover,
.admin-orders-card .admin-filter-button:focus-visible {
  border-color: rgba(var(--admin-accent-rgb), 0.34);
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
  box-shadow: none;
}

.admin-stat-button.is-active,
.admin-filter-button.is-active,
.admin-businesses-card .admin-filter-button.is-active,
.admin-orders-card .admin-filter-button.is-active {
  border-color: rgba(var(--admin-accent-rgb), 0.46);
  background: var(--admin-accent-soft-strong);
  color: var(--admin-accent-strong);
  box-shadow: inset 3px 0 0 var(--admin-accent);
}

.admin-order-card,
.admin-business-card,
.admin-article-card,
.admin-real-estate-row,
.admin-paid-order-row,
.admin-dashboard-row,
.admin-dashboard-order-row,
.admin-alert-row {
  border-color: var(--admin-line);
  background: #fff;
}

.admin-order-card:hover,
.admin-business-card:hover,
.admin-article-card:hover,
.admin-real-estate-row:hover,
.admin-paid-order-row:hover,
.admin-dashboard-row:hover,
.admin-dashboard-order-row:hover,
.admin-alert-row:hover {
  background: var(--admin-surface-alt);
}

.admin-business-card.is-expanded {
  background: var(--admin-surface-alt);
}

.admin-pricing-area[open] {
  border-color: rgba(var(--admin-accent-rgb), 0.24);
  box-shadow: 0 12px 28px rgba(var(--admin-accent-rgb), 0.08);
}

.admin-pricing-area-head {
  background: linear-gradient(90deg, var(--admin-accent-soft) 0%, #fff 100%);
}

.admin-body .workflow-pill {
  border-color: rgba(var(--admin-accent-rgb), 0.18);
  background: var(--admin-accent-soft);
  color: var(--admin-accent-strong);
}

.admin-body .workflow-pill.is-featured {
  border-color: rgba(217, 119, 6, 0.22);
  background: #fff7ed;
  color: #b45309;
}

.admin-body .workflow-pill.is-denied {
  border-color: rgba(159, 29, 29, 0.2);
  background: #fff1f2;
  color: #9f1d1d;
}

.admin-body .workflow-pill.is-default {
  border-color: var(--admin-line);
  background: var(--admin-surface-alt);
  color: var(--admin-muted);
}

.admin-body .button-danger {
  border-color: #9f1d1d;
  background: #9f1d1d;
  color: #fff;
}

@media (max-width: 980px) {
  .admin-body:not(.is-admin-unlocked) {
    background:
      linear-gradient(
        90deg,
        #ff6a18 0%,
        #ff6a18 33.333%,
        #0f766e 33.333%,
        #0f766e 66.666%,
        #6420d2 66.666%,
        #6420d2 100%
      ) top / 100% 7px no-repeat,
      linear-gradient(180deg, #15100d 0%, #241610 520px, #fff7f0 520px, #f8fafc 100%);
  }

  .admin-body:not(.is-admin-unlocked) .checkout-main {
    align-items: start;
    padding: 1rem 0 2.6rem;
  }

  .admin-login-shell {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 760px;
  }

  .admin-login-intro {
    max-width: none;
  }

  .admin-login-intro h1 {
    max-width: 12ch;
    font-size: 3.55rem;
  }

  .admin-login-card {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .admin-body:not(.is-admin-unlocked) {
    background:
      linear-gradient(
        90deg,
        #ff6a18 0%,
        #ff6a18 33.333%,
        #0f766e 33.333%,
        #0f766e 66.666%,
        #6420d2 66.666%,
        #6420d2 100%
      ) top / 100% 7px no-repeat,
      linear-gradient(180deg, #15100d 0%, #241610 590px, #fff7f0 590px, #f8fafc 100%);
  }

  .admin-body:not(.is-admin-unlocked) .site-header .nav-wrap.admin-login-nav {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 0.95rem;
    padding-bottom: 0.55rem;
  }

  .admin-login-property-strip {
    justify-self: stretch;
    width: 100%;
    overflow-x: auto;
    box-shadow: none;
  }

  .admin-login-property-strip img {
    flex: 0 0 106px;
    width: 106px;
    height: 38px;
  }

  .admin-login-intro {
    gap: 0.75rem;
  }

  .admin-login-intro h1 {
    font-size: 2.95rem;
  }

  .admin-login-intro p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .admin-login-brand-grid,
  .admin-login-ops-row {
    display: none;
  }

  .admin-login-card {
    padding: 1.08rem;
  }

  .admin-login-card h1,
  .admin-login-card h2 {
    font-size: 2.35rem;
  }

  #admin-auth-status {
    min-height: auto;
  }

  .admin-sidebar-logo {
    padding: 0.58rem;
  }

  .admin-body.is-admin-unlocked .admin-sidebar .admin-section-nav {
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 0.42rem;
    scrollbar-width: none;
  }

  .admin-body.is-admin-unlocked .admin-sidebar .admin-section-nav::-webkit-scrollbar {
    display: none;
  }

  .admin-body.is-admin-unlocked .admin-section-button {
    min-width: 108px;
    justify-content: flex-start;
    gap: 0.42rem;
    padding: 0.42rem 0.62rem;
    white-space: nowrap;
  }

  .admin-body.is-admin-unlocked .admin-section-button[data-admin-section="realEstate"] {
    min-width: 124px;
  }

  .admin-body.is-admin-unlocked .admin-section-button span:last-child {
    display: inline;
  }

  .admin-main-header {
    border-radius: 10px;
  }
}

/* Order queue polish */
.admin-orders-card .admin-orders-list {
  gap: 0.55rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-orders-card .admin-filter-bar {
  width: fit-content;
  gap: 0.18rem;
  margin: -0.1rem 0 0.1rem;
  padding: 0.18rem;
  border-radius: 9px;
  box-shadow: none;
}

.admin-orders-card .admin-filter-button {
  min-height: 30px;
  padding: 0 0.56rem;
  border-radius: 7px;
  font-size: 0.72rem;
}

.admin-orders-card .admin-filter-button.is-active {
  box-shadow: inset 2px 0 0 var(--admin-accent);
}

.admin-orders-card .admin-order-list-head {
  grid-template-columns: minmax(230px, 1.32fr) minmax(132px, 0.52fr) minmax(92px, 0.32fr) minmax(126px, 0.42fr) minmax(410px, 0.86fr);
  min-height: 32px;
  padding: 0 0.7rem;
  border: 0;
  background: transparent;
  color: #6b7886;
  font-size: 0.63rem;
  letter-spacing: 0.055em;
}

.admin-orders-card .admin-order-card {
  grid-template-columns: minmax(230px, 1.32fr) minmax(132px, 0.52fr) minmax(92px, 0.32fr) minmax(126px, 0.42fr) minmax(410px, 0.86fr);
  gap: 0.46rem 0.72rem;
  align-items: center;
  padding: 0.66rem 0.72rem;
  border-radius: 8px;
  box-shadow: none;
}

.admin-orders-card .admin-order-card.is-expanded {
  align-items: start;
  border-color: rgba(var(--admin-accent-rgb, 15, 118, 110), 0.2);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.admin-orders-card .admin-order-primary {
  gap: 0.12rem;
}

.admin-orders-card .admin-order-plan {
  margin: 0;
  color: var(--admin-accent-strong, #0f766e);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.admin-orders-card .admin-order-card h3 {
  font-size: 0.98rem;
  line-height: 1.16;
}

.admin-orders-card .admin-order-primary > span {
  font-size: 0.78rem;
}

.admin-orders-card .admin-order-cell {
  gap: 0.08rem;
  font-size: 0.8rem;
}

.admin-orders-card .admin-order-cell time,
.admin-orders-card .admin-order-cell strong {
  font-weight: 800;
}

.admin-orders-card .admin-order-status-cell .workflow-pill {
  min-height: 23px;
  padding: 0 0.5rem;
  font-size: 0.63rem;
}

.admin-orders-card .admin-order-actions {
  gap: 0.3rem;
  align-content: start;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.admin-orders-card .admin-order-actions .button {
  min-height: 30px;
  padding: 0 0.5rem;
  border-radius: 7px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.admin-orders-card .admin-order-actions .admin-stage-button.button-primary {
  order: 1;
}

.admin-orders-card .admin-order-actions .admin-stage-button.button-outline {
  order: 2;
}

.admin-orders-card .admin-order-actions .admin-detail-toggle {
  order: 3;
}

.admin-orders-card .admin-order-actions .admin-order-edit-button,
.admin-orders-card .admin-order-actions .admin-real-estate-order-edit {
  order: 4;
}

.admin-orders-card .admin-order-actions .admin-order-delete-button {
  order: 5;
  min-width: 0;
  border-color: rgba(159, 29, 29, 0.28);
  background: #fff;
  color: #9f1d1d;
}

.admin-orders-card .admin-order-actions .admin-stage-button.button-primary {
  min-width: 72px;
}

.admin-orders-card .admin-order-details {
  margin-top: 0.08rem;
  padding-top: 0.72rem;
  border-top-color: var(--admin-line, #dfe6ef);
}

.admin-orders-card .admin-submission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 164px);
  gap: 0.8rem;
}

.admin-orders-card .admin-submission-details {
  gap: 0.62rem;
}

.admin-orders-card .admin-order-review-meta,
.admin-orders-card .admin-order-pending-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 0.85rem;
}

.admin-orders-card .admin-order-fact {
  min-height: 0;
  grid-template-columns: minmax(88px, 0.34fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 0.52rem;
  padding: 0.42rem 0;
  border: 0;
  border-bottom: 1px solid #edf2f6;
  border-radius: 0;
  background: transparent;
}

.admin-orders-card .admin-order-fact.is-wide,
.admin-orders-card .admin-order-fact.is-full {
  grid-column: 1 / -1;
}

.admin-orders-card .admin-order-fact strong {
  color: #6b7886;
  font-size: 0.62rem;
  letter-spacing: 0.052em;
}

.admin-orders-card .admin-order-fact em {
  color: var(--admin-ink, #111827);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.32;
}

.admin-orders-card .admin-order-fact.is-empty {
  opacity: 0.62;
}

.admin-orders-card .admin-submission-note-grid {
  gap: 0.55rem;
}

.admin-orders-card .admin-submission-copy {
  min-height: 0;
  padding: 0.66rem 0.72rem;
  border-color: var(--admin-line, #dfe6ef);
  border-radius: 8px;
  background: var(--admin-surface-alt, #f8fafc);
}

.admin-orders-card .admin-submission-copy strong {
  font-size: 0.62rem;
  letter-spacing: 0.052em;
}

.admin-orders-card .admin-submission-copy p {
  font-size: 0.86rem;
}

.admin-orders-card .admin-submission-image {
  gap: 0.48rem;
  padding: 0.42rem;
  border-radius: 8px;
  box-shadow: none;
}

.admin-orders-card .admin-submission-image img {
  max-height: 132px;
  border-radius: 7px;
}

.admin-orders-card .admin-submission-empty {
  min-height: 76px;
  padding: 0.75rem;
  border-radius: 8px;
  background: #fff;
  color: #667085;
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .admin-orders-card .admin-order-list-head {
    display: none;
  }

  .admin-orders-card .admin-order-card,
  .admin-orders-card .admin-order-card.is-expanded {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 0.86rem;
  }

  .admin-orders-card .admin-order-cell {
    grid-column: 1;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.55rem;
  }

  .admin-orders-card .admin-order-cell > span {
    display: block;
    color: #6b7886;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.052em;
    text-transform: uppercase;
  }

  .admin-orders-card .admin-order-actions {
    grid-column: 2;
    grid-row: 1;
    max-width: 240px;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .admin-orders-card .admin-order-card,
  .admin-orders-card .admin-order-card.is-expanded,
  .admin-orders-card .admin-submission-grid,
  .admin-orders-card .admin-order-review-meta,
  .admin-orders-card .admin-order-pending-meta {
    grid-template-columns: 1fr;
  }

  .admin-orders-card .admin-order-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: stretch;
    padding-top: 0.62rem;
    max-width: none;
    flex-wrap: wrap;
  }

  .admin-orders-card .admin-order-actions .button {
    flex: 1 1 132px;
  }

  .admin-orders-card .admin-order-fact {
    grid-template-columns: 1fr;
    gap: 0.16rem;
  }
}

/* Admin usability pass */
.admin-range-note {
  justify-content: flex-start;
  padding-inline: 0;
  border-color: transparent;
  background: transparent;
  color: var(--admin-muted, #64748b);
  cursor: default;
  box-shadow: none;
}

.admin-settings-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.5rem;
  border: 1px solid var(--admin-line, #dfe6ef);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--admin-shadow-soft, 0 12px 28px rgba(15, 23, 42, 0.06));
}

.admin-settings-nav .admin-filter-button {
  min-height: 38px;
}

.admin-business-form-host:empty {
  display: none;
}

.admin-business-browser {
  display: grid;
  gap: 0.95rem;
}

.admin-business-browser .admin-business-toolbar,
.admin-business-browser .admin-filter-bar {
  margin: 0;
}

.admin-business-form.admin-editor-form {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--admin-line, #dfe6ef);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--admin-shadow-soft, 0 12px 28px rgba(15, 23, 42, 0.06));
}

.admin-business-edit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--admin-line, #dfe6ef);
}

.admin-business-edit-copy {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

.admin-business-edit-copy .eyebrow {
  margin: 0;
}

.admin-business-edit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.admin-business-edit-note {
  max-width: 820px;
  margin: 0;
  color: var(--admin-muted, #64748b);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.4;
}

.admin-business-edit-head .admin-tools-actions {
  flex: 0 0 auto;
}

.admin-business-back-button {
  white-space: nowrap;
}

.admin-business-delete-button,
.admin-real-estate-listing-delete,
.admin-article-delete,
.admin-event-delete,
.admin-order-delete-button,
[data-home-carousel-action="delete"],
[data-coupon-action="delete"] {
  margin-left: auto;
}

@media (max-width: 760px) {
  .admin-body.is-admin-unlocked .admin-sidebar-footer {
    display: grid;
  }

  .admin-business-edit-head {
    display: grid;
  }

  .admin-business-edit-head .admin-tools-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .admin-body.is-admin-unlocked .admin-sidebar .admin-section-nav {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .admin-body.is-admin-unlocked .admin-sidebar-footer {
    display: grid;
    padding: 0.38rem;
  }

  .admin-body.is-admin-unlocked .admin-sidebar-footer .admin-section-button {
    width: 100%;
  }

  .admin-body.is-admin-unlocked .admin-section-button {
    min-height: 48px;
  }

  .admin-body.is-admin-unlocked .admin-section-button span:last-child {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-settings-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0.42rem;
  }

  .admin-settings-nav .admin-filter-button {
    width: 100%;
    min-width: 0;
    padding: 0 0.45rem;
  }
}
