/* ── thewedding.cl — Apple iOS Design System ── */
:root {
  /* Brand */
  --primary: #f4acb7;
  --primary-soft: #fef4f6;
  --primary-rgb: 244, 172, 183;
  --accent: #30C4A8;
  --accent-rgb: 48, 196, 168;

  /* iOS System Colors */
  --dark: #0A0A0F;
  --ink: #1C1C1E;
  --ink2: #3A3A3C;
  --muted: #8E8E93;
  --paper: #FFFFFF;
  --bg: #F2F2F7;
  --gray1: #F2F2F7;
  --gray2: #E5E5EA;
  --gray3: #C7C7CC;

  /* Typography — SF Pro on Apple, system-ui elsewhere */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-serif: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;

  /* iOS Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layered iOS shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.11), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.07);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ── Header — iOS translucent nav bar ── */
.site-header {
  height: 64px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  height: 100%;
  display: flex; align-items: center; gap: 32px;
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
}
.header-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-logo img { height: 34px; width: auto; }
.header-logo span {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--ink);
}
.header-logo span em { color: var(--primary); font-style: normal; }
.header-nav { display: flex; gap: 6px; flex: 1; margin-left: 8px; }
.header-nav a {
  font-size: 14px; color: var(--ink2); font-weight: 450;
  padding: 6px 12px; border-radius: var(--radius-full);
  white-space: nowrap; transition: background .15s, color .15s;
}
.header-nav a:hover { background: var(--gray1); color: var(--ink); }
.header-nav a.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.header-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.header-account-cluster { display:flex; align-items:center; gap:10px; }
.header-avatar-btn,
.mobile-header-avatar-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray2);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mobile-header-avatar-btn {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}
.header-avatar-btn img,
.mobile-header-avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-avatar-initials {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.1px;
}
.header-notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4d67;
  border: 2px solid var(--paper);
  display: none;
}
.header-notification-dot.show { display: block; }
.provider-notification-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 24px));
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  padding: 14px;
  display: none;
  z-index: 220;
}
.provider-notification-popover.open { display: block; }
.provider-notification-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.provider-notification-head strong {
  font-size: 14px;
  letter-spacing: -.2px;
}
.provider-notification-head span {
  font-size: 12px;
  color: var(--muted);
}
.provider-notification-list {
  display:grid;
  gap:8px;
  max-height: min(420px, 60vh);
  overflow:auto;
}
.provider-notification-item {
  display:block;
  padding:12px;
  border-radius:14px;
  background: var(--gray1);
  border: 1px solid transparent;
}
.provider-notification-item:hover {
  border-color: rgba(var(--primary-rgb), .18);
}
.provider-notification-item.unread {
  background: #fff6f8;
  border-color: rgba(var(--primary-rgb), .18);
}
.provider-notification-item-title {
  font-size: 13px;
  font-weight: 750;
  color: var(--ink);
  line-height: 1.45;
}
.provider-notification-item-copy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}
.provider-notification-item-meta {
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  font-size:11px;
  color: var(--muted);
}
.provider-notification-pill {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .12);
  color: var(--primary);
  font-weight: 700;
}
.provider-notification-empty {
  padding:18px 10px;
  text-align:center;
  color: var(--muted);
  font-size:13px;
  line-height:1.6;
}
.provider-notification-trigger {
  position: relative;
}

/* ── Buttons — iOS pill style ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 20px; height: 38px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 590; letter-spacing: -0.1px;
  cursor: pointer; transition: all .18s; white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { opacity: .85; transform: scale(0.98); }
.btn:active { transform: scale(0.95); opacity: .75; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-vendor { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline { background: var(--paper); color: var(--ink); border-color: var(--gray2); box-shadow: var(--shadow-sm); }
.btn-sm { height: 32px; font-size: 13px; padding: 0 16px; }
.btn-lg { height: 50px; font-size: 16px; padding: 0 32px; font-weight: 600; }

/* ── Mobile Header ── */
.mobile-header {
  display: none; position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  height: 56px; padding: 0 14px;
  align-items: center; justify-content: space-between;
}
.mobile-header svg { width: 22px; height: 22px; color: var(--ink); }
.mobile-header-icon {
  width: 42px; height: 42px; border: none; background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; text-decoration: none; flex: 0 0 42px;
}
.mobile-header-center {
  flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center;
  padding: 0 8px;
}
.mobile-header-center img {
  max-width: min(168px, 100%); width: auto; height: 28px;
}
.mobile-menu-backdrop {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(10,10,15,.42);
}
.mobile-menu-backdrop.open { display: block; }
.mobile-menu-drawer {
  position: fixed; inset: 0 auto 0 0; z-index: 160; width: min(86vw, 360px);
  background: rgba(255,255,255,.98); backdrop-filter: blur(18px);
  box-shadow: 18px 0 54px rgba(10,10,15,.16);
  transform: translateX(-104%); transition: transform .22s ease;
  padding: 18px 16px 22px; display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu-drawer.open { transform: translateX(0); }
.mobile-menu-nav {
  display: grid; gap: 4px;
}
.mobile-menu-nav a,
.mobile-menu-nav button {
  display: block; padding: 13px 10px; border-radius: 14px;
  font-size: 16px; font-weight: 650; color: var(--ink); text-decoration: none;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav button:hover { background: var(--gray1); }
.mobile-menu-nav .is-active {
  background: var(--primary-soft);
  color: var(--primary);
}
.mobile-menu-actions {
  display: grid; gap: 10px;
}
body.mobile-menu-open { overflow: hidden; }

/* ── Hero — full immersive centered ── */
.hero {
  position: relative; min-height: 680px; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .72; transform: scale(1.02);
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .86;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.01);
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(244,172,183,.10) 0%, rgba(10,10,15,0) 42%),
    linear-gradient(180deg, rgba(10,10,15,.46) 0%, rgba(10,10,15,.76) 100%);
}
.hero-inner {
  position: relative; z-index: 2; min-height: 680px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  max-width: 1440px; margin: 0 auto; padding: 80px 32px 64px;
}
.hero-copy { color: #fff; max-width: 980px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: rgba(255,255,255,.9); text-transform: uppercase;
  background: rgba(255,255,255,.15); padding: 5px 16px;
  border-radius: var(--radius-full); margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-sans);
  font-size: 88px; font-weight: 900;
  line-height: .94; letter-spacing: -3.4px;
  margin-bottom: 20px;
  text-shadow: 0 4px 28px rgba(0,0,0,0.26);
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-title span { color: var(--primary); }
.hero-sub {
  font-size: 20px; color: rgba(255,255,255,.82);
  line-height: 1.65; font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
  margin-bottom: 42px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero search bar — full-width pill ── */
.hero-search-bar {
  display: flex; align-items: center;
  background: #fff; border-radius: 60px;
  padding: 6px 6px 6px 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.30);
  max-width: 780px; margin: 0 auto;
}
.hsb-field { flex: 1; padding: 8px 18px 8px 0; min-width: 0; }
.hsb-field label {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--muted); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
}
.hsb-field select, .hsb-field input {
  width: 100%; border: none; outline: none;
  font-size: 15px; color: var(--ink); background: transparent;
  font-weight: 500; cursor: pointer; font-family: var(--font-sans);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hsb-field select option { color: var(--ink); }
.hsb-divider { width: 1px; height: 40px; background: var(--gray2); flex-shrink: 0; margin: 0 4px; }
.hsb-btn {
  height: 52px; padding: 0 30px; border-radius: 40px;
  background: var(--primary); color: #fff;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .15s, transform .15s; white-space: nowrap; flex-shrink: 0;
  font-family: var(--font-sans); letter-spacing: -0.2px;
}
.hsb-btn:hover { opacity: .9; transform: scale(0.98); }
.hsb-btn:active { transform: scale(0.95); }

/* Hide old search card & mobile search */
.search-card { display: none !important; }
.hero-mobile-search { display: none !important; }

/* ── Standalone search card (proveedores page etc.) ── */
.search-card-standalone {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.6);
}
.search-card-standalone h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 18px;
  color: var(--ink); letter-spacing: -0.3px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--muted); text-transform: uppercase; margin-bottom: 6px;
}
.form-group select, .form-group input {
  width: 100%; padding: 12px 16px; font-size: 14px;
  border: 1.5px solid var(--gray2); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink); appearance: none;
  outline: none; transition: border-color .15s, box-shadow .15s;
  font-weight: 450;
}
.form-group select:focus, .form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

/* ── Stats band ── */
.stats-band {
  background: var(--paper); border-bottom: 1px solid var(--gray2); padding: 28px 0;
}
.stats-inner { display: flex; gap: 0; justify-content: center; }
.stat {
  text-align: center; padding: 0 48px;
  border-right: 1px solid var(--gray2);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-sans); font-size: 30px; font-weight: 800;
  color: var(--primary); letter-spacing: -1px; line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 450; }

/* ── Sections ── */
.section { padding: 52px 0; }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-sans); font-size: 28px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--ink);
}
.section-link {
  font-size: 14px; color: var(--primary); font-weight: 590;
  display: flex; align-items: center; gap: 2px;
}
.section-link:hover { opacity: .75; }

/* ── Category cards ── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); cursor: pointer;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.cat-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.cat-card:active { transform: translateY(-1px) scale(0.99); }
.cat-card-img { height: 110px; background-size: cover; background-position: center; background-color: var(--gray1); }
.cat-card-body { padding: 12px 14px 14px; }
.cat-card-name { font-size: 13px; font-weight: 650; color: var(--ink); }
.cat-card-count { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 450; }

/* ── Provider cards ── */
.provider-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.provider-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); cursor: pointer;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.provider-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.provider-card:active { transform: scale(0.98); }
.provider-card-premium,
.listing-card-premium {
  border-color: rgba(201,168,76,0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255,236,178,0.58),
    0 10px 28px rgba(154,110,20,0.16),
    0 0 0 3px rgba(201,168,76,0.08),
    var(--shadow);
}
.provider-card-premium:hover {
  border-color: rgba(201,168,76,1);
  box-shadow:
    inset 0 0 0 1px rgba(255,238,188,0.78),
    0 18px 52px rgba(154,110,20,0.24),
    0 0 0 4px rgba(201,168,76,0.14),
    var(--shadow-lg);
}
.provider-card-img {
  height: 170px; background-size: cover; background-position: center;
  background-color: var(--gray1); position: relative;
}
.card-badge-heart {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform .15s;
}
.card-badge-heart:hover { transform: scale(1.15); }
.card-badge-heart.is-active {
  background: rgba(244,172,183,0.96);
  color: #fff;
}
.provider-card-body { padding: 14px 16px 16px; }
.provider-card-name { font-size: 15px; font-weight: 650; line-height: 1.3; color: var(--ink); }
.provider-card-sub { font-size: 12px; color: var(--muted); margin-top: 3px; font-weight: 450; }
.provider-card-rating { display: flex; align-items: center; gap: 5px; margin-top: 10px; }
.stars { color: #FF9500; font-size: 12px; }
.rating-num { font-size: 13px; font-weight: 650; }
.rating-cnt { font-size: 12px; color: var(--muted); }
.provider-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.price-tag { font-size: 13px; font-weight: 700; color: var(--primary); }
.btn-ver {
  font-size: 12px; padding: 5px 14px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray2); background: var(--bg); color: var(--ink2); font-weight: 590;
  transition: all .15s;
}
.btn-ver:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

/* ── Provider of the week ── */
.provider-week-note { cursor: default; color: var(--muted); }
.blog-preview-card {
  background: var(--paper);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s;
  box-shadow: var(--shadow);
}
.blog-preview-card:hover { box-shadow: var(--shadow-lg); }
.blog-preview-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.blog-preview-body { padding: 16px 18px; }
.blog-preview-tag {
  display: inline-block; padding: 2px 10px; background: var(--primary-soft); color: var(--primary);
  border-radius: 20px; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 8px;
}
.blog-preview-title {
  font-family: var(--font-serif); font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 8px;
}
.blog-preview-copy { font-size: 12px; color: var(--muted); line-height: 1.5; }
.blog-preview-meta { font-size: 11px; color: var(--muted); margin-top: 10px; }
.blog-carousel .blog-preview-card {
  flex: 0 0 248px;
  min-width: 248px;
}
.blog-carousel .blog-preview-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-carousel .blog-preview-copy {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.provider-week-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1fr);
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.provider-week-premium {
  border-color: rgba(201,168,76,0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255,236,178,0.5),
    0 18px 44px rgba(154,110,20,0.17),
    0 0 0 4px rgba(201,168,76,0.08),
    var(--shadow-lg);
}
.provider-week-media {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.provider-week-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,.12) 0%, rgba(10,10,15,.3) 100%),
    linear-gradient(90deg, rgba(10,10,15,.04) 0%, rgba(10,10,15,.12) 100%);
}
.provider-week-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: linear-gradient(135deg, #C9A84C 0%, #8a6000 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(138,96,0,.28);
}
.provider-week-content {
  padding: 34px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.provider-week-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--primary);
  margin-bottom: 12px;
}
.provider-week-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -.9px;
  line-height: 1.05;
  color: var(--ink);
}
.provider-week-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.provider-week-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.provider-week-copy {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink2);
  max-width: 560px;
}
.provider-week-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.provider-week-stat {
  padding: 14px 14px 13px;
  border-radius: var(--radius);
  background: var(--gray1);
  border: 1px solid var(--gray2);
}
.provider-week-stat strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--ink);
}
.provider-week-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .7px;
}
.provider-week-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.provider-week-actions .btn {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Listing page ── */
.listing-page { display: flex; min-height: calc(100vh - 64px); background: var(--bg); }
.filter-rail {
  width: 252px; flex-shrink: 0; padding: 24px 20px;
  border-right: 1px solid var(--gray2); background: var(--paper);
  position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto;
}
.filter-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray2); }
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
  font-size: 11px; font-weight: 750; letter-spacing: 1.2px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 12px;
}
.filter-option {
  display: flex; align-items: center; gap: 10px; padding: 5px 0;
  cursor: pointer; font-size: 13px; color: var(--ink2); transition: color .12s;
}
.filter-option:hover { color: var(--ink); }
.filter-option input[type=checkbox], .filter-option input[type=radio] {
  accent-color: var(--primary); width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
}
.filter-option-count { margin-left: auto; font-size: 11px; color: var(--muted); }

.listing-main { flex: 1; padding: 24px 28px; }
.listing-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.listing-breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 4px;
}
.listing-breadcrumb a { color: var(--primary); }
.listing-breadcrumb span { color: var(--ink2); font-weight: 500; }
.listing-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; letter-spacing: -0.4px; }
.listing-count { font-size: 13px; color: var(--muted); font-weight: 450; }
.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px;
  border-radius: var(--radius-full); font-size: 12px; font-weight: 590;
  border: 1.5px solid var(--gray2); background: var(--paper); cursor: pointer;
  transition: all .15s;
}
.chip-active { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); }
.chip-close { font-size: 13px; }
.sort-bar { display: flex; align-items: center; gap: 8px; }
.sort-bar label { font-size: 12px; color: var(--muted); font-weight: 500; }
.sort-bar select {
  font-size: 13px; padding: 6px 12px; border: 1.5px solid var(--gray2);
  border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); font-weight: 450;
  outline: none;
}

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.listing-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.listing-card-premium {
  box-shadow:
    inset 0 0 0 1px rgba(255,236,178,0.58),
    0 9px 26px rgba(154,110,20,0.14),
    0 0 0 3px rgba(201,168,76,0.08),
    var(--shadow-sm);
}
.listing-card-premium:hover {
  border-color: rgba(201,168,76,1);
  box-shadow:
    inset 0 0 0 1px rgba(255,238,188,0.78),
    0 16px 46px rgba(154,110,20,0.22),
    0 0 0 4px rgba(201,168,76,0.14),
    var(--shadow-lg);
}
.listing-card-img {
  height: 148px; background-size: cover; background-position: center;
  background-color: var(--gray1); position: relative;
}
.listing-card-body { padding: 14px 16px; }
.listing-card-name { font-size: 14px; font-weight: 650; color: var(--ink); }
.listing-card-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.listing-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.page-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1.5px solid var(--gray2);
  font-size: 14px; cursor: pointer; background: var(--paper); font-weight: 500;
  transition: all .15s;
}
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px rgba(var(--primary-rgb),.4); }
.page-btn:hover:not(.active):not([disabled]) { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

/* ── Detail page ── */
.detail-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 6px; height: 340px; border-radius: var(--radius-xl); overflow: hidden;
}
.detail-gallery-main { background-size: cover; background-position: center; background-color: var(--gray1); overflow: hidden; }
.detail-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }
.detail-gallery-thumb { background-size: cover; background-position: center; background-color: var(--gray1); overflow: hidden; }
.detail-gallery-thumb:last-child { position: relative; }
.detail-gallery-img,
.detail-photo-tile img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.image-load-failed {
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .08), rgba(201, 168, 76, .12)),
    var(--gray1);
}
.image-load-failed img { display: none; }
.gallery-more {
  position: absolute; inset: 0; background: rgba(0,0,0,.46);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  backdrop-filter: blur(2px);
}

.detail-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: 36px; padding: 32px 0; }
.detail-sticky { position: sticky; top: 80px; }
.detail-name {
  font-family: var(--font-serif); font-size: 30px; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.5px;
}
.detail-title-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.detail-plan-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 1.85em; padding: .34em .9em; border-radius: var(--radius-full);
  font-size: clamp(11px, .42em, 13px); font-weight: 750;
  line-height: 1; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.detail-plan-badge-featured {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 8px rgba(var(--primary-rgb),.35);
}
.detail-plan-badge-premium {
  background: linear-gradient(135deg, #C9A84C 0%, #8a6000 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(180,130,0,.38), 0 0 0 3px rgba(201,168,76,.10);
}
.detail-meta { display: flex; gap: 10px; align-items: center; margin-top: 10px; flex-wrap: wrap; }
.detail-meta span { font-size: 13px; color: var(--muted); }
.detail-actions { display: flex; gap: 8px; margin-top: 0; }
.detail-actions .btn.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), .26);
}
.detail-tabs {
  display: flex; gap: 4px; margin-top: 28px; margin-bottom: 4px;
  background: var(--bg); padding: 4px; border-radius: var(--radius-sm);
  width: fit-content;
}
.detail-tab {
  padding: 7px 18px; font-size: 13px; font-weight: 500; cursor: pointer;
  border-radius: var(--radius-xs); color: var(--muted); transition: all .18s;
}
.detail-tab.active {
  background: var(--paper); color: var(--ink); font-weight: 650;
  box-shadow: var(--shadow-sm);
}
.detail-tab:hover:not(.active) { color: var(--ink2); }
.detail-section { margin-top: 24px; }
.detail-section-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.detail-desc { font-size: 15px; line-height: 1.75; color: var(--ink2); }
.detail-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-info-chip {
  display: inline-flex; align-items: center; min-height: 30px;
  padding: 7px 12px; border-radius: var(--radius-full);
  border: 1px solid rgba(var(--primary-rgb), .18);
  background: rgba(var(--primary-rgb), .07); color: var(--ink2);
  font-size: 12px; font-weight: 650;
}
.detail-faq-list { display: grid; gap: 10px; }
.detail-faq-item {
  padding: 14px 16px; border: 1px solid var(--gray2);
  border-radius: var(--radius); background: var(--paper);
}
.detail-faq-item strong { display: block; font-size: 13px; line-height: 1.35; }
.detail-faq-item p { margin-top: 6px; color: var(--ink2); font-size: 13px; line-height: 1.6; }
.detail-review-summary {
  display: flex; align-items: center; gap: 18px; padding: 18px;
  border: 1px solid var(--gray2); border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--paper), var(--bg));
}
.detail-review-score {
  font-family: var(--font-serif); font-size: 34px; font-weight: 750;
  color: var(--ink); line-height: 1;
}
.detail-review-summary p { margin-top: 4px; color: var(--muted); font-size: 13px; }
.detail-reviews-list { display: grid; gap: 12px; margin-top: 16px; }
.detail-review-more-wrap { display: flex; justify-content: center; margin-top: 18px; }
.detail-review-more-btn { min-width: 180px; height: 40px; border-radius: var(--radius-sm); }
.detail-review-card {
  padding: 18px; border: 1px solid var(--gray2); border-radius: var(--radius-xl);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.detail-review-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 10px;
}
.detail-review-head strong { display: block; font-size: 14px; }
.detail-review-head span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.detail-review-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.detail-review-card p { color: var(--ink2); font-size: 14px; line-height: 1.7; }
.detail-review-reply {
  margin-top: 14px; padding: 12px 14px; border-radius: var(--radius);
  background: var(--gray1); border-left: 3px solid var(--primary);
}
.detail-review-reply strong { display: block; font-size: 12px; margin-bottom: 5px; }
.detail-review-reply p { font-size: 13px; }
.detail-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; margin-top: 8px;
}
.detail-photo-tile {
  height: 140px; padding: 0; border: 0; border-radius: 4px;
  overflow: hidden; cursor: pointer; background: var(--gray1);
}
.detail-photo-tile:hover img { opacity: .92; }

/* Quote card */
.quote-card {
  border: 1px solid var(--gray2); border-radius: var(--radius-xl);
  padding: 24px; background: var(--paper); box-shadow: var(--shadow);
}
.quote-price-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.quote-price {
  font-family: var(--font-serif); font-size: 30px; font-weight: 700;
  color: var(--primary); letter-spacing: -0.5px; margin-top: 4px;
}
.quote-price-note { font-size: 11px; color: var(--muted); margin-top: 2px; }
.quote-divider { border: none; border-top: 1px solid var(--gray2); margin: 18px 0; }
.quote-form h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.quote-input {
  width: 100%; padding: 11px 14px; font-size: 14px; border: 1.5px solid var(--gray2);
  border-radius: var(--radius-sm); margin-bottom: 10px; outline: none;
  background: var(--bg); transition: border-color .15s, box-shadow .15s;
}
.quote-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.quote-textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; border: 1.5px solid var(--gray2);
  border-radius: var(--radius-sm); margin-bottom: 10px; height: 88px; resize: none;
  outline: none; background: var(--bg); transition: border-color .15s, box-shadow .15s;
}
.quote-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.quote-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.quote-field-group { margin-bottom: 10px; }
.quote-field-label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.quote-field-group .quote-input { margin-bottom: 0; }
input[type="date"].quote-input {
  cursor: pointer; font-family: var(--font-sans); color: var(--ink);
  appearance: none; -webkit-appearance: none;
}
input[type="date"].quote-input::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.5; filter: invert(40%);
}
input[type="date"].quote-input:hover::-webkit-calendar-picker-indicator { opacity: 0.8; }

/* ── Provider band — with wedding bg image ── */
.provider-band { padding: 48px 0; background: var(--bg); }
.provider-band-inner {
  display: flex; gap: 24px; align-items: center;
  padding: 52px 48px;
  background:
    linear-gradient(135deg, rgba(10,10,15,.88) 0%, rgba(var(--primary-rgb),.45) 100%),
    url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?w=1400&q=70') center/cover;
  border-radius: var(--radius-xl);
  color: #fff; position: relative; overflow: hidden;
}
.provider-band-inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.55) 0%, transparent 70%);
  border-radius: inherit;
}
.provider-band-copy { flex: 1; position: relative; z-index: 1; }
.provider-band-copy h3 { font-family: var(--font-sans); font-size: 28px; font-weight: 800; letter-spacing: -0.8px; }
.provider-band-copy p { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 10px; line-height: 1.6; }
.provider-band-actions { display: flex; gap: 12px; position: relative; z-index: 1; }

/* ── Footer ── */
.site-footer {
  background:
    linear-gradient(180deg, rgba(var(--primary-rgb),.045) 0%, rgba(255,255,255,0) 34%),
    var(--paper);
  border-top: 1px solid rgba(0,0,0,.07);
  padding: 56px 0 24px;
}
.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--gray2);
}
.footer-brand { max-width: 680px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo img { height: 34px; width: auto; }
.footer-logo span {
  display: none;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.3px;
}
.footer-brand h2 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.7px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 620px;
}
.footer-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: transform .16s, box-shadow .16s, background .16s, border-color .16s;
}
.footer-btn:hover { transform: translateY(-1px); }
.footer-btn:focus-visible,
.footer-col a:focus-visible,
.footer-chip:focus-visible {
  outline: 3px solid rgba(var(--primary-rgb),.35);
  outline-offset: 3px;
}
.footer-btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10,10,15,.14);
}
.footer-btn-primary:hover { box-shadow: 0 14px 30px rgba(10,10,15,.18); }
.footer-btn-outline {
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border: 1px solid var(--gray2);
}
.footer-btn-outline:hover { background: #fff; border-color: var(--gray3); }
.footer-link-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--gray2);
}
.footer-col h3 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  margin-bottom: 15px;
  color: var(--ink);
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a {
  display: inline-flex;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  transition: color .14s, transform .14s;
}
.footer-col a:hover {
  color: var(--primary);
  transform: translateX(2px);
}
.footer-seo-strip { padding: 28px 0 4px; }
.footer-seo-strip h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.1px;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(var(--primary-rgb),.34);
  background: rgba(var(--primary-rgb),.08);
  color: var(--ink2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.footer-chip:hover {
  background: var(--primary-soft);
  border-color: rgba(var(--primary-rgb),.68);
  color: var(--ink);
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding-top: 24px; margin-top: 28px; border-top: 1px solid var(--gray2);
  font-size: 12px; color: var(--muted);
}

/* ── Search bar ── */
.search-bar {
  display: flex; background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl); height: 56px;
  border: 1px solid rgba(0,0,0,0.06);
}
.search-segment { display: flex; align-items: center; gap: 10px; padding: 0 18px; border-right: 1px solid var(--gray2); flex: 1; }
.search-segment svg { flex-shrink: 0; opacity: .5; }
.search-segment input { border: none; outline: none; font-size: 14px; color: var(--ink); background: transparent; width: 100%; font-weight: 450; }
.search-segment input::placeholder { color: var(--muted); }
.search-btn { padding: 0 28px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 650; cursor: pointer; white-space: nowrap; border: none; }

/* ── Spinner ── */
.spinner { display: flex; align-items: center; justify-content: center; padding: 64px 0; }
.spinner-ring {
  width: 38px; height: 38px; border: 3px solid var(--gray2);
  border-top-color: var(--primary); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 72px 20px; color: var(--muted); }
.empty-state h3 { font-family: var(--font-serif); font-size: 22px; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.empty-state p { font-size: 15px; line-height: 1.6; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: rgba(28,28,30,0.92); backdrop-filter: blur(12px);
  color: #fff; padding: 13px 22px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500; z-index: 999;
  opacity: 0; transform: translateY(10px) scale(0.96);
  transition: opacity .28s, transform .28s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none; box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); }

/* ── Card plan badges ── */
.card-featured {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  font-size: 9px; font-weight: 750; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(var(--primary-rgb),.45);
}
.card-premium {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, #C9A84C 0%, #8a6000 100%);
  color: #fff;
  font-size: 9px; font-weight: 750; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(180,130,0,.55);
}

/* ── Mobile search bar ── */
.hero-mobile-search {
  display: none; margin: 0 16px 24px; background: var(--paper);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-mobile-search .search-segment { border-right: none; border-bottom: 1px solid var(--gray2); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .provider-grid { grid-template-columns: repeat(3, 1fr); }
  .provider-week-card { grid-template-columns: 1fr; }
  .provider-week-media { min-height: 340px; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-hero { grid-template-columns: 1fr; align-items: start; }
  .footer-actions { justify-content: flex-start; }
  .footer-link-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .hero-title { font-size: 70px; letter-spacing: -2.4px; }
}
@media (max-width: 768px) {
  .site-header { display: none; }
  .mobile-header { display: flex; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-link { line-height: 1.45; }
  .hero { min-height: 580px; }
  .hero-inner { padding: 56px 20px 48px; min-height: 580px; }
  .hero-copy { max-width: 560px; }
  .hero-title { font-size: 56px; letter-spacing: -2px; line-height: .96; margin-bottom: 18px; }
  .hero-sub { font-size: 17px; margin-bottom: 30px; max-width: 420px; }
  .hero-search-bar { flex-direction: column; border-radius: var(--radius-xl); padding: 16px 20px; gap: 12px; max-width: 100%; }
  .hsb-field { padding: 0; width: 100%; }
  .hsb-field label { font-size: 12px; margin-bottom: 6px; letter-spacing: .9px; }
  .hsb-divider { display: none; }
  .hsb-btn { width: 100%; height: 48px; justify-content: center; border-radius: var(--radius-full); }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .stat {
    width: auto;
    padding: 16px 18px;
    border-bottom: 1px solid var(--gray2);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stats-inner .stat:last-child {
    grid-column: 1 / -1;
    border-right: none;
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-page { flex-direction: column; }
  .provider-week-note { max-width: 26rem; }
  .provider-week-content { padding: 26px 24px 24px; }
  .provider-week-title { font-size: 28px; }
  .provider-week-highlights { grid-template-columns: 1fr 1fr; }
  .provider-week-actions .btn { flex: 1; justify-content: center; }
  .blog-carousel .blog-preview-card { flex: 0 0 200px; min-width: 200px; }
  .blog-preview-media { height: 132px; }
  .blog-preview-body { padding: 13px 14px 15px; }
  .blog-preview-title {
    font-size: 15px;
    line-height: 1.25;
  }
  .filter-rail { width: 100%; position: static; height: auto; display: none; border-radius: var(--radius-lg); margin: 8px; }
  .filter-rail.open { display: block; }
  .listing-grid { grid-template-columns: 1fr 1fr; }
  .detail-gallery { grid-template-columns: 1fr; height: 260px; border-radius: var(--radius-lg); }
  .detail-gallery-side { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sticky { position: static; }
  .footer-link-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand h2 { font-size: 26px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .container, .container-wide { padding: 0 16px; }
  .section { padding: 36px 0; }
  .provider-band-inner { flex-direction: column; text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); }
  .provider-band-actions { flex-direction: column; width: 100%; }
  .provider-band-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .provider-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .mobile-header { padding: 0 10px; }
  .mobile-header-center img { max-width: min(150px, 100%); height: 26px; }
  .hero-inner { padding: 60px 18px 46px; }
  .provider-week-media { min-height: 260px; }
  .hero-title { font-size: 50px; letter-spacing: -1.8px; margin-bottom: 16px; }
  .hero-sub { font-size: 16px; max-width: 320px; margin-bottom: 26px; }
  .provider-week-title { font-size: 24px; }
  .provider-week-highlights { grid-template-columns: 1fr; }
  .provider-week-actions { flex-direction: column; }
  .provider-week-actions .btn { width: 100%; min-height: 46px; }
  .blog-carousel .blog-preview-card { flex: 0 0 200px; min-width: 200px; }
  .blog-preview-media { height: 120px; }
  .blog-preview-title { font-size: 14px; }
  .blog-preview-copy { font-size: 11px; }
  .site-footer { padding-top: 44px; }
  .footer-hero { gap: 22px; padding-bottom: 28px; }
  .footer-actions, .footer-btn { width: 100%; }
  .footer-link-grid { grid-template-columns: 1fr; padding: 28px 0; gap: 24px; }
  .footer-chip { width: 100%; justify-content: center; text-align: center; }
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .section-title { font-size: 22px; }
}

/* ── Provider Carousel (iOS scroll-snap) ── */
.provider-carousel-wrap {
  position: relative;
}
.provider-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
  padding-right: 8px;
}
.provider-carousel::-webkit-scrollbar { display: none; }
.provider-carousel .provider-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  min-width: 260px;
}
.carousel-fade-edge {
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: calc(100% - 12px);
  background: linear-gradient(to left, var(--bg) 30%, transparent);
  pointer-events: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
@media (max-width: 768px) {
  .provider-carousel .provider-card { flex: 0 0 200px; min-width: 200px; }
  .carousel-fade-edge { width: 48px; }
}
