/* =========================================================================
   D7020 ROTARY & ROTARACT JOINT CONFERENCE 2027 — "INTO THE BLUE" DESIGN SYSTEM
   Palette (built around the committee's official conference blue):
     --blue        #00409F  Into The Blue — primary brand color
     --blue-deep   #002B6E  pressed/hover state, deep-ocean gradients
     --blue-light  #3E7FD9  lighter accent, links on light surfaces
     --sky         #6FB7E8  pale sky/water tint for gradients + glows
     --lagoon      #12B4B0  Caribbean turquoise — secondary accent
     --hibiscus    #D41367  Rotaract signature pink (from the campaign florals)
     --hibiscus-deep #8F0D46
     --gold        #F0A400  Rotary gold accent (sun, hibiscus centers)
     --ink         #051B3D  deep-ocean near-black, used instead of flat black
     --ink-soft    #0B2A54  secondary dark surface
     --paper       #FFFFFF  page background
     --sand        #FBF6EC  warm neutral surface for cards/sections
     --line        #E5E9F0  hairline borders on light surfaces
   Type:
     Display — "Clash Display" (bold, geometric, poster energy — matches
                the "INTO THE BLUE" logotype's chunky retro-surf lettering)
     Body    — "Inter"
     Data/Eyebrow — "Space Mono"
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap");
@font-face {
  font-family: "Clash Display";
  src: url("https://api.fontshare.com/v2/css?f[]=clash-display@600,700&display=swap");
}

:root {
  --blue: #00409f;
  --blue-deep: #002b6e;
  --blue-light: #3e7fd9;
  --sky: #6fb7e8;
  --lagoon: #12b4b0;
  --hibiscus: #d41367;
  --hibiscus-deep: #8f0d46;
  --gold: #f0a400;
  --ink: #051b3d;
  --ink-soft: #0b2a54;
  --paper: #ffffff;
  --sand: #fbf6ec;
  --line: #e5e9f0;
  --line-dark: #1c3c6b;
  --ink-muted: #7f8dab;
  --text-on-dark: #eef4ff;

  /* legacy aliases so any un-migrated markup still resolves sanely */
  --magenta: var(--hibiscus);
  --magenta-deep: var(--hibiscus-deep);
  --teal: var(--lagoon);

  --font-display: "Clash Display", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --container: 1180px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 27, 74, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(0, 27, 74, 0.2);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--lagoon);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--gold); }

.lede {
  font-size: 1.15rem;
  color: #445069;
  max-width: 60ch;
}
.on-dark .lede, .lede.on-dark { color: #cfe0f7; }

/* ---------- decorative motifs ---------- */
/* Soft floating "bubble" accents — sprinkled across sections via a
   handful of utility divs (see .bubble-field). Pure CSS, no JS needed. */
.bubble-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble-field .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0.05) 70%);
  animation: bubble-float 14s ease-in-out infinite;
}
@keyframes bubble-float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
  50%  { transform: translateY(-38px) translateX(10px) scale(1.06); opacity: 0.85; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.5; }
}

/* Wave divider — sits at the bottom of a section to transition into the
   next one with a Caribbean-water silhouette instead of a hard edge. */
.wave-divider {
  position: relative;
  height: 64px;
  margin-top: -1px;
  background-repeat: repeat-x;
  background-size: 400px 64px;
}
.wave-divider.into-sand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 64'%3E%3Cpath fill='%23FBF6EC' d='M0 32c50 20 100 20 150 0s100-20 150 0 100 20 100 0V64H0Z'/%3E%3C/svg%3E");
}
.wave-divider.into-paper {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 64'%3E%3Cpath fill='%23FFFFFF' d='M0 32c50 20 100 20 150 0s100-20 150 0 100 20 100 0V64H0Z'/%3E%3C/svg%3E");
}
.wave-divider.into-ink {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 64'%3E%3Cpath fill='%23051B3D' d='M0 32c50 20 100 20 150 0s100-20 150 0 100 20 100 0V64H0Z'/%3E%3C/svg%3E");
}
@media (max-width: 700px) { .wave-divider { height: 40px; background-size: 260px 40px; } }

/* Palm-frond corner accents — subtle, low-opacity, purely decorative */
.palm-accent {
  position: absolute;
  width: 220px;
  height: 220px;
  opacity: 0.14;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpath d='M100 190C100 190 92 120 60 90C40 71 20 68 10 68'/%3E%3Cpath d='M100 190C100 190 80 130 40 110C22 101 8 100 4 100'/%3E%3Cpath d='M100 190C100 190 110 110 150 78C170 62 190 58 196 58'/%3E%3Cpath d='M100 190C100 190 120 122 165 105C182 98 196 97 198 98'/%3E%3Cpath d='M100 190C100 190 95 100 100 40C102 20 108 6 110 2'/%3E%3C/g%3E%3C/svg%3E");
}
.palm-accent.tl { top: 0; left: 0; transform: scaleX(1); }
.palm-accent.br { bottom: 0; right: 0; transform: rotate(180deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  /* Ocean gradient — blue into turquoise — reads clearly as "the brand
     blue" without dropping to near-black on dark sections, and pops
     against both white cards and the dark hero video. */
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 55%, var(--lagoon));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(0, 64, 159, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(0, 64, 159, 0.65); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(240, 164, 0, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--ink);
}
.btn-outline.on-dark { color: #fff; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline.on-dark:hover { background: #fff; color: var(--blue-deep); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 12px 24px 12px 14px;
  border-radius: 100px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .3s ease, transform .3s var(--ease);
}
.btn-play:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-play .play-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow .3s ease;
}
.site-nav.scrolled {
  background: rgba(5, 27, 61, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-size: 1.05rem; }
.nav-brand .mark {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.02em; color: #fff; font-weight: 700;
}
.nav-logo { height: 44px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 560px) { .nav-logo { height: 36px; } }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: #d9e3f4;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }

/* Nav CTA buttons get their own refined treatment — smaller, quieter
   type with a touch of letter-spacing (reads more like a considered
   editorial pill than a generic form button), and a subtle light-sweep
   on the primary button instead of just a flat hover state. */
.nav-cta .btn {
  padding: 11px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.nav-cta .btn-outline.on-dark {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
}
.nav-cta .btn-outline.on-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
}
.nav-cta .btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px -10px rgba(0, 64, 159, 0.65);
}
.nav-cta .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.4) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.nav-cta .btn-primary:hover::after { transform: translateX(120%); }

.nav-account {
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--ink-soft); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: translateX(0); box-shadow: -30px 0 60px rgba(0,0,0,0.4); }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; width: 30px; z-index: 110; }
  .nav-toggle span { height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links a { padding: 10px 0; font-size: 1rem; }
  .nav-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; margin-top: 10px; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(200deg, var(--ink) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: hidden;
}
.hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  /* Let the actual footage read clearly — it's the whole point of putting
     a teaser video here. Legibility for the text over it comes from the
     bottom-weighted gradient in .hero::after below, not from washing out
     the footage itself with a flat blue tint. */
  opacity: 0.94;
}
.hero canvas#nexusField {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.35; mix-blend-mode: screen;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  /* Light at the top/middle (where the video itself is the focus), only
     deepening toward the bottom where the heading/countdown sit and where
     the section hands off into the next (solid) section below. */
  background: linear-gradient(180deg, rgba(0,27,74,0.08) 0%, rgba(0,27,74,0.05) 30%, rgba(0,27,74,0.4) 72%, rgba(5,27,61,0.88) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 100px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { max-width: 18ch; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold), var(--sky) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { margin-top: 22px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  display: flex; gap: 40px; margin-top: 70px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.16); padding-top: 28px;
}
@media (max-width: 700px) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 130px; padding-bottom: 60px; }
  .hero-meta { margin-top: 40px; gap: 26px; }
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a9c1e6; }
.hero-meta .v { font-family: var(--font-display); font-size: 1.15rem; }

/* countdown */
.hero-meta .countdown-wrap { flex: 1 1 100%; }
.countdown { display: flex; flex-direction: row; gap: 18px; margin-top: 6px; }
.countdown .unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-width: 96px;
  flex: 1 1 0;
  max-width: 160px;
  text-align: center;
}
.countdown .unit strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1.1; color: var(--gold); }
.countdown .unit span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #a9c1e6; }
@media (max-width: 620px) { .countdown { flex-wrap: wrap; } .countdown .unit { min-width: 70px; padding: 14px 16px; } .countdown .unit strong { font-size: 1.8rem; } }

/* ---------- secondary page banner header ---------- */
/* Used on every non-home page in place of the flat dark header — the
   official conference key-art (Atlantis + "Into The Blue" logo lockup)
   as a photographic backdrop, with a deep-blue gradient scrim for
   text legibility over the top. */
.page-banner {
  position: relative;
  padding-top: 170px;
  padding-bottom: 64px;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(190deg, rgba(0,43,110,0.35) 0%, rgba(5,27,61,0.82) 60%, var(--ink) 100%),
    url("../images/banner-resort.jpg");
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
.page-banner .container { position: relative; z-index: 1; }
@media (max-width: 700px) { .page-banner { padding-top: 130px; padding-bottom: 48px; } }

/* ---------- sections ---------- */
section { padding: 110px 0; position: relative; }
.section-sand { background: var(--sand); }
.section-dark {
  background: linear-gradient(200deg, var(--ink) 0%, var(--blue-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head h2 { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 700px) {
  section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card .num { font-family: var(--font-mono); color: var(--blue); font-size: 0.8rem; letter-spacing: 0.1em; }

.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 22px;
}

/* ---------- video features (teaser trailer) ---------- */
.video-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
  background: var(--ink);
  cursor: pointer;
}
.video-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video-feature:hover img { transform: scale(1.04); }
.video-feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,27,74,0.65) 0%, rgba(0,27,74,0.05) 45%);
}
.video-feature .play-btn {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.16); border: 2px solid rgba(255,255,255,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: transform .3s var(--ease), background .3s ease;
}
.video-feature:hover .play-btn { transform: scale(1.08); background: var(--gold); border-color: var(--gold); }
.video-feature .play-btn svg { fill: #fff; }
.video-feature:hover .play-btn svg { fill: var(--ink); }
.video-feature .caption {
  position: absolute; left: 24px; bottom: 20px; right: 24px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: #cfe0f7;
}
.video-feature video { width: 100%; height: 100%; object-fit: cover; }

.video-modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(0,10,26,0.9); align-items: center; justify-content: center; padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal .modal-inner { width: 100%; max-width: 960px; aspect-ratio: 16/9; position: relative; }
.video-modal video { width: 100%; height: 100%; border-radius: var(--radius-md); background: #000; }
.video-modal .modal-close {
  position: absolute; top: -46px; right: 0; color: #fff; font-size: 1rem; display: flex; align-items: center; gap: 8px;
}

/* ---------- welcome / message card (leadership graphic) ---------- */
.message-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 860px) { .message-card { grid-template-columns: 1fr; } }
.message-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.lang-toggle { display: inline-flex; gap: 8px; margin-top: 18px; }
.lang-toggle button {
  padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: 0.82rem; font-weight: 600; transition: all .2s ease;
}
.lang-toggle button.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- flyer downloads (official pricing graphics) ---------- */
.flyer-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.flyer-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 100px; border: 1.5px solid var(--line);
  font-size: 0.88rem; font-weight: 600; background: #fff;
  transition: border-color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}
.flyer-chip:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.flyer-chip .ico {
  width: 26px; height: 26px; border-radius: 50%; background: var(--sand); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flyer-chip.on-dark {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); color: #fff;
  backdrop-filter: blur(4px);
}
.flyer-chip.on-dark:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.flyer-chip.on-dark .ico { background: rgba(255,255,255,0.2); color: #fff; }

/* ---------- island network strip ---------- */
.island-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.island-chip {
  font-family: var(--font-mono); font-size: 0.78rem;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; display:flex; align-items:center; gap:8px;
}
.island-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lagoon); }

/* ---------- schedule ---------- */
.day-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.day-tab {
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid var(--line);
  font-weight: 600; font-size: 0.9rem; transition: all .25s ease; background: #fff;
}
.day-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.filter-bar {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  margin-bottom: 36px;
}
.filter-bar select, .filter-bar input[type="search"] {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--sand);
  min-width: 160px;
}
.filter-bar .count { margin-left: auto; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-muted); }

.session-list { display: flex; flex-direction: column; gap: 14px; }
.session-card {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.session-card:hover { transform: translateX(6px); box-shadow: var(--shadow-card); border-color: var(--blue); }
.session-time { font-family: var(--font-mono); font-size: 0.85rem; color: var(--lagoon); line-height: 1.4; }
.session-track {
  display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 10px; border-radius: 100px; margin-bottom: 8px;
}
.track-general { background: #E9EFFC; color: var(--blue); }
.track-leadership { background: #FDE7EF; color: var(--hibiscus); }
.track-service { background: #E1F7F5; color: #0A7D77; }
.track-professional-development { background: #FFF3DE; color: #9A6B00; }
.track-social { background: #FFE9E9; color: #C33; }
.session-loc { font-size: 0.85rem; color: var(--ink-muted); white-space: nowrap; }
@media (max-width: 720px) { .session-card { grid-template-columns: 1fr; text-align: left; } }

/* ---------- packages / pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@media (max-width: 480px) { .price-card { padding: 26px 22px; } }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 20px 50px -20px rgba(0,64,159,.35); }
.price-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; letter-spacing: 0.04em;
}
.price-amount { font-family: var(--font-display); font-size: 2.6rem; margin: 18px 0 4px; color: var(--blue-deep); }
.price-amount span { font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink-muted); font-weight: 400; }
.price-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; gap: 10px; font-size: 0.92rem; align-items: flex-start; }
.price-features li::before { content: "✓"; color: var(--lagoon); font-weight: 700; flex-shrink: 0; }

/* ---------- flyer gallery (official campaign graphics, displayed) ---------- */
.flyer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .flyer-gallery { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.flyer-card {
  display: block; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.flyer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.flyer-card-img { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--sand); }
.flyer-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.flyer-card:hover .flyer-card-img img { transform: scale(1.06); }
.flyer-card-body { padding: 20px 22px 24px; }
.flyer-card-body h3 { margin-top: 8px; font-size: 1.1rem; }
.flyer-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  color: var(--blue); font-weight: 600; font-size: 0.86rem;
}
.flyer-card:hover .flyer-card-link { color: var(--lagoon); }

/* Compact single/double-up version — used for teaser placements (home,
   About) that reference the full gallery rather than reproducing it. */
.flyer-strip { display: flex; gap: 20px; flex-wrap: wrap; }
.flyer-strip .flyer-card { flex: 1 1 200px; max-width: 240px; }
.flyer-strip .flyer-card-img { aspect-ratio: 4/3; }
.flyer-strip .flyer-card-body { padding: 14px 16px 18px; }
.flyer-strip .flyer-card-body h3 { font-size: 0.95rem; margin-top: 4px; }

/* ---------- speakers ---------- */
.speaker-card { text-align: center; }
.speaker-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-deep), var(--ink));
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-family: var(--font-display); font-size: 2.2rem; overflow: hidden;
}
.speaker-role { color: var(--blue); font-size: 0.85rem; font-weight: 600; margin: 6px 0 2px; }
.speaker-org { color: var(--ink-muted); font-size: 0.85rem; margin-bottom: 12px; }

/* ---------- forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px; max-width: 560px; margin: 0 auto; box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-card { padding: 28px 22px; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--sand); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lagoon); background: #fff; }
.field .hint { font-size: 0.78rem; color: var(--ink-muted); margin-top: 6px; }
.form-error {
  background: #FDE7EF; color: #A10E4C; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; margin-bottom: 18px; display: none;
}
.form-success {
  background: #E1F7F5; color: #0A5A61; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; margin-bottom: 18px; display: none;
}

/* ---------- dashboard ---------- */
.dash-shell { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .dash-shell { grid-template-columns: 1fr; } }
.dash-nav { background: var(--sand); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 110px; }
@media (max-width: 860px) { .dash-nav { position: static; } }
.dash-nav a { display: block; padding: 12px 14px; border-radius: 10px; font-weight: 600; font-size: 0.92rem; color: #4b5a76; }
.dash-nav a.active, .dash-nav a:hover { background: #fff; color: var(--blue); }
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; margin-bottom: 20px; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr; } }
.stat { background: var(--sand); border-radius: var(--radius-md); padding: 22px; }
.stat .n { font-family: var(--font-display); font-size: 2rem; color: var(--blue-deep); }
.stat .l { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-muted); }

.status-pill { display:inline-flex; padding: 5px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing:.04em; }
.status-confirmed { background: #E1F7F5; color: #0A5A61; }
.status-pending { background: #FFF3DE; color: #9A6B00; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(200deg, var(--ink) 0%, var(--blue-deep) 130%);
  color: #c7d4ea; padding: 80px 0 30px; position: relative; overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; position: relative; z-index: 1; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); margin-bottom: 18px; }
.footer-grid a, .footer-grid p { font-size: 0.9rem; display: block; margin-bottom: 10px; color: #a9baD6; }
.footer-grid a:hover { color: var(--gold); }
.footer-tagline { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 6px; }
.footer-logo { height: 68px; width: auto; display: block; margin-bottom: 18px; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease;
}
.social-row a svg { width: 17px; height: 17px; fill: #fff; }
.social-row a:hover { background: var(--hibiscus); border-color: var(--hibiscus); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px; position: relative; z-index: 1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: #7f93bd;
}
.footer-credit { color: var(--gold); font-weight: 600; text-decoration: none; }
.footer-credit:hover { color: var(--hibiscus); text-decoration: underline; }

/* ---------- misc utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.badge-soft { background: var(--sand); border-radius: 100px; padding: 6px 14px; font-size: .78rem; font-family: var(--font-mono); }
.divider { height: 1px; background: var(--line); margin: 32px 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: #fff; color: #000; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }
