:root {
  --purple: #232a67;
  --purple-light: #33419a;
  --blue-deep: #1e3f8f;
  --nav-blue: #0b3d91;
  --gold: #f3c65a;
  --text: #2d3142;
  --muted: #6c728f;
  --bg: #edf2ff;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 18px 40px rgba(29, 32, 76, 0.1);
  --radius: 20px;
}

/* Reset */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(51,65,154,0.15), transparent 25%),
    linear-gradient(180deg, #f6f8ff 0%, #eef3ff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.band {
  padding: 80px 0;
}

.band-tight {
  padding: 48px 0 80px;
}

/* =========================
   HEADER / NAV
   Updated to match preview
   ========================= */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(85,170,255,0.12);
}

.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.nav img {
  height: 54px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.18s ease;
}

nav a:hover {
  opacity: 0.85;
}

.book-now {
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(35,42,103,0.18);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(85,170,255,.28) 0, rgba(85,170,255,0) 38%),
    linear-gradient(135deg, rgba(102,0,153,.92), rgba(0,127,212,.88));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,20,38,.08), rgba(14,20,38,.26));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: 760px;
  padding: 70px 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(100%, 430px);
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.25));
}

.chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(85,170,255,.12);
  color: var(--purple);
  border: 1px solid rgba(85,170,255,.25);
}

.chip-dark {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.hero .chip {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: #fff;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  max-width: 660px;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #660099, #007fd4);
  color: #fff;
  box-shadow: 0 20px 50px rgba(30, 36, 64, .14);
}

.btn-secondary {
  background: #fff;
  color: #660099;
  border-color: rgba(102,0,153,.2);
}

.hero-note {
  margin-top: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  padding: 18px;
  border-radius: 18px;
  color: rgba(255,255,255,.92);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(30, 36, 64, .14);
}

.hero-main {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-seal {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.9);
  background: #000;
}

/* =========================
   SECTION HEADERS
   ========================= */

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.with-mark {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: none;
}

.section-head-main {
  max-width: 760px;
}

.section-head h2,
.section-head-main h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple);
  margin: 12px 0;
  line-height: 1.1;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.section-mark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  border: 3px solid rgba(255,255,255,.85);
  background: #000;
  flex-shrink: 0;
}

/* =========================
   CARDS / GRIDS
   ========================= */

.card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  overflow: hidden;
}

.media-card {
  padding: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy h3,
.pillar h3,
.standard h2,
.trust h2 {
  color: var(--purple);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

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

/* =========================
   PILLARS
   ========================= */

.band {
  background: linear-gradient(180deg, rgba(85,170,255,.09), rgba(255,255,255,0));
  border-top: 1px solid rgba(85,170,255,.12);
  border-bottom: 1px solid rgba(85,170,255,.12);
}

.pillar {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(30, 36, 64, .14);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #55aaff, #660099);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(85,170,255,.18), rgba(102,0,153,.12));
  color: var(--purple);
}

.pillar h3 {
  font-size: 1.3rem;
}

.pillar p {
  color: var(--muted);
}

/* =========================
   PHOTO GRID
   ========================= */

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.stack {
  display: grid;
  gap: 22px;
}

.tall img {
  min-height: 680px;
}

.caption {
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================
   STANDARD / TRUST
   ========================= */

.standard {
  background: linear-gradient(135deg, var(--purple), #4b0b73);
  color: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 36, 64, .14);
}

.standard h2 {
  color: #fff;
  margin-top: 12px;
}

.standard p,
.standard li,
.standard blockquote {
  color: rgba(255,255,255,.92);
}

.standard ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.standard li {
  margin-bottom: 14px;
}

blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.09);
  border-radius: 16px;
  font-size: 1.08rem;
}

.trust {
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 36, 64, .14);
}

.trust h2 {
  margin-top: 12px;
}

.trust p {
  color: var(--muted);
}

/* =========================
   TEASER + REVEAL
   ========================= */

.teaser-band {
  background: linear-gradient(180deg, #eef3ff 0%, #e4ebff 100%);
}

.teaser-panel {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 28px;
}

.teaser-copy {
  background: linear-gradient(135deg, var(--purple), var(--nav-blue));
  color: #fff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.teaser-copy .chip {
  margin-bottom: 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}

.teaser-copy h2 {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.teaser-copy p {
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 58ch;
}

.teaser-note {
  margin-top: 8px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 0.95rem !important;
}

.teaser-mark-wrap {
  display: flex;
}

.teaser-mark {
  width: 100%;
  margin: 0;
  padding: 34px 30px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(35,42,103,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.teaser-crest {
  width: min(150px, 56%);
  margin: 0 auto 18px;
}

.teaser-mark h3 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 1.4rem;
  line-height: 1.2;
}

.teaser-mark p {
  margin: 0;
  color: #5d6284;
  line-height: 1.7;
}

/* Countdown */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 14px;
  margin: 28px 0 18px;
}

.countdown-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 18px 12px 16px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.countdown-box span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.countdown-box small {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  color: rgba(255,255,255,.82);
}

/* Award reveal */

.hidden {
  display: none;
}

.fade-out {
  animation: fadeOut .6s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-15px);
  }
}

.reveal-in {
  animation: revealIn .8s forwards;
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.award-reveal {
  grid-column: 1 / -1;
}

.award-reveal-inner {
  background: linear-gradient(135deg, var(--purple), var(--nav-blue));
  color: #fff;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(29,32,76,.18);
}

.award-chip {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.award-reveal-inner h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.06;
}

.award-lede {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  font-size: 1.04rem;
}

.award-badge-wrap {
  margin: 0 auto 26px;
}

.award-crest {
  width: min(170px, 42vw);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.award-content {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  color: #333;
  margin-top: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.award-content h3 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 1.6rem;
}

.award-content p {
  margin: 0 0 12px;
  color: #5d6284;
  line-height: 1.75;
}

.award-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   CONFETTI
   ========================= */

.confetti-piece {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 18px;
  opacity: 0.95;
  z-index: 9999;
  pointer-events: none;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .photo-grid,
  .teaser-panel {
    grid-template-columns: 1fr;
  }

  .section-head.with-mark {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-mark {
    width: 72px;
    height: 72px;
  }

  .hero-main,
  .tall img {
    min-height: 420px;
    height: auto;
  }
}

@media (max-width: 760px) {
  header {
    position: static;
  }

  .nav {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid {
    min-height: auto;
    padding: 56px 0;
  }

  .hero-seal {
    width: 64px;
    height: 64px;
    top: 16px;
    right: 16px;
  }

  .section-mark {
    width: 64px;
    height: 64px;
  }

  .btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}