:root {
  color-scheme: dark;
  --site-header-offset: 84px;
  --bg: #080a0f;
  --bg-soft: #10141f;
  --card: #171d29;
  --card-2: #1b2332;
  --line: #2b3548;
  --ink: #eef4ff;
  --ink-soft: #a4b0c5;
  --muted: #78859c;
  --accent: #64b5f6;
  --accent-strong: #2f9cff;
  --wing: #ffad46;
  --late: #ce93d8;
  --happy: #64b5f6;
  --gold: #d8bc7a;
  --page-radial: #263651;
  --page-top: #0c111a;
  --page-bottom: #0b0f18;
  --link: var(--accent);
  --link-hover: #8cc7ff;
  --header-bg: rgba(10, 13, 20, 0.92);
  --header-line: rgba(255, 255, 255, 0.08);
  --logo-mark-from: #111926;
  --logo-mark-to: #233148;
  --logo-mark-border: #3b4b64;
  --logo-text: #f6f8ff;
  --tagline-text: #9aa8bf;
  --nav-bg: #121927;
  --nav-border: #2f3e58;
  --nav-text: #d7e4f4;
  --nav-border-hover: #49658f;
  --section-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
  --heading: #ffffff;
  --panel-copy: #b2bfd5;
  --input-bg: #0f1725;
  --input-border: #3b4e6b;
  --input-text: #dce9f8;
  --input-placeholder: #8191ab;
  --interactive-bg: #121c2c;
  --interactive-border: #3b4d69;
  --interactive-text: #d8e7fa;
  --ad-placeholder-border: #3f516a;
  --ad-placeholder-bg: rgba(20, 30, 45, 0.65);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f2f6fa;
  --bg-soft: #ffffff;
  --card: #f9fbfd;
  --card-2: #ffffff;
  --line: #ccd8e5;
  --ink: #152235;
  --ink-soft: #4b6078;
  --muted: #60748d;
  --accent: #0f68ba;
  --accent-strong: #0a4f92;
  --happy: #1568b5;
  --gold: #9a7d35;
  --page-radial: #dde9f4;
  --page-top: #fcfdff;
  --page-bottom: #f4f8fc;
  --link: #0f68ba;
  --link-hover: #0a4f92;
  --header-bg: rgba(252, 254, 255, 0.96);
  --header-line: rgba(18, 34, 53, 0.1);
  --logo-mark-from: #ffffff;
  --logo-mark-to: #edf3f9;
  --logo-mark-border: #c5d4e3;
  --logo-text: #132033;
  --tagline-text: #60748d;
  --nav-bg: #f8fbff;
  --nav-border: #c3d3e4;
  --nav-text: #15304f;
  --nav-border-hover: #7aa2cb;
  --section-shadow: 0 12px 30px rgba(31, 59, 92, 0.07);
  --heading: #162235;
  --panel-copy: #556981;
  --input-bg: #fbfdff;
  --input-border: #bacbdb;
  --input-text: #173252;
  --input-placeholder: #6e829b;
  --interactive-bg: #f8fbff;
  --interactive-border: #c3d3e4;
  --interactive-text: #173252;
  --ad-placeholder-border: #c7d7e6;
  --ad-placeholder-bg: rgba(236, 243, 250, 0.88);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(1200px 420px at 50% -180px, var(--page-radial) 0%, transparent 72%),
    linear-gradient(180deg, var(--page-top) 0%, var(--page-top) 240px, var(--page-bottom) 100%);
  min-height: 100vh;
  line-height: 1.5;
}

a {
  color: var(--link);
}

a:hover {
  color: var(--link-hover);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.3rem;
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: blur(8px);
}

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

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(140deg, var(--logo-mark-from), var(--logo-mark-to));
  border: 1px solid var(--logo-mark-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  font-size: 1.1rem;
}

.brand-copy {
  min-width: 0;
}

.logo {
  color: var(--logo-text);
  text-decoration: none;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0.18rem 0 0;
  color: var(--tagline-text);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: nowrap;
}

.top-nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: nowrap;
  align-items: center;
}

.top-nav a {
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: var(--nav-bg);
  padding: 0.45rem 0.84rem;
}

.top-nav a:hover {
  border-color: var(--nav-border-hover);
}

.theme-toggle {
  min-width: 0;
  padding: 0.22rem 0.24rem;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: var(--nav-bg);
  color: var(--nav-text);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.theme-toggle:hover {
  border-color: var(--nav-border-hover);
}

.theme-toggle-track {
  position: relative;
  width: 2.9rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(113, 137, 172, 0.55);
  background: linear-gradient(135deg, #d8e4f1, #f4f8fc);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  flex: 0 0 2.9rem;
}

.theme-toggle-thumb {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 1.16rem;
  height: 1.16rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #edf2f7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle[data-preference="system"] .theme-toggle-thumb {
  transform: translateX(0.66rem);
}

.theme-toggle[data-preference="dark"] .theme-toggle-thumb {
  transform: translateX(1.34rem);
}

.theme-toggle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.76rem;
  line-height: 1;
  opacity: 0.92;
  z-index: 1;
}

.theme-toggle-icon-light {
  left: 0.28rem;
  color: #d38b11;
}

.theme-toggle-icon-dark {
  right: 0.3rem;
  color: #6a63bf;
}

.theme-toggle-label {
  min-width: 0;
  text-align: left;
  letter-spacing: 0.01em;
}

.theme-toggle[data-resolved="dark"] .theme-toggle-track {
  background: linear-gradient(135deg, #121b29, #2d3d56);
  border-color: rgba(100, 130, 170, 0.62);
}

.theme-toggle[data-resolved="dark"] .theme-toggle-thumb {
  background: linear-gradient(180deg, #f4f7fb, #d8e0ea);
}

.top-nav a:focus-visible,
.theme-toggle:focus-visible,
.tab:focus-visible,
button:focus-visible,
.btn-ghost:focus-visible,
.filter-input:focus-visible,
.deal-chip-link:focus-visible,
.city-cta:focus-visible,
.deal-menu-link:focus-visible,
.verify-link:focus-visible,
.icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 1rem 1.4rem;
}

.hero,
.panel,
.venue-card,
.city-card,
.province-card,
.province-block,
.ad-slot {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: var(--section-shadow);
}

.hero,
.panel,
.province-block {
  padding: 1rem 1.08rem;
  margin-bottom: 1rem;
}

.hero h1,
.panel h2,
.panel h3 {
  margin: 0;
  color: var(--heading);
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.hero p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

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

.last-updated {
  font-size: 0.9rem;
  color: #8d9bb4;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, auto);
  gap: 1rem 1.4rem;
  align-items: center;
  text-align: left;
}

.home-hero-copy {
  max-width: 46rem;
}

.hero-actions {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.home-hero-search-wrap {
  margin-top: 1rem;
  max-width: 33rem;
}

.hero-search-label {
  margin: 0 0 0.45rem;
  color: #d7e5f6;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-search {
  position: relative;
}

.site-search-header {
  flex: 1 1 18rem;
  min-width: 15rem;
  max-width: 24rem;
}

.site-search-hero {
  width: 100%;
  max-width: 32rem;
}

.site-search-input {
  width: 100%;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 0.38rem);
  left: 0;
  right: 0;
  z-index: 35;
  display: grid;
  gap: 0.22rem;
  padding: 0.34rem;
  border: 1px solid rgba(128, 159, 196, 0.28);
  border-radius: 14px;
  background: rgba(10, 16, 24, 0.97);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.site-search-results[hidden] {
  display: none;
}

.site-search-result {
  display: grid;
  gap: 0.08rem;
  padding: 0.58rem 0.66rem;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(18, 28, 44, 0.9);
  border: 1px solid transparent;
}

.site-search-result:hover {
  border-color: rgba(126, 167, 206, 0.38);
  background: rgba(23, 38, 60, 0.96);
}

.site-search-result-kind {
  color: #8eb4de;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-search-result-label {
  color: #f3f8ff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.site-search-result-hint {
  color: #9db2cd;
  font-size: 0.78rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ac864a;
  border-radius: 999px;
  background: linear-gradient(145deg, #cba35e, #e0c17f);
  color: #1a1407;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  border-color: #d2a760;
  color: #120d04;
}

.near-me-btn {
  min-width: 10.2rem;
}

.near-me-btn:hover {
  color: #120d04;
}

.location-status {
  margin: 0;
  font-size: 0.84rem;
  color: #9bb0cc;
  min-height: 1.2rem;
}

.location-status[data-state="success"] {
  color: #84d7a5;
}

.location-status[data-state="error"] {
  color: #f0b0b0;
}

.location-status[data-state="pending"] {
  color: #d9c088;
}

.hero-updated {
  margin: 0;
  font-size: 0.8rem;
  color: #8d9bb4;
}

.deal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid #38465f;
  background: #111a2a;
  color: #dbe8fa;
}

.deal-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
  font-size: 0.92rem;
  line-height: 1;
}

.deal-chip-icon svg {
  width: 100%;
  height: 100%;
}

.deal-chip-link {
  text-decoration: none;
}

.deal-chip.happy {
  border-color: #2f6290;
  color: #8cc8ff;
}

.deal-chip.wing {
  border-color: #90591f;
  color: #ffc983;
}

.deal-chip.late {
  border-color: #704c8f;
  color: #dec0f4;
}

.trust-panel h3 {
  margin-bottom: 0.72rem;
}

.verification-banner {
  margin: 0.15rem 0 1rem;
  padding: 0.62rem 1rem;
  border-radius: 12px;
  border: 1px solid #365b83;
  background: linear-gradient(180deg, rgba(19, 37, 58, 0.96), rgba(16, 28, 43, 0.96));
}

.verification-banner p {
  margin: 0;
  color: #c8d7ea;
}

.verification-banner .verification-title {
  margin: 0;
  color: #e7f1ff;
  font-weight: 800;
}

.verification-banner-compact {
  margin: 0.75rem 0 0;
  padding: 0.54rem 0.8rem;
}

.verification-detail {
  color: #9aadca;
  font-weight: 400;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.5rem;
}

.trust-grid p {
  margin: 0;
  color: #b2bfd5;
  padding: 0.58rem 0.64rem;
  border: 1px solid #334159;
  border-radius: 8px;
  background: #121a27;
}

.crumbs {
  margin-bottom: 0.7rem;
  font-size: 0.83rem;
  color: #8b99b2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.crumbs a {
  color: #9abce0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  margin-top: 0.66rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #334864;
  color: #d9e7fb;
  background: #101c2d;
  font-size: 0.79rem;
  font-weight: 700;
}

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

.section-head h2 {
  margin: 0;
  font-size: 1.18rem;
}

.section-intro {
  margin: 0.28rem 0 0;
  color: var(--panel-copy);
  font-size: 0.93rem;
  line-height: 1.55;
}

.filter-row {
  margin-top: 0.74rem;
  display: flex;
  gap: 0.66rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-input {
  width: min(100%, 280px);
  border-radius: 8px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  padding: 0.56rem 0.72rem;
  font: inherit;
}

.filter-input::placeholder {
  color: var(--input-placeholder);
}

.result-count {
  margin: 0;
  color: #90a1bb;
  font-size: 0.88rem;
  white-space: nowrap;
}

.province-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.province-card,
.city-card {
  padding: 0.86rem 0.94rem;
}

.province-card h3,
.city-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.province-card h3 a,
.city-card h3 a {
  color: #edf4ff;
}

.province-meta,
.city-meta {
  margin: 0.38rem 0 0.44rem;
  color: #9cb0ca;
  font-size: 0.88rem;
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.34rem;
}

.city-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #324157;
  background: #121a28;
  padding: 0.44rem 0.55rem;
}

.city-item a {
  color: #dfeeff;
}

.city-item .city-meta {
  margin: 0;
}

.city-grid {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.home-city-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.home-directory-panel {
  padding-bottom: 0.55rem;
}

.home-category-panel {
  margin-bottom: 1rem;
}

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

.home-category-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(14, 21, 33, 0.36);
}

.home-category-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.home-category-card h3 a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--heading);
  text-decoration: none;
}

.home-category-card p {
  margin: 0.45rem 0 0;
  color: var(--panel-copy);
}

.home-category-panel {
  padding: 0.1rem 0 0.2rem;
}

.home-category-card {
  min-height: 100%;
}

.home-category-card.happy {
  border-top: 2px solid #2f64a5;
}

.home-category-card.wing {
  border-top: 2px solid #a86b26;
}

.home-category-card.late {
  border-top: 2px solid #8f5bc0;
}

.home-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid #3c4f68;
  background: #101a2a;
  color: #f0f4fb;
  font-size: 0.92rem;
}

.home-growth-note {
  margin: 0.8rem 0 0;
  padding-top: 0.72rem;
  border-top: 1px solid var(--line);
  color: var(--panel-copy);
  font-size: 0.88rem;
}

.home-directory-panel > .section-head {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.province-home-block {
  padding-top: 0.2rem;
}

.province-home-block .section-head h3 {
  margin: 0;
  font-size: 1rem;
}

.province-home-block .section-head h3 a {
  color: var(--heading);
}

.province-home-block + .province-home-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.home-city-card {
  border-radius: 6px;
  border: 1px solid #2f415a;
  border-top: 2px solid #45698f;
  background: rgba(14, 21, 33, 0.42);
  padding: 0.9rem 0.85rem;
  transition: border-color 0.18s ease, background 0.18s ease;
  box-shadow: none;
}

.home-city-card:hover {
  border-color: #56789d;
  background: rgba(17, 27, 41, 0.66);
}

.home-city-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
}

.home-city-card h3 a {
  color: #f2f7ff;
}

.city-cta {
  display: inline-flex;
  align-items: center;
  color: #8fc7ff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0;
  text-decoration: none;
}

.city-cta:hover {
  color: #ffffff;
}

.city-links {
  margin: 0;
  font-size: 0.88rem;
}

.city-links span {
  margin: 0 0.28rem;
  color: #8898b3;
}

.home-show-more-wrap {
  margin-top: 0.9rem;
  text-align: center;
}

.home-compliance-compact {
  margin: 1rem 0 0.2rem;
  padding: 0.2rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.home-compliance-compact p {
  margin: 0;
  color: var(--panel-copy);
  font-size: 0.9rem;
}

.home-compliance-compact a {
  color: var(--link);
  font-weight: 700;
}

.intent-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1rem 1.25rem;
  align-items: start;
}

.intent-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.intent-hero .tabs {
  margin-top: 0.7rem;
}

.btn-ghost {
  border: 1px solid #445c7c;
  border-radius: 999px;
  background: #152338;
  color: #d8e8fb;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.42rem 0.92rem;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: #5d7faa;
  color: #fff;
}

.venue-grid {
  display: grid;
  gap: 0.86rem;
}

.deal-section-stack {
  display: grid;
  gap: 0;
}

.deal-section {
  border: none;
  background: transparent;
  padding: 0.2rem 0;
}

.deal-section + .deal-section {
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.section-count {
  margin: 0;
  color: #98afca;
  font-size: 0.83rem;
}

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

.venue-grid > .ad-slot,
.deal-card-grid > .infeed-ad-card {
  grid-column: auto;
  align-self: stretch;
}

.venue-grid > .ad-slot {
  margin: 0;
  min-height: 100%;
}

.deal-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.52rem;
  margin-bottom: 0.28rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #2b3a52;
}

.venue-head-copy {
  min-width: 0;
}

.deal-venue-name {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  color: #f5f9ff;
  font-weight: 800;
}

.deal-venue-name a {
  color: #f7fbff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.deal-venue-name a:hover {
  color: #a7d6ff;
  border-bottom-color: rgba(155, 208, 255, 0.4);
}

.venue-links-row {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.venue-distance-row {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #8fb4de;
}

.deal-menu-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #4b607b;
  background: #162538;
  color: #dbe9fa;
  text-decoration: none;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.08rem 0.42rem;
}

.venue-icon-links {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: none;
  background: transparent;
  color: #bfd0e8;
  text-decoration: none;
  opacity: 0.94;
  padding: 0;
}

.icon-link:hover {
  background: rgba(86, 120, 164, 0.2);
  color: #fff;
  opacity: 1;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hidden-deal-pool {
  display: none;
}

.venue-card {
  padding: 0.85rem 1rem;
}

.venue-card-city {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.85rem 1rem;
}

.venue-head h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
}

.meta {
  margin: 0.42rem 0 0;
  color: #97abc6;
  font-size: 0.9rem;
  line-height: 1.38;
}

.venue-links {
  word-break: break-word;
}

.deal-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex: 1;
}

.deal-hook {
  border: none;
  border-radius: 0;
  padding: 0.28rem 0.05rem 0.24rem;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.deal-hook + .deal-hook {
  margin-top: 0.42rem;
  border-top: 1px solid #29364b;
  padding-top: 0.52rem;
}

.deal-hook[data-special-type="happy_hour"] {
  border-left: 3px solid var(--happy);
  padding-left: 0.6rem;
}

.deal-hook[data-special-type="wing_special"] {
  border-left: 3px solid var(--wing);
  padding-left: 0.6rem;
}

.deal-hook[data-special-type="late_night"] {
  border-left: 3px solid var(--late);
  padding-left: 0.6rem;
}

.venue-card-city .deal-hook:last-child {
  flex: 1;
}

.deal-kind {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #3d4e67;
  background: #172133;
  color: #dbeafe;
  margin: 0;
  padding: 0.14rem 0.42rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.deal-hook[data-special-type="happy_hour"] .deal-kind {
  border-color: #2f6290;
  background: #143456;
  color: #cce7ff;
}

.deal-hook[data-special-type="wing_special"] .deal-kind {
  border-color: #8f5b1d;
  background: #4a2f0d;
  color: #ffd8a6;
}

.deal-hook[data-special-type="late_night"] .deal-kind {
  border-color: #704c8f;
  background: #342246;
  color: #ecd7ff;
}

.deal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.deal-live-status {
  display: none;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #365777;
  background: #1a314b;
  color: #d5ebff;
  padding: 0.08rem 0.42rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.deal-live-status[data-live-state="active_now"] {
  border-color: #2f8e63;
  background: #163828;
  color: #dff7ea;
}

.deal-live-status[data-live-state="starting_soon"] {
  border-color: #8b7241;
  background: #3b2d14;
  color: #ffe6b3;
}

.deal-live-status[data-live-state="later_tonight"] {
  border-color: #6d5aa0;
  background: #312149;
  color: #eadcff;
}

.deal-schedule {
  margin: 0.12rem 0 0.2rem;
  color: #dbe8fa;
  font-weight: 700;
  font-size: 0.88rem;
}

.deal-schedule-sep {
  color: #87a0c2;
  margin: 0 0.3rem;
}

.deal-example-list {
  margin: 0;
  padding-left: 0.84rem;
  color: #d2e0f2;
  display: grid;
  gap: 0.12rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.deal-example-list li::marker {
  color: #8eb4de;
}

.deal-caution {
  margin: 0.2rem 0 0;
  color: #9cb0c9;
  font-size: 0.73rem;
  line-height: 1.25;
}

.deal-facts {
  display: grid;
  gap: 0.22rem;
  margin: 0.2rem 0 0.42rem;
}

.deal-facts div {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.5rem;
}

.deal-facts dt {
  color: #7f93ae;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.deal-facts dd {
  margin: 0;
  color: #e7f0ff;
  line-height: 1.36;
}

.source-links {
  margin: 0.3rem 0 0.35rem;
  font-size: 0.87rem;
}

.source-links span {
  color: #8395b0;
  margin: 0 0.27rem;
}

.deal-note {
  margin: 0;
  color: #9cb0c9;
  font-size: 0.73rem;
  line-height: 1.2;
  font-style: normal;
}

details.evidence {
  color: #a4b6ce;
  font-size: 0.88rem;
}

details.evidence summary {
  cursor: pointer;
}

.verify-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  justify-content: flex-end;
}

.verify-link {
  display: inline-flex;
  align-items: center;
  border: none;
  background: transparent;
  color: #bdd3ee;
  text-decoration: none;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.verify-link:hover {
  color: #ffffff;
}

.deal-row-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
  margin-top: 0;
}

.venue-card:hover .deal-row-footer,
.venue-card:focus-within .deal-row-footer {
  max-height: 3rem;
  opacity: 1;
  margin-top: 0.28rem;
}

.venue-card.deal-meta-open .deal-row-footer {
  max-height: 3rem;
  opacity: 1;
  margin-top: 0.28rem;
}

.deal-source-dot {
  margin: 0.18rem 0 0;
  color: #6faa8e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.tabs {
  display: flex;
  gap: 0.43rem;
  flex-wrap: wrap;
  margin-top: 0.58rem;
}

.city-tabs {
  margin-top: 0;
}

.tab,
button {
  border: 1px solid #3b4d69;
  border-radius: 999px;
  background: #121c2c;
  color: #d8e7fa;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tabs a.tab {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.tab-icon {
  font-size: 0.92rem;
  line-height: 1;
}

.tab.active {
  border-color: #2f6797;
  background: #1c3958;
  color: #fff;
}

.tab[data-tab="happy_hour"] {
  border-color: #325e87;
}

.tab[data-tab="wing_special"] {
  border-color: #8b5c22;
}

.tab[data-tab="late_night"] {
  border-color: #6d4a8c;
}

button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.date-nav {
  display: flex;
  gap: 0.66rem;
  align-items: center;
  margin: 0.8rem 0;
  flex-wrap: wrap;
}

.date-nav-inline {
  margin: 0;
}

.date-nav h2 {
  margin: 0;
  font-size: 1.08rem;
  color: #f3f8ff;
}

.hero-city-compact {
  padding: 0.82rem 0.9rem;
}

.city-hero-grid {
  display: grid;
  gap: 0.9rem;
}

.city-hero-copy {
  min-width: 0;
}

.city-heading-copy {
  display: grid;
  gap: 0.22rem;
}

.city-hero-sub {
  max-width: 42rem;
  font-size: 0.98rem;
}

.city-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.city-header-row .last-updated {
  margin: 0;
  color: #9eb1cb;
}

.city-toolbar-sticky {
  position: sticky;
  top: calc(var(--site-header-offset) + 0.45rem);
  z-index: 18;
}

.city-command-surface {
  margin-bottom: 0.95rem;
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(126, 167, 206, 0.2);
  background: rgba(13, 20, 30, 0.94);
  box-shadow: 0 10px 24px rgba(4, 9, 16, 0.26);
  backdrop-filter: blur(14px);
}

.search-wrap .filter-input {
  width: 100%;
}

.search-wrap-compact {
  flex: 0 1 280px;
  max-width: 280px;
}

.city-primary-row,
.city-secondary-row,
.city-utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.city-secondary-row,
.city-utility-row {
  margin-top: 0.72rem;
}

.city-utility-row {
  padding-top: 0.72rem;
  border-top: 1px solid rgba(126, 167, 206, 0.14);
}

.city-search-wrap {
  flex: 1 1 21rem;
  max-width: 24rem;
}

.city-secondary-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.city-date-nav {
  gap: 0.48rem;
}

.city-date-nav button {
  width: 2.3rem;
  min-width: 2.3rem;
  height: 2.3rem;
  justify-content: center;
  padding: 0;
}

.city-date-copy {
  display: grid;
  gap: 0.05rem;
}

.city-date-label {
  margin: 0;
  color: #8fb2da;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-date-nav h2 {
  font-size: 1rem;
}

.city-sort-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.city-sort-controls .btn-ghost.active {
  border-color: #4f87bd;
  background: #173252;
  color: #ffffff;
}

.city-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 106, 142, 0.42);
  background: rgba(17, 28, 43, 0.72);
  color: #d5e5f9;
}

.city-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.city-link-chip {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #35506f;
  background: #121c2c;
  color: #d5e7fa;
  font-size: 0.82rem;
  font-weight: 700;
}

.city-link-chip:hover {
  border-color: #5d83aa;
  color: #ffffff;
}

.city-location-status {
  margin: 0 0 0 auto;
}

.tonight-panel {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(126, 167, 206, 0.2);
  background: linear-gradient(180deg, rgba(18, 28, 44, 0.96), rgba(15, 23, 35, 0.94));
  box-shadow: 0 12px 28px rgba(4, 9, 16, 0.24);
}

.city-tonight-panel {
  padding: 0.8rem 0.95rem;
  box-shadow: 0 10px 22px rgba(4, 9, 16, 0.18);
}

.section-head-tight {
  align-items: flex-start;
}

.section-kicker {
  margin: 0;
  color: #8eb4de;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tonight-summary-copy {
  margin: 0;
  color: #c8d8ec;
  font-size: 0.88rem;
}

.tonight-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.tonight-pill {
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #2d415b;
  background: rgba(14, 21, 33, 0.86);
}

.tonight-pill strong {
  color: #f3f8ff;
  font-size: 1.45rem;
  line-height: 1;
}

.tonight-pill span {
  color: #a9bfd9;
  font-size: 0.8rem;
  font-weight: 700;
}

.tonight-pill-active {
  border-color: rgba(70, 160, 112, 0.42);
}

.tonight-pill-soon {
  border-color: rgba(198, 160, 87, 0.42);
}

.tonight-pill-later {
  border-color: rgba(122, 102, 181, 0.42);
}

.search-wrap-compact .filter-input {
  width: 100%;
}

.city-nav-links {
  margin: 0;
  font-size: 0.87rem;
  text-align: right;
}

.city-nav-links a {
  color: #9abce0;
  text-decoration: none;
}

.city-nav-links a:hover {
  color: #ffffff;
}

.city-nav-links span {
  margin: 0 0.22rem;
  color: #879ab5;
}

.weekly-day-grid {
  display: grid;
  gap: 0.9rem;
}

.weekly-day-card {
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: var(--section-shadow);
}

.weekly-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.weekly-day-head h2 {
  margin: 0;
}

.weekly-day-meta {
  margin: 0;
  color: #9bb0cc;
  font-size: 0.88rem;
}

.weekly-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.72rem;
}

.empty-state {
  margin: 0;
  color: #99acc6;
}

.ad-slot {
  padding: 0.85rem 0.96rem;
  margin: 0.82rem 0;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  transition: opacity 0.18s ease, margin 0.18s ease, padding 0.18s ease, min-height 0.18s ease;
}

.ad-slot-label {
  margin: 0;
  color: #90a3bf;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.ad-slot .adsbygoogle {
  width: 100%;
  min-height: 110px;
}

.ad-slot-placeholder {
  width: 100%;
  min-height: 110px;
  border-radius: 8px;
  border: 1px dashed var(--ad-placeholder-border);
  background: var(--ad-placeholder-bg);
}

.infeed-ad-card {
  padding: 0.58rem 0.62rem;
  min-height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease, margin 0.18s ease, padding 0.18s ease, min-height 0.18s ease;
}

.ad-slot-infeed {
  margin: 0;
  min-height: 0;
  padding: 0.62rem 0.68rem;
}

.infeed-ad-inner {
  width: 100%;
  min-height: 98px;
  border-radius: 6px;
  border: 1px dashed #3c4d66;
  background: rgba(15, 22, 35, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
}

.infeed-ad-card .ad-slot-label {
  margin: 0;
  font-size: 0.62rem;
}

.infeed-ad-card .adsbygoogle {
  width: 100%;
  min-height: 84px;
}

.ad-slot[data-ad-state="pending"],
.ad-slot[data-ad-state="unfilled"],
.infeed-ad-card[data-ad-state="pending"],
.infeed-ad-card[data-ad-state="unfilled"] {
  min-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.ad-slot[data-ad-state="pending"] .ad-slot-label,
.ad-slot[data-ad-state="unfilled"] .ad-slot-label,
.infeed-ad-card[data-ad-state="pending"] .ad-slot-label,
.infeed-ad-card[data-ad-state="unfilled"] .ad-slot-label {
  display: none;
}

.ad-slot[data-ad-state="pending"] .adsbygoogle,
.ad-slot[data-ad-state="unfilled"] .adsbygoogle,
.infeed-ad-card[data-ad-state="pending"] .adsbygoogle,
.infeed-ad-card[data-ad-state="unfilled"] .adsbygoogle {
  min-height: 0 !important;
}

.ad-slot[data-ad-state="filled"],
.infeed-ad-card[data-ad-state="filled"] {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.35rem;
  color: #95a7c0;
  font-size: 0.83rem;
  text-align: center;
  padding: 1rem 1rem 1.4rem;
}

.city-bio,
.province-bio {
  margin-top: 1rem;
}

.city-bio p,
.province-bio p {
  margin: 0.45rem 0 0;
  color: #b7c4d9;
}

.city-bio-note {
  font-style: italic;
  color: #9eb0ca;
}

.compliance-panel h2 {
  margin-top: 0.2rem;
}

.compliance-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-intro {
  margin: 0.6rem 0 0;
  max-width: 820px;
  color: var(--ink-soft);
}

.compliance-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.32rem 0.75rem;
}

.compliance-grid p {
  margin: 0;
  color: #b2bfd5;
  padding: 0.54rem 0 0;
  border: none;
  border-top: 1px solid #334159;
  border-radius: 0;
  background: transparent;
}

.footer-links,
.footer-copy,
.footer-note {
  margin: 0.25rem 0;
}

.footer-links a {
  color: #a7bdd8;
}

.footer-links span {
  margin: 0 0.25rem;
  color: #6f809b;
}

.footer-copy {
  color: #9fb1ca;
}

.footer-note {
  color: #7689a6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pulse-in {
  animation: pulse-in 380ms ease-out;
}

html[data-theme="light"] .verification-banner,
html[data-theme="light"] .trust-grid p,
html[data-theme="light"] .compliance-grid p,
html[data-theme="light"] .city-item,
html[data-theme="light"] .home-city-card,
html[data-theme="light"] .infeed-ad-inner {
  background: #ffffff;
  border-color: #d1ddeb;
  box-shadow: none;
}

html[data-theme="light"] .site-header {
  box-shadow: 0 10px 24px rgba(28, 55, 84, 0.06);
}

html[data-theme="light"] .hero,
html[data-theme="light"] .panel,
html[data-theme="light"] .venue-card,
html[data-theme="light"] .province-block,
html[data-theme="light"] .ad-slot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border-color: #d5e0eb;
  box-shadow: 0 12px 28px rgba(30, 57, 86, 0.06);
}

html[data-theme="light"] .home-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98)),
    radial-gradient(circle at top center, rgba(173, 205, 234, 0.32), transparent 60%);
  border-color: #d4dfeb;
}

html[data-theme="light"] .home-category-card {
  background: #ffffff;
  border-color: #d1ddeb;
  box-shadow: none;
}

html[data-theme="light"] .verification-banner {
  background: linear-gradient(180deg, rgba(240, 246, 252, 0.98), rgba(249, 251, 255, 0.98));
  border-color: #b9cee2;
  border-left: 4px solid #7ea7ce;
}

html[data-theme="light"] .home-directory-panel > .section-head,
html[data-theme="light"] .home-growth-note,
html[data-theme="light"] .province-home-block + .province-home-block,
html[data-theme="light"] .deal-section + .deal-section,
html[data-theme="light"] .compliance-grid p,
html[data-theme="light"] .home-compliance-compact {
  border-color: #d1ddeb;
}

html[data-theme="light"] .home-city-card {
  background: #ffffff;
  border-color: #d2ddea;
  border-top-color: #5b8fc2;
  box-shadow: 0 6px 14px rgba(40, 67, 96, 0.05);
}

html[data-theme="light"] .home-city-card:hover {
  background: #ffffff;
  border-color: #aec5dc;
  box-shadow: 0 10px 18px rgba(40, 67, 96, 0.08);
}

html[data-theme="light"] .ad-slot-infeed {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.98));
}

html[data-theme="light"] .compliance-grid p {
  background: transparent;
}

html[data-theme="light"] .verification-banner p,
html[data-theme="light"] .verification-detail,
html[data-theme="light"] .deal-note,
html[data-theme="light"] .deal-caution,
html[data-theme="light"] .source-links span,
html[data-theme="light"] .meta,
html[data-theme="light"] .province-meta,
html[data-theme="light"] .city-meta,
html[data-theme="light"] .result-count,
html[data-theme="light"] .last-updated,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-note,
html[data-theme="light"] .city-bio p,
html[data-theme="light"] .province-bio p,
html[data-theme="light"] .city-bio-note,
html[data-theme="light"] .hero-copy,
html[data-theme="light"] .empty-state,
html[data-theme="light"] .section-count,
html[data-theme="light"] .deal-source-dot,
html[data-theme="light"] .location-status,
html[data-theme="light"] .section-intro,
html[data-theme="light"] .home-category-card p,
html[data-theme="light"] .home-compliance-compact p {
  color: #5b6f88;
}

html[data-theme="light"] .verification-banner .verification-title,
html[data-theme="light"] .hero h1,
html[data-theme="light"] .panel h2,
html[data-theme="light"] .panel h3,
html[data-theme="light"] .section-head h2,
html[data-theme="light"] .deal-venue-name,
html[data-theme="light"] .deal-venue-name a,
html[data-theme="light"] .venue-head h3,
html[data-theme="light"] .city-card h3 a,
html[data-theme="light"] .home-city-card h3 a,
html[data-theme="light"] .province-card h3 a,
html[data-theme="light"] .city-item a,
html[data-theme="light"] .logo,
html[data-theme="light"] .deal-schedule,
html[data-theme="light"] .deal-facts dd,
html[data-theme="light"] .date-nav h2 {
  color: #162235;
}

html[data-theme="light"] .crumbs,
html[data-theme="light"] .crumbs a,
html[data-theme="light"] .city-nav-links,
html[data-theme="light"] .city-nav-links a,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .verify-link,
html[data-theme="light"] .icon-link,
html[data-theme="light"] .deal-menu-link {
  color: #2f567f;
}

html[data-theme="light"] .city-link-chip {
  border-color: #c5d6e7;
  background: #f6fbff;
  color: #2f567f;
}

html[data-theme="light"] .top-nav a,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .tab,
html[data-theme="light"] button,
html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .stat-pill,
html[data-theme="light"] .deal-menu-link {
  background: #f8fbff;
  border-color: #c4d3e2;
  color: #173252;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .city-sort-controls .btn-ghost.active {
  background: #0f68ba;
  border-color: #0f68ba;
  color: #ffffff;
}

html[data-theme="light"] .top-nav a:hover,
html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .tab:hover,
html[data-theme="light"] .btn-ghost:hover,
html[data-theme="light"] .deal-menu-link:hover,
html[data-theme="light"] .stat-pill:hover {
  background: #eef5fc;
  border-color: #9eb7d0;
  color: #133d66;
}

html[data-theme="light"] .tab.active {
  background: #0f68ba;
  border-color: #0f68ba;
  color: #ffffff;
}

html[data-theme="light"] .hero-kicker,
html[data-theme="light"] .home-category-card h3 a,
html[data-theme="light"] .home-category-icon {
  color: #173252;
}

html[data-theme="light"] .hero-search-label,
html[data-theme="light"] .section-kicker {
  color: #2b5a87;
}

html[data-theme="light"] .home-category-icon {
  border-color: #c4d3e2;
  background: #f8fbff;
}

html[data-theme="light"] .btn-primary,
html[data-theme="light"] .near-me-btn {
  border-color: #c7964c;
  background: linear-gradient(145deg, #e7c57e, #f3d898);
  color: #271a03;
  box-shadow: none;
}

html[data-theme="light"] .btn-primary:hover,
html[data-theme="light"] .near-me-btn:hover {
  border-color: #b88233;
  color: #241702;
}

html[data-theme="light"] .deal-kind {
  background: #edf3fa;
  border-color: #c7d5e5;
  color: #29496d;
}

html[data-theme="light"] .deal-hook[data-special-type="happy_hour"] .deal-kind {
  background: #e3f0fb;
  border-color: #9ec3e7;
  color: #11538d;
}

html[data-theme="light"] .deal-hook[data-special-type="wing_special"] .deal-kind {
  background: #fff1de;
  border-color: #e0bb87;
  color: #8d5517;
}

html[data-theme="light"] .deal-hook[data-special-type="late_night"] .deal-kind {
  background: #f0e7f8;
  border-color: #cbb2df;
  color: #654381;
}

html[data-theme="light"] .deal-card-head,
html[data-theme="light"] .deal-hook + .deal-hook {
  border-color: #d7e2ee;
}

html[data-theme="light"] .deal-hook[data-special-type="happy_hour"] {
  background: linear-gradient(90deg, rgba(15, 104, 186, 0.08), rgba(255, 255, 255, 0) 34%);
  border-radius: 6px;
}

html[data-theme="light"] .deal-hook[data-special-type="wing_special"] {
  background: linear-gradient(90deg, rgba(223, 161, 79, 0.12), rgba(255, 255, 255, 0) 34%);
  border-radius: 6px;
}

html[data-theme="light"] .deal-hook[data-special-type="late_night"] {
  background: linear-gradient(90deg, rgba(169, 132, 205, 0.12), rgba(255, 255, 255, 0) 34%);
  border-radius: 6px;
}

html[data-theme="light"] .deal-schedule {
  color: #18324e;
}

html[data-theme="light"] .deal-example-list {
  color: #38516c;
}

html[data-theme="light"] .venue-distance-row {
  color: #3d628a;
}

html[data-theme="light"] .deal-example-list li::marker {
  color: #6f95c0;
}

html[data-theme="light"] .deal-caution,
html[data-theme="light"] .deal-note,
html[data-theme="light"] .deal-source-dot,
html[data-theme="light"] .compliance-grid p,
html[data-theme="light"] .city-bio p,
html[data-theme="light"] .province-bio p,
html[data-theme="light"] .city-bio-note {
  color: #566b84;
}

html[data-theme="light"] .deal-live-status {
  background: #e3f0fb;
  border-color: #a7c6e4;
  color: #11538d;
}

html[data-theme="light"] .deal-live-status[data-live-state="active_now"] {
  background: #e6f6ec;
  border-color: #9fd2b1;
  color: #1e7d52;
}

html[data-theme="light"] .deal-live-status[data-live-state="starting_soon"] {
  background: #fff4de;
  border-color: #e5c58c;
  color: #8a6114;
}

html[data-theme="light"] .deal-live-status[data-live-state="later_tonight"] {
  background: #f1eafb;
  border-color: #ccb8e5;
  color: #654381;
}

html[data-theme="light"] .deal-chip,
html[data-theme="light"] .city-cta {
  background: #edf4fb;
  border-color: #c4d5e7;
  color: #224a73;
}

html[data-theme="light"] .deal-chip.happy {
  border-color: #8cb8e1;
  color: #13558f;
}

html[data-theme="light"] .deal-chip.wing {
  border-color: #e0be87;
  color: #8b5b1a;
}

html[data-theme="light"] .deal-chip.late {
  border-color: #cdb6df;
  color: #694687;
}

html[data-theme="light"] .ad-slot-label {
  color: #667b95;
}

html[data-theme="light"] .filter-input {
  background: #ffffff;
  border-color: #c3d3e2;
  box-shadow: inset 0 1px 2px rgba(20, 39, 61, 0.03);
}

html[data-theme="light"] .filter-input:focus,
html[data-theme="light"] .filter-input:focus-visible {
  border-color: #7aa2cb;
  box-shadow: 0 0 0 3px rgba(15, 104, 186, 0.12);
}

html[data-theme="light"] .site-search-results,
html[data-theme="light"] .city-toolbar-sticky,
html[data-theme="light"] .tonight-panel,
html[data-theme="light"] .weekly-day-card {
  border-color: #d2deea;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(30, 57, 86, 0.08);
}

html[data-theme="light"] .site-search-result {
  background: #f8fbff;
}

html[data-theme="light"] .site-search-result:hover {
  background: #eef5fc;
  border-color: #b8ccdf;
}

html[data-theme="light"] .site-search-result-label,
html[data-theme="light"] .tonight-pill strong,
html[data-theme="light"] .weekly-day-head h2 {
  color: #162235;
}

html[data-theme="light"] .site-search-result-hint,
html[data-theme="light"] .tonight-summary-copy,
html[data-theme="light"] .tonight-pill span,
html[data-theme="light"] .weekly-day-meta {
  color: #566b84;
}

html[data-theme="light"] .tonight-pill {
  background: #f8fbff;
  border-color: #d2deea;
}

html[data-theme="light"] .city-result-count {
  border-color: #d2deea;
  background: #f6fbff;
  color: #23486f;
}

html[data-theme="light"] .city-nav-links a:hover,
html[data-theme="light"] .city-link-chip:hover,
html[data-theme="light"] .verify-link:hover,
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .crumbs a:hover {
  color: #0a4f92;
}

html[data-theme="light"] .icon-link:hover {
  background: #eaf2fb;
  color: #173252;
}

html[data-theme="light"] .site-footer {
  border-top-color: #d6e1ec;
}

html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-note {
  line-height: 1.55;
}

@keyframes pulse-in {
  from {
    transform: translateY(-2px);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 980px) {
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .deal-card-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1320px) {
  .deal-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .city-primary-row,
  .city-secondary-row,
  .city-utility-row {
    align-items: flex-start;
  }

  .city-search-wrap {
    max-width: none;
    flex-basis: 100%;
  }

  .city-secondary-meta {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .city-location-status {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.68rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.58rem;
  }

  .header-actions,
  .top-nav {
    width: 100%;
  }

  .header-actions {
    justify-content: space-between;
    gap: 0.45rem;
  }

  .header-tools {
    width: auto;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .theme-toggle {
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .theme-toggle-label {
    min-width: 0;
  }

  .page-shell {
    padding: 0.9rem 0.75rem 1.15rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .city-command-surface {
    padding: 0.72rem;
  }

  .city-date-nav {
    width: 100%;
    justify-content: space-between;
  }

  .city-date-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .city-primary-row {
    gap: 0.62rem;
  }

  .city-tabs {
    width: 100%;
  }

  .tonight-pill-row {
    grid-template-columns: 1fr;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .intent-hero-grid {
    grid-template-columns: 1fr;
  }

  .intent-hero-actions {
    align-items: flex-start;
  }

  .home-compliance-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .deal-facts div {
    grid-template-columns: 4.5rem 1fr;
  }

  .deal-row-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.24rem;
  }

  .verify-links {
    justify-content: flex-start;
  }

  .city-secondary-meta,
  .city-link-row {
    justify-content: flex-start;
  }

  .city-location-status {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .site-search-header {
    max-width: 20rem;
  }

  .theme-toggle {
    padding-right: 0.24rem;
  }
}
