:root{
  /* Base */
  --bg: #ffffff;
  --fg: #0b0b0f;
  --muted: rgba(11,11,15,.68);
  --hair: rgba(11,11,15,.14);
  --panel: rgba(255,255,255,.96);
  --shadow: 0 18px 60px rgba(0,0,0,.12);
  --r: 18px;

  /* Brand colors */
  --purple: #932f83;
  --blue: #399ad1;

  /* Typography */
  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-head: "Collidge Rounded", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-head);
  font-weight: normal;
  color: var(--purple);
}

/* Utility */
a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
button{font:inherit}
.no-scroll{overflow:hidden}

/* Header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,11,15,.08);
}
.brand{
  font-family: var(--font-head);
  letter-spacing:.22em;
  font-weight:700;
  font-size:12px;
  color: var(--purple);
}
.brand--small{font-size:11px}
.nav{display:flex; gap:12px; font-size:12px}
.nav a{
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:10px;
  color: rgba(11,11,15,.82);
}
.nav a:hover{
  border-color: rgba(57,154,209,.45);
  box-shadow: 0 0 0 4px rgba(57,154,209,.10);
}

/* HERO (VIDEO) */
.hero{
  min-height: 100vh;
  display:grid;
  place-items:center;
  position:relative;
  padding: 96px 22px 48px;
  overflow:hidden;
  background: #f7f7fb; /* fallback if video missing */
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__veil{
  position:absolute;
  inset:0;
  /* Subtle veil so the white card reads cleanly over any video */
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.65));
  pointer-events:none;
}
.hero__content{
  width:min(980px, 100%);
  position:relative;
  z-index:1;
  padding: 34px;
  border: 1px solid rgba(11,11,15,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.h1{
  margin:0 0 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--purple);
}
.lead{
  margin:0 0 20px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(11,11,15,.72);
  max-width: 62ch;
}
.hero__micro{
  margin-top: 18px;
  font-size:12px;
  color: rgba(11,11,15,.62);
}

/* Sections */
.section{
  padding: 76px 22px;
  border-top: 1px solid rgba(11,11,15,.08);
}
.section__head{
  width:min(980px, 100%);
  margin: 0 auto 24px;
}
.section--destination{
  padding-bottom: 96px;
}
.kicker{
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(11,11,15,.60);
  margin-bottom: 10px;
}
.h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing:-0.01em;
  color: var(--purple);
}

/* Big section headers: CALM / CONFIDENT / COLLECTED */
.sectionTitle{
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 10px;

  /* Fix vertical cropping: allow natural metrics */
  line-height: 1.25;
  color: var(--purple);
  background: none;
}

.p{
  margin: 0 0 12px;
  color: rgba(11,11,15,.70);
  max-width: 70ch;
}

/* Tiles */
.tiles{
  width:min(980px, 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.tile{
  border: 1px solid rgba(11,11,15,.10);
  border-radius: 16px;
  overflow:hidden;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}
.tile:hover{border-color: rgba(57,154,209,.45)}
.tile:nth-child(1){grid-column: span 7}
.tile:nth-child(2){grid-column: span 5}
.tile:nth-child(3){grid-column: span 12}
.tile__img{height: 220px}
.tile__cap{
  padding: 14px 16px;
  font-size: 12px;
  color: rgba(11,11,15,.70);
  border-top: 1px solid rgba(11,11,15,.08);
}

/* Placeholder gradients that match brand */
.tile__img--1{
  background:
    radial-gradient(500px 250px at 25% 35%, rgba(57,154,209,.30), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(147,47,131,.20), rgba(255,255,255,0));
}
.tile__img--2{
  background:
    radial-gradient(420px 220px at 70% 40%, rgba(147,47,131,.28), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(57,154,209,.14), rgba(255,255,255,0));
}
.tile__img--3{
  height: 280px;
  background:
    radial-gradient(700px 320px at 35% 55%, rgba(57,154,209,.22), rgba(255,255,255,0)),
    radial-gradient(700px 320px at 70% 40%, rgba(147,47,131,.18), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(0,0,0,.03), rgba(255,255,255,0));
}

/* Split layout */
.split{
  width:min(980px, 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}
.card{
  border: 1px solid rgba(11,11,15,.10);
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}
.card__title{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity:.85;
  margin-bottom: 10px;
}
.list{margin:0; padding-left: 18px; color: rgba(11,11,15,.72)}
.list li{margin: 8px 0}

/* Buttons (max radius 10px) */
.row{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.btn{
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(11,11,15,.14);
  background: rgba(255,255,255,.88);
  color: rgba(11,11,15,.88);
  cursor:pointer;
  transition: transform .16s ease, opacity .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(57,154,209,.55);
  box-shadow: 0 0 0 4px rgba(57,154,209,.12);
}
.btn--primary{
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.btn--primary:hover{
  opacity:.95;
  box-shadow: 0 0 0 4px rgba(57,154,209,.18);
}
.btn--ghost{
  background: rgba(255,255,255,.82);
}

/* CTA bar */
.ctaBar{
  width:min(980px, 100%);
  margin: 18px auto 0;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(11,11,15,.08);
  padding: 40px 22px 60px;
  background: #ffffff;
}
.footer__cols{
  width:min(980px, 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.footer__title{font-size:12px; opacity:.9; margin-bottom: 8px}
.fineprint{
  font-size: 12px;
  color: rgba(11,11,15,.58);
}
.fineprint a{text-decoration:underline}

/* Overlays */
.overlay{
  position: fixed;
  inset: 0;
  z-index: 50;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease;
}
.overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.overlay__scrim{
  position:absolute;
  inset:0;
  background: rgba(11,11,15,.55);
  backdrop-filter: blur(10px);
}
.overlay__panel{
  position:absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(11,11,15,.12);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  padding: 22px;
  width: min(520px, calc(100% - 28px));
  color: rgba(11,11,15,.92);
}
.overlay__panel h2{color: var(--purple)}
.overlay__panel--center{
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.overlay__panel--right{
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.overlay__close{
  position:absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(11,11,15,.14);
  background: rgba(255,255,255,.92);
  color: rgba(11,11,15,.88);
  cursor:pointer;
}
.overlay__close:hover{
  border-color: rgba(147,47,131,.55);
  box-shadow: 0 0 0 4px rgba(147,47,131,.12);
}

.form{display:grid; gap: 10px; margin-top: 14px}
.label{font-size:12px; opacity:.9}
.input{
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(11,11,15,.14);
  background: rgba(255,255,255,.92);
  color: rgba(11,11,15,.92);
  outline:none;
}
.input:focus{
  border-color: rgba(57,154,209,.65);
  box-shadow: 0 0 0 4px rgba(57,154,209,.14);
}
.checkbox{
  display:flex; gap:10px; align-items:flex-start;
  font-size: 12px;
  color: rgba(11,11,15,.70);
  margin-top: 4px;
}
.linklike{
  margin-top: 2px;
  border: none;
  background: transparent;
  color: rgba(11,11,15,.72);
  text-decoration: underline;
  cursor:pointer;
  justify-self: start;
  padding: 0;
}

/* Responsive */
@media (max-width: 860px){
  .tile:nth-child(1), .tile:nth-child(2), .tile:nth-child(3){grid-column: span 12}
  .split{grid-template-columns: 1fr}
  .overlay__panel--right{left: 14px; right: 14px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn, .overlay--slide .overlay__panel{transition:none}
  .btn:hover{transform:none}
}
/* --- Full-screen email gate (Learn More) --- */
#emailGate.overlay--slide .overlay__scrim{
  /* Panel covers the whole screen; keep a tiny veil for depth */
  background: rgba(11,11,15,.28);
}

#emailGate.overlay--slide .overlay__panel{
  /* Override the "right panel" layout and become a full-screen cover */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  border-radius: 0;
  padding: clamp(28px, 6vh, 64px) 22px;

  /* Center the content block */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Slide animation from the right edge */
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.2,.9,.2,1);
}

#emailGate.overlay--slide.is-open .overlay__panel{
  transform: translateX(0);
}

/* Constrain the actual content within the full-screen cover */
#emailGate .overlay__panel > :not(.overlay__close){
  width: min(560px, 100%);
}

#emailGate .overlay__close{
  top: 16px;
  right: 16px;
}

/* --- Email gate fade-in (soften the entrance) --- */
#emailGate .overlay__scrim{
  opacity: 0;
  transition: opacity .24s ease;
}
#emailGate.is-open .overlay__scrim{
  opacity: 1;
}
#emailGate.overlay--slide .overlay__panel{
  opacity: 0;
  transition: transform .42s cubic-bezier(.2,.9,.2,1), opacity .24s ease;
}
#emailGate.overlay--slide.is-open .overlay__panel{
  opacity: 1;
}
