/* ============================================================
   BeachClubDXB — Golden Design System
   Warm gold/sand on cream. Cormorant Garamond + DM Sans + JetBrains Mono
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:        #FFFAF5;
  --white:     #FFF;
  --sand:      #FFF0E0;
  --warm:      #FFF8F0;
  --ink:       #0A1628;
  --t1:        #334155;
  --t2:        #64748B;
  --t3:        #94A3B8;
  --main:      #B8860B;
  --main-h:    #D4A843;
  --main-soft: rgba(184,134,11,.06);
  --gold:      #D4A843;
  --gold-soft: rgba(212,168,67,.08);
  --coral:     #F97066;
  --bd:        #E2E8F0;
  --bdh:       #B8860B;
  --r:         16px;
  --shadow:    0 1px 3px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', sans-serif;
  --mono:      'JetBrains Mono', monospace;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.c { max-width: 1260px; margin: 0 auto; padding: 0 28px; }

/* ── LINKS ─────────────────────────────────────────────────── */
a { color: var(--main); text-decoration: none; transition: .2s; }
a:hover { color: var(--main-h); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--r);
  font-size: .9375rem;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.btn-o  { background: var(--main); color: #fff; }
.btn-o:hover  { background: var(--main-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,.3); }
.btn-g  { background: var(--gold); color: var(--ink); }
.btn-g:hover  { background: #C49A3A; transform: translateY(-2px); }
.btn-w  { background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); }
.btn-w:hover  { background: rgba(255,255,255,.25); }
.btn-out { background: var(--white); color: var(--ink); border: 1.5px solid var(--bd); }
.btn-out:hover { border-color: var(--main); color: var(--main); }
.btn-sm  { padding: 11px 24px; font-size: .8125rem; border-radius: 12px; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all .35s;
}
.nav.solid {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  padding: 8px 0;
}
.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
/* Brand name */
.nb {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .3s;
}
.nb span { color: var(--gold); }
.nav.solid .nb { color: var(--ink); }
/* Nav links */
.nls { display: flex; gap: 2px; }
.nl {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 16px;
  border-radius: 10px;
  transition: .2s;
}
.nl:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav.solid .nl { color: var(--t2); }
.nav.solid .nl:hover { color: var(--ink); background: var(--sand); }
/* Nav right */
.nr { display: flex; gap: 8px; }
.nav.solid .btn-w {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--bd);
  backdrop-filter: none;
}
.nav.solid .btn-w:hover { border-color: var(--main); color: var(--main); }

/* ── HAMBURGER BUTTON ──────────────────────────────────────── */
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav.solid .ham span { background: var(--ink); }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ────────────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav .mob-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  letter-spacing: -.01em;
  transition: color .2s;
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
  text-align: center;
}
.mob-nav .mob-link:hover { color: var(--gold); }
.mob-nav .mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin-top: 24px;
}
.mob-nav .mob-ctas .btn { width: 100%; justify-content: center; padding: 14px 24px; }

@media (max-width: 768px) {
  .ham { display: flex; }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.5) 0%, rgba(10,22,40,.3) 40%, rgba(10,22,40,.6) 100%);
  z-index: 1;
}
.hero-c {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 6px 20px 6px 10px;
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── SEARCH BAR (glassmorphism) ─────────────────────────────── */
.search {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  gap: 0;
  max-width: 720px;
  margin: 0 auto 28px;
}
.sf { flex: 1; padding: 14px 20px; }
.sf-l {
  font-size: .5625rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.sf-i {
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 1rem;
  color: #fff;
  background: transparent;
  width: 100%;
  font-weight: 500;
}
.sf-i::placeholder { color: rgba(255,255,255,.3); }
.sf-d { width: 1px; background: rgba(255,255,255,.1); margin: 10px 0; }
.sf-b {
  background: var(--main);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 0 32px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap;
}
.sf-b:hover { background: var(--main-h); box-shadow: 0 4px 20px rgba(184,134,11,.4); }

/* ── PILLS ─────────────────────────────────────────────────── */
.pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pill {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: .2s;
}
.pill:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust { background: var(--white); border-bottom: 1px solid var(--bd); padding: 20px 0; }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: .875rem;
  color: var(--t2);
  font-weight: 500;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }

/* ── SECTIONS ──────────────────────────────────────────────── */
.sec       { padding: 80px 0; }
.sec-sand  { background: var(--sand); }
.sec-warm  { background: var(--warm); }
.sec-dark  { background: var(--ink); color: #fff; }

/* Section typography */
.ey {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--main);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.st {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.ss { color: var(--t2); max-width: 520px; font-size: 1rem; line-height: 1.6; }
.sh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

/* ── VENUE CARDS ───────────────────────────────────────────── */
.v-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.vc {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
  display: block;
  text-decoration: none;
  color: var(--t1);
}
.vc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vc-img { height: 220px; position: relative; overflow: hidden; }
.vc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.vc:hover .vc-img img { transform: scale(1.06); }
.vc-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 10px;
}
.vc-fav {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s;
  backdrop-filter: blur(4px);
}
.vc-fav:hover { background: #fff; transform: scale(1.1); }
.vc-body { padding: 20px; }
.vc-loc {
  font-family: var(--mono);
  font-size: .5625rem;
  color: var(--main);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  display: block;
}
.vc-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.vc-desc { font-size: .8125rem; color: var(--t2); line-height: 1.5; margin-bottom: 12px; }
.vc-meta { display: flex; align-items: center; gap: 14px; font-size: .8125rem; color: var(--t3); }
.vc-rating { color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.vc-book { margin-left: auto; color: var(--main); font-weight: 700; font-size: .8125rem; }

/* ── CATEGORY CARDS ────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.cat {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  height: 200px;
  display: block;
  text-decoration: none;
  transition: transform .3s;
}
.cat:hover { transform: scale(1.02); }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat:hover img { transform: scale(1.08); }
.cat-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%); }
.cat-info { position: absolute; bottom: 0; padding: 18px; color: #fff; z-index: 1; }
.cat-n { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.cat-c { font-size: .6875rem; color: rgba(255,255,255,.65); margin-top: 2px; }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.how { text-align: center; }
.how-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--main-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.75rem;
}
.how-n { font-family: var(--mono); font-size: .625rem; color: var(--main); margin-bottom: 4px; }
.how-t { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.how-d { font-size: .875rem; color: var(--t2); line-height: 1.55; }

/* ── AREA CARDS ────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.area {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 160px;
  display: block;
  text-decoration: none;
  transition: transform .3s;
}
.area:hover { transform: scale(1.03); }
.area img { width: 100%; height: 100%; object-fit: cover; }
.area-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%); }
.area-info { position: absolute; bottom: 0; padding: 14px; color: #fff; z-index: 1; }
.area-n { font-size: .9375rem; font-weight: 700; }
.area-c { font-size: .625rem; color: rgba(255,255,255,.6); }

/* ── PARTNER CTA SECTION ───────────────────────────────────── */
.partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
}
.partner-img { position: relative; min-height: 400px; overflow: hidden; }
.partner-img img { width: 100%; height: 100%; object-fit: cover; }
.partner-body {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255,255,255,.7);
}
.partner-body h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.partner-body p { margin-bottom: 24px; font-size: 1rem; line-height: 1.65; }
.p-stats { display: flex; gap: 28px; margin-bottom: 28px; }
.ps-n { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.ps-l { font-size: .625rem; color: rgba(255,255,255,.35); text-transform: uppercase; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.test {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.test:hover { transform: translateY(-3px); }
.test-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.test-av { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.test-av img { width: 100%; height: 100%; object-fit: cover; }
.test-info { font-size: .875rem; font-weight: 700; color: var(--ink); }
.test-info span { display: block; font-size: .75rem; color: var(--t3); font-weight: 400; }
.test-stars { color: var(--gold); font-size: .875rem; margin-bottom: 10px; }
.test-text { font-size: .9375rem; color: var(--t1); line-height: 1.6; font-style: italic; }

/* ── BLOG CARDS ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  display: block;
  text-decoration: none;
  color: var(--t1);
}
.blog:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-img { height: 190px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-cat {
  font-family: var(--mono);
  font-size: .625rem;
  color: var(--main);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: block;
}
.blog-t { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 6px; }
.blog-d { font-size: .8125rem; color: var(--t2); line-height: 1.5; }

/* ── NEWSLETTER SECTION ────────────────────────────────────── */
.nl-sec {
  background: linear-gradient(135deg, var(--main) 0%, #D4A843 50%, #0EA5E9 100%);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.nl-sec::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.nl-sec::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: rgba(212,168,67,.08);
  border-radius: 50%;
}
.nl-sec h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.nl-sec p { color: rgba(255,255,255,.75); max-width: 460px; margin: 0 auto 24px; font-size: 1rem; position: relative; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; position: relative; }
.nl-i {
  flex: 1;
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(10px);
}
.nl-i::placeholder { color: rgba(255,255,255,.45); }
.nl-b {
  background: #fff;
  color: var(--main);
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.nl-b:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.4); padding: 72px 0 32px; }
.fg {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.fb { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.fb span { color: var(--gold); }
.fd { font-size: .8125rem; line-height: 1.65; }
.fh {
  font-family: var(--mono);
  font-size: .5625rem;
  font-weight: 600;
  color: rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.fcol a { display: block; font-size: .8125rem; color: rgba(255,255,255,.35); padding: 4px 0; transition: .15s; }
.fcol a:hover { color: var(--gold); }
.fbot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.rv.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v-grid       { grid-template-columns: repeat(2,1fr); }
  .cat-grid     { grid-template-columns: repeat(2,1fr); }
  .how-grid     { grid-template-columns: repeat(2,1fr); }
  .area-grid    { grid-template-columns: repeat(3,1fr); }
  .partner      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1      { font-size: 2.5rem; }
  .search       { flex-direction: column; }
  .sf-d         { width: 100%; height: 1px; margin: 0; }
  .sf-b         { padding: 16px; border-radius: 12px; }
  .v-grid, .test-grid, .blog-grid, .how-grid, .cat-grid { grid-template-columns: 1fr; }
  .area-grid    { grid-template-columns: repeat(2,1fr); }
  .fg           { grid-template-columns: 1fr 1fr; }
  .nls, .nr     { display: none; }
  .nl-form      { flex-direction: column; }
  .partner-img  { min-height: 250px; }
}
