/* ═══════════════════════════════════════════════════════════
   TubHotels Sanctuary — Homepage Styles
   Template: front-page.php
   Design ref: demo/homepage-sanctuary-pro.html
═══════════════════════════════════════════════════════════ */

/* ════ HERO ════ */
.hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 48px 120px; text-align: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide.active img { animation: kenBurns 14s ease-out forwards; }
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.55) 0%, rgba(13,27,42,.3) 40%, rgba(13,27,42,.7) 100%);
  z-index: -1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 48px; height: 1px; background: var(--teal); }
.hero-h1 { font-family: 'Playfair Display', serif; line-height: .92; letter-spacing: -2px; color: #fff; margin-bottom: 8px; text-shadow: 0 6px 32px rgba(0,0,0,.4); }
.hero-h1 .line1 { display: block; font-size: clamp(36px,4.5vw,64px); font-weight: 600; letter-spacing: -1px; }
.hero-h1 .line2 { display: block; font-size: clamp(64px,9vw,140px); font-weight: 400; font-style: italic; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.85); margin-top: -8px; letter-spacing: -3px; }
.hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px,2.2vw,24px); font-style: italic; color: rgba(255,255,255,.92); margin-bottom: 36px; text-shadow: 0 2px 12px rgba(0,0,0,.4); font-weight: 400; letter-spacing: .3px; max-width: 680px; }

.hero-search { display: flex; align-items: center; background: rgba(13,27,42,.55); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); border: 1px solid rgba(255,255,255,.18); border-radius: 60px; padding: 8px 8px 8px 28px; max-width: 620px; width: 100%; box-shadow: 0 24px 64px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08); gap: 14px; transition: border-color .3s, box-shadow .3s; }
.hero-search:focus-within { border-color: rgba(42,180,160,.5); box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 3px rgba(42,180,160,.15); }
.hero-search > svg { width: 18px; height: 18px; color: rgba(255,255,255,.65); flex-shrink: 0; }
.hero-search input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: 15px; font-family: 'Inter', sans-serif; padding: 14px 0; }
.hero-search input::placeholder { color: rgba(255,255,255,.5); }
.hero-search button { background: #fff; color: var(--ink); border: none; border-radius: 50px; padding: 14px 36px; font-size: 14px; font-weight: 700; cursor: pointer; letter-spacing: .5px; transition: transform .15s, background .25s, color .25s; flex-shrink: 0; }
.hero-search button:hover { transform: scale(1.03); background: var(--teal); color: #fff; }

.hero-trust-line { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 13px; color: rgba(255,255,255,.8); font-weight: 400; }
.htl-item { display: flex; align-items: center; gap: 6px; }
.htl-item svg { width: 14px; height: 14px; color: var(--teal); }
.htl-item strong { color: #fff; font-weight: 600; }

.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.12); z-index: 3; }
.hero-progress-fill { height: 100%; width: 0%; background: var(--teal); transition: width linear; }
.hero-dots { position: absolute; bottom: 28px; right: 64px; z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; padding: 0; cursor: pointer; transition: background .3s, transform .3s; }
.hero-dot.active { background: var(--teal); transform: scale(1.4); }

/* ════ TRUST BAR ════ */
.trust-bar { background: #fff; border-bottom: 1px solid var(--sand); padding: 28px 64px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.tb-item { display: flex; align-items: center; gap: 14px; }
.tb-icon { width: 42px; height: 42px; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tb-icon svg { width: 20px; height: 20px; color: var(--teal); }
.tb-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1; }
.tb-label { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .3px; margin-top: 2px; }

/* ════ SECTION COMMON ════ */
.sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.sec-tit { font-family: 'Playfair Display', serif; font-size: clamp(36px,4.5vw,60px); font-weight: 600; line-height: 1.05; color: var(--ink); letter-spacing: -1.5px; }
.sec-tit em { font-style: italic; font-weight: 400; color: var(--light-muted); }
.sec-lede { font-size: 16px; color: var(--muted); margin-top: 14px; max-width: 620px; line-height: 1.7; }

/* ════ FEATURED ESCAPES ════ */
.escapes { padding: 80px 0 60px; background: var(--cream); }
.escapes-header { padding: 0 64px 36px; }
.escapes-track { position: relative; height: 380px; overflow: hidden; width: 100vw; left: 50%; transform: translateX(-50%); }
.escapes-set { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; opacity: 0; transform: translateX(40px); transition: opacity .85s ease, transform .85s cubic-bezier(.16,1,.3,1); pointer-events: none; }
.escapes-set.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.escape-card { position: relative; cursor: pointer; overflow: hidden; height: 100%; text-decoration: none; min-width: 0; display: block; }
.escape-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.escape-card:hover img { transform: scale(1.06); }
.escape-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.92) 0%, rgba(13,27,42,.15) 50%, rgba(13,27,42,.05) 100%); }
.escape-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.escape-card-region { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.escape-card-name { font-family: 'Playfair Display', serif; font-size: clamp(16px,1.4vw,22px); font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 4px; letter-spacing: -.3px; }
.escape-card-meta { font-size: 11px; color: rgba(255,255,255,.75); font-weight: 400; }
.escape-card-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; opacity: 0; transform: translateX(-8px); transition: all .35s; }
.escape-card:hover .escape-card-arrow { opacity: 1; transform: translateX(0); }
.escapes-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; padding: 0 64px; }
.escapes-pause { background: var(--cream-2); border: 1px solid var(--sand); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.escapes-pause:hover { background: #fff; }
.escapes-pause svg { width: 14px; height: 14px; color: var(--ink); }
.escapes-dots { display: flex; gap: 10px; }
.edot { width: 32px; height: 3px; background: var(--sand); border: none; cursor: pointer; border-radius: 2px; transition: background .25s, width .25s; padding: 0; }
.edot.active { background: var(--ink); width: 48px; }

/* ════ STATES ════ */
.states { padding: 100px 64px; background: var(--cream-2); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.states-inner { max-width: 1400px; margin: 0 auto; }
.states-header { text-align: center; margin-bottom: 36px; }
.states-header .sec-tit { margin-top: 14px; }
.states-search { max-width: 480px; margin: 32px auto 0; display: flex; align-items: center; background: #fff; border: 1px solid var(--sand); border-radius: 50px; padding: 6px 6px 6px 24px; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.states-search:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-bg); }
.states-search svg { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; }
.states-search input { flex: 1; background: none; border: none; outline: none; padding: 12px 14px; color: var(--ink); font-size: 14px; font-family: 'Inter', sans-serif; }
.states-search input::placeholder { color: var(--light-muted); }
.states-search-clear { background: var(--cream-2); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; color: var(--muted); }
.states-search-clear svg { width: 12px; height: 12px; }
.states-search-clear.show { display: flex; }
.states-filter-wrap { position: relative; border-bottom: 1px solid var(--sand); margin: 36px 0 32px; overflow-x: auto; scrollbar-width: none; }
.states-filter-wrap::-webkit-scrollbar { display: none; }
.states-filter { display: inline-flex; flex-wrap: nowrap; gap: 0; min-width: 100%; justify-content: center; }
.states-filter::-webkit-scrollbar { display: none; }
.sfilter { background: none; border: none; padding: 18px 10px; font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .25s, border-color .25s; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.sfilter-count { background: var(--cream-2); color: var(--muted); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 50px; }
.sfilter:hover { color: var(--ink); }
.sfilter.active { color: var(--ink); border-bottom-color: var(--teal); }
.sfilter.active .sfilter-count { background: var(--teal); color: #fff; }
.states-grid { display: grid; grid-template-columns: repeat(10,1fr); gap: 10px; }
.stile { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; text-decoration: none; aspect-ratio: .78; transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .25s; }
.stile.hidden, .stile.search-hidden { display: none; }
.stile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.82) saturate(1.0); transition: filter .5s ease, transform .6s ease; }
.stile-fallback-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#1a3245 0%,#0d1b2a 60%,#1f4a4a 100%); overflow: hidden; }
.stile-fallback-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%,rgba(42,180,160,.18),transparent 60%); }
.stile-fallback-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 70%,rgba(201,168,76,.12),transparent 60%); }
.stile-fallback-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-65%); font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 900; color: rgba(255,255,255,.08); letter-spacing: -2px; line-height: 1; }
.stile-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(13,27,42,.9) 0%,rgba(13,27,42,.15) 55%,transparent 100%); transition: opacity .35s; }
.stile-glow { position: absolute; inset: 0; border-radius: 14px; box-shadow: inset 0 0 0 0 var(--teal); transition: box-shadow .35s ease; pointer-events: none; }
.stile-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; z-index: 2; }
.stile-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -.2px; }
.stile-count { font-size: 10px; color: rgba(255,255,255,.65); margin-top: 3px; font-weight: 400; }
.stile:hover { transform: translateY(-4px); z-index: 5; }
.stile:hover .stile-img { filter: brightness(1.05) saturate(1.35) contrast(1.05); transform: scale(1.06); }
.stile:hover .stile-ov { opacity: .7; }
.stile:hover .stile-glow { box-shadow: inset 0 0 0 1.5px var(--teal), 0 12px 32px rgba(42,180,160,.18); }
.states-empty { display: none; text-align: center; padding: 48px 24px; color: var(--muted); font-style: italic; }
.states-empty.show { display: block; }

/* ════ BROWSE BY TYPE ════ */
.types { padding: 100px 64px; background: var(--cream); }
.types-inner { max-width: 1400px; margin: 0 auto; }
.types-header { text-align: center; margin-bottom: 48px; }
.types-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.tcard { position: relative; border-radius: 18px; overflow: hidden; cursor: pointer; text-decoration: none; aspect-ratio: .85; border: 1px solid var(--sand); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.tcard img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease, filter .4s ease; filter: brightness(.7); }
.tcard:hover img { transform: scale(1.05); filter: brightness(.9); }
.tcard-ov { position: absolute; inset: 0; background: linear-gradient(to top,rgba(13,27,42,.9) 0%,rgba(13,27,42,.2) 55%,transparent 100%); }
.tcard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; }
.tcard-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 4px; }
.tcard-count { font-size: 11px; color: rgba(255,255,255,.7); }

/* ════ PROMISE ════ */
.promise { padding: 100px 64px; background: var(--cream-2); }
.promise-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.promise-l h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px,3.8vw,52px); font-weight: 600; line-height: 1.05; color: var(--ink); margin-bottom: 24px; letter-spacing: -1.5px; }
.promise-l h2 em { font-style: italic; font-weight: 400; color: var(--teal); }
.promise-l p { font-size: 15px; color: var(--muted); line-height: 1.85; }
.promise-r { display: flex; flex-direction: column; gap: 18px; }
.pbox { background: #fff; border-radius: 20px; padding: 28px 32px; box-shadow: var(--shadow); border: 1px solid var(--sand); display: grid; grid-template-columns: auto auto 1fr; gap: 24px; align-items: center; transition: transform .3s ease, box-shadow .3s ease; }
.pbox:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.pbox-icon { width: 48px; height: 48px; background: var(--teal-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pbox-icon svg { width: 22px; height: 22px; color: var(--teal); }
.pbox-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--teal); line-height: 1; letter-spacing: -1.5px; flex-shrink: 0; min-width: 90px; }
.pbox-num span { color: var(--gold); font-weight: 600; }
.pbox-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: .2px; }
.pbox-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ════ FAQ (homepage variant) ════ */
.faq { padding: 100px 64px; background: var(--cream); }
.faq-inner { max-width: 980px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }

/* ════ REVIEWS ════ */
.reviews { padding: 100px 0; background: var(--cream-2); }
.reviews-header { padding: 0 64px 32px; text-align: center; }
.reviews-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; background: #fff; padding: 14px 24px; border-radius: 50px; border: 1px solid var(--sand); box-shadow: var(--shadow-sm); }
.rr-num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1; }
.rr-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.rr-text { font-size: 12px; color: var(--muted); font-weight: 500; }
.rr-text strong { color: var(--ink); }
.rev-track { position: relative; padding: 24px 64px 0; }
.rev-set { position: absolute; left: 64px; right: 64px; top: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; opacity: 0; transform: translateX(50px); transition: opacity .8s, transform .8s cubic-bezier(.16,1,.3,1); pointer-events: none; }
.rev-set.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.rcard { background: #fff; border-radius: 18px; padding: 22px 22px; box-shadow: var(--shadow); border: 1px solid var(--sand); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rstars { color: var(--gold); font-size: 12px; letter-spacing: 1.5px; }
.rverified { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-bg); color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .5px; padding: 4px 10px; border-radius: 50px; }
.rverified svg { width: 11px; height: 11px; }
.rquote { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; line-height: 1.65; color: var(--ink); margin-bottom: 16px; flex: 1; }
.rauthor { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--sand); }
.ravatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sand); flex-shrink: 0; }
.rname { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: .2px; }
.rmeta { font-size: 11px; color: var(--muted); margin-top: 1px; }
.rev-dots { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.rdot { width: 32px; height: 3px; background: var(--sand); border: none; cursor: pointer; border-radius: 2px; transition: background .25s, width .25s; padding: 0; }
.rdot.active { background: var(--ink); width: 48px; }

/* ════ SEARCH CTA ════ */
.search-cta { padding: 120px 64px; background: var(--cream); text-align: center; position: relative; overflow: hidden; }
.search-cta-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(42,180,160,.06) 1px,transparent 1px), linear-gradient(90deg,rgba(42,180,160,.06) 1px,transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%,#000,transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%,#000,transparent 80%); }
.search-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle,rgba(42,180,160,.08),transparent 70%); pointer-events: none; }
.search-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.search-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,72px); font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 20px; letter-spacing: -2.5px; }
.search-cta h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; color: var(--teal); }
.search-cta p { font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.75; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-bar { display: inline-flex; align-items: center; background: #fff; border-radius: 60px; padding: 8px 8px 8px 32px; max-width: 560px; width: 100%; border: 1.5px solid var(--sand); box-shadow: var(--shadow-lg); gap: 12px; }
.cta-bar svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.cta-bar input { flex: 1; background: none; border: none; outline: none; color: var(--ink); font-size: 15px; font-family: 'Inter', sans-serif; padding: 14px 0; }
.cta-bar input::placeholder { color: var(--light-muted); }
.cta-bar button { background: var(--teal); color: #fff; border: none; border-radius: 50px; padding: 14px 32px; font-size: 13px; font-weight: 700; letter-spacing: .5px; cursor: pointer; transition: transform .15s, background .25s; flex-shrink: 0; box-shadow: 0 4px 16px rgba(42,180,160,.3); }
.cta-bar button:hover { transform: scale(1.03); background: var(--teal-2); }

/* ════ NEWSLETTER ════ */
.newsletter { padding: 64px 64px; background: var(--ink); color: #fff; }
.newsletter-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; line-height: 1.15; letter-spacing: -.5px; margin-bottom: 8px; }
.newsletter h3 em { color: var(--teal); font-style: italic; }
.newsletter p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }
.news-form { display: flex; gap: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; overflow: hidden; }
.news-form input { flex: 1; background: none; border: none; outline: none; padding: 16px 22px; color: #fff; font-size: 14px; font-family: 'Inter', sans-serif; }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form button { background: var(--teal); color: #fff; border: none; padding: 0 28px; font-size: 13px; font-weight: 700; letter-spacing: .5px; cursor: pointer; transition: background .25s; }
.news-form button:hover { background: var(--teal-2); }
.news-fine { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 10px; }

/* ════ RESPONSIVE — HOMEPAGE ════ */
@media (max-width: 1280px) {
  .states-grid { grid-template-columns: repeat(8,1fr); }
  .escapes-set { grid-template-columns: repeat(4,1fr); }
  .escapes-set .escape-card:nth-child(5) { display: none; }
  .types-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .states-grid { grid-template-columns: repeat(6,1fr); }
  .escapes-set { grid-template-columns: repeat(3,1fr); }
  .escapes-set .escape-card:nth-child(4), .escapes-set .escape-card:nth-child(5) { display: none; }
  .types-grid { grid-template-columns: repeat(3,1fr); }
  .promise-grid { grid-template-columns: 1fr; gap: 48px; }
  .rev-set { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  /* ── Hero ── */
  .hero { padding: 60px 20px 80px; min-height: auto; }
  .hero-h1 { line-height: 1.0; margin-bottom: 14px; }
  .hero-h1 .line1 { font-size: clamp(28px,7vw,40px); }
  .hero-h1 .line2 { font-size: clamp(50px,13vw,80px); }
  .hero-sub { font-size: clamp(15px,3.5vw,18px); line-height: 1.55; margin-bottom: 22px; }
  .hero-search { padding: 6px 6px 6px 16px; gap: 8px; }
  .hero-search input { font-size: 14px; padding: 12px 0; }
  .hero-search button { padding: 11px 20px; font-size: 13px; }
  .hero-trust-line { margin-top: 18px; gap: 12px; font-size: 12px; }
  .hero-dots { display: none; }

  /* ── Sections padding ── */
  .escapes, .states, .types, .promise, .faq, .reviews, .search-cta, .newsletter { padding-left: 20px; padding-right: 20px; }
  .escapes-header, .escapes-controls { padding-left: 20px; padding-right: 20px; }

  /* ── Escapes: 2×2 grid, 5 sets handled in JS ── */
  .escapes-set { grid-template-columns: repeat(2,1fr) !important; grid-template-rows: repeat(2,1fr) !important; }
  .escapes-set .escape-card { display: block !important; }
  .escapes-track { height: 460px !important; }
  .escape-card-name { font-size: clamp(14px,3.5vw,18px); }
  .escape-card-body { padding: 14px 12px; }

  /* ── States: 3 per row ── */
  .states-grid { grid-template-columns: repeat(3,1fr); }

  /* ── State filter: collapsible on mobile ── */
  .states-filter-wrap { display: none; margin: 0 0 16px; }
  .states-filter-wrap.mob-open { display: block; }
  .mob-filter-btn { display: flex !important; align-items: center; justify-content: space-between; width: 100%; padding: 11px 18px; margin: 16px 0 8px; background: #fff; border: 1.5px solid var(--sand); border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--ink); cursor: pointer; letter-spacing: .5px; }

  /* ── Reviews: 1 per slide on mobile (handled in JS) ── */
  .reviews-header { padding: 0 20px 24px; }
  .rev-track { padding: 24px 20px 0; }
  .rev-set { left: 20px; right: 20px; grid-template-columns: 1fr; }

  /* ── CTA search bar fix ── */
  .cta-bar { flex-direction: column; border-radius: 20px; padding: 14px; gap: 10px; }
  .cta-bar svg { display: none; }
  .cta-bar input { padding: 8px 4px; width: 100%; }
  .cta-bar button { width: 100%; border-radius: 12px; padding: 14px; text-align: center; justify-content: center; display: flex; }

  /* ── Map section header: hide on mobile ── */
  .map-sec-header { display: none !important; }

  /* ── Other ── */
  .types-grid { grid-template-columns: repeat(2,1fr); }
  .pbox { grid-template-columns: auto auto; gap: 14px; }
  .pbox-num { font-size: 36px; min-width: auto; }
  .trust-bar { padding: 20px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tb-num { font-size: 18px; }
  .reviews-rating { flex-wrap: wrap; justify-content: center; }
}

/* ── Mobile filter toggle button: hidden on desktop ── */
.mob-filter-btn { display: none; }
