/* ============================================================
   Garage Alnour — Plumber Directory Theme
   Fully isolated CSS. Prefix: ga-
   Colors: Deep Sea Blue #1B3A5C / Alert Orange #E8622A
   Fonts: Inter (headings) + Source Sans 3 (body)
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --ga-blue: #1B3A5C;
  --ga-blue-light: #2A5580;
  --ga-blue-dark: #0F2236;
  --ga-blue-pale: #E8EDF3;
  --ga-orange: #E8622A;
  --ga-orange-light: #F07D4A;
  --ga-orange-dark: #C74E1A;
  --ga-orange-pale: #FFF3ED;
  --ga-white: #FFFFFF;
  --ga-gray-50: #F8F9FB;
  --ga-gray-100: #F0F2F5;
  --ga-gray-200: #E2E5EA;
  --ga-gray-300: #C8CDD5;
  --ga-gray-400: #9CA3AF;
  --ga-gray-500: #6B7280;
  --ga-gray-600: #4B5563;
  --ga-gray-700: #374151;
  --ga-gray-800: #1F2937;
  --ga-gray-900: #111827;
  --ga-green: #16A34A;
  --ga-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ga-font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;
  --ga-radius-sm: 6px;
  --ga-radius-md: 10px;
  --ga-radius-lg: 16px;
  --ga-radius-xl: 24px;
  --ga-shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --ga-shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --ga-shadow-lg: 0 8px 30px rgba(0,0,0,.1);
  --ga-shadow-card: 0 1px 4px rgba(0,0,0,.06);
  --ga-transition: 200ms ease;
}

/* --- Reset & Base --- */
body {
  font-family: var(--ga-font-body);
  color: var(--ga-gray-800);
  background: var(--ga-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ga-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ga-gray-900);
}
a { color: var(--ga-blue); text-decoration: none; transition: color var(--ga-transition); }
a:hover { color: var(--ga-blue-light); }
img { max-width: 100%; height: auto; }

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */

/* --- Top utility bar --- */
.ga-topbar {
  background: var(--ga-blue-dark);
  color: rgba(255,255,255,.8);
  padding: 7px 0;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .03em;
}
.ga-topbar a { color: var(--ga-orange-light); text-decoration: underline; }
.ga-topbar a:hover { color: var(--ga-white); }

/* --- Main nav bar --- */
.ga-nav {
  background: var(--ga-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ga-gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ga-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 28px;
}
.ga-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.ga-nav__logo { height: 36px; width: auto; }
.ga-nav__name {
  font-family: var(--ga-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--ga-blue-dark);
  letter-spacing: -.03em;
  white-space: nowrap;
}
.ga-nav__name span { color: var(--ga-orange); }

/* --- Nav links --- */
.ga-nav__links {
  display: none;
  align-items: center;
  gap: 2px;
}
.ga-nav__links a {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-gray-600);
  border-radius: var(--ga-radius-sm);
  transition: color var(--ga-transition);
  white-space: nowrap;
}
.ga-nav__links a:hover { color: var(--ga-gray-900); background: var(--ga-gray-50); }
.ga-nav__links a.is-active {
  color: var(--ga-blue);
  font-weight: 600;
  background: var(--ga-blue-pale);
}

/* --- Actions area --- */
.ga-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Search input --- */
.ga-nav__search {
  display: none;
  position: relative;
}
.ga-nav__search input {
  background: var(--ga-gray-50);
  border: 1px solid var(--ga-gray-200);
  color: var(--ga-gray-800);
  padding: 7px 14px 7px 34px;
  border-radius: 999px;
  font-size: 13px;
  width: 200px;
  outline: none;
  transition: all var(--ga-transition);
  font-family: var(--ga-font-body);
}
.ga-nav__search input::placeholder { color: var(--ga-gray-400); }
.ga-nav__search input:focus {
  background: var(--ga-white);
  border-color: var(--ga-blue);
  box-shadow: 0 0 0 3px rgba(27,58,92,.08);
  width: 240px;
}
.ga-nav__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  opacity: .4;
}

/* --- CTA button --- */
.ga-nav__cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--ga-orange);
  color: var(--ga-white) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all var(--ga-transition);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(232,98,42,.25);
}
.ga-nav__cta:hover {
  background: var(--ga-orange-dark);
  color: var(--ga-white);
  box-shadow: 0 2px 8px rgba(232,98,42,.3);
  transform: translateY(-1px);
}

/* --- Mobile toggle --- */
.ga-nav__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--ga-gray-700);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px;
  font-family: var(--ga-font-body);
}
.ga-nav__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}
.ga-nav__toggle-bars span {
  display: block;
  height: 2px;
  background: var(--ga-gray-700);
  border-radius: 1px;
}

/* --- Mobile nav panel --- */
.ga-mobile-nav { display: none; }
.ga-mobile-nav[data-open] {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.ga-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(2px);
}
.ga-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--ga-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0,0,0,.12);
}
.ga-mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.ga-mobile-nav__head p { color: var(--ga-gray-900); font-weight: 700; font-size: 16px; margin: 0; }
.ga-mobile-nav__close {
  background: none;
  border: none;
  color: var(--ga-gray-500);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--ga-transition);
}
.ga-mobile-nav__close:hover { color: var(--ga-gray-900); }
.ga-mobile-nav__links { display: flex; flex-direction: column; gap: 2px; }
.ga-mobile-nav__links a {
  display: block;
  padding: 12px 16px;
  color: var(--ga-gray-600);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--ga-radius-sm);
  transition: all var(--ga-transition);
}
.ga-mobile-nav__links a:hover { color: var(--ga-gray-900); background: var(--ga-gray-50); }
.ga-mobile-nav__links a.is-active { color: var(--ga-blue); font-weight: 600; background: var(--ga-blue-pale); }
.ga-mobile-nav__search {
  margin-top: 16px;
  position: relative;
}
.ga-mobile-nav__search input {
  width: 100%;
  background: var(--ga-gray-50);
  border: 1px solid var(--ga-gray-200);
  color: var(--ga-gray-800);
  padding: 12px 14px 12px 40px;
  border-radius: var(--ga-radius-md);
  font-size: 15px;
  outline: none;
  font-family: var(--ga-font-body);
}
.ga-mobile-nav__search input::placeholder { color: var(--ga-gray-400); }
.ga-mobile-nav__search input:focus {
  border-color: var(--ga-blue);
  box-shadow: 0 0 0 3px rgba(27,58,92,.08);
}

@media (min-width: 768px) {
  .ga-nav__links { display: flex; }
  .ga-nav__toggle { display: none; }
  .ga-nav__cta { display: inline-flex; }
}
@media (min-width: 1024px) {
  .ga-nav__search { display: block; }
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.ga-hero {
  position: relative;
  background: var(--ga-blue);
  padding: 60px 0 48px;
  overflow: hidden;
}
.ga-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,98,42,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42,85,128,.4) 0%, transparent 50%);
  pointer-events: none;
}
.ga-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
.ga-hero__content { max-width: 640px; }
.ga-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  color: var(--ga-orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.ga-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ga-green);
  border-radius: 50%;
  animation: ga-pulse 2s infinite;
}
@keyframes ga-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.ga-hero__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--ga-white);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -.03em;
}
.ga-hero__title em {
  font-style: normal;
  color: var(--ga-orange);
}
.ga-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}
.ga-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ga-font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--ga-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--ga-transition);
  text-decoration: none;
  white-space: nowrap;
}
.ga-btn--primary { background: var(--ga-orange); color: var(--ga-white); }
.ga-btn--primary:hover { background: var(--ga-orange-dark); color: var(--ga-white); }
.ga-btn--outline {
  background: transparent;
  color: var(--ga-white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.ga-btn--outline:hover { border-color: var(--ga-white); color: var(--ga-white); }
.ga-btn--secondary { background: var(--ga-blue); color: var(--ga-white); border: 1.5px solid var(--ga-blue-light); }
.ga-btn--secondary:hover { background: var(--ga-blue-light); color: var(--ga-white); }
.ga-btn--sm { padding: 8px 16px; font-size: 13px; }
.ga-btn--lg { padding: 14px 28px; font-size: 16px; }

/* Hero stats row */
.ga-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--ga-radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.ga-hero__stat { text-align: center; }
.ga-hero__stat-value {
  display: block;
  font-family: var(--ga-font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--ga-white);
  line-height: 1;
}
.ga-hero__stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .ga-hero { padding: 80px 0 60px; }
  .ga-hero__inner { grid-template-columns: 1fr 340px; align-items: center; }
  .ga-hero__title { font-size: 48px; }
}
@media (min-width: 1024px) {
  .ga-hero__title { font-size: 56px; }
}

/* ============================================================
   HOME — SEARCH BAR
   ============================================================ */
.ga-search-bar {
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  padding: 6px;
  margin-top: -32px;
  position: relative;
  z-index: 10;
  box-shadow: var(--ga-shadow-lg);
}
.ga-search-bar__form {
  display: grid;
  gap: 1px;
  background: var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  overflow: hidden;
}
.ga-search-bar__field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--ga-white);
}
.ga-search-bar__field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ga-gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ga-search-bar__field input,
.ga-search-bar__field select {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--ga-font-body);
  color: var(--ga-gray-800);
  background: transparent;
  padding: 0;
}
.ga-search-bar__field input::placeholder { color: var(--ga-gray-400); }
.ga-search-bar__submit {
  padding: 12px 16px;
  background: var(--ga-white);
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .ga-search-bar__form { grid-template-columns: 2fr 1fr 1fr auto; }
  .ga-search-bar { margin-top: -28px; }
}

/* ============================================================
   HOME — SECTIONS
   ============================================================ */
.ga-section {
  padding: 64px 0;
}
.ga-section--gray { background: var(--ga-gray-50); }
.ga-section--blue { background: var(--ga-blue); color: var(--ga-white); }
.ga-section--blue h2,
.ga-section--blue h3 { color: var(--ga-white); }

.ga-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ga-section__head h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -.02em;
}
.ga-section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ga-orange);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.ga-section__desc {
  font-size: 16px;
  color: var(--ga-gray-500);
  margin: 4px 0 0;
  max-width: 560px;
}
.ga-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ga-orange);
  white-space: nowrap;
}
.ga-section__link:hover { color: var(--ga-orange-dark); }
.ga-section__link::after { content: '\2192'; }

/* ============================================================
   HOME — STATE GRID (Destinations)
   ============================================================ */
.ga-state-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ga-state-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  text-decoration: none;
  transition: all var(--ga-transition);
}
.ga-state-card:hover {
  border-color: var(--ga-blue);
  box-shadow: var(--ga-shadow-md);
  transform: translateY(-1px);
}
.ga-state-card__img {
  width: 56px;
  height: 56px;
  border-radius: var(--ga-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.ga-state-card__title {
  font-family: var(--ga-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ga-gray-900);
  margin: 0;
}
.ga-state-card__count {
  font-size: 13px;
  color: var(--ga-gray-500);
  margin: 2px 0 0;
}

@media (min-width: 640px) { .ga-state-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ga-state-grid { grid-template-columns: repeat(4, 1fr); } }

/* State list — compact text links for all states */
.ga-state-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  background: var(--ga-white);
}
.ga-state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ga-gray-800);
  text-decoration: none;
  border-bottom: 1px solid var(--ga-gray-100);
  transition: all var(--ga-transition);
}
.ga-state-link:hover {
  background: var(--ga-blue-pale);
  color: var(--ga-blue);
}
.ga-state-link__name { font-weight: 600; }
.ga-state-link__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-gray-400);
  background: var(--ga-gray-100);
  padding: 2px 10px;
  border-radius: 999px;
  min-width: 32px;
  text-align: center;
}
.ga-state-link:hover .ga-state-link__count {
  background: var(--ga-blue);
  color: var(--ga-white);
}

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

/* ============================================================
   HOME — FEATURED PLUMBER CARDS
   ============================================================ */
.ga-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ga-plumber-card {
  display: grid;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--ga-transition);
}
.ga-plumber-card:hover {
  border-color: var(--ga-gray-300);
  box-shadow: var(--ga-shadow-lg);
  transform: translateY(-2px);
}
.ga-plumber-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ga-plumber-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ga-plumber-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ga-plumber-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ga-plumber-card__badge--rating {
  background: rgba(0,0,0,.6);
  color: var(--ga-white);
}
.ga-plumber-card__badge--tag {
  background: rgba(232,98,42,.9);
  color: var(--ga-white);
}
.ga-plumber-card__body { padding: 20px; }
.ga-plumber-card__location {
  font-size: 12px;
  font-weight: 600;
  color: var(--ga-orange);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 4px;
}
.ga-plumber-card__name {
  font-family: var(--ga-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ga-gray-900);
  margin: 0 0 8px;
  line-height: 1.25;
}
.ga-plumber-card__meta {
  font-size: 13px;
  color: var(--ga-gray-500);
  margin: 0 0 12px;
}
.ga-plumber-card__summary {
  font-size: 14px;
  color: var(--ga-gray-600);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ga-plumber-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.ga-plumber-card__chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--ga-blue-pale);
  color: var(--ga-blue);
  border-radius: 999px;
}
.ga-plumber-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ga-gray-100);
}
.ga-plumber-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ga-orange);
}
.ga-plumber-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-blue);
}
.ga-plumber-card__cta::after { content: ' \2192'; }

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

/* ============================================================
   HOME — HOW IT WORKS / VALUE PROPS
   ============================================================ */
.ga-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: steps;
}
.ga-step {
  display: flex;
  gap: 20px;
  counter-increment: steps;
}
.ga-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ga-orange-pale);
  color: var(--ga-orange);
  font-family: var(--ga-font-heading);
  font-weight: 800;
  font-size: 20px;
}
.ga-step__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}
.ga-step__content p {
  font-size: 15px;
  color: var(--ga-gray-600);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ga-steps { grid-template-columns: repeat(3, 1fr); }
  .ga-step { flex-direction: column; text-align: center; align-items: center; }
}

/* ============================================================
   HOME — JOURNAL CARDS
   ============================================================ */
.ga-journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.ga-journal-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  text-decoration: none;
  padding: 16px;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  transition: all var(--ga-transition);
}
.ga-journal-card:hover { border-color: var(--ga-blue); box-shadow: var(--ga-shadow-sm); }
.ga-journal-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--ga-radius-sm);
}
.ga-journal-card__body { display: flex; flex-direction: column; justify-content: center; }
.ga-journal-card__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--ga-orange);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 4px;
}
.ga-journal-card__title {
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ga-gray-900);
  margin: 0 0 6px;
  line-height: 1.3;
}
.ga-journal-card__excerpt {
  font-size: 13px;
  color: var(--ga-gray-500);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ga-journal-grid { grid-template-columns: repeat(3, 1fr); }
  .ga-journal-card { grid-template-columns: 1fr; }
  .ga-journal-card__img { aspect-ratio: 16/10; }
}

/* ============================================================
   HOME — CTA BANNER
   ============================================================ */
.ga-cta-banner {
  background: var(--ga-blue);
  border-radius: var(--ga-radius-xl);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ga-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,98,42,.2) 0%, transparent 60%);
  pointer-events: none;
}
.ga-cta-banner > * { position: relative; z-index: 1; }
.ga-cta-banner h2 { color: var(--ga-white); font-size: 28px; margin: 0 0 12px; }
.ga-cta-banner p { color: rgba(255,255,255,.7); font-size: 16px; margin: 0 0 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.ga-footer {
  background: var(--ga-gray-900);
  color: rgba(255,255,255,.6);
  padding: 48px 0 32px;
}
.ga-footer__inner {
  display: grid;
  gap: 32px;
}
.ga-footer__brand h3 {
  font-size: 18px;
  color: var(--ga-white);
  margin: 0 0 8px;
}
.ga-footer__brand p { margin: 0; font-size: 14px; line-height: 1.6; }
.ga-footer__brand a { color: rgba(255,255,255,.6); }
.ga-footer__brand a:hover { color: var(--ga-white); }
.ga-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.ga-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--ga-transition);
}
.ga-footer__links a:hover { color: var(--ga-white); }
.ga-footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

@media (min-width: 768px) {
  .ga-footer__inner { grid-template-columns: 1fr auto; align-items: start; }
  .ga-footer__links { justify-content: flex-end; }
}

/* ============================================================
   LISTING PAGE
   ============================================================ */
.ga-listing-hero {
  background: var(--ga-blue);
  padding: 48px 0;
  color: var(--ga-white);
}
.ga-listing-hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ga-orange-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 8px;
}
.ga-listing-hero h1 {
  font-size: 32px;
  color: var(--ga-white);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.ga-listing-hero p { color: rgba(255,255,255,.7); margin: 0; font-size: 16px; }

.ga-listing-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.ga-listing-hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: block;
}
.ga-listing-hero__stat strong {
  font-size: 20px;
  color: var(--ga-white);
}

/* Toolbar */
.ga-toolbar {
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  padding: 16px;
  margin-top: -24px;
  position: relative;
  z-index: 10;
  box-shadow: var(--ga-shadow-md);
}
.ga-toolbar__grid {
  display: grid;
  gap: 12px;
}
.ga-toolbar__field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ga-gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ga-toolbar__field input,
.ga-toolbar__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-sm);
  font-size: 14px;
  font-family: var(--ga-font-body);
  color: var(--ga-gray-800);
  outline: none;
  transition: border-color var(--ga-transition);
}
.ga-toolbar__field input:focus,
.ga-toolbar__field select:focus { border-color: var(--ga-blue); }
.ga-toolbar__actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

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

/* Results */
.ga-results { padding: 32px 0 64px; }
.ga-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.ga-results__head h2 { font-size: 20px; margin: 0; }
.ga-results__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-white);
  background: var(--ga-orange);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Active filters */
.ga-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ga-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--ga-blue);
  color: var(--ga-white);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--ga-transition);
}
.ga-chip:hover { background: var(--ga-blue-light); color: var(--ga-white); }

/* Listing grid — styles for shared render_listing_hotel_card output */
.ga-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .ga-listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ga-listing-grid { grid-template-columns: repeat(3, 1fr); } }

/* Pagination */
.ga-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
.ga-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ga-gray-600);
  border-radius: var(--ga-radius-sm);
  transition: all var(--ga-transition);
}
.ga-pagination a:hover { background: var(--ga-gray-100); color: var(--ga-gray-900); }
.ga-pagination a.is-active { background: var(--ga-blue); color: var(--ga-white); }
.ga-pagination a.is-disabled { opacity: .3; pointer-events: none; }

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.ga-detail { padding-bottom: 48px; }

/* --- Detail Hero Band --- */
.ga-detail-hero {
  background: linear-gradient(135deg, var(--ga-blue-dark) 0%, var(--ga-blue) 100%);
  color: var(--ga-white);
  padding: 32px 0 36px;
}
.ga-detail-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ga-detail-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ga-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ga-tag--orange { background: var(--ga-orange); color: var(--ga-white); }
.ga-tag--pulse {
  background: rgba(232,98,42,.15);
  color: var(--ga-orange-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ga-tag--pulse::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ga-orange);
  border-radius: 50%;
  animation: ga-pulse 2s ease-in-out infinite;
}
.ga-detail-hero__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  color: var(--ga-white);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.ga-detail-hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.ga-detail-hero__location svg { flex-shrink: 0; opacity: .6; }
.ga-detail-hero__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.ga-detail-hero__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.ga-detail-hero__rating strong { color: var(--ga-white); font-size: 15px; }
.ga-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Emergency button */
.ga-btn--emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ga-orange);
  color: var(--ga-white) !important;
  padding: 12px 24px;
  border-radius: var(--ga-radius-md);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--ga-transition);
  box-shadow: 0 2px 8px rgba(232,98,42,.35);
}
.ga-btn--emergency:hover { background: var(--ga-orange-dark); color: var(--ga-white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,98,42,.4); }
.ga-btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85) !important;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--ga-radius-md);
  transition: all var(--ga-transition);
}
.ga-btn--outline-light:hover { border-color: rgba(255,255,255,.5); color: var(--ga-white) !important; background: rgba(255,255,255,.08); }
.ga-btn--block { width: 100%; justify-content: center; text-align: center; }

@media (min-width: 768px) {
  .ga-detail-hero { padding: 40px 0 44px; }
  .ga-detail-hero__inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .ga-detail-hero__title { font-size: 36px; }
  .ga-detail-hero__actions { flex-direction: column; align-items: flex-end; flex-shrink: 0; }
}

/* --- Gallery override --- */
.ga-detail-gallery {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* --- Layout --- */
.ga-detail__layout {
  display: grid;
  gap: 40px;
  padding-top: 40px;
}
.ga-detail__main { min-width: 0; }
.ga-detail__aside {
  position: sticky;
  top: 80px;
  align-self: start;
}

/* --- Quick Facts Strip --- */
.ga-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.ga-quick-fact {
  flex: 1 1 120px;
  padding: 14px 16px;
  border-right: 1px solid var(--ga-gray-200);
  text-align: center;
}
.ga-quick-fact:last-child { border-right: none; }
.ga-quick-fact__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ga-gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.ga-quick-fact__value {
  display: block;
  font-family: var(--ga-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--ga-gray-800);
}

/* --- Section headers with icon --- */
.ga-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ga-section-head__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ga-orange-pale);
  border-radius: var(--ga-radius-sm);
  flex-shrink: 0;
}
.ga-section-head h2 {
  font-size: 20px;
  margin: 0;
  letter-spacing: -.01em;
  flex: 1;
}
.ga-section-head__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-orange) !important;
  white-space: nowrap;
}

/* Detail sections */
.ga-detail__section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--ga-gray-200);
}
.ga-detail__section--first { border-top: none; margin-top: 0; padding-top: 0; }
.ga-detail__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ga-gray-700);
  margin: 0 0 8px;
}
.ga-detail__subtext {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ga-gray-500);
  margin: 0 0 16px;
}

/* --- Sidebar CTA Card --- */
.ga-sidebar-cta {
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  box-shadow: var(--ga-shadow-lg);
}
.ga-sidebar-cta__head {
  background: linear-gradient(135deg, var(--ga-blue-dark), var(--ga-blue));
  color: var(--ga-white);
  padding: 20px 20px 16px;
}
.ga-sidebar-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ga-orange-light);
  margin-bottom: 8px;
}
.ga-sidebar-cta__dot {
  width: 7px;
  height: 7px;
  background: var(--ga-orange);
  border-radius: 50%;
  animation: ga-pulse 2s ease-in-out infinite;
}
.ga-sidebar-cta__head h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ga-white);
  margin: 0 0 6px;
}
.ga-sidebar-cta__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.ga-sidebar-cta__stars span { margin-left: 4px; }
.ga-sidebar-cta__body {
  background: var(--ga-white);
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ga-sidebar-cta__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.ga-sidebar-cta__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ga-gray-600);
}
.ga-sidebar-cta__row svg { flex-shrink: 0; color: var(--ga-gray-400); }

/* --- Sidebar Tip --- */
.ga-sidebar-tip {
  margin-top: 16px;
  padding: 16px;
  background: var(--ga-orange-pale);
  border-radius: var(--ga-radius-md);
  border-left: 3px solid var(--ga-orange);
}
.ga-sidebar-tip__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ga-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--ga-orange-dark);
  margin: 0 0 6px;
}
.ga-sidebar-tip p:last-child {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ga-gray-700);
  margin: 0;
}

/* Highlights */
.ga-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ga-highlight {
  padding: 18px;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  border-left: 3px solid var(--ga-orange);
}
.ga-highlight__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ga-gray-500);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ga-highlight__value {
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}
.ga-highlight__meta {
  font-size: 13px;
  color: var(--ga-gray-500);
  margin: 0;
}

/* Amenity groups */
.ga-amenity-groups { display: flex; flex-direction: column; gap: 28px; }
.ga-amenity-group h3 { font-size: 16px; margin: 0 0 10px; }
.ga-amenity-group p { font-size: 14px; color: var(--ga-gray-500); margin: 0 0 10px; }
.ga-amenity-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ga-amenity-chip {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--ga-blue-pale);
  color: var(--ga-blue);
  border-radius: 999px;
}

/* Map */
.ga-map { border-radius: var(--ga-radius-lg); overflow: hidden; border: 1px solid var(--ga-gray-200); }
.ga-map iframe { display: block; width: 100%; height: 320px; border: none; }

/* Snapshot */
.ga-snapshot {
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
}
.ga-snapshot__row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--ga-gray-200);
}
.ga-snapshot__row:last-child { border-bottom: none; }
.ga-snapshot__label {
  font-weight: 600;
  color: var(--ga-gray-700);
  width: 140px;
  flex-shrink: 0;
}
.ga-snapshot__value { flex: 1; font-weight: 600; color: var(--ga-gray-800); }
.ga-snapshot__meta { font-size: 13px; color: var(--ga-gray-500); margin-left: 12px; }

/* Channels */
.ga-channels { display: flex; flex-direction: column; gap: 8px; }
.ga-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  transition: all var(--ga-transition);
  text-decoration: none;
}
.ga-channel:hover { border-color: var(--ga-blue); box-shadow: var(--ga-shadow-sm); }
.ga-channel__info strong { display: block; font-size: 15px; color: var(--ga-gray-800); }
.ga-channel__info span { font-size: 13px; color: var(--ga-gray-500); }
.ga-channel__cta { font-size: 14px; font-weight: 600; color: var(--ga-orange); white-space: nowrap; }

/* Linked blog post */
.ga-linked-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--ga-transition);
}
.ga-linked-post:hover { box-shadow: var(--ga-shadow-md); border-color: var(--ga-gray-300); }
.ga-linked-post__img { aspect-ratio: 16/7; overflow: hidden; }
.ga-linked-post__img img { width: 100%; height: 100%; object-fit: cover; }
.ga-linked-post__body { padding: 16px 20px 20px; }
.ga-linked-post__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ga-orange);
  margin-bottom: 6px;
}
.ga-linked-post h3 { font-size: 17px; margin: 0 0 6px; color: var(--ga-gray-900); }
.ga-linked-post p { font-size: 14px; line-height: 1.5; color: var(--ga-gray-500); margin: 0 0 10px; }
.ga-linked-post__cta { font-size: 13px; font-weight: 600; color: var(--ga-orange); }

/* Related plumbers */
.ga-related { padding: 56px 0; background: var(--ga-white); border-top: 1px solid var(--ga-gray-200); }
.ga-related h2 { font-size: 24px; margin: 0; }
.ga-related__eyebrow {
  font-size: 13px; font-weight: 700; color: var(--ga-orange);
  text-transform: uppercase; letter-spacing: .06em; margin: 0 0 4px;
}
.ga-related__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .ga-detail__layout { grid-template-columns: 1fr 340px; }
  .ga-linked-post { grid-template-columns: 180px 1fr; }
  .ga-linked-post__img { aspect-ratio: 1; }
}

/* ============================================================
   BLOG
   ============================================================ */
.ga-blog-hero {
  background: var(--ga-blue);
  padding: 48px 0;
  color: var(--ga-white);
}
.ga-blog-hero h1 { color: var(--ga-white); font-size: 32px; margin: 0 0 8px; }
.ga-blog-hero p { color: rgba(255,255,255,.7); margin: 0; }

/* ============================================================
   ARTICLE (Blog Detail)
   ============================================================ */
.ga-article { padding: 48px 0 64px; }
.ga-article__layout { display: grid; gap: 40px; }
.ga-article__main { min-width: 0; }
.ga-article__sidebar {}

.ga-article__breadcrumb {
  font-size: 13px;
  color: var(--ga-gray-500);
  margin-bottom: 16px;
}
.ga-article__breadcrumb a { color: var(--ga-gray-500); }
.ga-article__breadcrumb a:hover { color: var(--ga-blue); }

.ga-article__hero-img {
  border-radius: var(--ga-radius-lg);
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  margin-bottom: 32px;
}
.ga-article__tags { display: flex; gap: 8px; margin-bottom: 12px; }
.ga-article__tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  background: var(--ga-orange-pale);
  color: var(--ga-orange);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ga-article__title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.ga-article__excerpt {
  font-size: 18px;
  color: var(--ga-gray-600);
  line-height: 1.6;
  margin: 0 0 20px;
}
.ga-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.ga-article__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ga-blue);
  color: var(--ga-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.ga-article__author-name { font-weight: 600; font-size: 15px; }
.ga-article__author-role { font-size: 13px; color: var(--ga-gray-500); }

/* Article body */
.ga-article__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ga-gray-700);
}
.ga-article__body h2 { font-size: 24px; margin: 40px 0 12px; color: var(--ga-gray-900); }
.ga-article__body h3 { font-size: 20px; margin: 32px 0 10px; color: var(--ga-gray-900); }
.ga-article__body p { margin: 0 0 16px; }
.ga-article__body ul, .ga-article__body ol { margin: 0 0 16px; padding-left: 24px; }
.ga-article__body li { margin-bottom: 6px; }
.ga-article__body a { color: var(--ga-orange); text-decoration: underline; }
.ga-article__body img { border-radius: var(--ga-radius-md); margin: 20px 0; }

/* Sidebar TOC */
.ga-toc {
  background: var(--ga-gray-50);
  border-radius: var(--ga-radius-md);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.ga-toc__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ga-gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 12px;
}
.ga-toc__nav { display: flex; flex-direction: column; gap: 4px; }
.ga-toc__nav a {
  font-size: 14px;
  color: var(--ga-gray-600);
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all var(--ga-transition);
}
.ga-toc__nav a:hover { color: var(--ga-blue); border-left-color: var(--ga-blue); }

/* Article navigation */
.ga-article__nav { display: grid; gap: 12px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--ga-gray-100); }
.ga-article__nav a {
  display: block;
  padding: 16px;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-md);
  transition: all var(--ga-transition);
}
.ga-article__nav a:hover { border-color: var(--ga-blue); }
.ga-article__nav-label { font-size: 12px; color: var(--ga-gray-500); margin: 0 0 4px; }
.ga-article__nav-title { font-weight: 600; margin: 0; font-size: 15px; }

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ga-about { padding: 64px 0; }
.ga-about__layout { display: grid; gap: 40px; }
.ga-about__main { min-width: 0; }
.ga-about__sidebar {}

.ga-about h1 { font-size: 36px; margin: 0 0 16px; letter-spacing: -.02em; }
.ga-about__lead {
  font-size: 18px;
  color: var(--ga-gray-600);
  line-height: 1.7;
  margin: 0 0 32px;
}
.ga-about__body h2 { font-size: 22px; margin: 36px 0 12px; }
.ga-about__body p { font-size: 16px; color: var(--ga-gray-700); line-height: 1.7; margin: 0 0 16px; }
.ga-about__body ul { margin: 0 0 16px; padding-left: 24px; }
.ga-about__body li { font-size: 16px; color: var(--ga-gray-700); margin-bottom: 8px; }

.ga-about__info-card {
  background: var(--ga-gray-50);
  border-radius: var(--ga-radius-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.ga-about__info-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--ga-gray-200);
}
.ga-about__info-row:last-child { border-bottom: none; }
.ga-about__info-row span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ga-gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ga-about__info-row p { margin: 0; font-weight: 600; font-size: 15px; }

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ga-contact { padding: 64px 0; }
.ga-contact__layout { display: grid; gap: 32px; }
.ga-contact__header { margin-bottom: 32px; }
.ga-contact__header h1 { font-size: 36px; margin: 0 0 12px; }
.ga-contact__header p { font-size: 16px; color: var(--ga-gray-500); margin: 0; max-width: 600px; }

.ga-contact__info {
  background: var(--ga-blue);
  color: var(--ga-white);
  border-radius: var(--ga-radius-lg);
  padding: 32px;
}
.ga-contact__info h2 { color: var(--ga-white); font-size: 20px; margin: 0 0 16px; }
.ga-contact__info-list { display: flex; flex-direction: column; gap: 16px; }
.ga-contact__info-item span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ga-contact__info-item a { color: var(--ga-white); font-weight: 600; font-size: 15px; }
.ga-contact__info-item a:hover { color: rgba(255,255,255,.8); }
.ga-contact__info-item strong { color: var(--ga-white); font-size: 15px; }

.ga-contact__help-cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.ga-contact__help-card {
  background: rgba(255,255,255,.08);
  border-radius: var(--ga-radius-md);
  padding: 16px;
}
.ga-contact__help-card strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--ga-white); }
.ga-contact__help-card span { font-size: 14px; color: rgba(255,255,255,.6); }

.ga-contact__form-card {
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  padding: 32px;
}
.ga-contact__form-card h2 { font-size: 20px; margin: 0 0 16px; }
.ga-contact__form {
  display: grid;
  gap: 16px;
}
.ga-contact__field { display: flex; flex-direction: column; gap: 4px; }
.ga-contact__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ga-gray-700);
}
.ga-contact__field input,
.ga-contact__field textarea {
  padding: 10px 14px;
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-sm);
  font-size: 15px;
  font-family: var(--ga-font-body);
  color: var(--ga-gray-800);
  outline: none;
  transition: border-color var(--ga-transition);
}
.ga-contact__field input:focus,
.ga-contact__field textarea:focus { border-color: var(--ga-blue); }
.ga-contact__field textarea { min-height: 120px; resize: vertical; }
.ga-contact__field small { color: #8c1d18; font-size: 13px; }

@media (min-width: 768px) {
  .ga-contact__layout { grid-template-columns: 360px 1fr; }
  .ga-contact__form { grid-template-columns: 1fr 1fr; }
  .ga-contact__field--full { grid-column: 1 / -1; }
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.ga-policy { padding: 64px 0; }
.ga-policy__layout { display: grid; gap: 40px; }
.ga-policy__main { min-width: 0; }
.ga-policy h1 { font-size: 32px; margin: 0 0 16px; }
.ga-policy__lead { font-size: 17px; color: var(--ga-gray-600); line-height: 1.7; margin: 0 0 32px; }
.ga-policy__body h2 { font-size: 20px; margin: 32px 0 12px; }
.ga-policy__body p { font-size: 16px; color: var(--ga-gray-700); line-height: 1.7; margin: 0 0 14px; }
.ga-policy__body ul { margin: 0 0 14px; padding-left: 24px; }
.ga-policy__body li { font-size: 16px; color: var(--ga-gray-700); margin-bottom: 6px; }

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

/* ============================================================
   404 PAGE
   ============================================================ */
.ga-404 {
  padding: 120px 0;
  text-align: center;
}
.ga-404__code {
  font-family: var(--ga-font-heading);
  font-size: 80px;
  font-weight: 800;
  color: var(--ga-gray-200);
  line-height: 1;
  margin: 0 0 16px;
}
.ga-404 h1 { font-size: 28px; margin: 0 0 12px; }
.ga-404 p { font-size: 16px; color: var(--ga-gray-500); margin: 0 0 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   PLUMBER CARD — used in listings, related, homepage featured
   ============================================================ */
.ga-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .ga-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ga-card-grid { grid-template-columns: repeat(3, 1fr); } }

.ga-card {
  display: flex;
  flex-direction: column;
  background: var(--ga-white);
  border: 1px solid var(--ga-gray-200);
  border-radius: var(--ga-radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--ga-transition);
}
.ga-card:hover {
  border-color: var(--ga-blue);
  box-shadow: var(--ga-shadow-md);
  transform: translateY(-2px);
}
.ga-card__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ga-gray-100);
}
.ga-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ga-card__tag {
  position: absolute;
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
  letter-spacing: .02em;
}
.ga-card__tag--24h {
  left: 10px;
  background: var(--ga-orange);
  color: var(--ga-white);
}
.ga-card__tag--rating {
  right: 10px;
  background: rgba(0,0,0,.65);
  color: var(--ga-white);
  backdrop-filter: blur(4px);
}
.ga-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}
.ga-card__location {
  font-size: 12px;
  font-weight: 600;
  color: var(--ga-orange);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 4px;
}
.ga-card__name {
  font-family: var(--ga-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ga-gray-900);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ga-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.ga-card__chips span {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--ga-blue-pale);
  color: var(--ga-blue);
  border-radius: 999px;
}
.ga-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ga-gray-100);
}
.ga-card__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--ga-orange);
}
.ga-card__reviews {
  font-size: 13px;
  color: var(--ga-gray-500);
}
.ga-card__arrow {
  font-size: 18px;
  color: var(--ga-gray-400);
  transition: color var(--ga-transition);
}
.ga-card:hover .ga-card__arrow { color: var(--ga-blue); }

/* ============================================================
   UTILITY
   ============================================================ */
.ga-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Gallery reuse from shared styles but tweak radius */
.detail-gallery { border-radius: var(--ga-radius-lg); overflow: hidden; }
