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

:root {
  --bg: #f5f0e8;
  --bg-2: #ece7de;
  --text: #1a1410;
  --text-2: #6b5d50;
  --accent: #8b4a2a;
  --accent-l: #c47a52;
  --line: #d8cfc4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 68px;
  max-width: 1360px; margin: 0 auto;
}
.brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-decoration: none; color: var(--text); letter-spacing: -.02em; }
.brand em { color: var(--accent); font-style: italic; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 32px; }
.nav-left a, .nav-right a:not(.nav-btn) { text-decoration: none; color: var(--text-2); font-size: 14px; transition: .2s; }
.nav-left a:hover, .nav-right a:not(.nav-btn):hover { color: var(--text); }
.nav-btn { background: var(--accent); color: #fff; text-decoration: none; padding: 10px 22px; font-size: 13px; font-weight: 600; letter-spacing: .02em; transition: .2s; }
.nav-btn:hover { background: var(--text); }

/* ── Hero — Jeton-style full bleed ── */
.hero {
  position: relative;
  height: calc(100vh - 68px);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=1800&h=1100&fit=crop') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,12,6,.82) 38%, rgba(8,12,6,.35) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: flex-end;
  gap: 80px;
  padding: 0 56px 140px;
  max-width: 1360px;
  width: 100%;
  align-self: center;
}
.hero-heading { }
.eyebrow { font-size: 11px; font-weight: 600; color: var(--accent-l); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.hero-heading h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 118px);
  line-height: .88;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-aside { padding-bottom: 8px; }
.hero-aside p { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 32px; max-width: 340px; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.btn { display: inline-flex; align-items: center; padding: 13px 26px; font-size: 14px; font-weight: 500; text-decoration: none; transition: .2s; font-family: var(--font-body); }
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--bg-2); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--accent); }

/* ── Ticker ── */
.ticker { background: var(--text); padding: 14px 0; overflow: hidden; }
.ticker-inner {
  display: flex; gap: 40px; white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ticker-inner span { flex-shrink: 0; }
.ticker-inner .sep { color: var(--accent-l); opacity: .6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Common ── */
.label { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; display: block; }

/* ── Destinations ── */
.destinations { max-width: 1360px; margin: 0 auto; padding: 96px 56px; }
.dest-header { margin-bottom: 52px; }
.dest-header h2 { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; margin-top: 10px; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  align-items: start;
}
.dest-card { position: relative; overflow: hidden; cursor: pointer; }
.dest-card img { width: 100%; height: 480px; object-fit: cover; display: block; transition: .6s ease; filter: brightness(.88); }
.dest-tall img { height: 620px; }
.dest-card:hover img { transform: scale(1.04); filter: brightness(1); }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff;
}
.dest-info h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.dest-info p { font-size: 13px; opacity: .75; margin-bottom: 8px; font-family: var(--font-body); }
.dest-price { font-size: 13px; font-weight: 600; color: var(--accent-l); font-family: var(--font-body); }

/* ── Experiences ── */
.experiences { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.exp-image { overflow: hidden; min-height: 580px; }
.exp-image img { width: 100%; height: 100%; object-fit: cover; }
.exp-text {
  padding: 88px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-2);
}
.exp-text h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 46px); font-weight: 700; margin: 12px 0 22px; line-height: 1.05; }
.exp-text > p { color: var(--text-2); font-size: 15px; line-height: 1.8; margin-bottom: 32px; }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.exp-list li { font-size: 15px; color: var(--text-2); padding-left: 22px; position: relative; }
.exp-list li::before { content: '→'; color: var(--accent); position: absolute; left: 0; font-weight: 600; }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--accent); }
.stat { padding: 52px 40px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--font-display); font-size: 52px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 10px; }
.stat span { font-size: 13px; color: rgba(255,255,255,.72); }

/* ── Booking ── */
.booking { background: var(--bg); border-top: 1px solid var(--line); padding: 88px 56px; }
.booking-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.booking-inner h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 46px); font-weight: 700; margin: 12px 0 8px; }
.booking-inner p { color: var(--text-2); font-size: 15px; }

/* ── Footer ── */
.footer { padding: 24px 56px; border-top: 1px solid var(--line); text-align: center; font-size: 13px; color: var(--text-2); }
.footer a { color: var(--text-2); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-inner { padding: 0 24px; }
  .nav-left { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 0 28px 56px; }
  .hero-aside p { max-width: 100%; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .destinations { padding: 64px 24px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card img, .dest-tall img { height: 340px; }
  .experiences { grid-template-columns: 1fr; }
  .exp-image { min-height: 300px; }
  .exp-text { padding: 52px 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat:nth-child(3), .stat:last-child { border-bottom: none; }
  .booking { padding: 64px 24px; }
  .booking-inner { flex-direction: column; align-items: flex-start; }
  .footer { padding: 20px 24px; }
}
