*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0E0C;
  --surface: #1A1814;
  --surface2: #221F1A;
  --text: #F0EBE1;
  --muted: #8A8070;
  --gold: #C8A96A;
  --gold-dim: rgba(200,169,106,0.12);
  --border: rgba(200,169,106,0.2);
  --glow: rgba(200,169,106,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ─── HERO ─── */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 36px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(200,169,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Avatar */
.avatar-ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), rgba(200,169,106,0.3), var(--gold));
  margin-bottom: 18px;
  position: relative;
}
.avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.avatar-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 9vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 2px;
}
.hero-name em { font-style: italic; color: var(--gold); }

.hero-duo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 4vw, 24px);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.hero-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}
.hero-byline span { width: 28px; height: 1px; background: var(--border); }
.hero-byline p {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 20px;
}
.hero-bio strong { color: var(--text); font-weight: 400; }

/* Compact stats */
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
}
.stat { text-align: center; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-l {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.sdiv { width: 1px; height: 28px; background: var(--border); }

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  text-decoration: none;
  cursor: pointer;
}
.scroll-hint span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}
.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.4;
  animation: bounce-down 2s ease infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.8; }
}

/* ─── LINKS ─── */
.links {
  padding: 8px 24px 40px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200,169,106,0.08) 0%, transparent 60%);
  transition: opacity 0.3s;
  pointer-events: none;
}
.link-card:hover::before { opacity: 1; }
.link-card:hover {
  background: var(--surface2);
  border-color: rgba(200,169,106,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(200,169,106,0.1);
}

/* Featured / hot card */
.link-card.featured {
  background: linear-gradient(135deg, rgba(200,169,106,0.12) 0%, rgba(200,169,106,0.04) 100%);
  border-color: rgba(200,169,106,0.4);
  padding: 20px;
}
.link-card.featured .lc-title { color: var(--gold); font-size: 15px; }

.badge-hot {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.badge-hot::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bg);
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.badge-soon {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

.lc-left { display: flex; align-items: center; gap: 14px; }
.lc-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,169,106,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.lc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.lc-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}
.lc-arrow {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.link-card:hover .lc-arrow { opacity: 1; transform: translateX(3px); }

/* ─── SOCIAL PROOF ─── */
.social-proof {
  padding: 24px 24px 36px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.proof-sub {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 8px;
}

/* ─── DESTINATIONS ─── */
.destinations {
  padding: 20px 24px 48px;
  max-width: 480px;
  margin: 0 auto;
}
.sec-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

/* Horizontal scroll carousel on mobile */
.dest-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.dest-scroll::-webkit-scrollbar { display: none; }

.dest-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  text-decoration: none;
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  scroll-snap-align: start;
  transition: border-color 0.22s, transform 0.25s;
  cursor: pointer;
}
.dest-card:hover { border-color: rgba(200,169,106,0.5); transform: translateY(-3px); }
.dest-card.wide { width: 280px; height: 180px; }

.dest-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.4s;
}
.dest-card:hover .dest-bg { opacity: 0.75; transform: scale(1.05); }

.dest-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.92) 0%, rgba(15,14,12,0.3) 50%, transparent 100%);
}
.dest-content { position: relative; z-index: 1; }
.dest-flag { font-size: 16px; margin-bottom: 3px; display: block; }
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1px;
  line-height: 1.2;
}
.dest-tag {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
}

/* ─── COLLAB ─── */
.collab {
  margin: 0 24px 48px;
  max-width: 432px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, rgba(26,24,20,0.85), rgba(34,31,26,0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,106,0.15);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.collab::before {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle at 30% 30%, rgba(200,169,106,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.collab-icon { font-size: 24px; margin-bottom: 12px; position: relative; }
.collab-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}
.collab-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.ctags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.ctag {
  font-size: 10px;
  padding: 4px 11px;
  border: 1px solid rgba(200,169,106,0.18);
  border-radius: 100px;
  color: var(--gold);
  transition: background 0.2s;
}
.ctag:hover { background: var(--gold-dim); }
.collab-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #dbbf7a);
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.collab-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,106,0.25);
}

/* ─── FOOTER ─── */
footer {
  padding: 28px 24px 48px;
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-handle {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 18px;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; fill: var(--muted); }
.social-icon:hover svg { fill: var(--gold); }

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.back-to-top:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.a1 { opacity:0; animation: rise 0.7s ease 0.1s forwards; }
.a2 { opacity:0; animation: rise 0.7s ease 0.2s forwards; }
.a3 { opacity:0; animation: rise 0.7s ease 0.3s forwards; }
.a4 { opacity:0; animation: rise 0.7s ease 0.4s forwards; }
.a5 { opacity:0; animation: rise 0.7s ease 0.5s forwards; }
.a6 { opacity:0; animation: rise 0.7s ease 0.6s forwards; }
.a7 { opacity:0; animation: rise 0.7s ease 0.7s forwards; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .dest-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }
  .dest-card { width: auto; height: 170px; }
  .dest-card.wide { width: auto; grid-column: span 2; height: 190px; }
}
