/* ==========================================================
   we.gotrip — Coming Soon
   Palette taken from the Aug 2026 catalogue
   ========================================================== */
:root {
  --green-900: #0f2320;
  --green-800: #16302c;
  --green-700: #1f3d38;
  --gold: #c9a063;
  --gold-light: #e2c28f;
  --cream: #f1ebe3;
  --cream-dark: #e6ddd1;
  --ink: #1b2624;
  --white: #fffaf3;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Poppins", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .8, .24, 1);
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.slides, .slide, .hero-shade, #sand { position: absolute; inset: 0; }
.slides { z-index: -3; background: var(--green-900); }
.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 2s ease;
}
.slide.active {
  opacity: 1;
  animation: kenburns 9s linear forwards;
}
@keyframes kenburns {
  from { transform: scale(1.15) translate3d(0, 0, 0); }
  to   { transform: scale(1.02) translate3d(-1.5%, -1%, 0); }
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(15, 35, 32, .35) 0%, rgba(15, 35, 32, .75) 70%),
    linear-gradient(180deg, rgba(15, 35, 32, .55) 0%, rgba(15, 35, 32, .2) 40%, rgba(15, 35, 32, .9) 100%);
}
#sand { z-index: -1; pointer-events: none; }

/* top bar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(16px, 5vw, 56px);
  opacity: 0;
  animation: fadeDown 1s var(--ease) 2.8s forwards;
}
.topbar-logo { height: 44px; width: auto; }
.topbar-link {
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.topbar-link:hover { border-color: var(--gold-light); }

/* centre content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px 110px;
}

.hero-logo {
  width: clamp(90px, 14vw, 140px);
  margin-bottom: 18px;
  clip-path: inset(0 100% 0 0);
  animation: brush 1.4s var(--ease) .2s forwards, float 6s ease-in-out 2s infinite;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
}
@keyframes brush { to { clip-path: inset(0 0 0 0); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--gold); }

.title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-sm {
  font-size: clamp(1.3rem, 3.4vw, 2.3rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.title-sm.spaced { letter-spacing: .35em; margin-top: 6px; }
.title-lg {
  font-size: clamp(4.8rem, 17vw, 11rem);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gold);
  display: flex;
  margin: 4px 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}
.title-lg .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(8deg);
  filter: blur(8px);
  animation: charIn 1s var(--ease) forwards;
  background: linear-gradient(100deg, var(--gold) 35%, #f5deb3 50%, var(--gold) 65%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-lg.shine .ch { animation: charIn 1s var(--ease) forwards, shine 5s linear 1.5s infinite; }
@keyframes charIn {
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes shine {
  from { background-position: 150% 0; }
  to   { background-position: -100% 0; }
}

.soon {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 26px;
}
.soon .line {
  width: clamp(34px, 8vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.soon .line:last-child { transform: scaleX(-1); }
.soon-text {
  font-size: clamp(.8rem, 1.6vw, .95rem);
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  padding-left: .5em;
  animation: pulse 3s ease-in-out 3s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}

/* countdown */
.countdown {
  display: flex;
  gap: clamp(8px, 2vw, 18px);
  margin-bottom: 34px;
}
.cd {
  width: clamp(66px, 16vw, 96px);
  padding: 14px 0 10px;
  border: 1px solid rgba(226, 194, 143, .35);
  border-radius: 14px;
  background: rgba(15, 35, 32, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cd span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.cd span.tick { animation: tick .5s var(--ease); }
@keyframes tick {
  from { transform: translateY(-30%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cd small {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* buttons */
.cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: 0 10px 30px rgba(201, 160, 99, .35);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 14px 34px rgba(201, 160, 99, .5); }
.btn-ghost { border: 1px solid rgba(255, 250, 243, .55); }
.btn-ghost:hover { background: var(--white); color: var(--green-900); }

/* scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 26px;
  height: 42px;
  margin-left: -13px;
  border: 1.5px solid rgba(255, 250, 243, .6);
  border-radius: 20px;
  opacity: 0;
  animation: fadeIn 1s ease 3.2s forwards;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* intro reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s var(--ease) var(--d, 0s) forwards;
}
@keyframes fadeUp   { to { opacity: 1; transform: none; } }
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

/* scroll reveals */
.on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s);
}
.on-scroll.visible { opacity: 1; transform: none; }

/* ---------- ABOUT ---------- */
.about { padding: clamp(70px, 10vw, 130px) clamp(16px, 5vw, 56px); }
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.about-card {
  position: relative;
  background: var(--green-800);
  color: var(--cream);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 4px;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: url("assets/logo-light.png") center / contain no-repeat;
  opacity: .07;
}
.about-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 18px;
}
.about-card p { font-size: .92rem; line-height: 1.85; font-weight: 300; }

.kicker { font-weight: 600; font-size: 1rem; margin-bottom: 26px; }
.about-text h3 {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.features li {
  position: relative;
  padding-left: 26px;
  font-size: .9rem;
  line-height: 1.5;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 160, 99, .2);
}

/* ---------- TRIPS MARQUEE ---------- */
.trips { padding: 0 0 clamp(70px, 10vw, 120px); }
.trips-head { text-align: center; padding: 0 16px 44px; }
.trips-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trips-head em { font-style: normal; color: var(--gold); font-weight: 500; }

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 10px)); } }

.trip {
  position: relative;
  width: clamp(200px, 24vw, 270px);
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--green-700);
  flex-shrink: 0;
}
.trip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.trip:hover img { transform: scale(1.08); }
.trip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 35, 32, .9));
}
.trip figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
}
.trip small {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

/* ---------- CLOSING ---------- */
.closing {
  text-align: center;
  padding: 10px 16px clamp(60px, 8vw, 90px);
}
.closing-logo { width: 120px; margin: 0 auto 16px; }
.closing p {
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-900);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 4vw, 48px);
  padding: 26px 16px 22px;
  font-size: .82rem;
}
.footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
  transition: color .3s, opacity .3s;
}
.footer a:hover { color: var(--gold-light); opacity: 1; }
.footer svg { width: 16px; height: 16px; fill: var(--gold); }
.copy {
  width: 100%;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .1em;
  opacity: .5;
  margin-top: 6px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .topbar-link { display: none; }
  .topbar { justify-content: center; }
  .features { grid-template-columns: 1fr; }
  .soon .line { width: 26px; }
  .btn { padding: 13px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
}
