
/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201,168,76,.15);
  --pink:        #e84393;
  --pink-light:  #ff6db0;
  --pink-dim:    rgba(232,67,147,.12);
  --bg:          #080808;
  --bg2:         #0d0d0d;
  --bg3:         #121212;
  --bg4:         #181818;
  --card:        #111111;
  --text:        #f0ede6;
  --muted:       #888;
  --border:      rgba(255,255,255,.07);
  --border2:     rgba(201,168,76,.2);
  --r-sm:        8px;
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --font-h:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Outfit', sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --nav-h:       70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; font-family: var(--font-b); border: none; outline: none; background: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════ */
.container { width: 100%; max-width: 1380px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.gold-text { color: var(--gold); }
.pink-text { color: var(--pink); }
.italic { font-style: italic; }

/* ── pill tag ── */
.pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border2);
  background: var(--gold-dim); border-radius: 40px;
  padding: 5px 14px;
}
.pill-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── section headings ── */
.sec-eyebrow { margin-bottom: 10px; }
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ── divider ── */
.divider { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin: 14px 0; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: 13.5px;
  padding: 12px 24px; border-radius: var(--r-sm);
  transition: transform .2s var(--ease), opacity .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); opacity: .9; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a87d2a);
  color: #000;
  box-shadow: 0 4px 20px rgba(201,168,76,.25);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink-light), var(--pink), #b52870);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,67,147,.25);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
}
.btn-ghost:hover { border-color: var(--border2); }

/* ── view-all link ── */
.view-all {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--pink);
  transition: gap .2s;
}
.view-all:hover { gap: 11px; }
.view-all i { font-size: 11px; }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,.08));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--gold);
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .the { font-family: var(--font-h); font-style: italic; font-size: 11px; color: var(--gold); display: block; letter-spacing: 1px; }
.logo-text .name { font-family: var(--font-h); font-weight: 700; font-size: 17px; letter-spacing: 1.5px; display: block; color: var(--text); }
.logo-text .tag { font-size: 8.5px; color: var(--muted); letter-spacing: 2px; display: block; margin-top: 1px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 13px;
  font-size: 13.5px; font-weight: 400;
  color: var(--muted); border-radius: 7px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.main-nav a.active { color: var(--text); }
.main-nav a.active::after {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--gold); border-radius: 1px; margin: 0 auto; margin-top: -2px;
}

/* Header right */
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.heart-btn {
  display: flex; align-items: center; gap: 7px;
  color: var(--muted); font-size: 13.5px;
  transition: color .2s;
  position: relative;
}
.heart-btn:hover { color: var(--pink); }
.heart-btn i { font-size: 16px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  border-radius: 8px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 8px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h); z-index: 190;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px clamp(16px, 5vw, 40px);
  overflow-y: auto;
  animation: fadeSlideDown .3s var(--ease);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-h);
  font-size: 24px; font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }
.mobile-nav a i { font-size: 14px; color: var(--muted); }
.mobile-nav-bottom {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-bottom .btn { width: 100%; justify-content: center; }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 420px;
  overflow: hidden;
}

/* BG grain texture */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  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='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .5;
}

/* ── Hero Left ── */
.hero-left {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 32px;
}

/* background image with overlay */
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.88) 55%, rgba(8,8,8,.5) 100%);
}

.hero-heading {
  font-family: var(--font-h);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  max-width: 620px;
}
.hero-heading .hl-venues { color: var(--gold); font-style: italic; }
.hero-heading .hl-cafes  { color: var(--pink); font-style: italic; }
.hero-heading .hl-sub {
  display: block; margin-top: 6px;
  font-size: .42em; font-weight: 400; font-style: normal;
  color: var(--muted); letter-spacing: .02em;
}

.hero-desc {
  font-size: 14.5px; color: var(--muted);
  max-width: 440px; line-height: 1.75;
}

/* hero action row */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── Search box ── */
.search-box {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  backdrop-filter: blur(12px);
  max-width: 680px;
}
.sf { /* search field */
  flex: 1 1 120px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background .2s;
  cursor: pointer;
  min-width: 0;
  position: relative;
}
.sf + .sf::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.sf:focus-within { background: rgba(255,255,255,.06); }
.sf i { color: var(--muted); font-size: 13px; flex-shrink: 0; }
.sf-inner { min-width: 0; }
.sf-inner label { display: block; font-size: 9.5px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.sf-inner select, .sf-inner input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font-b); font-size: 12.5px;
  width: 100%; cursor: pointer;
}
.sf-inner select option { background: var(--bg3); color: var(--text); }
.sf-inner input::placeholder { color: rgba(255,255,255,.3); }
.search-submit {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--pink), #c41070);
  color: #fff; font-weight: 600; font-size: 13px;
  padding: 12px 22px; border-radius: 12px;
  display: flex; align-items: center; gap: 8px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  align-self: stretch;
}
.search-submit:hover { opacity: .9; transform: scale(1.02); box-shadow: 0 6px 24px rgba(232,67,147,.4); }

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.trust-item i { color: var(--gold); font-size: 13px; }

/* ── Hero Right (gallery stack) ── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 0; overflow: hidden;
}
.hero-img-a,
.hero-img-b { flex: 1; overflow: hidden; position: relative; }
.hero-img-a img, .hero-img-b img {
  width: 100%; height: 100%;
  transition: transform 7s ease;
}
.hero-img-a:hover img, .hero-img-b:hover img { transform: scale(1.06); }

/* divider glow between images */
.hero-img-a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Floating offer card */
.offer-card {
  position: absolute; z-index: 10;
  left: -2px; top: 50%; transform: translateY(-50%);
  background: linear-gradient(155deg, #1c1204, #0a0a0a);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  width: 196px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.05);
}
.offer-card .oc-crown { color: var(--gold); font-size: 24px; margin-bottom: 10px; }
.offer-card .oc-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.offer-card .oc-pct {
  font-family: var(--font-h); font-size: 28px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.offer-card .oc-pct-sub { font-size: 12px; font-weight: 600; color: var(--gold); }
.offer-card .oc-desc { font-size: 11.5px; color: var(--muted); margin: 4px 0 16px; }
.offer-card .oc-btn {
  display: block; text-align: center; width: 100%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: #fff; font-weight: 600; font-size: 12.5px;
  padding: 10px; border-radius: 9px;
  transition: opacity .2s;
}
.offer-card .oc-btn:hover { opacity: .88; }

/* Stats row inside hero */
.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 4px;
}
.stat-item { }
.stat-num { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════ */
.section { padding: clamp(40px, 6vw, 80px) 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-alt { background: var(--bg2); }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 32px; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   OCCASIONS GRID
═══════════════════════════════════════════════════════ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.occ-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4.2; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.occ-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.occ-card img { height: 100%; transition: transform .55s var(--ease); }
.occ-card:hover img { transform: scale(1.08); }
.occ-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.occ-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 16px; z-index: 2;
}
.occ-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 9px;
  box-shadow: 0 4px 16px rgba(232,67,147,.5);
}
.occ-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.occ-sub  { font-size: 10.5px; color: var(--pink-light); }

/* ═══════════════════════════════════════════════════════
   VENUES GRID
═══════════════════════════════════════════════════════ */
.venues-wrap { position: relative; }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vc { /* venue card */
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.vc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,.55);
  border-color: rgba(201,168,76,.2);
}

.vc-img {
  position: relative; aspect-ratio: 16/11; overflow: hidden; flex-shrink: 0;
}
.vc-img img { height: 100%; transition: transform .55s var(--ease); }
.vc:hover .vc-img img { transform: scale(1.07); }

.vc-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-size: 10.5px; font-weight: 600; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 20px;
}
.vc-badge.featured { background: var(--gold-dim); border-color: var(--border2); color: var(--gold); }

.vc-fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px;
  transition: color .2s, background .2s, transform .2s;
}
.vc-fav:hover { color: var(--pink); background: rgba(0,0,0,.9); transform: scale(1.15); }
.vc-fav.liked { color: var(--pink); }

.vc-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vc-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.vc-loc {
  font-size: 11.5px; color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}
.vc-loc i { color: var(--pink); font-size: 10px; }

.vc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.vc-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #f5c518; }
.vc-rating span { color: var(--muted); font-weight: 400; font-size: 11px; }
.vc-price { font-size: 13.5px; font-weight: 700; color: var(--text); }
.vc-price small { font-size: 10.5px; color: var(--muted); font-weight: 400; }

.vc-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.vc-cta {
  display: block; width: 100%; text-align: center;
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.vc-cta:hover {
  background: var(--gold-dim); border-color: var(--border2); color: var(--gold);
}

/* scroll arrows */
.scroll-btns { display: flex; gap: 8px; }
.s-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 13px;
  transition: background .2s, border-color .2s;
}
.s-arrow:hover { background: var(--bg4); border-color: var(--border2); }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS  — horizontal strip
═══════════════════════════════════════════════════════ */
.hiw {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.hiw-step {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 28px);
  display: flex; align-items: center; gap: 16px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.hiw-step:last-child { border-right: none; }
.hiw-step:hover { background: rgba(255,255,255,.02); }

.hiw-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--pink-dim);
  border: 1px solid rgba(232,67,147,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--pink);
  transition: transform .2s;
}
.hiw-step:hover .hiw-icon { transform: scale(1.1); }

.hiw-num {
  font-family: var(--font-h);
  font-size: 11px; font-style: italic;
  color: var(--gold); margin-bottom: 3px;
}
.hiw-title { font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.hiw-sub   { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════
   FEATURED BADGE STRIP (marquee)
═══════════════════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
  font-size: 12.5px; color: var(--muted); white-space: nowrap;
}
.marquee-item i { color: var(--gold); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 300;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff; font-weight: 600; font-size: 13.5px;
  padding: 13px 20px; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  animation: waBounce 4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,.55); animation: none; }
.wa-float i { font-size: 22px; }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* ─── 1280px ─── */
@media (max-width: 1280px) {
  .hero { grid-template-columns: 1fr 360px; }
  .venues-grid { grid-template-columns: repeat(3, 1fr); }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .hiw-inner { grid-template-columns: repeat(3, 1fr); }
  .hiw-step:nth-child(3) { border-right: none; }
}

/* ─── 1024px ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: clamp(32px,5vw,60px) clamp(20px,5vw,48px); min-height: 85svh; justify-content: center; }
  .hero-right { display: none; }
  .offer-card { display: none; }

  .search-box { max-width: 100%; }

  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }

  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ─── 768px ─── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .hero-left { padding: 32px 20px; min-height: 92svh; }
  .hero-heading { font-size: clamp(32px, 8vw, 48px); }

  .search-box {
    flex-direction: column;
    border-radius: var(--r);
    padding: 8px;
    gap: 4px;
  }
  .sf { flex: none; width: 100%; border-radius: 10px; }
  .sf + .sf::before { display: none; }
  .search-submit { width: 100%; justify-content: center; border-radius: 10px; padding: 14px; }

  .trust-strip { gap: 12px; }
  .trust-item { font-size: 11.5px; }

  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .occ-card { aspect-ratio: 1/1.3; }

  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hiw-inner { grid-template-columns: repeat(2, 1fr); }
  .hiw-step:nth-child(2) { border-right: none; }
  .hiw-step:nth-child(3) { border-right: 1px solid var(--border); }
  .hiw-step:nth-child(4) { border-right: none; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 18px; }
}

/* ─── 480px ─── */
@media (max-width: 480px) {
  .hero-heading { font-size: clamp(28px, 9vw, 38px); }
  .hero-desc { font-size: 13.5px; }

  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .venues-grid { grid-template-columns: 1fr; gap: 12px; }
  .vc-img { aspect-ratio: 16/10; }

  .hiw-inner { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); }
  .hiw-step:last-child { border-bottom: none; }

  .wa-float .wa-text { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }

  .sec-title { font-size: 24px; }

  .logo-text .tag { display: none; }

  .offer-card { display: none; }
}

/* ─── 360px ─── */
@media (max-width: 360px) {
  :root { --nav-h: 56px; }
  .logo-icon { width: 34px; height: 34px; font-size: 14px; }
  .logo-text .name { font-size: 14px; }
  .btn { font-size: 12.5px; padding: 10px 18px; }
}
