:root {
  --ink: #17212b;
  --muted: #64717f;
  --line: #dde5ec;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --blue: #0f3d5e;
  --teal: #159a8c;
  --gold: #f7aa1c;
  --red: #d95d39;
  --cream: #fff8ea;
  --shadow: 0 18px 50px rgba(15, 61, 94, 0.12);
  --soft-shadow: 0 10px 28px rgba(15, 61, 94, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
li,
a,
span,
small,
dd {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
  font-size: 1.05rem;
}

.header-menu {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
}

.site-header nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header .category-nav {
  flex-basis: 100%;
  justify-content: center;
  gap: 8px;
  padding-top: 2px;
}

.site-header .category-nav a {
  padding: 7px 10px;
  font-size: 0.8rem;
  color: var(--blue);
  background: transparent;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  background: white;
  color: var(--blue);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-toggle-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 2px solid currentColor;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  border-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg);
}

.site-header nav a,
.button,
.search-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 14px;
  text-decoration: none;
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.site-header nav a:hover,
.button:hover,
.search-row button:hover {
  border-color: var(--teal);
}

.site-header nav a,
.search-row button,
.button {
  white-space: nowrap;
}

@media (min-width: 841px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 28px;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .header-menu {
    display: contents;
    min-width: 0;
  }

  .site-header nav:first-child {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .site-header nav:first-child a {
    border-color: transparent;
    background: transparent;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .site-header .category-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
    padding-top: 0;
  }

  .site-header .category-nav a {
    min-width: 0;
    padding: 7px 8px;
    border-color: rgba(15, 61, 94, 0.1);
    background: rgba(255, 255, 255, 0.78);
    color: var(--blue);
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .site-header nav a,
  .site-header .category-nav a {
    white-space: normal;
  }
}

@media (min-width: 1280px) {
  .site-header .category-nav {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .site-header .category-nav a {
    font-size: 0.7rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.button.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(32px, 5vw, 70px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero h1,
.guide-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.guide-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-media {
  position: relative;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--blue);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: heroSlideFade 36s ease-in-out infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-slide:nth-child(5) {
  animation-delay: 24s;
}

.hero-slide:nth-child(6) {
  animation-delay: 30s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 33, 43, 0.05), rgba(22, 33, 43, 0.62));
}

.hero-slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: white;
}

.hero-slide figcaption strong {
  font-size: 1.15rem;
}

.hero-slide figcaption span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

@keyframes heroSlideFade {
  0%,
  14% {
    opacity: 1;
  }
  18%,
  100% {
    opacity: 0;
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.search-band {
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px);
  max-width: 1180px;
}

.search-band label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--blue);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}

.search-results {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-link {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.result-link:last-child {
  border-bottom: 0;
}

.result-link strong {
  display: block;
  color: var(--blue);
}

.result-link span {
  color: var(--muted);
  font-size: 0.91rem;
}

.section,
.content-grid,
.form-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px clamp(18px, 4vw, 56px);
}

.section,
.content-grid,
.provider-grid,
.article-body {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2,
.content-grid h2,
.side-panel h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.section-head a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.top-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.top-category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.top-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.top-category-head h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.1rem;
}

.top-category-head a,
.section-more a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.compact-list .guide-row {
  min-height: 54px;
  padding: 12px;
}

.section-more {
  margin: 14px 0 0;
}

.category-card,
.guide-row,
.city-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.guide-row span,
.guide-row small,
.category-card span,
.category-card strong,
.city-link {
  min-width: 0;
}

.category-card:hover,
.guide-row:hover,
.city-link:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(37, 161, 142, 0.12);
}

.category-card span,
.guide-row span {
  font-weight: 850;
}

.category-card strong,
.guide-row small {
  color: var(--muted);
  font-weight: 700;
}

.guide-list {
  display: grid;
  gap: 10px;
}

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

.split-band > div,
.notice,
.side-panel,
.form-section form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.guide-hero {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 4vw, 56px) 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.guide-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}

.city-hero h1,
.pro-hero h1 {
  max-width: 920px;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.meta-pills span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.88rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.main-column {
  min-width: 0;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 14px 0 24px;
  padding-left: 22px;
}

.steps li {
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.notice {
  border-left: 5px solid var(--gold);
  margin: 20px 0 28px;
}

.notice p {
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 10px;
}

.side-panel a {
  text-decoration: none;
  color: var(--teal);
  font-weight: 800;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.video-card,
.provider-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.video-link-card {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.video-thumb {
  position: relative;
  display: block;
  background: var(--blue);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card h3,
.video-card p,
.provider-card p,
.provider-card dl,
.review-summary {
  margin-left: 16px;
  margin-right: 16px;
}

.video-card h3 {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 1.04rem;
}

.video-card p {
  margin-top: 0;
  color: var(--muted);
}

.thumb {
  position: relative;
  display: block;
  color: white;
  text-decoration: none;
  background: var(--blue);
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.thumb span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: rgba(17, 63, 103, 0.9);
  border-radius: 7px;
  font-weight: 850;
  font-size: 0.85rem;
}

.video-card iframe {
  display: block;
  width: calc(100% - 32px);
  aspect-ratio: 16 / 9;
  margin: 0 16px 16px;
  border: 0;
  border-radius: 7px;
  background: #0d1822;
}

.watch-hero {
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 60px);
  background: linear-gradient(120deg, #f7f4ea, #eef8f6 58%, #f8fafc);
}

.watch-hero h1 {
  max-width: 980px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.04;
}

.watch-hero p {
  max-width: 900px;
  color: #263238;
  font-size: 1.1rem;
  line-height: 1.65;
}

.watch-player {
  max-width: 1040px;
  margin: 24px 0 18px;
  background: #0d1822;
  border: 1px solid rgba(15, 61, 94, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.watch-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0d1822;
}

.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  font-size: 0.95rem;
}

.ai-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px 12px 12px;
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow);
  font: inherit;
  cursor: pointer;
}

.ai-chat-toggle span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.ai-chat-toggle strong {
  font-weight: 850;
}

.ai-chat-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(650px, calc(100vh - 110px));
  display: grid;
  grid-template-rows: auto minmax(160px, 1fr) auto auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}

.ai-chat-panel[hidden] {
  display: none;
}

.ai-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--blue);
  color: white;
}

.ai-chat-head strong,
.ai-chat-head span {
  display: block;
}

.ai-chat-head span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.ai-chat-head button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ai-chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 14px;
  background: var(--paper);
}

.ai-message {
  max-width: 92%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
}

.ai-message-user {
  justify-self: end;
  border-color: rgba(21, 154, 140, 0.32);
  background: #e8f7f4;
}

.ai-message-bot {
  justify-self: start;
}

.ai-message strong {
  color: var(--blue);
}

.ai-message a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.ai-chat-form,
.ai-ticket-form {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: white;
}

.ai-chat-form label {
  font-weight: 850;
  color: var(--blue);
  font-size: 0.84rem;
}

.ai-chat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ai-chat input,
.ai-chat textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.ai-chat button[type="submit"],
.ai-ticket-form button {
  border: 0;
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.ai-ticket-form strong {
  color: var(--blue);
}

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

.city-link {
  min-height: 54px;
  font-weight: 850;
  color: var(--blue);
}

.provider-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.provider-card {
  padding-bottom: 16px;
}

.provider-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.provider-head img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.provider-head h3 {
  margin: 0;
  color: var(--blue);
}

.provider-head p {
  margin: 0;
  color: var(--muted);
}

.provider-card dl {
  display: grid;
  gap: 8px;
}

.provider-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
}

.provider-card dt {
  color: var(--muted);
  font-weight: 800;
}

.provider-card dd {
  margin: 0;
  min-width: 0;
  word-break: break-word;
}

.provider-card dd small,
.details-list dd small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  margin-top: 2px;
}

.profile-link {
  display: inline-flex;
  margin: 0 16px 14px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 14px 0 28px;
}

.service-grid span {
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 850;
}

.details-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 24px;
}

.details-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.details-list dt {
  color: var(--muted);
  font-weight: 850;
}

.details-list dd {
  margin: 0;
  word-break: break-word;
}

.review-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.review-summary span {
  color: var(--gold);
  letter-spacing: 0;
}

.review-summary a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.directory-note {
  max-width: 1068px;
  margin-left: auto;
  margin-right: auto;
}

.directory-add-link {
  max-width: 1068px;
  margin: -8px auto 40px;
  padding: 0 20px;
  font-weight: 850;
}

.directory-add-link a {
  color: var(--teal);
  text-decoration: none;
}

.directory-add-link a:hover {
  text-decoration: underline;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  background: var(--paper);
}

.embedded-form-section {
  grid-template-columns: 1fr;
  max-width: 980px;
  padding-top: 18px;
}

form {
  display: grid;
  gap: 14px;
}

form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--blue);
}

form input,
form textarea,
form select {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  font: inherit;
  background: white;
}

form textarea {
  resize: vertical;
}

.jotform-card {
  display: block;
  min-height: 720px;
  background: var(--paper);
  border: 0;
  padding: 0;
  box-shadow: none;
}

.jotform-card iframe,
.jotform-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

.guide-jotform,
.guide-submit-frame {
  min-height: 920px;
}

.jotform-card p {
  margin: 0;
  font-weight: 850;
}

.jotform-card a {
  color: var(--teal);
  text-decoration: none;
}

.jotform-card a:hover {
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.blog-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--blue);
}

.blog-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.blog-card span,
.meta-row span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 6vw, 70px) clamp(18px, 4vw, 56px);
  background: var(--cream);
}

.blog-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.blog-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--blue);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.meta-row span {
  padding: 7px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 18px;
}

.article-body h2 {
  margin-top: 34px;
  color: var(--blue);
}

.article-body p {
  color: #263238;
  font-size: 1.06rem;
  line-height: 1.75;
}

.answer-box {
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid rgba(37, 161, 142, 0.28);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #f5fbf9;
}

.answer-box h2 {
  margin-top: 0;
}

.signal-list,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: #263238;
  font-size: 1.04rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 850;
}

.faq-list p {
  margin-bottom: 0;
}

.article-body a {
  color: var(--teal);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--blue);
  color: white;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
}

.site-footer a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-bottom p {
  margin: 0;
  white-space: nowrap;
}

.footer-bottom p a {
  display: inline;
}

/* Modern refresh */
.site-header {
  box-shadow: 0 8px 30px rgba(15, 61, 94, 0.06);
}

.site-header nav a,
.button,
.search-row button,
.nav-toggle {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header nav a:hover,
.button:hover,
.search-row button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #12324a);
}

.button:not(.primary),
.search-row button {
  background: #ffffff;
}

.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(255, 248, 234, 0.86), rgba(246, 248, 251, 0.96) 46%, rgba(231, 246, 243, 0.9)),
    var(--paper);
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  color: #102f49;
  text-wrap: balance;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.search-band {
  position: relative;
  margin-top: -34px;
  z-index: 3;
}

.search-band label {
  padding-left: 2px;
}

.search-row {
  padding: 10px;
  border: 1px solid rgba(15, 61, 94, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.search-row input {
  border-color: transparent;
  background: #f8fafc;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
  gap: 10px;
  padding-top: 0;
}

.category-chip,
.guide-card-kicker,
.top-category-head h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-chip {
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(15, 61, 94, 0.03);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid rgba(247, 170, 28, 0.38);
  font-size: 0.72rem;
  font-weight: 950;
}

.category-chip:hover,
.top-category-card:hover,
.guide-card:hover,
.provider-card:hover,
.blog-card:hover,
.city-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(21, 154, 140, 0.5);
}

.top-category-card,
.guide-card,
.provider-card,
.blog-card,
.city-link,
.split-band > div,
.notice,
.side-panel,
.answer-box,
.faq-list details {
  box-shadow: 0 1px 0 rgba(15, 61, 94, 0.04);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.mini-guide-list {
  display: grid;
  gap: 10px;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.library-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.guide-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-card-media,
.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #102f49;
}

.guide-card-media img,
.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  transition: transform 220ms ease;
}

.guide-card-media img {
  object-fit: contain;
  background: #102f49;
}

.blog-card-media img {
  object-fit: contain;
  background: #102f49;
}

.play-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(16, 47, 73, 0.88);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
}

.guide-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.guide-card-kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card-kicker .category-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  font-size: 0.64rem;
}

.guide-card strong {
  color: var(--blue);
  font-size: 1.02rem;
  line-height: 1.24;
}

.guide-card small {
  color: var(--muted);
  font-weight: 760;
}

.guide-card-compact {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
}

.guide-card-compact .guide-card-media img {
  height: auto;
  min-height: 0;
}

.guide-card-compact .guide-card-body {
  padding: 10px 12px;
}

.guide-card-compact .guide-card-kicker {
  font-size: 0.7rem;
}

.guide-card-compact .guide-card-kicker .category-icon,
.guide-card-compact .play-badge {
  display: none;
}

.guide-card-compact strong {
  font-size: 0.92rem;
}

.action-band > div {
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.9), rgba(255, 255, 255, 0.98));
}

.provider-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 16px 14px;
}

.provider-services span {
  padding: 6px 8px;
  border: 1px solid rgba(21, 154, 140, 0.22);
  border-radius: 999px;
  background: #f2fbf9;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.provider-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 16px 14px;
}

.provider-actions .profile-link {
  margin: 0;
}

.call-link {
  color: var(--blue);
}

.review-summary span {
  color: var(--blue);
  font-weight: 850;
}

.city-link {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.city-link span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.blog-card {
  grid-template-rows: auto 1fr;
}

.blog-card small {
  color: var(--blue);
  font-weight: 850;
}

.blog-hero {
  background:
    linear-gradient(120deg, rgba(255, 248, 234, 0.82), rgba(246, 248, 251, 0.96));
}

@media (max-width: 840px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
    gap: 10px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
  }

  .header-menu {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .header-menu.is-open {
    display: grid;
    gap: 10px;
  }

  .site-header nav,
  .site-header .category-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .site-header .category-nav {
    flex-basis: auto;
    padding-top: 0;
  }

  .site-header nav a,
  .site-header .category-nav a {
    flex: 1 1 150px;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .site-footer {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom p {
    white-space: normal;
  }

  .hero,
  .split-band,
  .content-grid,
  .form-section,
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding: 26px 16px 34px;
  }

  .hero h1,
  .guide-hero h1,
  .blog-hero h1 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .hero p,
  .guide-hero p,
  .blog-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .search-band {
    margin-top: 0;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-media img,
  .hero-slide img {
    min-height: 0;
  }

  .hero-media,
  .hero-media img,
  .hero-slide img {
    height: 100%;
  }

  .side-panel {
    position: static;
  }

  .section,
  .content-grid,
  .form-section,
  .provider-grid,
  .search-band,
  .article-body,
  .guide-hero,
  .blog-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-category-grid,
  .guide-card-grid,
  .blog-grid,
  .provider-grid,
  .video-grid,
  .city-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero img {
    max-width: 560px;
  }

  .jotform-card,
  .jotform-card iframe,
  .jotform-frame,
  .guide-jotform,
  .guide-submit-frame {
    min-height: 780px;
  }
}

@media (max-width: 560px) {
  .search-row,
  .guide-card-compact,
  .provider-card dl div,
  .details-list div {
    grid-template-columns: 1fr;
  }

  .guide-card-compact .guide-card-media img {
    min-height: 0;
  }

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

  .site-header nav {
    justify-content: flex-start;
  }

  .hero h1,
  .guide-hero h1,
  .blog-hero h1 {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .search-row button,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    flex-basis: auto;
  }

  .top-category-head,
  .category-card,
  .guide-row,
  .city-link,
  .review-summary,
  .footer-bottom nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-card,
  .guide-row,
  .city-link {
    gap: 6px;
    min-height: auto;
  }

  .provider-head {
    align-items: flex-start;
  }

  .video-card iframe {
    width: calc(100% - 20px);
    margin: 0 10px 12px;
  }

  .video-card h3,
  .video-card p,
  .provider-card p,
  .provider-card dl,
  .review-summary {
    margin-left: 12px;
    margin-right: 12px;
  }

  .split-band > div,
  .notice,
  .side-panel,
  .form-section form,
  .answer-box {
    padding: 16px;
  }

  .steps,
  .signal-list,
  .article-body ol {
    padding-left: 18px;
  }

  .jotform-card,
  .jotform-card iframe,
  .jotform-frame,
  .guide-jotform,
  .guide-submit-frame {
    min-height: 860px;
  }

  .ai-chat {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .ai-chat-toggle {
    width: 100%;
    justify-content: center;
  }

  .ai-chat-panel {
    width: 100%;
    max-height: calc(100vh - 30px);
  }

  .ai-chat-row {
    grid-template-columns: 1fr;
  }

  .ai-chat button[type="submit"],
  .ai-ticket-form button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header nav a,
  .site-header .category-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero h1,
  .guide-hero h1,
  .blog-hero h1 {
    font-size: 1.82rem;
  }

  .hero,
  .section,
  .content-grid,
  .form-section,
  .provider-grid,
  .search-band,
  .article-body,
  .guide-hero,
  .blog-hero {
    padding-left: 12px;
    padding-right: 12px;
  }
}
