:root {
  /* Premium Dark Glassmorphism Palette */
  --bg-base: #030305;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --text-faint: #52525b;

  /* Logo Accents for Glows */
  --accent-blue: #3b82f6;
  --accent-teal: #2dd4bf;
  --accent-yellow: #facc15;

  /* Glass Properties */
  --glass-bg: rgba(20, 20, 25, 0.4);
  --glass-bg-hover: rgba(30, 30, 38, 0.5);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glass-blur: blur(24px);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout & Spacing */
  --header-height: 4.5rem;
  --container: min(88rem, calc(100% - 4rem)); /* Wider container to zoom out */
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem; /* Smaller base font size to zoom out */
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient Background (The Glow behind the Glass) */
.ambient-background {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-base);
  pointer-events: none;
}

.ambient-orb {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem); /* Scaled down */
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem); /* Scaled down */
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 500; }

p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

/* Global Glass Class */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease-out-expo);
}

.glass-panel:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

/* Glass sections stay inside the page margins instead of touching the screen edges */
section.glass-panel {
  width: var(--container);
  margin-inline: auto;
}

section.glass-panel .container {
  width: calc(100% - 2 * clamp(1.5rem, 4vw, 4rem));
}

/* Sections */
.section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem); /* Reduced vertical padding */
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 3.5rem;
}

.section-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.brand:hover .brand-logo-wrap {
  transform: scale(1.05);
}

.brand-logo {
  height: 4.25rem;
  width: auto;
  object-fit: contain;
  /* Zooms into the artwork so it reads larger without growing the header bar */
  transform: scale(1.5);
  transform-origin: left center;
  pointer-events: none;
  /* Blends the logo's black background into the dark site background */
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

/* Floating glass pill navigation */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition:
    color 0.3s var(--ease-out-expo),
    background 0.3s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.site-nav a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Current page gets a glowing gradient pill */
.site-nav a.is-active {
  color: var(--text-main);
  background: linear-gradient(110deg, rgba(59, 130, 246, 0.35), rgba(45, 212, 191, 0.3));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 18px rgba(59, 130, 246, 0.25);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1101;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.55s var(--ease-out-expo),
    border-color 0.4s ease,
    box-shadow 0.45s var(--ease-out-expo),
    background 0.4s ease;
  overflow: visible;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent-blue), var(--accent-teal), var(--accent-yellow), var(--accent-blue));
  opacity: 0;
  transform: scale(0.85) rotate(0deg);
  transition:
    opacity 0.45s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
  z-index: -2;
}

.nav-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(8, 8, 12, 0.92);
  z-index: -1;
}

.nav-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.08);
  box-shadow:
    0 0 28px rgba(45, 212, 191, 0.35),
    0 0 60px rgba(59, 130, 246, 0.15);
}

.nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: scale(1) rotate(180deg);
  animation: navToggleRing 2.5s linear infinite;
}

@keyframes navToggleRing {
  to { transform: scale(1) rotate(540deg); }
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 50%, #2dd4bf 100%);
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.35);
  transform-origin: center;
  transition:
    transform 0.55s var(--ease-out-expo),
    opacity 0.35s ease,
    width 0.45s var(--ease-out-expo),
    background 0.4s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: linear-gradient(90deg, #ffffff 0%, #5eead4 100%);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.55);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 1.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 1.4rem;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Animated logo stage --- */
.hero-logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Negative margin pulls the tagline up, compensating for the empty space inside the logo file */
  margin-bottom: -4.5rem;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: min(100%, 26rem);
  height: auto;
  /* Blends the logo's black background into the dark site background */
  mix-blend-mode: screen;
  filter: brightness(1.15) drop-shadow(0 0 40px rgba(59, 130, 246, 0.25));
}

/* Floating particles drifting up through the hero */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -2rem;
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: var(--p-opacity, 0.5); }
  90% { opacity: var(--p-opacity, 0.5); }
  100% { transform: translateY(-110vh) translateX(var(--p-drift, 0px)); opacity: 0; }
}


.hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); /* Scaled down */
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: -1rem 0 2.25rem;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-meta span[aria-hidden] {
  color: var(--accent-teal);
}

.hero-countdown {
  gap: 1rem;
  padding: 0.75rem 1.6rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.25rem;
}

.countdown-value {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--accent-teal, #2dd4bf), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.countdown-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  color: var(--accent-teal);
}

.hero-countdown--message {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Subpage Hero */
.hero--small {
  min-height: 50vh;
  text-align: left;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.hero--small .hero-inner {
  align-items: flex-start;
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
}

.hero--small h1 {
  margin-bottom: 1rem;
}

.hero--small .hero-lead {
  margin-bottom: 0;
}

/* --- Animated hero title (modern word-by-word rise + flowing gradient) --- */
.title-animated {
  background: none;
  -webkit-text-fill-color: initial;
}

.title-animated .title-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.title-animated .title-word-inner {
  display: inline-block;
  transform: translateY(120%);
  background: linear-gradient(110deg, #ffffff 0%, #93c5fd 25%, #2dd4bf 50%, #facc15 75%, #ffffff 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    titleRise 0.85s var(--ease-out-expo) forwards,
    titleGradient 9s linear infinite;
}

@keyframes titleRise {
  to { transform: translateY(0); }
}

@keyframes titleGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Glowing accent line that draws itself under the title */
.hero--small h1::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.6);
  animation: drawLine 0.9s var(--ease-out-expo) 0.9s forwards;
}

@keyframes drawLine {
  to { width: 7rem; }
}

/* Lead text and actions float up after the title */
.hero--small .hero-lead,
.hero:not(.hero--small) .hero-lead,
.hero:not(.hero--small) .hero-actions {
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) forwards;
}

.hero--small .hero-lead { animation-delay: 0.75s; }
.hero:not(.hero--small) .hero-lead { animation-delay: 0.7s; }
.hero:not(.hero--small) .hero-actions { animation-delay: 0.95s; }

/* --- Animated hero lead (word-by-word blur-in with gradient accents) --- */
.hero:not(.hero--small) .hero-lead.lead-animated {
  opacity: 1;
  animation: none;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.lead-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(10px);
  animation: leadWordIn 0.75s var(--ease-out-expo) forwards;
}

@keyframes leadWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Key words get a subtle blue-teal sheen */
.lead-word--accent {
  font-weight: 500;
  background: linear-gradient(110deg, #93c5fd 0%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: leadWordIn 0.75s var(--ease-out-expo) forwards;
}

/* Dramatic logo entrance: blur-in + scale, then endless gentle float */
.hero:not(.hero--small) .hero-logo {
  opacity: 0;
  animation:
    logoReveal 1.3s var(--ease-out-expo) 0.1s forwards,
    logoFloat 6s ease-in-out 1.6s infinite;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
    filter: brightness(1.15) blur(20px) drop-shadow(0 0 0 rgba(59, 130, 246, 0));
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: brightness(1.15) blur(0) drop-shadow(0 0 40px rgba(59, 130, 246, 0.25));
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero buttons: pop in with a bounce + endless shine sweep on the primary */
.hero:not(.hero--small) .hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero:not(.hero--small) .hero-actions .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.5s ease-in-out 2s infinite;
}

@keyframes btnShine {
  0% { left: -80%; }
  40%, 100% { left: 130%; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-animated .title-word-inner,
  .hero--small h1::after,
  .hero--small .hero-lead,
  .hero:not(.hero--small) .hero-logo,
  .hero:not(.hero--small) .hero-lead,
  .hero:not(.hero--small) .hero-actions,
  .hero-particles span,
  .lead-word,
  .lead-word--accent,
  .hero:not(.hero--small) .hero-actions .btn-primary::after {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    width: auto;
  }

  .hero-particles {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem; /* Scaled down button padding */
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem; /* Scaled down button text */
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Partners marquee */
.partners {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.partners-inner {
  text-align: center;
  margin-bottom: 1.75rem;
}

.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partnersMarquee 28s linear infinite;
}

.partners-marquee-set {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 8vw, 6rem);
  margin: 0;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  list-style: none;
}

.partners-marquee-set li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.partner-logo {
  display: block;
  height: clamp(3.25rem, 8vw, 5rem);
  width: auto;
  max-width: min(14rem, 38vw);
  object-fit: contain;
  background: transparent;
}

.partner-logo[alt*="IRCC"] {
  height: clamp(2.25rem, 5vw, 3.25rem);
  max-width: min(24rem, 62vw);
}

@keyframes partnersMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2rem;
  }

  .partners-marquee-set[aria-hidden="true"] {
    display: none;
  }

  .partners-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-marquee-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1.5rem;
  }
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  display: grid;
  gap: 1.25rem;
}

.visual-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.visual-card--luxury {
  position: relative;
  gap: 1.5rem;
  padding: 1.35rem 1.6rem 1.35rem 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    border-color 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

.visual-card--luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.visual-card--luxury:hover {
  border-color: rgba(232, 213, 163, 0.22);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(59, 130, 246, 0.08);
}

.visual-card--luxury:hover::before {
  transform: translateX(120%);
}

.visual-mark {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 230, 200, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.visual-mark::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.5), rgba(232, 213, 163, 0.35), rgba(45, 212, 191, 0.45));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}

.visual-mark svg {
  width: 2rem;
  height: 2rem;
}

.visual-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.visual-card-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.75);
}

.visual-card-label {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-main);
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .visual-card--luxury::before {
    display: none;
  }

  .visual-card--luxury:hover {
    transform: none;
  }
}

.visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--text-main);
}

/* Experience */
.story-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.story-block {
  padding: 2rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  opacity: 0.5;
}

.highlight-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--accent-teal), transparent);
}

/* Values */
.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

blockquote {
  margin: 3rem 0 0;
  padding: 2rem;
  border-left: 2px solid var(--accent-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
}

.values-list {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0; margin: 0;
}

.values-list li {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

/* Details */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.details-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
}

.detail-item {
  padding: 2rem;
}

.detail-item dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.detail-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-main);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
}

.gallery-placeholder:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.contact-card {
  padding: 2.5rem;
  text-align: center;
}

.contact-org {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.contact-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-main);
  margin: 1.5rem 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s ease;
}

.contact-link:hover {
  border-color: var(--text-main);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-inline-link {
  color: var(--accent-teal);
  transition: color 0.3s ease;
}

.contact-inline-link:hover {
  color: var(--text-main);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-faint);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

.lang-toggle {
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out-expo);
}

.lang-toggle:hover {
  background: linear-gradient(110deg, rgba(59, 130, 246, 0.35), rgba(45, 212, 191, 0.3));
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-inner a {
  transition: color 0.3s ease;
}

.footer-inner a:hover {
  color: var(--text-main);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-child.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-child.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-child.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-child.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-child.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-child.active > *:nth-child(6) { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .values-inner, .details-grid, .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-blocks { grid-template-columns: 1fr; }
  .highlights, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    animation: navToggleIdle 3.5s ease-in-out infinite;
  }

  .nav-toggle[aria-expanded="true"] {
    animation: none;
  }

  @keyframes navToggleIdle {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
    50% { box-shadow: 0 0 0 7px rgba(59, 130, 246, 0.12); }
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 85% 8%, rgba(59, 130, 246, 0.18), transparent 42%),
      radial-gradient(circle at 15% 92%, rgba(45, 212, 191, 0.14), transparent 38%),
      rgba(5, 5, 7, 0.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 2.4rem) 2.25rem);
    transition:
      clip-path 0.75s var(--ease-out-expo),
      opacity 0.45s ease,
      visibility 0.75s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: circle(160% at calc(100% - 2.4rem) 2.25rem);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .site-nav li {
    opacity: 0;
    transform: translateY(1.75rem) scale(0.92);
    filter: blur(6px);
    transition:
      opacity 0.55s var(--ease-out-expo),
      transform 0.55s var(--ease-out-expo),
      filter 0.55s var(--ease-out-expo);
  }

  .site-nav.is-open li {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .site-nav.is-open li:nth-child(1) { transition-delay: 0.1s; }
  .site-nav.is-open li:nth-child(2) { transition-delay: 0.16s; }
  .site-nav.is-open li:nth-child(3) { transition-delay: 0.22s; }
  .site-nav.is-open li:nth-child(4) { transition-delay: 0.28s; }
  .site-nav.is-open li:nth-child(5) { transition-delay: 0.34s; }

  .site-nav a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    padding: 0.35rem 0.75rem;
    transition:
      color 0.3s ease,
      transform 0.35s var(--ease-out-expo),
      text-shadow 0.35s ease;
  }

  .site-nav.is-open a:hover {
    transform: translateX(6px) scale(1.04);
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.45);
  }

  .highlights, .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }

  .hero-countdown {
    flex-wrap: nowrap;
    gap: clamp(0.2rem, 1.2vw, 0.45rem);
    padding: 0.6rem 0.9rem;
    max-width: calc(100% - 1rem);
    margin-inline: auto;
  }

  .countdown-unit {
    min-width: 0;
    flex: 1 1 0;
  }

  .countdown-value {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
  }

  .countdown-label {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }

  .countdown-sep {
    flex-shrink: 0;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .nav-toggle,
  .nav-toggle::before,
  .nav-toggle-bar,
  .site-nav,
  .site-nav li {
    animation: none !important;
  }

  .site-nav {
    clip-path: none !important;
    transition: opacity 0.2s ease, visibility 0.2s !important;
  }

  .site-nav li {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .nav-toggle-bar {
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }
}
