/* ============================================
   CARE ITALIA — Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- CSS Variables --- */
:root {
  /* Core palette — deep Italian institutional ink */
  --primary: #0D1F30;
  --primary-hover: #071524;
  --primary-light: #EEF1F5;

  /* Warm amber gold — replaces cold teal */
  --secondary: #9E7A3F;
  --secondary-hover: #885F2A;
  --secondary-light: #FAF3E6;
  --accent: #B8913A;

  /* Warm parchment backgrounds */
  --bg: #F8F6F2;
  --bg-alt: #F1EDE6;
  --white: #FFFFFF;

  /* Warm-toned text */
  --text: #1A1714;
  --text-secondary: #4A4540;
  --text-muted: #8A857D;
  --text-light: #B8B3AC;

  /* Warm borders */
  --border: #E6E0D6;
  --border-light: #EDE9E3;
  --border-focus: #9E7A3F;

  /* Refined shadows — warm tinted */
  --shadow-xs: 0 1px 2px rgba(13,31,48,0.05);
  --shadow-sm: 0 1px 4px rgba(13,31,48,0.06), 0 1px 2px rgba(13,31,48,0.04);
  --shadow-md: 0 4px 12px rgba(13,31,48,0.08), 0 1px 3px rgba(13,31,48,0.04);
  --shadow-lg: 0 12px 28px rgba(13,31,48,0.1), 0 4px 8px rgba(13,31,48,0.04);
  --shadow-xl: 0 24px 48px rgba(13,31,48,0.12), 0 8px 16px rgba(13,31,48,0.06);

  /* Tighter radius — institutional, not startup */
  --radius-sm: 3px;
  --radius: 5px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  --transition: 0.16s ease;
  --transition-slow: 0.28s ease;

  --max-width: 1220px;
  --nav-height: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

/* --- Display font utility — for editorial headings --- */
.font-display,
.font-display * {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

/* Display headings use Cormorant Garamond */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.1; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); line-height: 1.15; }
h3 { font-size: 1.125rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.7; }

.lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 56px 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --- Section Headers --- */
.section-header {
  margin-bottom: 48px;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-header .eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--secondary);
  flex-shrink: 0;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  font-size: 1rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 5px 13px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.005em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13,31,48,0.28);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(158,122,63,0.3);
}

/* Warm amber accent button */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #9E7A3F;
  border-color: #9E7A3F;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(184,145,58,0.35);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--bg);
  color: var(--text);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 14.5px;
  border-radius: var(--radius-lg);
  letter-spacing: 0.015em;
}

.btn-sm {
  padding: 6px 13px;
  font-size: 12.5px;
}

.btn-icon {
  padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: var(--bg);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle warm grain texture via SVG */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Editorial eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--secondary);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* Keep .hero-badge as alias */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-badge svg {
  width: 13px;
  height: 13px;
}

.hero h1 {
  color: var(--primary);
  margin-bottom: 20px;
  max-width: 580px;
}

/* Italic accent word inside h1 */
.hero h1 em {
  font-style: italic;
  color: var(--secondary);
}

.hero .lead {
  margin-bottom: 32px;
  max-width: 500px;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-trust-item svg {
  color: var(--secondary);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Hero Visual Panel */
.hero-visual {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-light);
}

.hero-visual-badge .stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

.hero-visual-badge .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   SEARCH BOX
   ============================================ */

.search-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 5px 5px 5px 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}

.search-field:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
  flex: 2;
}

.search-field svg {
  color: var(--text-muted);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  width: 100%;
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.search-field select {
  color: var(--text-muted);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.search-field select option[value=""] {
  color: var(--text-muted);
}

.search-btn {
  margin-left: 6px;
  flex-shrink: 0;
  padding: 11px 24px;
  font-size: 14px;
}

.search-popular {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-popular span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.search-tag {
  padding: 3px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.search-tag:hover {
  background: var(--bg);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--primary);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle texture on stats bar */
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,145,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition-slow);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   FACILITY CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(13,31,48,0.1);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: var(--bg-alt);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ede8df 0%, #ddd6c8 100%);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  background: var(--white);
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.badge-featured {
  color: #7A5A1A;
  background: #FDF5E0;
  border: 1px solid #E8C96A;
}

.badge-verified {
  color: var(--secondary);
  background: var(--secondary-light);
  border: 1px solid rgba(158,122,63,0.2);
}

.badge-new {
  color: #2E6B3E;
  background: #EBF5EE;
  border: 1px solid #C3DFC9;
}

.card-body {
  padding: 18px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Thin amber top rule on featured cards */
.card.card--featured .card-img {
  border-top: 2.5px solid var(--accent);
}

.card-type {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 5px;
}

.card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.175rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.25;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 13px;
  height: 13px;
}

.star-filled { fill: #C8922A; color: #C8922A; }
.star-empty { fill: #E6E0D6; color: #E6E0D6; }

.rating-count {
  font-size: 12.5px;
  color: var(--text-muted);
}

.rating-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.tag {
  padding: 2px 8px;
  background: var(--bg);
  border-radius: 3px;
  font-size: 11.5px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.card-price {
  font-size: 12.5px;
  color: var(--text-muted);
}

.card-price strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
}

/* ============================================
   POPULAR CITIES
   ============================================ */

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.city-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-slow);
  text-decoration: none;
  position: relative;
  height: 160px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-alt);
}

.city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.75) 0%, rgba(26, 35, 50, 0.1) 60%, transparent 100%);
  transition: opacity var(--transition-slow);
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-card-content {
  position: relative;
  z-index: 1;
  padding: 16px;
  width: 100%;
}

.city-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.city-count {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}

/* Decorative opening quote */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-img {
  height: 176px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-category {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-card-read {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  margin-top: 14px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,145,58,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  max-width: 500px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  max-width: 440px;
}

.cta-banner .btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.cta-banner .btn-white:hover {
  background: var(--bg);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0D1714;
  color: rgba(255,255,255,0.55);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  max-width: 260px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-logo-text span {
  color: var(--secondary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: rgba(255,255,255,0.5);
}

.social-link:hover {
  background: var(--secondary);
  color: white;
}

.social-link svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.page-header h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  /* Inherits Cormorant Garamond from h2 rule */
}

.page-header p {
  font-size: 14.5px;
  margin-top: 6px;
  max-width: 480px;
}

/* ============================================
   DIRECTORY PAGE
   ============================================ */

.directory-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filters-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.filter-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.filter-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-panel-header h3 {
  font-size: 14px;
  font-weight: 600;
}

.filter-clear {
  font-size: 13px;
  color: var(--secondary);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
}

.filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group-title {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
}

.filter-option label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.filter-count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.filter-range {
  margin-top: 6px;
}

.filter-range input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.filter-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.directory-main {}

.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.results-count {
  font-size: 14px;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text);
  font-weight: 600;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.view-btn {
  padding: 7px 10px;
  background: var(--white);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.view-btn.active,
.view-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.view-btn svg {
  width: 16px;
  height: 16px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.listings-grid.list-view {
  grid-template-columns: 1fr;
}

.listings-grid.list-view .card {
  flex-direction: row;
}

.listings-grid.list-view .card-img {
  width: 200px;
  height: auto;
  min-height: 160px;
  flex-shrink: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================
   LISTING DETAIL PAGE
   ============================================ */

.listing-hero {
  height: 400px;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.listing-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.gallery-thumb {
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}

.listing-header {
  margin-bottom: 28px;
}

.listing-header .badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.listing-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.listing-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

.listing-meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-large {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-secondary);
}

.service-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Listing Sidebar */
.listing-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sidebar-card-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.sidebar-card-header h3 {
  font-size: 14.5px;
}

.sidebar-card-body {
  padding: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.info-row-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row-icon svg {
  width: 15px;
  height: 15px;
  color: var(--secondary);
}

.info-row-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-row-value {
  color: var(--text);
  font-weight: 500;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(158,122,63,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238896A7'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px;
  padding-right: 36px;
}

/* Map placeholder */
.map-container {
  height: 180px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  color: var(--text-light);
}

/* Reviews */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.reviewer-date {
  font-size: 12.5px;
  color: var(--text-muted);
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  position: relative;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--primary-light);
}

.pricing-card.featured .recommended {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 8px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ============================================
   FORMS (Add/Claim Listing)
   ============================================ */

.form-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  margin-top: 32px;
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.form-required {
  color: #E53E3E;
  margin-left: 2px;
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg);
}

.file-upload:hover {
  border-color: var(--secondary);
  background: var(--secondary-light);
}

.file-upload svg {
  width: 36px;
  height: 36px;
  color: var(--text-light);
  margin: 0 auto 12px;
}

.file-upload p {
  font-size: 14px;
  color: var(--text-muted);
}

.file-upload strong {
  color: var(--secondary);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 68px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step-content h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.process-step-content p {
  font-size: 14px;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
}

.blog-featured-img {
  height: 320px;
  overflow: hidden;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 40px 40px 40px 0;
}

.blog-featured-content .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.blog-featured-content h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-featured-content p {
  font-size: 15px;
  margin-bottom: 24px;
}

/* ============================================
   ALERTS & NOTICES
   ============================================ */

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.alert svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-info {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(30,58,95,0.15);
}

.alert-success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid rgba(46,125,50,0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    height: 280px;
    max-width: 560px;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .directory-layout {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .listing-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner h2, .cta-banner p {
    max-width: 100%;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    height: 240px;
  }

  .blog-featured-content {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .section { padding: 56px 0; }

  .nav-links { display: none; }

  .steps-grid,
  .blog-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
  }

  .search-box {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius);
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 8px 4px;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider { display: none; }

  .listings-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.full-width { width: 100%; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f0f2f5 25%, #e8eaed 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   PHASE 2 — Lead Generation & SEO Platform
   ============================================ */

/* --- Featured / Premium Card Differentiation --- */
.card.card--featured {
  border-color: rgba(212, 168, 67, 0.35);
  position: relative;
}
.card.card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #c49030);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}
.card.card--featured:hover {
  box-shadow: 0 8px 28px rgba(212,168,67,0.14), var(--shadow-lg);
}
.badge-premium {
  background: linear-gradient(135deg, #D4A843, #b8891f) !important;
  color: white !important;
}
.premium-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid rgba(212,168,67,0.35);
  background: rgba(212,168,67,0.06);
  padding: 3px 9px;
  border-radius: 100px;
}

/* --- Compare Checkbox on Cards --- */
.card-compare {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
}
.card-compare input[type="checkbox"] {
  display: none;
}
.card-compare label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: white;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.card-compare label::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.card-compare input:checked + label {
  background: var(--secondary);
}
.card-compare input:checked + label::before {
  background: white;
  border-color: white;
}

/* --- Card two-button footer --- */
.card-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
}
.card-footer-actions .btn {
  font-size: 12.5px;
  padding: 8px 12px;
  justify-content: center;
}

/* --- Grid 2 columns --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* --- Compare Bar (sticky bottom) --- */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 14px 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.compare-bar.visible {
  transform: translateY(0);
}
.compare-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.compare-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  flex-shrink: 0;
}
.compare-slots {
  display: flex;
  gap: 10px;
  flex: 1;
}
.compare-slot {
  background: rgba(255,255,255,0.1);
  border: 1.5px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.compare-slot.filled {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  color: white;
}
.compare-slot-name {
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compare-slot-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 17px;
  transition: color var(--transition);
  flex-shrink: 0;
}
.compare-slot-remove:hover { color: white; }
.compare-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* --- Inquiry / Contact Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 40, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.18);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--secondary);
  margin-bottom: 6px;
}
.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}
.modal-subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
}
.modal-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-form .form-group {
  margin-bottom: 12px;
}
.modal-form label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 5px;
}
.modal-privacy {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.modal-privacy a { color: var(--primary); }
.modal-success {
  text-align: center;
  padding: 16px 0 8px;
  display: none;
}
.modal-success.shown { display: block; }
.modal-success-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--secondary);
}
.modal-success h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.modal-success p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 900;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(13,31,48,0.1);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body.has-mobile-cta { padding-bottom: 68px; }
}

/* --- Active Filter Pills --- */
.active-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(30,58,95,0.15);
}
.filter-pill button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  opacity: 0.55;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.filter-pill button:hover { opacity: 1; }

/* --- Trust / How We Verify Section --- */
.trust-verify {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.trust-verify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.trust-verify-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-verify-icon {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.trust-verify-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.trust-verify-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- SEO Location / City Pages --- */
.seo-page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 0;
}
.seo-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: end;
}
.seo-hero-breadcrumb {
  margin-bottom: 10px;
}
.seo-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.seo-hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.seo-hero-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.seo-hero-stats {
  display: flex;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.seo-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.seo-stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}
.seo-hero-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}

/* SEO editorial content blocks */
.location-intro {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.location-intro p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.location-intro p:last-child { margin-bottom: 0; }

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.nearby-link {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: white;
  transition: all var(--transition);
}
.nearby-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* FAQ section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}
.faq-item summary {
  padding: 17px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg); }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--secondary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.faq-body p { margin-bottom: 8px; }
.faq-body p:last-child { margin-bottom: 0; }

/* SEO two-column layout */
.seo-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.seo-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

/* Sidebar lead form */
.lead-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.lead-form-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.lead-form-card-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.lead-form-card .form-group {
  margin-bottom: 10px;
}
.lead-form-card label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}
.lead-form-card input,
.lead-form-card select,
.lead-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}
.lead-form-card input:focus,
.lead-form-card select:focus,
.lead-form-card textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: white;
}
.lead-privacy {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* Internal links section */
.internal-links-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.int-links-group h4 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.int-links-group ul {
  list-style: none;
}
.int-links-group ul li {
  margin-bottom: 7px;
}
.int-links-group ul li a {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.int-links-group ul li a:hover { color: var(--primary); }

/* --- Compare Page --- */
.compare-page-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 14px;
}
.compare-table .col-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg);
  width: 160px;
  min-width: 140px;
  white-space: nowrap;
}
.compare-table .col-facility {
  background: white;
}
.compare-table .col-facility.col-featured {
  background: #FDFAF3;
}
.compare-table thead .col-facility {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}
.compare-table thead .col-featured .premium-label {
  display: inline-flex;
  margin-bottom: 4px;
}
.compare-check {
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
}
.compare-cross {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
}
.compare-remove-col {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.compare-remove-col:hover { color: var(--primary); }

/* --- Verified badge inline --- */
.verified-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary);
}
.verified-inline svg { flex-shrink: 0; }

/* --- Listing page FAQ --- */
.listing-faq {
  margin-top: 40px;
}
.listing-faq .section-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* --- Responsive: Phase 2 --- */
@media (max-width: 1024px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }
  .seo-sidebar { position: static; }
  .seo-hero-inner { grid-template-columns: 1fr; }
  .seo-hero-image { display: none; }
  .trust-verify-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .internal-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .compare-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .compare-slots { flex-direction: column; }
  .compare-bar-label { display: none; }
  .seo-hero-stats { gap: 16px; }
  .trust-verify-grid { grid-template-columns: 1fr; }
  .internal-links-grid { grid-template-columns: 1fr 1fr; }
  .modal-form .form-row-2 { grid-template-columns: 1fr; }
  .modal { padding: 24px; }
}

/* ============================================
   MOBILE — Comprehensive Enhancements
   ============================================ */

/* --- Hamburger Button --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-hamburger:hover { background: var(--bg); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.22s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile Nav Drawer --- */
.nav-mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 0 var(--border);
}
.nav-mobile-drawer.open { transform: translateX(0); }
body.nav-open { overflow: hidden; }

.nav-mobile-drawer-inner {
  padding: 12px 16px 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile-drawer-inner a {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-mobile-drawer-inner a:hover,
.nav-mobile-drawer-inner a.active {
  background: var(--bg);
  color: var(--primary);
}
.nav-mobile-drawer-inner hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}
.nav-mobile-drawer-inner .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px;
}

/* --- Mobile Filter Toggle & Drawer --- */
.mobile-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.mobile-filter-toggle:hover { border-color: var(--primary); color: var(--primary); }

.mobile-filter-badge {
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 100px;
  min-width: 18px;
  text-align: center;
}

.filters-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.filters-overlay.open { display: block; }

/* ============================================
   MAIN MOBILE BREAKPOINT (768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hamburger visible, nav actions hidden */
  .nav-hamburger { display: flex; }
  .nav-actions { display: none; }

  /* Tighter container */
  .container { padding: 0 16px; }

  /* Section spacing */
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  /* Section headers: stack the flex row ones */
  .section-header.d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Hero */
  .hero { padding: 36px 0 44px; }
  .hero-badge { font-size: 12px; padding: 5px 11px; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }
  .hero-trust-item { font-size: 12.5px; gap: 5px; }
  .search-popular { gap: 6px; }
  .search-tag { font-size: 12px; padding: 4px 10px; }

  /* Stats bar: 2-column grid */
  .stats-bar { padding: 24px 0; }
  .stats-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    justify-items: center;
  }
  .stat-item .num { font-size: 1.65rem; }
  .stat-item .label { font-size: 12px; }
  .stat-divider { display: none; }

  /* Directory: filter goes into a side drawer */
  .directory-layout { grid-template-columns: 1fr; gap: 0; }
  .mobile-filter-toggle { display: flex; margin-bottom: 12px; }
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 88vw);
    z-index: 201;
    background: white;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(-110%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.14);
  }
  .filters-sidebar.drawer-open { transform: translateX(0); }

  /* Directory toolbar: compact */
  .directory-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }
  .toolbar-right { width: 100%; justify-content: space-between; }
  .sort-select { flex: 1; min-width: 0; }

  /* Listings */
  .listings-grid { grid-template-columns: 1fr; }

  /* Card footer actions: full-width stacked */
  .card-footer-actions {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 14px 14px;
  }

  /* Page header inner */
  .page-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .page-header-inner .search-form { width: 100% !important; }
  .page-header { padding: 20px 0; }

  /* Listing page */
  .listing-hero { height: 210px; }
  .gallery-thumb { width: 58px; height: 44px; }
  .listing-header h1 { font-size: 1.35rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Trust verify */
  .trust-verify { padding: 20px; }
  .trust-verify-grid { grid-template-columns: 1fr; gap: 14px; }

  /* SEO pages */
  .seo-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .seo-page-hero { padding: 32px 0 0; }
  .location-intro { padding: 20px; }
  .lead-form-card { padding: 20px; }

  /* Internal links: 2 columns on mobile */
  .internal-links-grid { grid-template-columns: 1fr 1fr; }

  /* CTA banner actions stack */
  .cta-banner-inner > div:last-child {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-inner .btn { width: 100%; justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step-card { padding: 24px 18px; }

  /* Footer tighter */
  .footer { padding: 44px 0 28px; }
  .footer-grid { gap: 24px; }

  /* FAQ */
  .faq-item summary { padding: 14px 16px; font-size: 14px; }
  .faq-body { padding: 0 16px 16px; font-size: 13.5px; }

  /* Compare bar */
  .compare-bar { padding: 12px 16px; }
  .compare-bar-actions .btn { flex: 1; justify-content: center; }

  /* Blog article cards */
  .blog-article { flex-direction: column; }
  .blog-article .blog-article-img { width: 100%; height: 180px; }
}

/* ============================================
   EXTRA SMALL (480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Typography */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .hero-content h1 { font-size: clamp(1.45rem, 7.5vw, 1.85rem); }
  .lead { font-size: 0.9375rem; }

  /* Stats: 2×2 grid still */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Cities: 2 cols */
  .cities-grid { grid-template-columns: 1fr 1fr; }

  /* Hide popular searches to save space */
  .search-popular { display: none; }

  /* Card images shorter */
  .card-img { height: 175px; }

  /* Internal links: single column */
  .internal-links-grid { grid-template-columns: 1fr; }

  /* Modal: sheet from bottom */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { border-radius: var(--radius-xl) var(--radius-xl) 0 0; max-height: 95vh; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }

  /* Compare bar: hide slots, show counts */
  .compare-slots { display: none; }

  /* SEO hero stats: still 2-col */
  .seo-hero-stats { grid-template-columns: 1fr 1fr; }

  /* Blog sidebar hidden on mobile (blog.html) */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}

/* ============================================================
   UTILITY CLASSES — listing.html inline style replacements
   ============================================================ */

/* Care type tag pills */
.care-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.pricing-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.pricing-card-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Reviews section header */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.reviews-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

/* Availability text (neutral, replacing red "posti liberi") */
.info-availability {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Google Maps embed */
.map-embed {
  border: 0;
  border-radius: 8px;
  display: block;
}
.map-open-link {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FAQ PAGE — accordion
   ============================================================ */
.faq-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.faq-page-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.faq-page-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.faq-section-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 40px 0 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-page-info h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.contact-page-info p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.contact-detail svg { color: var(--primary); flex-shrink: 0; }
.contact-page-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-page-form h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .contact-page { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CHI SIAMO PAGE
   ============================================================ */
.about-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.about-hero {
  text-align: center;
  margin-bottom: 64px;
}
.about-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.about-value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.about-value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-section {
  margin-bottom: 48px;
}
.about-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.about-section p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .about-values { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.75rem; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.not-found-code {
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.not-found-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.not-found-subtitle {
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.not-found-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
