/* Isola Paradiso — landing page styles */

:root {
  --navy: rgb(35, 46, 92);
  --navy-deep: rgb(28, 37, 75);
  --navy-soft: rgba(35, 46, 92, 0.08);
  --cream: rgb(248, 248, 248);
  --white: rgb(255, 255, 255);
  --line: rgb(233, 234, 238);
  --muted: rgb(114, 114, 114);
  --dark: rgb(63, 63, 63);
  --radius-card: 20px;
  --radius-pill: 24px;
  --container: 1364px;
  --pad-x: 38px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "arboria", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── Typography ─────────────────────────────────────────── */

.eyebrow {
  font-family: "arboria", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.6;
}

.eyebrow--light { color: rgba(248,248,248,0.7); opacity: 1; }

.display-xl {
  font-family: "arboria", sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}

.display-l {
  font-family: "arboria", sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}

.display-m {
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.script {
  font-family: "arboria", sans-serif;
  font-style: italic;
  font-weight: 400;
}

.uppercase-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}

.body-l { font-size: 18px; line-height: 1.55; }
.body-m { font-size: 16px; line-height: 1.55; }
.body-s { font-size: 14px; line-height: 1.55; }
.text-muted { color: var(--muted); }

/* ─── Brand mark ─────────────────────────────────────────── */

.mark { display: inline-block; color: var(--navy); }
.mark svg { display: block; width: 100%; height: auto; }
.mark--light { color: var(--cream); }

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(35,46,92,0.22); }

.btn--outline { background: transparent; color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: var(--cream); color: var(--navy); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn .ico { width: 16px; height: 19px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .25s ease, opacity .2s ease;
}
.link-arrow:hover { gap: 16px; }
.link-arrow .arrow { transition: transform .25s ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ─── Top nav ────────────────────────────────────────────── */

.nav-shell {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1366px;
  z-index: 50;
  transition: top .3s ease;
  pointer-events: none;
}
.nav-shell > * { pointer-events: auto; }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 24px 0 40px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition: background .45s ease, border-color .45s ease, padding .45s ease, box-shadow .45s ease, backdrop-filter .45s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}

/* Initial + hiding: brand centrato, link nascosti */
.nav.is-initial,
.nav.is-hiding {
  grid-template-columns: 1fr;
  justify-items: center;
  pointer-events: none;
}
.nav.is-initial .nav__brand,
.nav.is-hiding .nav__brand { justify-self: center; }
.nav.is-initial .nav__links,
.nav.is-initial .nav__cta,
.nav.is-hiding .nav__links,
.nav.is-hiding .nav__cta {
  opacity: 0;
  pointer-events: none;
}
.nav.is-initial .nav__brand .nav__brand-text,
.nav.is-hiding .nav__brand .nav__brand-text { display: none; }

/* Initial: logo visibile */
.nav.is-initial { opacity: 1; }

.nav.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  background: rgba(248,248,248,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(35,46,92,0.1);
  box-shadow: 0 18px 50px rgba(35,46,92,0.10);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  color: inherit;
}
.nav__brand .mark {
  width: 38px;
  color: #fff;
  transition: width .45s ease, color .45s ease;
}
.nav.is-scrolled .nav__brand .mark { color: var(--navy); }
.nav__brand-text {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}
.nav.is-scrolled .nav__brand-text { opacity: 1; transform: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .35s ease .12s, transform .35s ease .12s, visibility .35s ease;
}
.nav__links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: opacity .2s ease;
}
.nav__links a:hover { opacity: 0.6; }

.nav__cta {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .35s ease .16s, transform .35s ease .16s, visibility .35s ease;
}
.nav__locale {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
}

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  margin: 16px 16px 0;
  min-height: calc(100vh - 32px);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 96px;
}

@media (max-width: 680px) {
  .hero { margin: 8px 8px 0; min-height: calc(100vh - 16px); border-radius: 20px; padding: 120px 16px 80px; }
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.62) saturate(1.05);
}
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,0,0,0.55), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero__placeholder-tag {
  position: absolute;
  bottom: 80px;
  right: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__placeholder-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: rgb(220, 80, 80);
  box-shadow: 0 0 8px rgba(220,80,80,0.9);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__inner { position: relative; z-index: 2; max-width: 1100px; }

.hero__wordmark {
  width: min(820px, 78vw);
  margin: 0 auto;
  color: var(--cream);
  display: block;
}
.hero__wordmark svg { width: 100%; height: auto; display: block; }

.hero__tagline {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(248,248,248,0.92);
  margin: 28px 0 0;
}

.hero__copy {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(248,248,248,0.78);
  font-weight: 300;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: drift 2.4s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

.hero__horizon {
  position: absolute;
  bottom: 22vh;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35) 30%, rgba(255,255,255,0.35) 70%, transparent);
  z-index: 2;
}

/* ─── Section header (uniform across sections) ────────────── */
.section-header {
  margin-bottom: 40px;
}
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.section-header--left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: none;
}
.section-header--left .section-title { max-width: 22ch; }
.section-header__lede {
  margin: 8px 0 0;
  padding-left: 120px;
  max-width: 64ch;
}
@media (max-width: 900px) {
  .section-header__lede { padding-left: 48px; max-width: none; }
}
@media (max-width: 540px) {
  .section-header__lede { padding-left: 20px; }
}

/* Standalone intros (when not nested in the header) */
.section-intro {
  margin: 0 0 64px;
  padding-left: 120px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-intro--single { padding-left: 120px; text-align: left; max-width: 760px; }
.section-intro .body-l,
.section-intro .body-m { margin: 0; max-width: 64ch; }
@media (max-width: 900px) {
  .section-intro,
  .section-intro--single { padding-left: 48px; }
}
@media (max-width: 540px) {
  .section-intro,
  .section-intro--single { padding-left: 20px; }
}
.section-title {
  font-family: "arboria", sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 104px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
  color: inherit;
}
.section-title--xl {
  font-size: clamp(64px, 9vw, 148px);
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.section--dark .section-title { color: #fff; }

/* legacy fallback (now folded into .section-intro above) */
.section-intro--two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Team layout: sticky image (left) + accordion list (right) */
.team-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}
.team-layout__media {
  position: sticky;
  top: 120px;
  align-self: start;
}
.team-layout .team-preview {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  box-shadow: 0 30px 60px rgba(35,46,92,0.18);
}
.team-layout .team-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity .5s cubic-bezier(.2,.7,.2,1), object-position .8s cubic-bezier(.2,.7,.2,1);
}
.team-layout .team-list { margin-top: 0; }

@media (max-width: 900px) {
  .team-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team-layout__media {
    position: relative;
    top: 0;
    max-width: 280px;
  }
}

/* 5-card amenity grid */
.amenity-grid.amenity-grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .amenity-grid.amenity-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .amenity-grid.amenity-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .amenity-grid.amenity-grid--5 { grid-template-columns: 1fr; }
}

/* ─── Sections ───────────────────────────────────────────── */

.section { padding: 140px 0; position: relative; }
.section--tight { padding: 100px 0; }
.section--dark { background: var(--navy); color: #fff; }
.section--cream { background: var(--cream); position: relative; }
.section--cream::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: calc(100% - 64px);
  height: 1px;
  background: var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.split-heading__lead { display: flex; flex-direction: column; gap: 24px; }
.split-heading__lead .display-l { max-width: 12ch; }

/* ─── Decks ──────────────────────────────────────────────── */

.deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.deck-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}
.deck-card__media {
  width: 100%;
  aspect-ratio: 444 / 492;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: rgb(18,24,52);
}
.deck-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.deck-card:hover .deck-card__media img { transform: scale(1.04); }

.deck-card__title {
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 0;
}
.deck-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}

/* ─── Amenities (light cards) ────────────────────────────── */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--navy);
}
.amenity-card__media {
  width: 100%;
  aspect-ratio: 320 / 380;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-soft);
  position: relative;
}
.amenity-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.amenity-card:hover .amenity-card__media img { transform: scale(1.04); }
.amenity-card__num {
  position: absolute; top: 18px; left: 18px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  background: rgba(35,46,92,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 20px;
}
.amenity-card__title { font-size: 24px; font-weight: 700; margin: 4px 0 0; }
.amenity-card__desc { font-size: 15px; line-height: 1.5; margin: 0; color: rgba(35,46,92,0.78); }

/* ─── Carousel (3 visible + peek, drag-to-scroll) ──────────── */
.carousel {
  position: relative;
  margin-top: 8px;
}
.carousel__nav {
  position: absolute;
  top: -64px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.carousel__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(35,46,92,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.carousel__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel__arrow:active { transform: scale(0.94); }
.carousel__arrow:disabled { opacity: .25; cursor: default; pointer-events: none; }
.section--dark .carousel__arrow { color: #fff; border-color: rgba(255,255,255,0.35); }
.section--dark .carousel__arrow:hover { background: #fff; color: var(--navy); border-color: #fff; }

.carousel__viewport {
  overflow: hidden;
  margin: 0 calc(var(--pad-x) * -1);
  padding: 0 var(--pad-x);
  /* Make peek visible past container by using negative side margins, then re-pad inside */
}
.carousel__track {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 8px; /* room for shadow */
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel__card {
  flex: 0 0 calc((100% - 60px) / 3.2);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  user-select: none;
}
.carousel__media {
  width: 100%;
  aspect-ratio: 320 / 380;
  border-radius: 14px;
  overflow: hidden;
  background: rgb(232, 226, 213);
}
.carousel__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.carousel__card:hover .carousel__media img { transform: scale(1.04); }
.carousel__title {
  font-family: "arboria", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 4px 0 0;
  color: var(--navy);
}
.carousel__desc {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: rgba(35,46,92,0.78);
  max-width: 36ch;
}
.section--dark .carousel__title { color: #fff; }
.section--dark .carousel__desc { color: rgba(255,255,255,0.78); }

@media (max-width: 1100px) {
  .carousel__card { flex-basis: calc((100% - 40px) / 2.2); }
}
@media (max-width: 720px) {
  .carousel__card { flex-basis: calc((100% - 20px) / 1.2); }
  .carousel__nav { top: -56px; }
  .carousel__arrow { width: 40px; height: 40px; }
}

/* ─── Suite feature ──────────────────────────────────────── */

.suite-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.suite-feature__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.suite-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.suite-feature__body { display: flex; flex-direction: column; gap: 24px; }

/* ─── Stats / numbers ────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(35,46,92,0.15);
  border-bottom: 1px solid rgba(35,46,92,0.15);
}
.section--dark .stats { border-color: rgba(255,255,255,0.18); }
.stat {
  padding: 36px 28px 36px 0;
  border-left: 1px solid rgba(35,46,92,0.15);
  padding-left: 28px;
}
.section--dark .stat { border-color: rgba(255,255,255,0.18); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__value {
  font-size: 48px; font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__unit { font-size: 24px; opacity: 0.5; margin-left: 1px; }
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* 2-stat layout */
.stats--2 { grid-template-columns: repeat(2, 1fr); }

/* 6-stat / 3-col layout for full concept metrics */
.stats--6 { grid-template-columns: repeat(3, 1fr); row-gap: 0; }
.stats--6 .stat { padding: 32px 24px 32px 0; padding-left: 24px; }
.stats--6 .stat__value { font-size: 42px; }
.stats--6 .stat__unit { font-size: 20px; opacity: 0.5; margin-left: 1px; }
.stats--6 .stat__label { font-size: 12px; letter-spacing: 0.16em; }
.stats--6 .stat:nth-child(3n+1) { border-left: 0; padding-left: 0; }
.stats--6 .stat:nth-child(n+4) { border-top: 1px solid rgba(35,46,92,0.15); }
.section--dark .stats--6 .stat:nth-child(n+4) { border-top-color: rgba(255,255,255,0.18); }

/* ─── Destinations ───────────────────────────────────────── */

.destinations-hero {
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0 0 48px;
}
.destinations-hero .dim { opacity: 0.34; }
.destinations-hero .scroll { display: block; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  isolation: isolate;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.dest-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 28px 26px;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dest-card__city { font-size: 32px; font-weight: 300; letter-spacing: -0.01em; }
.dest-card__year { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.85; }
.dest-card:hover img { transform: scale(1.06); }

/* ─── Team table ─────────────────────────────────────────── */

.team-row {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(35,46,92,0.25);
  cursor: pointer;
  transition: padding .3s ease;
}
.team-row:last-child { border-bottom: 1px solid rgba(35,46,92,0.25); }
.team-row > summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 26px 4px;
  cursor: pointer;
  transition: padding .3s ease;
}
.team-row > summary::-webkit-details-marker { display: none; }
.team-row:hover > summary { padding-left: 14px; }
.team-row__head { display: contents; }
.team-row__name {
  font-family: "arboria", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.team-row__role {
  font-size: 14px;
  opacity: 0.6;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.team-row__toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.team-row__toggle::before,
.team-row__toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
}
.team-row__toggle::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.team-row__toggle::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); transition: transform .35s ease, opacity .35s ease; }
.team-row[open] .team-row__toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.team-row[open] .team-row__toggle { transform: rotate(0deg); }

.team-row__body {
  padding: 0 4px 28px;
  animation: accordionDown .45s cubic-bezier(.2,.7,.2,1);
}
.team-row__bio {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(35,46,92,0.78);
  margin: 0;
  max-width: 70ch;
}
@keyframes accordionDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .team-row > summary {
    grid-template-columns: 1fr auto;
    row-gap: 4px;
    column-gap: 16px;
  }
  .team-row__head { display: contents; }
  .team-row__name { grid-column: 1 / 2; grid-row: 1; }
  .team-row__role { grid-column: 1 / 2; grid-row: 2; }
  .team-row__toggle { grid-column: 2; grid-row: 1 / 3; }
}

/* ─── Quote / endless summer ─────────────────────────────── */

.endless-summer {
  text-align: center;
  padding: 100px 24px 60px;
}
.endless-summer--left {
  text-align: left;
  padding: 100px 0 60px 120px;
  max-width: 760px;
}
@media (max-width: 900px) {
  .endless-summer--left { padding-left: 48px; }
}
@media (max-width: 540px) {
  .endless-summer--left { padding-left: 20px; }
}
.endless-summer__line {
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.endless-summer__line .script {
  font-style: italic;
  font-weight: 400;
}

/* ─── Big wordmark anchored to footer bottom ─────────────── */

.footer { position: relative; padding-bottom: 0; }
.footer .container { padding-bottom: 36px; }

.footer__wordmark {
  width: 100%;
  display: block;
  padding: 60px 24px 0;
  margin-top: 24px;
  line-height: 0;
}
.footer__wordmark .mark {
  display: block;
  width: 100%;
  color: #fff;
}
.footer__wordmark .mark svg {
  display: block;
  width: 100%;
  height: auto;
}

/* legacy class still referenced anywhere — hide rather than render twice */
.wordmark-bottom { display: none; }

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 36px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 28ch; }
.footer__brand .mark { width: 52px; color: #fff; }
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; opacity: 0.6; margin: 0 0 18px;
}
.footer__col p, .footer__col a {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-decoration: none;
}
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; opacity: 0.55;
  flex-wrap: wrap; gap: 20px;
}

/* ─── Investment section ─────────────────────────────────── */

.invest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.invest__body { display: flex; flex-direction: column; gap: 24px; }

/* ─── Editorial quote ────────────────────────────────────── */

.editorial-quote {
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ─── Marquee ────────────────────────────────────────────── */

.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(35,46,92,0.18);
  border-bottom: 1px solid rgba(35,46,92,0.18);
  padding: 22px 0;
  white-space: nowrap;
  gap: 56px;
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  padding-right: 56px;
  animation: scroll-marquee 36s linear infinite;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: var(--navy);
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Investor modal ─────────────────────────────────────── */

.investor-overlay {
  position: fixed; inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 22, 48, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  overflow: auto;
}
.investor-overlay.is-open { display: flex; }

.investor-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 40px 100px rgba(18, 22, 48, 0.4);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: investorPop .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes investorPop {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.investor-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border: 1px solid rgba(35,46,92,0.15);
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.investor-close:hover { background: rgba(35,46,92,0.06); transform: rotate(90deg); }

.investor-stage[hidden] { display: none; }

/* Form */
.investor-form { display: flex; flex-direction: column; gap: 18px; }
.investor-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.investor-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.85;
}
.investor-form input {
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(35,46,92,0.25);
  background: transparent;
  color: var(--navy);
  outline: none;
  transition: border-color .2s ease;
}
.investor-form input:focus { border-color: var(--navy); }
.investor-form__error {
  min-height: 18px;
  font-size: 13px;
  color: rgb(176, 60, 60);
  margin: 0;
}
.investor-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.investor-form__actions .text-muted { max-width: 32ch; }

/* Dossier */
.dossier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(35,46,92,0.15);
  border: 1px solid rgba(35,46,92,0.15);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
}
.dossier-card {
  background: var(--cream);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.dossier-card__num {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--navy);
}
.dossier-card__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.dossier-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-bottom: 36px;
}
.dossier-sections section { display: flex; flex-direction: column; gap: 8px; }
.dossier-sections h3 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
  opacity: 0.65;
}
.dossier-sections p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(35,46,92,0.85);
  margin: 0;
  max-width: 50ch;
}

.dossier-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(35,46,92,0.15);
}
.dossier-reset {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dossier-reset:hover { color: var(--navy); }

@media (max-width: 720px) {
  .investor-modal { padding: 36px 24px; border-radius: 18px; }
  .investor-form__row { grid-template-columns: 1fr; }
  .dossier-grid { grid-template-columns: repeat(2, 1fr); }
  .dossier-sections { grid-template-columns: 1fr; }
  .dossier-cta .dossier-reset { margin-left: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Big titles rise from further below, with a soft ease and a light stagger
   after the eyebrow. The .script accent rises just a touch later. */
.reveal .section-title,
.reveal .section-title--xl,
.reveal .display-m {
  display: block;
  opacity: 0;
  transform: translateY(64px);
  transition:
    opacity 1.2s cubic-bezier(.16,.84,.24,1) .12s,
    transform 1.2s cubic-bezier(.16,.84,.24,1) .12s;
  will-change: transform, opacity;
}
.reveal .section-title .script,
.reveal .section-title--xl .script,
.reveal .display-m .script {
  display: inline-block;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1.1s cubic-bezier(.16,.84,.24,1) .28s,
    transform 1.1s cubic-bezier(.16,.84,.24,1) .28s;
}
.reveal.is-visible .section-title,
.reveal.is-visible .section-title--xl,
.reveal.is-visible .display-m,
.reveal.is-visible .section-title .script,
.reveal.is-visible .section-title--xl .script,
.reveal.is-visible .display-m .script {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal .section-title,
  .reveal .section-title--xl,
  .reveal .display-m,
  .reveal .section-title .script,
  .reveal .section-title--xl .script,
  .reveal .display-m .script {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .deck-grid, .amenity-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading, .suite-feature, .invest, .footer__row { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats--6 { grid-template-columns: repeat(2, 1fr); }
  .stats--6 .stat:nth-child(3n+1) { border-left: 1px solid rgba(35,46,92,0.15); padding-left: 28px; }
  .stats--6 .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stats--6 .stat:nth-child(n+3) { border-top: 1px solid rgba(35,46,92,0.15); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .team-row { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 680px) {
  :root { --pad-x: 20px; }
  .section { padding: 80px 0; }
  .deck-grid, .amenity-grid, .dest-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats--6 { grid-template-columns: repeat(2, 1fr); }
  .stats--6 .stat { border-top: 1px solid rgba(35,46,92,0.15) !important; border-left: 0 !important; padding-left: 0 !important; }
  .stats--6 .stat:first-child, .stats--6 .stat:nth-child(2) { border-top: 0 !important; }
  .stats--6 .stat:nth-child(odd) { border-left: 0 !important; padding-left: 0 !important; }
  .stats--6 .stat:nth-child(even) { border-left: 1px solid rgba(35,46,92,0.15) !important; padding-left: 20px !important; }
  .stat { border-left: 0 !important; padding-left: 0 !important; }
  .nav__links { display: none; }
  .nav__brand-text { display: none !important; }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 0 16px;
    height: 60px;
  }
  .nav__locale { font-size: 15px; letter-spacing: 0.14em; padding: 2px 6px; }
  .lang-btn { font-size: 15px; }
  .nav-shell { top: 14px; width: calc(100% - 28px); }
  .nav.is-hiding { opacity: 0; pointer-events: none; }
  .footer__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Full-bleed deck view ─────────────────────────────────── */
.deck-fullbleed {
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.deck-fullbleed img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.deck-fullbleed figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px var(--pad-x);
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
@media (max-width: 680px) {
  .deck-fullbleed figcaption { padding: 24px 20px; }
}

/* ─── Format esportabile feature (image left, body right) ─── */
.format-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 8px;
}
.format-feature__media {
  border-radius: 14px;
  overflow: hidden;
  background: rgb(232, 226, 213);
  aspect-ratio: 4 / 3;
}
.format-feature__media img,
.format-feature__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.format-feature__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}
.format-feature__body .body-l { margin: 0; max-width: 30ch; }
.format-feature__body .body-m { margin: 0; max-width: 54ch; }
.format-feature__quote {
  font-family: "ivypresto-display", "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: auto 0 0;
  padding-top: 40px;
  text-align: right;
  color: var(--navy);
  align-self: end;
  width: 100%;
}
.format-feature__quote .script { display: inline; }
.format-feature__quote--left {
  font-family: "arboria", sans-serif;
  text-align: left;
  align-self: start;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  .format-feature { grid-template-columns: 1fr; gap: 32px; }
  .format-feature__quote { text-align: left; padding-top: 24px; }
}

/* ─── Full-width video block ───────────────────────────────── */
.video-fullwidth,
.image-fullwidth {
  width: 100%;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  background: #000;
}
/* When a full-width video closes a dark section, butt it up to the section
   bottom edge so the video terminates exactly at the blue/ash boundary. */
.section--dark { padding-bottom: 140px; }
.section--dark > .video-fullwidth:last-child {
  margin-bottom: 0;
  margin-top: 60px;
}
.section--dark:has(> .video-fullwidth:last-child) { padding-bottom: 0 !important; }
.video-fullwidth video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.image-fullwidth img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1440 / 600;
}

/* ─── Team preview caption ─────────────────────────────────── */
.team-preview { isolation: isolate; }
.team-preview__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.team-preview__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.team-preview__role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Team accordion easing */
.team-row { transition: padding .4s cubic-bezier(.2,.7,.2,1); }
.team-row > summary { transition: padding .4s cubic-bezier(.2,.7,.2,1); }
.team-row__body {
  animation: accordionDown .55s cubic-bezier(.2,.7,.2,1);
}
