/* ============================================================
   PawRescue — Emergency Vet Directory Theme
   Fully isolated CSS. Prefix: pw-
   Colors: Deep Teal #0F4C75 / Warm Amber #F59E0B
   Font: Plus Jakarta Sans (300–800)
   Design: Urgent Care with Heart — warm, rounded, reassuring
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --pw-teal: #0F4C75;
  --pw-teal-2: #1A6494;
  --pw-teal-3: #1B7EAD;
  --pw-teal-light: rgba(15,76,117,.08);
  --pw-teal-mid: rgba(15,76,117,.18);
  --pw-amber: #F59E0B;
  --pw-amber-dim: rgba(245,158,11,.12);
  --pw-amber-dark: #D97706;
  --pw-red: #EF4444;
  --pw-red-dim: rgba(239,68,68,.1);
  --pw-red-dark: #DC2626;
  --pw-green: #059669;
  --pw-green-dim: rgba(5,150,105,.1);
  --pw-white: #FFFFFF;
  --pw-cream: #FAFAF9;
  --pw-gray-50: #F5F7FA;
  --pw-gray-100: #EEF0F4;
  --pw-gray-200: #DDE1E9;
  --pw-gray-300: #C4C9D4;
  --pw-gray-400: #94A3B8;
  --pw-gray-500: #64748B;
  --pw-gray-600: #475569;
  --pw-gray-700: #374151;
  --pw-gray-800: #1E293B;
  --pw-gray-900: #111827;
  --pw-radius-sm: 8px;
  --pw-radius-md: 14px;
  --pw-radius-lg: 20px;
  --pw-radius-xl: 28px;
  --pw-radius-full: 9999px;
  --pw-shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --pw-shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --pw-shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --pw-shadow-card: 0 2px 12px rgba(15,76,117,.07);
  --pw-transition: 200ms ease;
  --pw-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  background: var(--pw-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pw-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pw-gray-900);
  margin: 0 0 .6em;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

p { margin: 0 0 1em; }
a { color: var(--pw-teal); text-decoration: none; transition: color var(--pw-transition); }
a:hover { color: var(--pw-teal-2); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: .35em; }

/* --- Layout --- */
.pw-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pw-wrap--narrow { max-width: 820px; }
.pw-wrap--wide { max-width: 1400px; }

@media (min-width: 768px) {
  .pw-wrap { padding: 0 32px; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.pw-topbar {
  background: linear-gradient(90deg, var(--pw-teal) 0%, var(--pw-teal-2) 100%);
  color: rgba(255,255,255,.88);
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pw-topbar__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pw-red);
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: pw-pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.55); }
  70% { box-shadow: 0 0 0 7px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.pw-topbar a { color: var(--pw-amber); text-decoration: underline; }
.pw-topbar a:hover { color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.pw-nav {
  background: var(--pw-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--pw-gray-100);
  box-shadow: 0 2px 12px rgba(15,76,117,.06);
}

.pw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.pw-nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.pw-nav__logo { height: 36px; width: auto; }

.pw-nav__links {
  display: none;
  gap: 4px;
}

@media (min-width: 900px) {
  .pw-nav__links { display: flex; }
}

.pw-nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--pw-gray-600);
  padding: 6px 12px;
  border-radius: var(--pw-radius-full);
  transition: background var(--pw-transition), color var(--pw-transition);
}

.pw-nav__links a:hover,
.pw-nav__links a.is-active {
  background: var(--pw-teal-light);
  color: var(--pw-teal);
}

.pw-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pw-nav__search {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-full);
  padding: 6px 14px 6px 10px;
  transition: border-color var(--pw-transition), box-shadow var(--pw-transition);
}

@media (min-width: 900px) {
  .pw-nav__search { display: flex; }
}

.pw-nav__search:focus-within {
  border-color: var(--pw-teal-3);
  box-shadow: 0 0 0 3px rgba(27,126,173,.12);
}

.pw-nav__search-icon { width: 15px; height: 15px; opacity: .45; flex-shrink: 0; }

.pw-nav__search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  width: 170px;
}

.pw-nav__search input::placeholder { color: var(--pw-gray-400); }

.pw-nav__cta {
  display: none;
  background: var(--pw-teal);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--pw-radius-full);
  white-space: nowrap;
  transition: background var(--pw-transition), transform var(--pw-transition);
}

@media (min-width: 640px) {
  .pw-nav__cta { display: inline-flex; align-items: center; gap: 6px; }
}

.pw-nav__cta:hover {
  background: var(--pw-teal-2);
  color: #fff !important;
  transform: translateY(-1px);
}

.pw-nav__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-sm);
  padding: 7px 12px;
  font-family: var(--pw-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-gray-700);
  cursor: pointer;
  transition: background var(--pw-transition);
}

.pw-nav__toggle:hover { background: var(--pw-gray-50); }

@media (min-width: 900px) {
  .pw-nav__toggle { display: none; }
}

.pw-nav__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}

.pw-nav__toggle-bars span {
  display: block;
  height: 2px;
  background: var(--pw-gray-600);
  border-radius: 2px;
  transition: width var(--pw-transition);
}

.pw-nav__toggle-bars span:nth-child(2) { width: 70%; }

/* --- Mobile Nav --- */
.pw-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.pw-mobile-nav[data-open] { display: block; }

.pw-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,76,117,.35);
  backdrop-filter: blur(2px);
}

.pw-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: var(--pw-white);
  box-shadow: var(--pw-shadow-lg);
  display: flex;
  flex-direction: column;
  border-radius: var(--pw-radius-lg) 0 0 var(--pw-radius-lg);
  overflow: hidden;
}

.pw-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--pw-gray-100);
}

.pw-mobile-nav__head p {
  font-weight: 700;
  font-size: 16px;
  color: var(--pw-teal);
  margin: 0;
}

.pw-mobile-nav__close {
  background: var(--pw-gray-100);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--pw-gray-600);
  cursor: pointer;
  transition: background var(--pw-transition);
  line-height: 1;
}

.pw-mobile-nav__close:hover { background: var(--pw-gray-200); }

.pw-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
}

.pw-mobile-nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--pw-gray-700);
  padding: 12px 16px;
  border-radius: var(--pw-radius-md);
  transition: background var(--pw-transition), color var(--pw-transition);
}

.pw-mobile-nav__links a:hover,
.pw-mobile-nav__links a.is-active {
  background: var(--pw-teal-light);
  color: var(--pw-teal);
}

.pw-mobile-nav__search {
  position: relative;
  margin: 0 16px 20px;
}

.pw-mobile-nav__search input {
  width: 100%;
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-full);
  padding: 10px 16px 10px 38px;
  font-size: 14px;
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  outline: none;
  transition: border-color var(--pw-transition);
}

.pw-mobile-nav__search input:focus { border-color: var(--pw-teal-3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.pw-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pw-font);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--pw-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--pw-transition);
  white-space: nowrap;
  line-height: 1;
}

.pw-btn--primary {
  background: var(--pw-teal);
  color: #fff;
  border-color: var(--pw-teal);
}

.pw-btn--primary:hover {
  background: var(--pw-teal-2);
  border-color: var(--pw-teal-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,76,117,.25);
}

.pw-btn--emergency {
  background: var(--pw-red);
  color: #fff;
  border-color: var(--pw-red);
}

.pw-btn--emergency:hover {
  background: var(--pw-red-dark);
  border-color: var(--pw-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,68,68,.3);
}

.pw-btn--amber {
  background: var(--pw-amber);
  color: var(--pw-gray-900);
  border-color: var(--pw-amber);
}

.pw-btn--amber:hover {
  background: var(--pw-amber-dark);
  border-color: var(--pw-amber-dark);
  color: var(--pw-gray-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.3);
}

.pw-btn--outline {
  background: transparent;
  color: var(--pw-teal);
  border-color: var(--pw-teal);
}

.pw-btn--outline:hover {
  background: var(--pw-teal-light);
  color: var(--pw-teal);
}

.pw-btn--outline-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.pw-btn--outline-light:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
}

.pw-btn--lg { padding: 14px 28px; font-size: 15px; }
.pw-btn--sm { padding: 8px 16px; font-size: 13px; }
.pw-btn--block { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.pw-hero {
  background: linear-gradient(135deg, #0F4C75 0%, #1B7EAD 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.pw-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.pw-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}

.pw-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .pw-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.pw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--pw-radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 20px;
}

.pw-hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--pw-amber);
  border-radius: 50%;
  animation: pw-pulse-amber 2s infinite;
  flex-shrink: 0;
}

@keyframes pw-pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,.6); }
  70% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.pw-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.pw-hero__title em {
  font-style: normal;
  color: var(--pw-amber);
}

.pw-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

.pw-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pw-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .pw-hero__stats { grid-template-columns: 1fr 1fr; }
}

.pw-hero__stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--pw-radius-lg);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.pw-hero__stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--pw-amber);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.pw-hero__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   SEARCH BAR (floating)
   ============================================================ */
.pw-search-bar {
  background: var(--pw-white);
  border-radius: var(--pw-radius-xl);
  box-shadow: var(--pw-shadow-lg);
  padding: 20px 24px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--pw-gray-100);
}

.pw-search-bar__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .pw-search-bar__form { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .pw-search-bar__form { grid-template-columns: 2fr 1fr 1fr auto; }
}

.pw-search-bar__field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-500);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}

.pw-search-bar__field input,
.pw-search-bar__field select {
  width: 100%;
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-md);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  outline: none;
  transition: border-color var(--pw-transition), box-shadow var(--pw-transition);
}

.pw-search-bar__field input:focus,
.pw-search-bar__field select:focus {
  border-color: var(--pw-teal-3);
  box-shadow: 0 0 0 3px rgba(27,126,173,.1);
  background: #fff;
}

.pw-search-bar__submit {
  display: flex;
  align-items: flex-end;
}

.pw-search-bar__submit .pw-btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--pw-radius-md);
  padding: 11px 20px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.pw-section {
  padding: 64px 0;
}

.pw-section--gray {
  background: var(--pw-gray-50);
}

.pw-section--teal {
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
}

.pw-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pw-section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-amber);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.pw-section__desc {
  font-size: 16px;
  color: var(--pw-gray-500);
  margin: 8px 0 0;
  max-width: 520px;
}

.pw-section__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-teal);
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--pw-radius-full);
  border: 1.5px solid var(--pw-teal-mid);
  transition: all var(--pw-transition);
  margin-top: 4px;
}

.pw-section__link:hover {
  background: var(--pw-teal-light);
  color: var(--pw-teal);
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.pw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pw-steps { grid-template-columns: repeat(3, 1fr); }
}

.pw-step {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--pw-shadow-card);
  transition: transform var(--pw-transition), box-shadow var(--pw-transition), border-color var(--pw-transition);
}

.pw-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--pw-shadow-md);
  border-color: var(--pw-teal-light);
}

.pw-step__num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(15,76,117,.25);
}

.pw-step__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pw-gray-900);
}

.pw-step__content p {
  font-size: 14px;
  color: var(--pw-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   STATE / AREA GRID
   ============================================================ */
.pw-state-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 480px) { .pw-state-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .pw-state-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .pw-state-list { grid-template-columns: repeat(5, 1fr); } }

.pw-state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-md);
  padding: 12px 14px;
  box-shadow: var(--pw-shadow-sm);
  transition: all var(--pw-transition);
  color: var(--pw-gray-700);
  font-size: 14px;
  font-weight: 600;
}

.pw-state-link:hover {
  border-color: var(--pw-teal-3);
  color: var(--pw-teal);
  background: var(--pw-teal-light);
  transform: translateY(-2px);
  box-shadow: var(--pw-shadow-md);
}

.pw-state-link__name { flex: 1; }

.pw-state-link__count {
  font-size: 11px;
  font-weight: 700;
  background: var(--pw-teal-light);
  color: var(--pw-teal);
  padding: 2px 7px;
  border-radius: var(--pw-radius-full);
}

.pw-state-link:hover .pw-state-link__count {
  background: rgba(15,76,117,.15);
}

/* ============================================================
   FEATURED VET CARDS (Homepage)
   ============================================================ */
.pw-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pw-featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pw-featured-grid { grid-template-columns: repeat(3, 1fr); }
}

.pw-vet-card {
  display: flex;
  flex-direction: column;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  box-shadow: var(--pw-shadow-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--pw-transition), box-shadow var(--pw-transition), border-color var(--pw-transition);
  color: inherit;
}

.pw-vet-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pw-shadow-md);
  border-color: rgba(15,76,117,.15);
  color: inherit;
}

.pw-vet-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.pw-vet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.pw-vet-card:hover .pw-vet-card__img { transform: scale(1.04); }

.pw-vet-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pw-vet-card__badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--pw-radius-full);
  padding: 3px 10px;
}

.pw-vet-card__badge--rating {
  background: rgba(15,76,117,.85);
  color: #fff;
  backdrop-filter: blur(4px);
}

.pw-vet-card__badge--tag {
  background: rgba(245,158,11,.9);
  color: var(--pw-gray-900);
}

.pw-vet-card__badge--open {
  background: rgba(5,150,105,.9);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pw-vet-card__badge--open::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.pw-vet-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-vet-card__location {
  font-size: 12px;
  font-weight: 600;
  color: var(--pw-teal-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.pw-vet-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pw-vet-card__meta {
  font-size: 13px;
  color: var(--pw-gray-500);
  margin-bottom: 10px;
}

.pw-vet-card__summary {
  font-size: 14px;
  color: var(--pw-gray-600);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pw-vet-card__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pw-vet-card__chip {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--pw-amber-dim);
  color: var(--pw-amber-dark);
  border-radius: var(--pw-radius-full);
  padding: 3px 10px;
}

.pw-vet-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--pw-gray-100);
  margin-top: auto;
}

.pw-vet-card__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-teal);
}

.pw-vet-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--pw-teal);
  background: var(--pw-teal-light);
  padding: 4px 12px;
  border-radius: var(--pw-radius-full);
  transition: background var(--pw-transition);
}

.pw-vet-card:hover .pw-vet-card__cta {
  background: var(--pw-teal-mid);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.pw-cta-banner {
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
  border-radius: var(--pw-radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}

.pw-cta-banner h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.pw-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   JOURNAL GRID
   ============================================================ */
.pw-journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pw-journal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pw-journal-grid { grid-template-columns: repeat(3, 1fr); }
}

.pw-journal-card {
  display: flex;
  flex-direction: column;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--pw-shadow-card);
  transition: transform var(--pw-transition), box-shadow var(--pw-transition), border-color var(--pw-transition);
}

.pw-journal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pw-shadow-md);
  border-color: rgba(15,76,117,.15);
  color: inherit;
}

.pw-journal-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 350ms ease;
}

.pw-journal-card:hover .pw-journal-card__img { transform: scale(1.04); }

.pw-journal-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-journal-card__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-amber-dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.pw-journal-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.pw-journal-card__excerpt {
  font-size: 13.5px;
  color: var(--pw-gray-500);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   LISTING HERO
   ============================================================ */
.pw-listing-hero {
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
  padding: 52px 0 44px;
  color: #fff;
}

.pw-listing-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pw-amber);
  margin-bottom: 10px;
}

.pw-listing-hero h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.pw-listing-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 20px;
}

.pw-listing-hero__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pw-listing-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pw-listing-hero__stat span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pw-listing-hero__stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--pw-amber);
}

/* ============================================================
   TOOLBAR
   ============================================================ */
.pw-toolbar {
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-lg);
  padding: 20px;
  margin: 28px 0 24px;
  box-shadow: var(--pw-shadow-sm);
}

.pw-toolbar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .pw-toolbar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pw-toolbar__grid { grid-template-columns: 2fr 1fr 1fr 1fr auto; }
}

.pw-toolbar__field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-400);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}

.pw-toolbar__field input,
.pw-toolbar__field select {
  width: 100%;
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-md);
  padding: 9px 12px;
  font-size: 14px;
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  outline: none;
  transition: border-color var(--pw-transition), box-shadow var(--pw-transition);
}

.pw-toolbar__field input:focus,
.pw-toolbar__field select:focus {
  border-color: var(--pw-teal-3);
  box-shadow: 0 0 0 3px rgba(27,126,173,.1);
  background: #fff;
}

.pw-toolbar__actions {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

/* ============================================================
   RESULTS & CARD GRID
   ============================================================ */
.pw-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.pw-results__head h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.pw-results__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-gray-500);
  background: var(--pw-gray-100);
  padding: 4px 12px;
  border-radius: var(--pw-radius-full);
}

/* Active filter chips */
.pw-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pw-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--pw-radius-full);
  background: var(--pw-teal-light);
  color: var(--pw-teal);
  border: 1px solid var(--pw-teal-mid);
  transition: all var(--pw-transition);
  text-decoration: none;
}

.pw-chip:hover {
  background: var(--pw-teal);
  color: #fff;
}

/* ============================================================
   LISTING CARDS (pw-card)
   ============================================================ */
.pw-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .pw-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pw-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.pw-card {
  display: flex;
  flex-direction: column;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--pw-shadow-card);
  transition: transform var(--pw-transition), box-shadow var(--pw-transition), border-color var(--pw-transition);
}

.pw-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pw-shadow-md);
  border-color: rgba(15,76,117,.15);
  color: inherit;
}

.pw-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.pw-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.pw-card:hover .pw-card__img img { transform: scale(1.04); }

.pw-card__tag {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--pw-radius-full);
  padding: 3px 9px;
}

.pw-card__tag--24h {
  top: 8px;
  left: 8px;
  background: var(--pw-green);
  color: #fff;
}

.pw-card__tag--rating {
  top: 8px;
  right: 8px;
  background: rgba(15,76,117,.85);
  color: #fff;
  backdrop-filter: blur(4px);
}

.pw-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-card__location {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pw-teal-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.pw-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pw-card__chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pw-card__chips span {
  font-size: 11px;
  font-weight: 600;
  background: var(--pw-amber-dim);
  color: var(--pw-amber-dark);
  border-radius: var(--pw-radius-full);
  padding: 2px 9px;
}

.pw-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--pw-gray-100);
}

.pw-card__phone {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pw-teal);
}

.pw-card__reviews {
  font-size: 12.5px;
  color: var(--pw-gray-500);
}

.pw-card__arrow {
  font-size: 14px;
  color: var(--pw-gray-400);
  transition: color var(--pw-transition), transform var(--pw-transition);
}

.pw-card:hover .pw-card__arrow {
  color: var(--pw-teal);
  transform: translateX(3px);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pw-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pw-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pw-gray-700);
  background: var(--pw-white);
  border: 1.5px solid var(--pw-gray-200);
  transition: all var(--pw-transition);
  text-decoration: none;
}

.pw-pagination a:hover {
  border-color: var(--pw-teal);
  color: var(--pw-teal);
  background: var(--pw-teal-light);
}

.pw-pagination a.is-active {
  background: var(--pw-teal);
  border-color: var(--pw-teal);
  color: #fff;
}

.pw-pagination a.is-disabled {
  opacity: .38;
  pointer-events: none;
}

.pw-pagination a:first-child,
.pw-pagination a:last-child {
  width: auto;
  padding: 0 14px;
  border-radius: var(--pw-radius-full);
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.pw-detail-hero {
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-2) 100%);
  padding: 44px 0 36px;
}

.pw-detail-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .pw-detail-hero__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.pw-detail-hero__text { flex: 1; }

.pw-detail-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pw-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--pw-radius-full);
}

.pw-tag--green {
  background: var(--pw-green-dim);
  color: var(--pw-green);
}

.pw-tag--open {
  background: var(--pw-green-dim);
  color: var(--pw-green);
}

.pw-tag--open::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pw-green);
}

.pw-tag--amber {
  background: var(--pw-amber-dim);
  color: var(--pw-amber-dark);
}

.pw-tag--pulse {
  background: rgba(5,150,105,.15);
  color: var(--pw-green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pw-tag--pulse::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pw-green);
  animation: pw-pulse-green 1.8s infinite;
}

@keyframes pw-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(5,150,105,.55); }
  70% { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); }
}

.pw-tag--orange {
  background: rgba(249,115,22,.12);
  color: #C2410C;
}

.pw-detail-hero__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.pw-detail-hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}

.pw-detail-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}

.pw-detail-hero__stars {
  display: flex;
  gap: 2px;
}

.pw-detail-hero__rating strong {
  font-weight: 700;
  color: var(--pw-amber);
}

.pw-detail-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Gallery */
.pw-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 24px 0;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .pw-detail-gallery { grid-template-columns: 2fr 1fr; }
}

.gallery-main { grid-row: 1 / 3; }
.pw-detail-gallery .gallery-main { grid-row: unset; }
@media (min-width: 640px) {
  .pw-detail-gallery .gallery-main { grid-row: 1 / 3; }
}

.gallery-main button,
.gallery-card button {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
}

.gallery-main img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-main { min-height: 260px; }
@media (min-width: 640px) { .gallery-main { min-height: 360px; } }

.gallery-main button:hover img,
.gallery-card button:hover img { transform: scale(1.03); }

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.gallery-card { position: relative; overflow: hidden; height: 100%; max-height: none; }

.gallery-card-photo-count figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(2px);
  color: #fff;
  font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase;
  pointer-events: none;
  transition: background 250ms ease;
}
.gallery-card-photo-count:hover figcaption {
  background: rgba(0,0,0,.62);
}

/* Detail layout */
.pw-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 64px;
}

@media (min-width: 900px) {
  .pw-detail__layout { grid-template-columns: 1fr 340px; }
}

.pw-detail__main { min-width: 0; }

/* Quick facts */
.pw-quick-facts {
  display: flex;
  gap: 0;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  overflow: hidden;
  box-shadow: var(--pw-shadow-sm);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pw-quick-fact {
  flex: 1;
  min-width: 120px;
  padding: 16px 18px;
  border-right: 1px solid var(--pw-gray-100);
}

.pw-quick-fact:last-child { border-right: none; }

.pw-quick-fact__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-400);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.pw-quick-fact__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--pw-gray-900);
}

/* Detail sections */
.pw-detail__section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pw-gray-100);
}

.pw-detail__section--first { padding-top: 0; }

.pw-detail__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pw-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pw-section-head h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.pw-section-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pw-teal-light);
  border-radius: var(--pw-radius-sm);
  flex-shrink: 0;
}

.pw-section-head__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-teal);
}

.pw-detail__lead {
  font-size: 16px;
  color: var(--pw-gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pw-detail__subtext {
  font-size: 15px;
  color: var(--pw-gray-600);
  line-height: 1.7;
}

/* Amenity chips */
.pw-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pw-amenity-chip {
  font-size: 13px;
  font-weight: 600;
  background: var(--pw-amber-dim);
  color: var(--pw-amber-dark);
  border-radius: var(--pw-radius-full);
  padding: 5px 13px;
  border: 1px solid rgba(245,158,11,.2);
}

/* Amenity groups */
.pw-amenity-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pw-amenity-groups { grid-template-columns: repeat(2, 1fr); }
}

.pw-amenity-group {
  background: var(--pw-gray-50);
  border-radius: var(--pw-radius-md);
  padding: 18px 20px;
  border: 1px solid var(--pw-gray-100);
}

.pw-amenity-group h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-teal);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pw-amenity-group > p {
  font-size: 13px;
  color: var(--pw-gray-500);
  margin-bottom: 10px;
}

/* Highlights */
.pw-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .pw-highlights { grid-template-columns: repeat(4, 1fr); }
}

.pw-highlight {
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-md);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--pw-shadow-sm);
}

.pw-highlight__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-400);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.pw-highlight__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--pw-teal);
  margin-bottom: 3px;
}

.pw-highlight__meta {
  font-size: 12px;
  color: var(--pw-gray-500);
}

/* Map */
.pw-map {
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pw-gray-100);
}

.pw-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Snapshot */
.pw-snapshot {
  background: var(--pw-gray-50);
  border-radius: var(--pw-radius-md);
  border: 1px solid var(--pw-gray-100);
  overflow: hidden;
}

.pw-snapshot__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--pw-gray-100);
  align-items: center;
}

.pw-snapshot__row:last-child { border-bottom: none; }

.pw-snapshot__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pw-gray-500);
}

.pw-snapshot__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-gray-900);
}

.pw-snapshot__meta {
  font-size: 12px;
  color: var(--pw-gray-400);
  grid-column: 1 / -1;
  margin-top: -6px;
}

/* Booking channels */
.pw-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-md);
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--pw-shadow-sm);
  transition: all var(--pw-transition);
}

.pw-channel:hover {
  border-color: var(--pw-teal-3);
  box-shadow: var(--pw-shadow-md);
  color: inherit;
  transform: translateY(-2px);
}

.pw-channel__info { display: flex; flex-direction: column; gap: 2px; }
.pw-channel__info strong { font-size: 15px; font-weight: 700; color: var(--pw-gray-900); }
.pw-channel__info span { font-size: 13px; color: var(--pw-gray-500); }

.pw-channel__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--pw-teal);
  white-space: nowrap;
}

/* Linked post */
.pw-linked-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--pw-gray-50);
  border-radius: var(--pw-radius-lg);
  border: 1px solid var(--pw-gray-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--pw-transition);
}

@media (min-width: 640px) {
  .pw-linked-post { grid-template-columns: 200px 1fr; }
}

.pw-linked-post:hover {
  box-shadow: var(--pw-shadow-md);
  border-color: rgba(15,76,117,.15);
  color: inherit;
}

.pw-linked-post__img { overflow: hidden; }
.pw-linked-post__img img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.pw-linked-post:hover .pw-linked-post__img img { transform: scale(1.05); }

.pw-linked-post__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.pw-linked-post__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-amber-dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.pw-linked-post__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pw-gray-900);
}

.pw-linked-post__body p {
  font-size: 14px;
  color: var(--pw-gray-500);
  line-height: 1.6;
  flex: 1;
}

.pw-linked-post__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pw-teal);
  margin-top: 12px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.pw-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .pw-detail__aside { position: sticky; top: 80px; align-self: start; }
}

.pw-sidebar-cta {
  background: linear-gradient(150deg, var(--pw-teal) 0%, var(--pw-teal-2) 100%);
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
}

.pw-sidebar-cta__head {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.pw-sidebar-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-green);
  background: var(--pw-green-dim);
  border-radius: var(--pw-radius-full);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.pw-sidebar-cta__dot {
  width: 6px;
  height: 6px;
  background: var(--pw-green);
  border-radius: 50%;
  animation: pw-pulse-green 1.8s infinite;
}

.pw-sidebar-cta__head h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.pw-sidebar-cta__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.pw-sidebar-cta__stars span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-left: 2px;
}

.pw-sidebar-cta__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-sidebar-cta__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.pw-sidebar-cta__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.8);
}

.pw-sidebar-cta__row svg { opacity: .65; flex-shrink: 0; }

/* Sidebar tip */
.pw-sidebar-tip {
  background: var(--pw-amber-dim);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--pw-radius-lg);
  padding: 18px 20px;
}

.pw-sidebar-tip__title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pw-amber-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.pw-sidebar-tip p:last-child {
  font-size: 13.5px;
  color: var(--pw-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar card (article promo) */
.pw-sidebar-card {
  background: linear-gradient(150deg, var(--pw-teal) 0%, var(--pw-teal-2) 100%);
  border-radius: var(--pw-radius-lg);
  padding: 20px;
  color: #fff;
}

.pw-sidebar-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pw-sidebar-card p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 12px; }
.pw-sidebar-card img { border-radius: var(--pw-radius-sm); margin-bottom: 12px; }

.pw-sidebar-card__actions { display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   RELATED VETS SECTION
   ============================================================ */
.pw-related {
  background: var(--pw-gray-50);
  padding: 52px 0;
  border-top: 1px solid var(--pw-gray-100);
}

.pw-related__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-amber-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.pw-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pw-related__head h2 { font-size: 22px; font-weight: 700; margin: 0; }

/* ============================================================
   ARTICLE / BLOG
   ============================================================ */
.pw-article {
  padding: 40px 0 64px;
}

.pw-article__breadcrumb {
  font-size: 13px;
  color: var(--pw-gray-400);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.pw-article__breadcrumb a { color: var(--pw-teal); }
.pw-article__breadcrumb a:hover { text-decoration: underline; }

.pw-article__hero-img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: var(--pw-radius-lg);
  margin-bottom: 28px;
}

.pw-article__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .pw-article__layout { grid-template-columns: 1fr 280px; }
}

.pw-article__main { min-width: 0; }

.pw-article__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pw-article__tag {
  font-size: 11.5px;
  font-weight: 700;
  background: var(--pw-teal-light);
  color: var(--pw-teal);
  border-radius: var(--pw-radius-full);
  padding: 4px 12px;
}

.pw-article__title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--pw-gray-900);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.pw-article__excerpt {
  font-size: 18px;
  color: var(--pw-gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pw-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pw-article__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.pw-article__author-name { font-size: 15px; font-weight: 700; color: var(--pw-gray-900); }
.pw-article__author-role { font-size: 13px; color: var(--pw-gray-500); }

.pw-testimonial {
  margin: 0;
  padding: 24px 28px;
  background: rgba(15,76,117,.05);
  border-left: 4px solid var(--pw-teal);
  border-radius: 0 var(--pw-radius-md) var(--pw-radius-md) 0;
}
.pw-testimonial__icon { display: block; margin-bottom: 12px; opacity: .3; }
.pw-testimonial__text {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--pw-gray-700);
  font-style: italic;
}
.pw-testimonial__source {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--pw-gray-500);
  text-transform: uppercase; letter-spacing: .05em;
}
.pw-testimonial__stars { display: flex; gap: 2px; }

.pw-article__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pw-gray-700);
}

.pw-article__body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin: 32px 0 14px;
}

.pw-article__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin: 24px 0 10px;
}

.pw-article__body p { margin-bottom: 18px; }
.pw-article__body ul, .pw-article__body ol { margin-bottom: 18px; padding-left: 1.5em; }
.pw-article__body li { margin-bottom: .45em; }

.pw-article__body a {
  color: var(--pw-teal);
  text-decoration: underline;
  text-decoration-color: rgba(15,76,117,.35);
}

.pw-article__body a:hover { text-decoration-color: var(--pw-teal); }

.pw-article__body strong { font-weight: 700; color: var(--pw-gray-900); }

.pw-article__body blockquote {
  border-left: 3px solid var(--pw-amber);
  margin: 24px 0;
  padding: 14px 20px;
  background: var(--pw-amber-dim);
  border-radius: 0 var(--pw-radius-md) var(--pw-radius-md) 0;
  font-style: italic;
  color: var(--pw-gray-700);
}

.pw-article__body img {
  border-radius: var(--pw-radius-md);
  margin: 20px 0;
}

.pw-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--pw-gray-100);
}

.pw-article__nav a {
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-md);
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: all var(--pw-transition);
}

.pw-article__nav a:hover {
  border-color: var(--pw-teal-3);
  background: var(--pw-teal-light);
}

.pw-article__nav-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.pw-article__nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin: 0;
  line-height: 1.4;
}

/* Sidebar */
.pw-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .pw-article__sidebar { position: sticky; top: 80px; align-self: start; }
}

/* TOC */
.pw-toc {
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-lg);
  padding: 18px 20px;
  box-shadow: var(--pw-shadow-sm);
}

.pw-toc__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pw-gray-400);
  margin-bottom: 12px;
}

.pw-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pw-toc__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--pw-gray-600);
  padding: 5px 10px;
  border-radius: var(--pw-radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--pw-transition);
  text-decoration: none;
}

.pw-toc__nav a:hover {
  color: var(--pw-teal);
  background: var(--pw-teal-light);
  border-left-color: var(--pw-teal);
}

.pw-toc__nav a.level-3 { padding-left: 22px; font-size: 12.5px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.pw-about {
  padding: 52px 0 72px;
}

.pw-about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .pw-about__layout { grid-template-columns: 1fr 300px; }
}

.pw-about__lead {
  font-size: 18px;
  color: var(--pw-gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pw-about__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--pw-gray-100);
}

.pw-about__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.pw-about__body p { font-size: 15.5px; color: var(--pw-gray-700); line-height: 1.7; }
.pw-about__body a { color: var(--pw-teal); text-decoration: underline; }
.pw-about__body ul { margin-bottom: 16px; }
.pw-about__body li { font-size: 15px; color: var(--pw-gray-700); margin-bottom: .4em; }

.pw-about__info-card {
  background: linear-gradient(150deg, var(--pw-teal) 0%, var(--pw-teal-2) 100%);
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
}

.pw-about__info-row {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pw-about__info-row:last-child { border-bottom: none; }

.pw-about__info-row span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pw-about__info-row p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: right;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.pw-contact {
  padding: 52px 0 72px;
}

.pw-contact__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.pw-contact__header p { font-size: 16px; color: var(--pw-gray-500); }

.pw-contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .pw-contact__layout { grid-template-columns: 1fr 1fr; }
}

.pw-contact__info {
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-lg);
  padding: 28px;
  box-shadow: var(--pw-shadow-sm);
}

.pw-contact__info h2 { font-size: 20px; margin-bottom: 20px; }

.pw-contact__info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }

.pw-contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pw-gray-100);
}

.pw-contact__info-item:last-child { border-bottom: none; }

.pw-contact__info-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--pw-gray-400);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pw-contact__info-item a,
.pw-contact__info-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--pw-teal);
}

.pw-contact__help-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-contact__help-card {
  background: var(--pw-gray-50);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-md);
  padding: 14px 16px;
}

.pw-contact__help-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin-bottom: 3px;
}

.pw-contact__help-card span {
  font-size: 13px;
  color: var(--pw-gray-500);
}

.pw-contact__form-card {
  background: var(--pw-white);
  border: 1px solid var(--pw-gray-100);
  border-radius: var(--pw-radius-lg);
  padding: 28px;
  box-shadow: var(--pw-shadow-sm);
}

.pw-contact__form-card h2 { font-size: 20px; margin-bottom: 4px; }

.pw-contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.pw-contact__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pw-contact__field--full { grid-column: 1 / -1; }

.pw-contact__field span {
  font-size: 12px;
  font-weight: 700;
  color: var(--pw-gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pw-contact__field input,
.pw-contact__field textarea,
.pw-contact__field select {
  background: var(--pw-gray-50);
  border: 1.5px solid var(--pw-gray-200);
  border-radius: var(--pw-radius-md);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--pw-font);
  color: var(--pw-gray-800);
  outline: none;
  transition: border-color var(--pw-transition), box-shadow var(--pw-transition);
  width: 100%;
}

.pw-contact__field input:focus,
.pw-contact__field textarea:focus {
  border-color: var(--pw-teal-3);
  box-shadow: 0 0 0 3px rgba(27,126,173,.1);
  background: #fff;
}

.pw-contact__field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.pw-contact__field small {
  font-size: 12px;
  color: var(--pw-red);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.pw-404 {
  padding: 80px 0;
  text-align: center;
}

.pw-404__code {
  font-size: clamp(80px, 20vw, 160px);
  font-weight: 800;
  color: var(--pw-teal);
  opacity: .12;
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -.04em;
}

.pw-404 h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--pw-gray-900);
  margin-bottom: 12px;
}

.pw-404 > div > p {
  font-size: 16px;
  color: var(--pw-gray-500);
  max-width: 440px;
  margin: 0 auto 32px;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.pw-policy {
  padding: 52px 0 72px;
}

.pw-policy__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .pw-policy__layout { grid-template-columns: 1fr 260px; }
}

.pw-policy__main h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
}

.pw-policy__lead {
  font-size: 16px;
  color: var(--pw-gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

.pw-policy__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pw-gray-900);
  margin: 32px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--pw-gray-100);
}

.pw-policy__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.pw-policy__body p { font-size: 15px; color: var(--pw-gray-700); line-height: 1.7; margin-bottom: 14px; }
.pw-policy__body ul { margin-bottom: 16px; }
.pw-policy__body li { font-size: 15px; color: var(--pw-gray-700); }

/* ============================================================
   BLOG HERO
   ============================================================ */
.pw-blog-hero {
  background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-3) 100%);
  padding: 52px 0 44px;
  color: #fff;
}

.pw-blog-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.pw-blog-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pw-footer {
  background: linear-gradient(150deg, var(--pw-teal) 0%, #0a3558 100%);
  padding: 52px 0 32px;
  margin-top: 0;
}

.pw-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (min-width: 640px) {
  .pw-footer__inner { grid-template-columns: 1.5fr 1fr; }
}

.pw-footer__brand h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pw-footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 6px;
}

.pw-footer__brand a { color: var(--pw-amber); }
.pw-footer__brand a:hover { color: #fff; }

.pw-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-content: flex-start;
}

.pw-footer__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 5px 10px;
  border-radius: var(--pw-radius-sm);
  transition: color var(--pw-transition), background var(--pw-transition);
  text-decoration: none;
  display: block;
  width: 100%;
}

@media (min-width: 480px) {
  .pw-footer__links a { width: auto; }
}

.pw-footer__links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.pw-footer__bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   OPEN 24/7 BADGE
   ============================================================ */
.pw-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pw-green-dim);
  color: var(--pw-green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--pw-radius-full);
  border: 1px solid rgba(5,150,105,.18);
}

.pw-open-badge::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pw-green);
  animation: pw-pulse-green 1.8s infinite;
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .pw-hero { padding: 52px 0 76px; }
  .pw-hero__title { font-size: 30px; }
  .pw-detail-hero { padding: 32px 0 28px; }
  .pw-detail__layout { gap: 20px; }
  .pw-cta-banner { padding: 36px 24px; }
  .pw-contact__form { grid-template-columns: 1fr; }
  .pw-contact__field--full { grid-column: 1; }
  .pw-highlights { grid-template-columns: 1fr 1fr; }
  .pw-amenity-groups { grid-template-columns: 1fr; }
  .pw-about__info-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pw-about__info-row p { text-align: left; }
  .pw-policy__layout { gap: 28px; }
  .pw-quick-facts { flex-direction: column; }
  .pw-quick-fact { border-right: none; border-bottom: 1px solid var(--pw-gray-100); }
  .pw-quick-fact:last-child { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .pw-hero { padding: 40px 0 68px; }
  .pw-hero__actions { flex-direction: column; }
  .pw-hero__actions .pw-btn { width: 100%; justify-content: center; }
  .pw-steps { grid-template-columns: 1fr; }
  .pw-state-list { grid-template-columns: 1fr 1fr; }
  .pw-featured-grid { grid-template-columns: 1fr; }
  .pw-journal-grid { grid-template-columns: 1fr; }
  .pw-article__nav { grid-template-columns: 1fr; }
  .pw-detail-hero__actions { flex-direction: column; }
  .pw-detail-hero__actions .pw-btn { width: 100%; justify-content: center; }
  .pw-toolbar__actions { flex-direction: column; }
  .pw-card-grid { grid-template-columns: 1fr; }
  .pw-pagination a { width: 34px; height: 34px; font-size: 12.5px; }
  .pw-cta-banner { padding: 32px 20px; }
  .pw-about { padding: 36px 0 52px; }
  .pw-contact { padding: 36px 0 52px; }
  .pw-article { padding: 28px 0 48px; }
  .pw-linked-post { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.pw-text-center { text-align: center; }
.pw-mt-0 { margin-top: 0 !important; }
.pw-mb-0 { margin-bottom: 0 !important; }
.pw-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;
}

/* Featured first blog post override */
.pw-featured-first {
  display: grid;
  gap: 0;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pw-gray-100);
  box-shadow: var(--pw-shadow-card);
  margin-bottom: 40px;
}

.pw-featured-first__link {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.pw-featured-first__link:hover { color: inherit; }

.pw-featured-first__link img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  transition: transform 350ms ease;
}

.pw-featured-first__link:hover img { transform: scale(1.02); }

.pw-featured-first__body { padding: 28px; }

/* ====================================================
   TRIAGE LAYOUT (Homepage Redesign)
   ==================================================== */

/* Alert strip */
.pw-alert-strip {
  background: #dc2626;
  color: #fff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
}

.pw-alert-strip__pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pw-pulse 1.2s ease-in-out infinite;
}

@keyframes pw-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.pw-alert-strip__link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}

/* Triage Hero */
.pw-triage-hero {
  background: linear-gradient(135deg, #0F4C75 0%, #1B7EAD 100%);
  padding: 0;
}

.pw-triage-hero__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 78vh;
  align-items: center;
  gap: 0;
}

.pw-triage-hero__left {
  padding: 64px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pw-triage-hero__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.pw-triage-hero__accent {
  display: block;
  color: var(--pw-amber, #F59E0B);
  font-style: normal;
}

.pw-triage-hero__desc {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

.pw-triage-hero__search {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.pw-triage-hero__input,
.pw-triage-hero__select {
  background: #fff;
  border: none;
  border-bottom: 1.5px solid rgba(15,76,117,.12);
  padding: 16px 20px;
  font-size: .95rem;
  color: #1a1a1a;
  outline: none;
  width: 100%;
}

.pw-triage-hero__input::placeholder { color: rgba(15,76,117,.4); }

.pw-triage-hero__right {
  background: rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.15);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 48px 40px;
}

/* Checklist */
.pw-checklist {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
}

.pw-checklist__title {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 20px;
}

.pw-checklist__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pw-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

.pw-checklist__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pw-amber, #F59E0B);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
}

/* Vitals bar */
.pw-vitals-bar {
  background: #0F4C75;
  padding: 20px 0;
  border-bottom: 3px solid var(--pw-amber, #F59E0B);
}

.pw-vitals-bar__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.pw-vital {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 8px 24px;
  min-width: 180px;
}

.pw-vital__icon { font-size: 1.4rem; }

.pw-vital__val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pw-vital__lbl {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px;
}

.pw-vital__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Specialty pills */
.pw-specialty-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pw-specialty-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1.5px solid rgba(15,76,117,.12);
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  color: #0F4C75;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(15,76,117,.06);
}
.pw-specialty-pill:hover {
  background: #0F4C75;
  color: #fff;
  border-color: #0F4C75;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15,76,117,.18);
}
.pw-specialty-pill--all { border-style: dashed; }

.pw-specialty-pill__icon { font-size: 1.3rem; }

/* Hospital grid — 2 wide with more info */
.pw-hospital-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pw-hospital-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,76,117,.08);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: 1.5px solid rgba(15,76,117,.06);
}
.pw-hospital-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,76,117,.14);
}

.pw-hospital-card__img-wrap { height: 200px; overflow: hidden; position: relative; }
.pw-hospital-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pw-hospital-card:hover .pw-hospital-card__img { transform: scale(1.03); }

.pw-hospital-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pw-amber, #F59E0B);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pw-hospital-card__body { padding: 20px; }

.pw-hospital-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.pw-hospital-card__loc {
  font-size: .78rem;
  color: rgba(15,76,117,.6);
  margin: 0 0 4px;
}

.pw-hospital-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: #0F4C75;
  margin: 0;
  line-height: 1.3;
}

.pw-hospital-card__score {
  text-align: right;
  flex-shrink: 0;
}

.pw-hospital-card__stars {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--pw-amber, #F59E0B);
}
.pw-hospital-card__reviews {
  display: block;
  font-size: .72rem;
  color: rgba(15,76,117,.5);
  margin-top: 2px;
}

.pw-hospital-card__summary {
  font-size: .85rem;
  color: rgba(15,76,117,.65);
  line-height: 1.6;
  margin: 0 0 12px;
}

.pw-hospital-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.pw-hospital-card__service {
  background: rgba(15,76,117,.07);
  color: #0F4C75;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.pw-hospital-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(15,76,117,.08);
}
.pw-hospital-card__phone {
  font-size: .85rem;
  font-weight: 700;
  color: #0F4C75;
}
.pw-hospital-card__cta {
  font-size: .8rem;
  font-weight: 800;
  color: var(--pw-amber, #F59E0B);
}

/* Section variants */
.pw-section--cream { background: #FAF8F5; }
.pw-section--teal-soft { background: #EEF5FA; }

/* State grid */
.pw-state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.pw-state-card {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(15,76,117,.1);
  text-decoration: none;
  transition: all .2s;
}
.pw-state-card:hover {
  border-color: #0F4C75;
  box-shadow: 0 4px 14px rgba(15,76,117,.1);
  transform: translateY(-2px);
}
.pw-state-card__name {
  font-size: .85rem;
  font-weight: 700;
  color: #0F4C75;
}
.pw-state-card__count {
  font-size: .72rem;
  color: rgba(15,76,117,.5);
  margin-top: 4px;
}

/* Guide cards */
.pw-guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.pw-guide-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1.5px solid rgba(15,76,117,.08);
  box-shadow: 0 2px 12px rgba(15,76,117,.06);
  transition: transform .2s, box-shadow .2s;
}
.pw-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,76,117,.12);
}
.pw-guide-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.pw-guide-card__body { padding: 18px; }
.pw-guide-card__cat {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pw-amber, #F59E0B);
  margin-bottom: 6px;
}
.pw-guide-card__title {
  font-size: .95rem;
  font-weight: 800;
  color: #0F4C75;
  margin: 0 0 8px;
  line-height: 1.35;
}
.pw-guide-card__excerpt {
  font-size: .82rem;
  color: rgba(15,76,117,.6);
  margin: 0 0 12px;
  line-height: 1.55;
}
.pw-guide-card__read {
  font-size: .78rem;
  font-weight: 700;
  color: #0F4C75;
}

/* Responsive */
@media (max-width: 900px) {
  .pw-triage-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .pw-triage-hero__right { height: auto; border-left: none; border-top: 1px solid rgba(255,255,255,.15); }
  .pw-triage-hero__left { padding: 40px 24px; }
  .pw-hospital-grid { grid-template-columns: 1fr; }
  .pw-guide-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pw-specialty-pills { gap: 8px; }
  .pw-vitals-bar__inner { gap: 0; }
  .pw-vital { min-width: 50%; }
}

/* ====================================================
   TRIAGE HERO POLISH + LAYOUT FIXES
   ==================================================== */

/* Tighten the hero — remove gap between form inputs */
.pw-triage-hero__search {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  border: 1.5px solid rgba(255,255,255,.15);
}

.pw-triage-hero__input {
  border-bottom: 1px solid rgba(15,76,117,.1);
  border-radius: 0;
}

.pw-triage-hero__select {
  background: #f9f9f9;
  border-bottom: 1px solid rgba(15,76,117,.1);
  border-radius: 0;
  appearance: auto;
}

/* Amber button in hero — make it full-width and bold */
.pw-triage-hero__form .pw-btn--amber {
  width: 100%;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 16px;
}

.pw-btn--amber {
  background: var(--pw-amber, #F59E0B);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
}

.pw-btn--amber:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
}

.pw-btn--amber:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Checklist box polish */
.pw-checklist {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}

.pw-checklist__title {
  font-size: .8rem;
  font-weight: 800;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 18px;
}

.pw-checklist__item {
  font-size: .9rem;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}

/* Vitals bar spacing */
.pw-vitals-bar__inner {
  justify-content: center;
}

.pw-vital {
  padding: 8px 32px;
}

/* Alert strip polish */
.pw-alert-strip {
  background: #b91c1c;
  font-size: .85rem;
  font-weight: 500;
  gap: 10px;
  letter-spacing: .01em;
}

/* Button outline hover */
.pw-btn--outline:hover {
  background: #0F4C75;
  color: #fff;
  border-color: #0F4C75;
  transform: translateY(-1px);
}
