/* ═══════════════════════════════════════════════════
   EXOTIC DESTINATION — Global Design System
   Version 1.0 | Launch Build
═══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --cream:         #FDF8F0;
  --warm-white:    #FFFCF7;
  --parchment:     #F5EDD9;
  --ivory-deep:    #EDE6D9;

  --saffron:       #E8650A;
  --saffron-light: #F5935A;
  --saffron-pale:  #FEF0E6;
  --turmeric:      #D4920A;
  --marigold:      #F0A500;
  --vermillion:    #C1272D;
  --peacock:       #0B7B6E;
  --peacock-light: #14A896;
  --peacock-pale:  #E0F5F3;
  --rose:          #C8436A;
  --indigo:        #2D3A8C;

  --ink:           #1A1008;
  --ink-mid:       #3D2B18;
  --ink-light:     #6B5840;
  --mist:          #8B7B6A;
  --white:         #FFFCF7;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--saffron); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(232,101,10,.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.cursor.hov { width: 18px; height: 18px; background: var(--peacock); }
.cursor-ring.hov { width: 56px; height: 56px; border-color: rgba(11,123,110,.2); }

/* ── NAVIGATION ──────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2.5rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, box-shadow .5s;
  gap: 1rem;
}
.site-nav.scrolled {
  background: rgba(253,248,240,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(232,101,10,.1);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  left: auto; transform: none;
}
.nav-logo .accent { color: var(--saffron); }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: nowrap; flex: 1; justify-content: flex-end;
}
.nav-links a {
  font-family: var(--font-body); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-light); font-weight: 300;
  transition: color .3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--saffron); }
.nav-cta-btn {
  font-family: var(--font-body); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white) !important; background: var(--saffron);
  padding: 9px 18px; font-weight: 400;
  transition: background .3s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--turmeric) !important; color: var(--white) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  z-index: 110; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink); transition: all .3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links a:not(.nav-cta-btn) { display: none; }
  .nav-hamburger { display: flex !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .site-nav { padding: 0 1.25rem; height: 62px; }
  .nav-logo { font-size: 1rem; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: .9rem; letter-spacing: .06em; }
}

/* ── COLOUR BAND ─────────────────────────────────── */
.colour-band {
  height: 5px;
  background: linear-gradient(90deg,
    var(--saffron) 0%,var(--saffron) 16.6%,
    var(--marigold) 16.6%,var(--marigold) 33.3%,
    var(--peacock) 33.3%,var(--peacock) 50%,
    var(--vermillion) 50%,var(--vermillion) 66.6%,
    var(--rose) 66.6%,var(--rose) 83.3%,
    var(--indigo) 83.3%,var(--indigo) 100%
  );
}

/* ── TYPOGRAPHY UTILITIES ────────────────────────── */
.eyebrow {
  font-family: var(--font-body); font-size: .65rem;
  letter-spacing: .3em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:'';width:28px;height:2px;background:currentColor;flex-shrink:0; }
.eyebrow.saffron { color: var(--saffron); }
.eyebrow.peacock { color: var(--peacock); }
.eyebrow.turmeric { color: var(--turmeric); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after { content:'';width:28px;height:2px;background:currentColor;flex-shrink:0; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink); letter-spacing: -.01em;
}
.display-title em { font-style: italic; color: var(--saffron); }
.display-title .em-peacock { font-style: italic; color: var(--peacock); }

.body-text {
  font-family: var(--font-body); font-size: .92rem;
  line-height: 2.1; color: var(--ink-light);
  font-weight: 300; letter-spacing: .02em;
}
.body-text strong { color: var(--ink); font-weight: 400; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-saffron {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); background: var(--saffron);
  padding: 15px 30px; font-weight: 400;
  transition: background .35s, gap .3s;
  position: relative; overflow: hidden;
}
.btn-saffron::before {
  content:'';position:absolute;inset:0;
  background:var(--turmeric);transform:scaleX(0);
  transform-origin:left;transition:transform .4s var(--ease);z-index:0;
}
.btn-saffron:hover::before { transform: scaleX(1); }
.btn-saffron:hover { gap: 20px; }
.btn-saffron span { position: relative; z-index: 1; }

.btn-peacock {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white); background: var(--peacock);
  padding: 15px 30px; font-weight: 400;
  transition: background .35s, gap .3s;
}
.btn-peacock:hover { background: var(--peacock-light); gap: 20px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); border: 1px solid rgba(26,16,8,.2);
  padding: 13px 24px; font-weight: 300;
  transition: border-color .3s, color .3s, gap .3s;
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); gap: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--peacock); font-weight: 300;
  background: none; border: none;
  border-bottom: 1px solid rgba(11,123,110,.3);
  padding-bottom: 2px; transition: color .3s, gap .3s;
}
.btn-ghost:hover { color: var(--peacock-light); gap: 16px; }

.btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron); background: var(--warm-white);
  padding: 15px 30px; font-weight: 500;
  transition: gap .3s, background .3s;
}
.btn-white:hover { gap: 20px; background: var(--parchment); }

/* ── SECTION SPACING ─────────────────────────────── */
.section { padding: 9rem 4rem; }
.section-narrow { max-width: 1300px; margin: 0 auto; }
.section-sm { padding: 6rem 4rem; }

/* ── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.on { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }
.rd4 { transition-delay: .4s; }

/* ── MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  background: var(--ink); padding: 13px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex; animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 0 2.5rem; flex-shrink: 0;
  font-family: var(--font-body); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 300;
}
.marquee-dot { width: 4px; height: 4px; background: var(--marigold); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── CARDS ───────────────────────────────────────── */
.card-hover {
  transition: transform .4s var(--ease), box-shadow .4s;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--ink); padding: 6rem 4rem 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem; max-width: 1300px; margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
.f-logo {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 300; color: var(--warm-white);
  letter-spacing: .1em; text-transform: uppercase;
}
.f-logo .accent { color: var(--saffron); }
.f-tagline {
  font-family: var(--font-body); font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--marigold); margin: .3rem 0 1.2rem; font-weight: 400;
}
.f-desc {
  font-family: var(--font-body); font-size: .82rem;
  line-height: 1.9; color: rgba(255,255,255,.60);
  font-weight: 300; max-width: 260px; margin-bottom: 1.5rem;
}
.f-contact a {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .82rem;
  color: rgba(255,255,255,.70); font-weight: 300;
  margin-bottom: 8px; transition: color .3s;
}
.f-contact a:hover { color: var(--marigold); }
.f-col-title {
  font-family: var(--font-body); font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.25rem; font-weight: 500;
}
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col ul a {
  font-family: var(--font-body); font-size: .82rem;
  color: rgba(255,255,255,.60); font-weight: 300; transition: color .3s;
}
.f-col ul a:hover { color: var(--marigold); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.f-copy { font-family: var(--font-body); font-size: .68rem; color: rgba(255,255,255,.45); font-weight: 300; }
.f-legal { display: flex; gap: 2rem; }
.f-legal a { font-family: var(--font-body); font-size: .68rem; color: rgba(255,255,255,.45); font-weight: 300; transition: color .3s; }
.f-legal a:hover { color: rgba(255,255,255,.8); }
.f-govt {
  font-family: var(--font-body); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 300;
  display: flex; align-items: center; gap: 8px;
  margin-top: 1rem;
}
.f-govt::before { content:''; width:16px;height:1px;background:var(--marigold);opacity:.7; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 6rem 2rem; }
  .section-sm { padding: 4rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
