/* ===================================================================
   Nautical Tourism — styles  ·  "Pop & Fun" edition
   Palette: sea navy, foam, sunshine gold, electric turquoise, coral
   Type: Fraunces (display, characterful serif) + Inter (text)
=================================================================== */

:root {
  --navy:        #0b2a4a;
  --navy-deep:   #07203a;
  --foam:        #f4fbfd;
  --sky:         #eaf7fb;
  --sand:        #fff4e2;
  --teal:        #0fb8c4;
  --turquoise:   #1fd6dd;
  --gold:        #ffb22e;
  --gold-deep:   #ff9e1b;
  --sun:         #ffd24c;
  --coral:       #ff6b5d;
  --coral-deep:  #ff4f6b;
  --ink:         #15222e;
  --muted:       #5d6b76;
  --line:        rgba(11, 42, 74, 0.12);

  --grad-sun:    linear-gradient(120deg, #ffd24c 0%, #ff9e1b 45%, #ff6b5d 100%);
  --grad-sea:    linear-gradient(120deg, #1fd6dd 0%, #0fb8c4 50%, #1583c4 100%);
  --grad-pop:    linear-gradient(120deg, #ff6b5d 0%, #ff9e1b 100%);

  --shadow:      0 24px 60px -20px rgba(7, 32, 58, 0.35);
  --radius:      22px;
  --maxw:        1180px;

  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft drifting colour washes behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58vw 58vw at 86% -12%, rgba(255, 178, 46, .12), transparent 60%),
    radial-gradient(52vw 52vw at -12% 28%, rgba(31, 214, 221, .12), transparent 60%),
    radial-gradient(54vw 54vw at 112% 82%, rgba(255, 107, 93, .10), transparent 60%),
    linear-gradient(180deg, var(--sky) 0%, var(--foam) 26%, var(--foam) 100%);
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--navy);
}

h1 { font-size: clamp(3rem, 7.4vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: 1.65rem; }

em { font-style: italic; }

a { color: inherit; text-decoration: none; }

/* Scroll progress bar */
.scrollbar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad-pop);
  z-index: 100;
  will-change: transform;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--grad-pop);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--solid {
  background: var(--grad-sun);
  color: var(--navy-deep);
  box-shadow: 0 14px 34px -10px rgba(255, 138, 61, .7);
  animation: invite 3.4s ease-in-out infinite;
}
.btn--solid::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn--solid:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 22px 44px -10px rgba(255,138,61,.8); }
.btn--solid:hover::after { left: 130%; }
.btn--solid:active { transform: translateY(-1px) scale(.99); }
@keyframes invite {
  0%, 100% { box-shadow: 0 14px 34px -10px rgba(255,138,61,.7); }
  50%      { box-shadow: 0 16px 40px -8px rgba(255,107,93,.85); }
}
.btn--ghost {
  background: rgba(247,249,250,.06);
  color: var(--foam);
  border-color: rgba(247, 249, 250, 0.55);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover { background: rgba(247,249,250,.16); border-color: var(--foam); transform: translateY(-4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(7,32,58,.55), rgba(7,32,58,0));
  transition: background .3s ease, backdrop-filter .3s ease;
}
.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__brand img { width: 38px; height: auto; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.nav__brand:hover img { transform: rotate(-8deg) scale(1.08); }
.nav__brand span {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--foam);
  letter-spacing: .01em;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  position: relative;
  color: rgba(247,249,250,.9);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__links a:hover { color: #fff; }
.nav__cta {
  border: 1.5px solid rgba(247,249,250,.55);
  padding: .55rem 1.3rem;
  border-radius: 100px;
  transition: background .25s, color .25s, border-color .25s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.nav__cta:hover { background: var(--grad-sun); color: var(--navy-deep) !important; border-color: transparent; transform: translateY(-2px) scale(1.05); }

/* ---------- Language switcher ---------- */
.lang { position: relative; }
.lang__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(247,249,250,.08);
  border: 1.5px solid rgba(247,249,250,.28);
  color: var(--foam);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .5rem .8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lang__btn:hover { background: rgba(247,249,250,.16); border-color: rgba(247,249,250,.5); }
.lang__chev { transition: transform .25s ease; opacity: .8; }
.lang.open .lang__chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  min-width: 168px;
  list-style: none;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px -12px rgba(7,32,58,.45);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 60;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  padding: .6rem .75rem;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.lang__menu button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--teal);
  background: rgba(15,184,196,.12);
  border-radius: 6px;
}
.lang__menu button:hover { background: var(--foam); }
.lang__menu li.is-active button { color: var(--navy); font-weight: 600; }
.lang__menu li.is-active button span { color: #fff; background: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('assets/hero.jpg') center 40% / cover no-repeat;
  color: var(--foam);
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7,32,58,.80) 0%, rgba(7,32,58,.35) 55%, rgba(11,111,176,.12) 100%),
    linear-gradient(to top, rgba(7,32,58,.62), rgba(7,32,58,0) 45%);
}
/* slow sun glow */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(38vw 38vw at 80% 16%, rgba(255,210,76,.30), transparent 62%);
  mix-blend-mode: screen;
  animation: sun 7s ease-in-out infinite;
}
@keyframes sun {
  0%, 100% { opacity: .65; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(-14px); }
}
.hero__inner { position: relative; z-index: 3; max-width: 740px; }
.hero__inner .eyebrow {
  color: transparent;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__inner .eyebrow::before { background: var(--sun); }
.hero h1 { color: var(--foam); margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: italic;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText { to { background-position: 200% center; } }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 540px;
  color: rgba(247,249,250,.9);
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 60px;
  border: 2px solid rgba(247,249,250,.55);
  border-radius: 100px;
  color: var(--foam);
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,10px);} }

/* floating bubbles */
.hero__bubbles { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero__bubbles span {
  position: absolute;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.5), rgba(31,214,221,.16));
  border: 1px solid rgba(255,255,255,.2);
  animation: rise linear infinite;
}
.hero__bubbles span:nth-child(1){ left: 8%;  width: 26px; height: 26px; animation-duration: 13s; animation-delay: 0s; }
.hero__bubbles span:nth-child(2){ left: 22%; width: 14px; height: 14px; animation-duration: 10s; animation-delay: 2s; }
.hero__bubbles span:nth-child(3){ left: 40%; width: 34px; height: 34px; animation-duration: 16s; animation-delay: 1s; }
.hero__bubbles span:nth-child(4){ left: 60%; width: 18px; height: 18px; animation-duration: 12s; animation-delay: 4s; }
.hero__bubbles span:nth-child(5){ left: 76%; width: 24px; height: 24px; animation-duration: 14s; animation-delay: 3s; }
.hero__bubbles span:nth-child(6){ left: 90%; width: 12px; height: 12px; animation-duration: 9s;  animation-delay: 1.5s; }
@keyframes rise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  12%  { opacity: .75; }
  100% { transform: translateY(-94vh) scale(1.1); opacity: 0; }
}

/* ---------- Wave dividers ---------- */
.wave { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 4; pointer-events: none; }
.wave svg { display: block; width: 100%; height: clamp(42px, 7vw, 92px); }
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; }
.wave--top svg { transform: scaleY(-1); }
.wave--foam path { fill: var(--foam); }
.wave--navy path { fill: var(--navy-deep); }

/* ---------- Intro ---------- */
.intro {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 2rem);
  text-align: center;
}
.intro__lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  color: var(--navy);
  max-width: 880px;
  margin: 0 auto 3.5rem;
  font-weight: 500;
}
.stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 6rem);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat:nth-child(2) .stat__num { background: var(--grad-sea);  -webkit-background-clip: text; background-clip: text; }
.stat:nth-child(3) .stat__num { background: var(--grad-pop);  -webkit-background-clip: text; background-clip: text; }
.stat__label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: .7rem;
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: '';
  display: block;
  width: 64px; height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: var(--grad-pop);
}

/* ---------- Experiences ---------- */
.experiences {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 5vw, 2rem) clamp(4.5rem, 9vw, 7rem);
  scroll-margin-top: 90px;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.card:nth-child(1)::before { background: var(--grad-sea); }
.card:nth-child(2)::before { background: var(--grad-sun); }
.card:nth-child(3)::before { background: var(--grad-pop); }
.card:hover { transform: translateY(-12px) rotate(-.6deg); box-shadow: 0 40px 80px -24px rgba(11,42,74,.45); }
.card:hover::before { transform: scaleX(1); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card__media img { transform: scale(1.08); }
.card__body { padding: 1.8rem 1.7rem 2rem; }
.card__body h3 { margin-bottom: .7rem; }
.card__body p { color: var(--muted); font-size: .96rem; margin-bottom: 1.3rem; }
.card__tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 100px;
}
.card:nth-child(1) .card__tag { background: var(--grad-sea); }
.card:nth-child(2) .card__tag { background: var(--grad-sun); color: var(--navy-deep); }
.card:nth-child(3) .card__tag { background: var(--grad-pop); }

/* ---------- Full-bleed divider ---------- */
.bleed {
  position: relative;
  height: 70vh;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bleed__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bleed::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,32,58,.62), rgba(15,184,196,.35));
}
.bleed__quote {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 2rem;
}
.bleed__quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  color: var(--foam);
  line-height: 1.35;
}

/* ---------- Destinations / Story (split) ---------- */
.destinations, .story {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  scroll-margin-top: 90px;
}
.destinations__media img, .story__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .5s ease;
}
.destinations__media img:hover, .story__media img:hover {
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 40px 80px -24px rgba(15,184,196,.5);
}
.destinations__text h2, .story__text h2 { margin-bottom: 1.2rem; }
.destinations__text h2::after, .story__text h2::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  margin-top: 1rem;
  border-radius: 4px;
  background: var(--grad-sea);
}
.destinations__text p, .story__text p { color: var(--muted); margin-bottom: 1rem; max-width: 46ch; }
.story__media { order: -1; }

.list { list-style: none; margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.list li {
  position: relative;
  padding-left: 2.5rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  min-height: 1.7rem;
}
.list li::before {
  content: '⚓';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.8rem; height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-sun);
  color: #fff;
  border-radius: 50%;
  font-size: .82rem;
  box-shadow: 0 8px 18px -7px rgba(255,158,27,.8);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.list li:hover::before { transform: translateY(-50%) rotate(-12deg) scale(1.12); }
.signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy) !important;
  margin-top: 1.4rem;
}

/* ---------- Gallery ---------- */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.2rem, 5vw, 2rem) clamp(4.5rem, 9vw, 7rem);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), filter .45s ease, box-shadow .45s ease;
  filter: saturate(1.08);
}
.gallery__grid img:nth-child(even):hover { transform: scale(1.05) rotate(1.4deg); }
.gallery__grid img:hover {
  transform: scale(1.05) rotate(-1.4deg);
  filter: saturate(1.3);
  box-shadow: 0 28px 56px -20px rgba(15,184,196,.55);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: url('assets/cove.jpg') center / cover no-repeat fixed;
  color: var(--foam);
  padding: clamp(6rem, 12vw, 9.5rem) clamp(1.2rem, 5vw, 2rem) clamp(5rem, 11vw, 9rem);
  text-align: center;
  scroll-margin-top: 90px;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(7,32,58,.86), rgba(11,111,176,.55) 70%, rgba(15,184,196,.4));
}
.cta__inner { position: relative; z-index: 5; max-width: 640px; margin: 0 auto; }
.cta__inner .eyebrow {
  color: transparent;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
}
.cta__inner .eyebrow::before { background: var(--sun); }
.cta h2 { color: var(--foam); margin-bottom: 1rem; }
.cta__sub { color: rgba(247,249,250,.88); margin-bottom: 2.4rem; font-size: 1.1rem; }
.cta__form {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.cta__form input {
  flex: 1 1 220px;
  max-width: 260px;
  padding: .95rem 1.3rem;
  border-radius: 100px;
  border: 1.5px solid rgba(247,249,250,.3);
  background: rgba(247,249,250,.1);
  color: var(--foam);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.cta__form input::placeholder { color: rgba(247,249,250,.65); }
.cta__form input:focus { outline: none; border-color: var(--gold); background: rgba(247,249,250,.16); transform: translateY(-2px); }
.cta__or { font-size: .9rem; color: rgba(247,249,250,.8); }
.cta__or a { color: var(--sun); border-bottom: 1px solid rgba(255,210,76,.5); transition: color .2s; }
.cta__or a:hover { color: var(--coral); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(247,249,250,.7);
  text-align: center;
  padding: 4.5rem 1.5rem 2.5rem;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer__brand img { width: 46px; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.footer__brand:hover img { transform: rotate(8deg) scale(1.08); }
.footer__brand p { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--foam); }
.footer__tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.4rem;
}
.footer__legal { font-size: .8rem; letter-spacing: .04em; }

/* ---------- Reveal on scroll ---------- */
.card, .destinations__text, .destinations__media,
.story__text, .story__media, .stat, .gallery__grid img {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
.is-visible { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .destinations, .story { grid-template-columns: 1fr; }
  .story__media { order: 0; }
  .destinations__text p, .story__text p { max-width: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .bleed__img { background-attachment: scroll; }
  .cta { background-attachment: scroll; }
  .hero { align-items: flex-start; padding-top: 6rem; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .stats { gap: 2.2rem; }
  .nav { padding: .4rem 1.1rem; }
  .nav__brand { gap: .55rem; align-items: flex-start; }
  .nav__brand img { width: 32px; }
  .nav__brand span { font-size: 1.15rem; }
}

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; }
  .hero::after, .hero__bubbles span, .hero__scroll, .btn--solid, .hero h1 em { animation: none !important; }
  html { scroll-behavior: auto; }
}
