@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');

:root {
  --color-primary:    #A3BDC4;
  --color-primary-lt: #BCBEC0;
  --color-brioche:    #D2BDA7;
  --color-accent:     #F8D7AC;
  --color-bg:         #FEFAF4;
  --color-surface:    rgba(255, 250, 244, 0.72);
  --color-surface-strong: rgba(255, 252, 247, 0.88);
  --color-text:       #231F20;
  --color-muted:      #414042;
  --color-border:     rgba(188, 190, 192, 0.48);
  --color-hero-bg:    rgba(255, 255, 255, 0.92);

  --font-body:        'Manrope', sans-serif;
  --font-heading:     'Manrope', sans-serif;

  --radius-sm:        10px;
  --radius-md:        18px;
  --radius-lg:        28px;
  --radius-xl:        44px;

  --shadow-soft:      0 18px 44px rgba(65, 64, 66, 0.07);
  --shadow-card:      0 24px 64px rgba(35, 31, 32, 0.11);

  --transition:       all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width:        980px;
  --nav-width:        1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(26.3px, 0.78vw + 23.9px, 31.2px);
  background:
    radial-gradient(circle at 12% 18%, rgba(163, 189, 196, 0.64), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(248, 215, 172, 0.72), transparent 28%),
    radial-gradient(circle at 62% 16%, rgba(188, 190, 192, 0.42), transparent 26%),
    radial-gradient(circle at 52% 78%, rgba(210, 189, 167, 0.28), transparent 32%),
    radial-gradient(circle at 28% 64%, rgba(163, 189, 196, 0.36), transparent 26%),
    radial-gradient(circle at 72% 62%, rgba(248, 215, 172, 0.42), transparent 24%),
    radial-gradient(circle at 44% 34%, rgba(210, 189, 167, 0.2), transparent 22%),
    radial-gradient(circle at 22% 86%, rgba(188, 190, 192, 0.24), transparent 20%),
    linear-gradient(180deg, #FFFDF9 0%, #FCF5E8 100%);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 14%, rgba(163, 189, 196, 0.44), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(248, 215, 172, 0.4), transparent 24%),
    radial-gradient(circle at 62% 18%, rgba(188, 190, 192, 0.26), transparent 22%),
    radial-gradient(circle at 58% 76%, rgba(210, 189, 167, 0.2), transparent 24%),
    radial-gradient(circle at 34% 48%, rgba(163, 189, 196, 0.28), transparent 22%),
    radial-gradient(circle at 70% 46%, rgba(248, 215, 172, 0.28), transparent 22%),
    radial-gradient(circle at 48% 30%, rgba(210, 189, 167, 0.12), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(188, 190, 192, 0.18), transparent 18%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(190px);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  mix-blend-mode: screen;
}

body::before {
  width: 1080px;
  height: 1080px;
  top: -4%;
  left: -220px;
  background:
    radial-gradient(circle at 34% 38%, rgba(163, 189, 196, 1), transparent 22%),
    radial-gradient(circle at 64% 60%, rgba(210, 189, 167, 0.84), transparent 24%),
    radial-gradient(circle at 50% 24%, rgba(248, 215, 172, 0.54), transparent 20%),
    radial-gradient(circle at 48% 50%, rgba(163, 189, 196, 0.54), transparent 34%);
  animation: site-orb-green 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

body::after {
  width: 1020px;
  height: 1020px;
  right: -210px;
  top: 22%;
  background:
    radial-gradient(circle at 34% 40%, rgba(248, 215, 172, 1), transparent 22%),
    radial-gradient(circle at 64% 62%, rgba(210, 189, 167, 0.92), transparent 24%),
    radial-gradient(circle at 28% 70%, rgba(163, 189, 196, 0.44), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(210, 189, 167, 0.42), transparent 34%);
  animation: site-orb-gold 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

html::before {
  content: '';
  position: fixed;
  width: 920px;
  height: 920px;
  left: 18%;
  bottom: -240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 40%, rgba(188, 190, 192, 0.72), transparent 22%),
    radial-gradient(circle at 60% 58%, rgba(163, 189, 196, 0.34), transparent 24%),
    radial-gradient(circle at 48% 32%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 52% 54%, rgba(188, 190, 192, 0.28), transparent 34%);
  filter: blur(180px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.92;
  mix-blend-mode: screen;
  animation: site-orb-grey 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.28;
  color: var(--color-text);
  letter-spacing: -0.024em;
  font-weight: 400;
  word-spacing: 0.08em;
  text-wrap: balance;
}

h1 { font-size: clamp(5.2rem, 9.1vw, 8.06rem); }
h2 { font-size: clamp(3.9rem, 7.02vw, 5.79rem); }
h3 { font-size: clamp(2.24rem, 3.9vw, 2.91rem); }
h4 { font-size: 1.85rem; font-family: var(--font-body); font-weight: 500; }

p {
  color: var(--color-muted);
  font-size: 1.74rem;
  line-height: 1.72;
  max-width: 58ch;
  font-weight: 500;
  text-wrap: pretty;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 64px 0;
  position: relative;
  background: transparent;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(22% 26% at 18% 30%, rgba(163, 189, 196, 0.12), transparent 74%),
    radial-gradient(18% 22% at 82% 62%, rgba(248, 215, 172, 0.1), transparent 74%);
  pointer-events: none;
  z-index: -1;
}

.section--alt {
  background:
    radial-gradient(24% 28% at 12% 22%, rgba(163, 189, 196, 0.18), transparent 72%),
    radial-gradient(28% 32% at 52% 50%, rgba(210, 189, 167, 0.12), transparent 72%),
    radial-gradient(24% 26% at 86% 68%, rgba(248, 215, 172, 0.16), transparent 74%);
  box-shadow: none;
}

.section-label {
  font-size: 1.27rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section-header {
  margin: 0 auto 34px;
  max-width: 620px;
}
.section-header p { margin-top: 14px; max-width: 44ch; }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 52px;
  border-radius: 100px;
  font-size: 1.56rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(248, 215, 172, 0.36), transparent 42%),
    radial-gradient(circle at 78% 50%, rgba(163, 189, 196, 0.28), transparent 46%);
  filter: blur(16px);
  opacity: 0.9;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(193, 212, 218, 0.99), rgba(163, 189, 196, 0.98));
  color: var(--color-text);
  border: 1px solid rgba(248, 215, 172, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 30px rgba(248, 215, 172, 0.24),
    0 18px 38px rgba(163, 189, 196, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(206, 223, 229, 1), rgba(173, 198, 205, 0.99));
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.46),
    0 0 38px rgba(248, 215, 172, 0.3),
    0 20px 42px rgba(163, 189, 196, 0.28);
}

.btn:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.btn:active {
  transform: translateY(-1px) scale(0.99);
  background: linear-gradient(135deg, rgba(214, 229, 234, 1), rgba(173, 198, 205, 0.99));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.48),
    0 0 40px rgba(248, 215, 172, 0.34),
    0 16px 30px rgba(163, 189, 196, 0.24);
}

.btn-accent {
  background: linear-gradient(135deg, rgba(248, 215, 172, 0.98), rgba(210, 189, 167, 0.96));
  color: var(--color-text);
  border: 1px solid rgba(248, 215, 172, 0.74);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 28px rgba(248, 215, 172, 0.28),
    0 16px 34px rgba(163, 189, 196, 0.18);
}

.btn-accent:hover {
  background: linear-gradient(135deg, rgba(251, 224, 188, 1), rgba(219, 198, 176, 0.99));
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44),
    0 0 34px rgba(248, 215, 172, 0.34),
    0 18px 40px rgba(163, 189, 196, 0.22);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.64);
  color: var(--color-text);
  border: 1.5px solid rgba(163, 189, 196, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 20px rgba(248, 215, 172, 0.18);
}

.btn-outline:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(222, 232, 235, 0.96));
  color: var(--color-text);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 18px 0 0;
  height: 112px;
  display: flex;
  align-items: center;
  background: rgb(168, 190, 200);
  border-bottom: none;
  transition: var(--transition);
  overflow: visible;
  box-shadow: none;
}

.navbar::before {
  content: none;
}

.navbar::after {
  content: none;
}

.navbar.scrolled {
  background: rgb(168, 190, 200);
  box-shadow: none;
}

.nav-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.nav-logo img {
  width: min(52vw, 620px);
  max-height: 92px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  display: block;
  margin: 0;
  filter: none;
  mix-blend-mode: normal;
}

.updates-banner-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 20px 18px;
  position: relative;
  z-index: 3;
}

.updates-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(248, 215, 172, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.98),
    0 0 20px rgba(248, 215, 172, 0.24);
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.updates-banner:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.98),
    0 0 20px rgba(248, 215, 172, 0.24);
}

.updates-banner-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.updates-banner-text {
  font-size: 1.46rem;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  margin-left: auto;
  min-width: 0;
  z-index: 1002;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(248, 215, 172, 0.98);
  transition: var(--transition);
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow:
    0 0 14px rgba(248, 215, 172, 0.16),
    0 0 22px rgba(248, 215, 172, 0.12);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff6e9;
  box-shadow: 0 0 20px rgba(248, 215, 172, 0.18);
}

.nav-links a.active {
  color: #fff7ec;
  font-weight: 600;
}

.nav-cta {
  background: linear-gradient(135deg, rgba(248, 215, 172, 0.98), rgba(210, 189, 167, 0.97)) !important;
  color: var(--color-text) !important;
  padding: 17px 39px !important;
  border: 1px solid rgba(248, 215, 172, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 26px rgba(248, 215, 172, 0.24),
    0 12px 30px rgba(163, 189, 196, 0.18);
}

.nav-cta:hover {
  background: linear-gradient(135deg, rgba(251, 224, 188, 1), rgba(218, 198, 176, 0.99)) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 32px rgba(248, 215, 172, 0.3),
    0 16px 34px rgba(163, 189, 196, 0.22) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(248, 215, 172, 0.98);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 114px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.splash-lock {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(34% 34% at 34% 38%, rgba(163, 189, 196, 0.34), transparent 72%),
    radial-gradient(30% 30% at 68% 58%, rgba(248, 215, 172, 0.28), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,248,0.92));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 900ms ease, clip-path 1200ms cubic-bezier(0.22, 1, 0.36, 1), transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0 0 0 round 0);
}

.splash-screen::before,
.splash-screen::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: splash-orb-float 6s ease-in-out infinite alternate;
}

.splash-screen::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(163, 189, 196, 0.56) 0%, transparent 72%);
  left: 14%;
  top: 18%;
}

.splash-screen::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(248, 215, 172, 0.46) 0%, transparent 72%);
  right: 16%;
  bottom: 14%;
  animation-duration: 5.2s;
}

.splash-screen.is-opening {
  opacity: 0;
  transform: translateY(-2%);
  clip-path: inset(0 0 100% 0 round 44px);
  pointer-events: none;
}

.splash-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.splash-mark img {
  width: min(34vw, 280px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(248, 215, 172, 0.46))
    drop-shadow(0 0 34px rgba(163, 189, 196, 0.32));
}

.splash-mark span {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  color: #111111;
  animation: splash-text-drift 4.8s ease-in-out infinite alternate;
  text-shadow:
    0 0 16px rgba(248, 215, 172, 0.18),
    0 0 24px rgba(163, 189, 196, 0.14);
}

.loading-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.loading-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  animation: logo-pulse 1.4s ease-in-out infinite alternate;
}

.form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  color: var(--color-muted);
}

.form-loading.is-hidden {
  display: none;
}

.form-loading img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  animation: logo-pulse 1.4s ease-in-out infinite alternate;
}

/* Fluid blurred background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.96;
}

/* Large slow-moving green orb */
.hero-bg::before {
  width: 920px;
  height: 920px;
  background:
    radial-gradient(circle at 34% 40%, rgba(163, 189, 196, 0.96), transparent 24%),
    radial-gradient(circle at 62% 58%, rgba(210, 189, 167, 0.52), transparent 26%),
    radial-gradient(circle at 48% 50%, rgba(255, 249, 242, 0.34), transparent 34%);
  top: -140px;
  left: -190px;
  animation: orb-drift-1 3.4s cubic-bezier(0.42, 0, 0.18, 1) infinite alternate;
}

/* Smaller accent orb */
.hero-bg::after {
  width: 660px;
  height: 660px;
  background:
    radial-gradient(circle at 36% 42%, rgba(248, 215, 172, 0.98), transparent 24%),
    radial-gradient(circle at 60% 58%, rgba(210, 189, 167, 0.58), transparent 26%),
    radial-gradient(circle at 52% 52%, rgba(255, 249, 242, 0.28), transparent 34%);
  bottom: -110px;
  right: -110px;
  animation: orb-drift-2 3s cubic-bezier(0.42, 0, 0.18, 1) infinite alternate;
}

/* Third orb via a child element */
.hero-bg-orb3 {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 40%, rgba(210, 189, 167, 0.72), transparent 24%),
    radial-gradient(circle at 60% 60%, rgba(163, 189, 196, 0.52), transparent 30%);
  filter: blur(120px);
  opacity: 0.88;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-drift-3 3.6s cubic-bezier(0.42, 0, 0.18, 1) infinite alternate;
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1) skew(0deg, 0deg); }
  25%  { transform: translate(60px, 34px) scale(1.12, 0.94) skew(3deg, -4deg); }
  50%  { transform: translate(26px, 102px) scale(0.92, 1.12) skew(-4deg, 3deg); }
  75%  { transform: translate(112px, 86px) scale(1.08, 0.96) skew(5deg, -2deg); }
  100% { transform: translate(84px, 24px) scale(1.02, 1.08) skew(-3deg, 4deg); }
}

@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1) skew(0deg, 0deg); }
  35%  { transform: translate(-48px, -58px) scale(1.12, 0.94) skew(-3deg, 5deg); }
  70%  { transform: translate(-112px, -18px) scale(0.92, 1.16) skew(4deg, -3deg); }
  100% { transform: translate(-82px, -94px) scale(1.04, 0.96) skew(-5deg, 2deg); }
}

@keyframes orb-drift-3 {
  0%   { transform: translate(-50%, -50%) scale(1, 1); }
  30%  { transform: translate(-42%, -58%) scale(1.14, 0.9); }
  60%  { transform: translate(-58%, -36%) scale(0.88, 1.14); }
  100% { transform: translate(-47%, -48%) scale(1.06, 0.96); }
}

/* Frosted glass overlay so text stays readable */
.hero-glass {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 48px 32px 56px;
  max-width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
  width: 100%;
}

.hero-wordmark {
  width: min(100%, 640px);
  border-radius: 0;
  margin-bottom: 18px;
  filter:
    drop-shadow(0 18px 28px rgba(163, 189, 196, 0.14))
    drop-shadow(0 0 26px rgba(248, 215, 172, 0.18));
}

.hero-contact-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 0 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
}

.hero-contact-panel h2 {
  margin-bottom: 14px;
}

.hero-contact-panel p {
  max-width: 100%;
}

.hero-mission {
  max-width: 20ch;
  margin: 0 auto 12px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.1vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #d2bda7;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.95),
    0 0 12px rgba(248, 215, 172, 0.32),
    0 0 18px rgba(255, 255, 255, 0.18);
}

.hero-mission-support {
  max-width: 34ch;
  margin: 0 auto 26px;
  font-size: 1.18rem;
  color: #414042;
}

.hero-visit-grid {
  width: min(720px, 100%);
  margin: 0 auto;
}

.hero-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.hero-directions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hero-contact-item {
  padding-top: 16px;
  border-top: 1px solid rgba(188, 190, 192, 0.28);
  justify-items: center;
}

.hero-contact-item:first-child {
  padding-top: 0;
  border-top: none;
}

.hero-contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.hero-contact-value {
  color: var(--color-text);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-image-wrap { position: relative; }

.hero-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.64);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.75);
}

.hero-stat-card.card-1 { bottom: 28px; left: -28px; }
.hero-stat-card.card-2 { top: 28px; right: -20px; }

.stat-number { font-family: var(--font-heading); font-size: 1.86rem; color: var(--color-primary); line-height: 1; }
.stat-label  { font-size: 0.92rem; color: var(--color-muted); margin-top: 5px; }

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, rgba(163, 189, 196, 0.84) 0%, rgba(210, 189, 167, 0.64) 48%, rgba(248, 215, 172, 0.8) 100%);
  padding: 56px 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.56);
  border-bottom: 1px solid rgba(255,255,255,0.38);
  border-left: 0;
  border-right: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.58),
    0 0 34px rgba(248, 215, 172, 0.14),
    0 0 56px rgba(163, 189, 196, 0.14);
}

.stats-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.1;
  z-index: 1;
}

.stats-carousel-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  height: 100%;
  gap: 0;
  will-change: transform;
}

.stats-carousel-slide {
  flex: 0 0 24vw;
  min-width: 260px;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  display: block;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.stats-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 215, 172, 0.28) 0%, transparent 68%);
  filter: blur(68px);
}

.stats-bar::after {
  content: '';
  position: absolute;
  inset: -80px auto auto -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 189, 196, 0.22) 0%, transparent 70%);
  filter: blur(70px);
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item .number { font-family: var(--font-heading); font-size: 3.45rem; color: var(--color-text); line-height: 1; font-weight: 400; }
.stat-item .label  { font-size: 1.06rem; color: rgba(65, 64, 66, 0.82); margin-top: 10px; font-weight: 400; }

/* Cards */
.card {
  background: var(--color-surface-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(188, 190, 192, 0.42);
}

.card h3   { margin-bottom: 12px; }
.card p    { font-size: 1.06rem; max-width: none; }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: stretch;
}

.first-feature {
  align-items: center;
}

.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.quick-links-grid {
  grid-template-columns: repeat(2, minmax(260px, 320px));
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.partner-card {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(248, 215, 172, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(248, 215, 172, 0.22),
    0 0 28px rgba(255, 255, 255, 0.18);
  justify-content: center;
  min-height: 112px;
  padding: 26px 20px;
}

.partner-card:hover {
  border-color: rgba(248, 215, 172, 1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.98),
    0 0 24px rgba(248, 215, 172, 0.28),
    0 0 34px rgba(255, 255, 255, 0.22);
}

.partner-card h3 {
  margin: 0;
}

.partner-card p {
  display: none;
}

.partner-summary {
  max-width: 36ch;
  margin: 18px auto 0;
  text-align: center;
}

/* Hours table */
.hours-layout {
  align-items: stretch;
}

.hours-panel {
  height: 100%;
  padding: 34px 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(250,250,249,0.78)),
    radial-gradient(circle at top left, rgba(163, 189, 196, 0.16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(248, 215, 172, 0.16), transparent 38%);
  border: 1px solid rgba(188, 190, 192, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 0 28px rgba(248, 215, 172, 0.08),
    0 18px 42px rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-panel p {
  max-width: 100%;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.68);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hours-table th {
  background: linear-gradient(135deg, rgba(193, 212, 218, 0.96), rgba(163, 189, 196, 0.94));
  color: var(--color-text);
  padding: 13px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hours-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.06rem;
  color: rgba(35, 31, 32, 0.84);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:nth-child(even) td { background: rgba(247, 248, 248, 0.8); }
.closed { color: var(--color-muted); font-style: italic; }

/* Announcements */
.update-card {
  background: var(--color-surface-strong);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.update-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.update-date  { font-size: 0.82rem; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.update-title { font-size: 1.2rem; font-weight: 600; color: var(--color-text); margin-bottom: 8px; font-family: var(--font-body); }
.update-body  { font-size: 1.05rem; color: var(--color-muted); max-width: 100%; }

.updates-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.update-image-button {
  margin-top: 12px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.update-image-button img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--color-surface-strong);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid rgba(163, 189, 196, 0.92);
  background: rgba(163, 189, 196, 0.36);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.72),
    0 0 26px rgba(248, 215, 172, 0.16),
    0 0 38px rgba(163, 189, 196, 0.22);
}

.team-name {
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--color-text);
  margin-bottom: 4px;
  text-shadow:
    0 0 12px rgba(248, 215, 172, 0.12),
    0 0 18px rgba(163, 189, 196, 0.16);
}
.team-role { font-size: 0.96rem; color: var(--color-muted); }
.team-days {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-surface-strong);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.12;
  position: absolute;
  top: 4px; left: 22px;
  line-height: 1;
}

.testimonial-text   { font-size: 1.1rem; color: var(--color-text); font-style: italic; margin-bottom: 20px; max-width: 100%; line-height: 1.78; }
.testimonial-author { font-size: 0.96rem; font-weight: 600; color: var(--color-primary); }

/* Forms */
.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: var(--color-text);
  background: rgba(255,255,255,0.78);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(163, 189, 196, 0.18);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Donation */
.donation-amounts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.amount-btn {
  padding: 11px 22px;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  background: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text);
  font-family: var(--font-body);
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(193, 212, 218, 0.98), rgba(163, 189, 196, 0.96));
  color: var(--color-text);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 20px rgba(248, 215, 172, 0.22),
    0 12px 28px rgba(163, 189, 196, 0.18);
}

.paypal-wrap {
  background: var(--color-hero-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.paypal-wrap p { margin: 0 auto 18px; font-size: 1.04rem; }

/* Gallery */
.gallery-section {
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: auto;
  transform: none;
  margin-left: calc(50% - 50vw);
  margin-top: 10px;
}

.gallery-track-wrap {
  width: 100vw;
  overflow: hidden;
  padding: 0;
}

.gallery-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  align-items: stretch;
}

.gallery-slide {
  flex: 0 0 25vw;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  min-width: 0;
  display: block;
  height: min(26vw, 300px);
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.55s ease;
}

.gallery-slide:hover img {
  transform: scale(1.02);
}

.gallery-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(35, 31, 32, 0.56);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1801;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  pointer-events: none;
}

.gallery-lightbox[hidden],
.gallery-lightbox-backdrop[hidden] {
  display: none;
}

.gallery-lightbox img,
.gallery-lightbox-close {
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(92vw, 1080px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(35, 31, 32, 0.28);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1802;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.update-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(35, 31, 32, 0.56);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.update-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1801;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 40px 24px;
  pointer-events: none;
}

.update-lightbox[hidden],
.update-lightbox-backdrop[hidden] {
  display: none;
}

.update-lightbox img,
.update-lightbox-copy,
.update-lightbox-close {
  pointer-events: auto;
}

.update-lightbox img {
  max-width: min(92vw, 980px);
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(35, 31, 32, 0.28);
}

.update-lightbox-copy {
  text-align: center;
  color: white;
}

.update-lightbox-copy h3 {
  color: white;
  margin-bottom: 8px;
}

.update-lightbox-copy p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto;
}

.update-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1802;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* ── Footer — seamless, no blocks ── */
.footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(247,248,248,0.7));
  color: rgba(35, 31, 32, 0.74);
  padding: 68px 28px 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(188, 190, 192, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Floating footer glow */
.footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 12%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 189, 196, 0.2) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  animation: footer-orb-left 8s ease-in-out infinite alternate;
}

.footer::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 215, 172, 0.18) 0%, transparent 72%);
  filter: blur(52px);
  pointer-events: none;
  animation: footer-orb-right 9s ease-in-out infinite alternate;
}

.footer-inner {
  max-width: var(--nav-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* No border — seamless transition to bottom bar */
.footer-brand p {
  font-size: 1.02rem;
  margin-top: 14px;
  max-width: 28ch;
  color: rgba(65, 64, 66, 0.72);
  line-height: 1.7;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.footer-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(248, 215, 172, 0.34))
    drop-shadow(0 0 24px rgba(163, 189, 196, 0.22));
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(65, 64, 66, 0.56);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  font-size: 1rem;
  color: rgba(35, 31, 32, 0.78);
  margin-bottom: 11px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--color-primary); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(35, 31, 32, 0.7);
  border: 1px solid rgba(188, 190, 192, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-link:hover {
  background: rgba(163, 189, 196, 0.72);
  color: var(--color-text);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Seamless divider — just a very faint line, no box */
.footer-divider {
  max-width: var(--nav-width);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(188, 190, 192, 0.32), transparent);
}

.footer-bottom {
  max-width: var(--nav-width);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(65, 64, 66, 0.62);
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 132px 28px 72px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Subtle orb on inner page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background:
    radial-gradient(42% 44% at 38% 42%, rgba(163, 189, 196, 0.52), transparent 64%),
    radial-gradient(54% 56% at 54% 54%, rgba(223, 232, 236, 0.2), transparent 72%);
  filter: blur(82px);
  pointer-events: none;
  animation: page-hero-green 7.5s ease-in-out infinite alternate;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 8%;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(42% 44% at 38% 42%, rgba(248, 215, 172, 0.42), transparent 64%),
    radial-gradient(54% 56% at 54% 54%, rgba(255, 241, 217, 0.18), transparent 72%);
  filter: blur(82px);
  pointer-events: none;
  animation: page-hero-gold 8.5s ease-in-out infinite alternate;
}

.page-hero p { margin: 16px auto 0; font-size: 1.2rem; position: relative; }
.page-hero h1 { position: relative; }
.page-hero .container { position: relative; }

/* Breadcrumb */
.breadcrumb { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 14px; position: relative; }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* Crew cards */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.crew-card {
  background: var(--color-surface-strong);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.crew-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(188, 190, 192, 0.42);
}

.crew-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  color: var(--color-primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}

/* Sponsors */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 22px;
}

.sponsor-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,250,249,0.84)),
    radial-gradient(circle at top left, rgba(163, 189, 196, 0.2), transparent 42%),
    radial-gradient(circle at bottom right, rgba(248, 215, 172, 0.18), transparent 40%);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(188, 190, 192, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 0 26px rgba(248, 215, 172, 0.12),
    0 18px 42px rgba(35, 31, 32, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card:hover {
  border-color: rgba(188, 190, 192, 0.42);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.sponsor-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  display: inline-block;
  font-family: var(--font-body);
}

.tier-gold      { background: #FFF8DC; color: #B8860B; }
.tier-silver    { background: #F5F5F5; color: #708090; }
.tier-community { background: rgba(163, 189, 196, 0.24); color: var(--color-primary); }

/* Timeline */
.timeline-entry {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-card {
  background: var(--color-surface-strong);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(188, 190, 192, 0.42);
}

.timeline-card.left  { margin-right: 28px; }
.timeline-card.right { margin-left: 28px; }

.timeline-year {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.timeline-dot-wrap {
  display: flex;
  justify-content: center;
  padding-top: 26px;
}

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
  flex-shrink: 0;
}

.brand-band {
  background: linear-gradient(135deg, rgba(163, 189, 196, 0.8) 0%, rgba(210, 189, 167, 0.68) 52%, rgba(248, 215, 172, 0.82) 100%);
  padding: 72px 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.brand-band::before,
.brand-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}

.brand-band::before {
  width: 360px;
  height: 360px;
  top: -140px;
  left: 8%;
  background: radial-gradient(circle, rgba(163, 189, 196, 0.3) 0%, transparent 72%);
}

.brand-band::after {
  width: 320px;
  height: 320px;
  right: 10%;
  bottom: -140px;
  background: radial-gradient(circle, rgba(248, 215, 172, 0.28) 0%, transparent 72%);
}

.brand-band h2,
.brand-band p {
  position: relative;
}

.brand-band h2 {
  color: var(--color-text);
}

.brand-band p {
  color: rgba(65, 64, 66, 0.82);
}

.timeline-dot.accent {
  background: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border) 10%, var(--color-border) 90%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
  .nav-inner             { gap: 14px; }
  .nav-logo img          { width: min(48vw, 560px); max-height: 78px; }
  .nav-links a           { padding: 9px 12px; font-size: 0.92rem; }
  .nav-cta               { padding: 10px 22px !important; }
  .footer-logo           { font-size: 1.72rem; }
  .footer-logo img       { width: 54px; height: 54px; }
}

@media (max-width: 1240px) {
  .nav-inner             { gap: 12px; }
  .nav-logo img          { width: min(42vw, 460px); max-height: 70px; }
  .footer-logo           { font-size: 1.6rem; }
  .footer-logo img       { width: 48px; height: 48px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    background: rgba(163, 189, 196, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 6px;
    border: 1px solid rgba(248, 215, 172, 0.24);
    border-radius: 24px;
    box-shadow: 0 10px 34px rgba(35, 31, 32, 0.12);
    z-index: 1100;
  }

  .nav-links.open { display: flex; }
  .nav-links a    { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-toggle     { display: flex; }
}

@media (max-width: 1100px) {
  .grid-3                { grid-template-columns: 1fr 1fr; }
  .section-header        { margin-bottom: 40px; }
  .stats-bar-inner       { gap: 24px; }
}

@media (max-width: 900px) {
  html                  { font-size: 17px; }
  .hero-inner            { padding: 36px 24px; }
  .hero-contact-panel    { padding-top: 12px; }
  .hero-visit-grid       { grid-template-columns: 1fr; }
  .grid-3                { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner          { grid-template-columns: 1fr 1fr; gap: 36px; }
  .crew-grid             { grid-template-columns: 1fr; }
  .gallery-slide         { flex-basis: 34vw; }
  .gallery-slide img     { width: 100%; height: 210px; }

  /* Timeline collapses to single column */
  .timeline-entry {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  .timeline-line         { display: none; }
  .timeline-dot-wrap     { display: none; }
  .timeline-card.left,
  .timeline-card.right   { margin: 0 0 0 16px; border-left: 3px solid var(--color-primary); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
  .timeline-card.right   { border-left-color: var(--color-accent); }
  .nav-logo img          { width: min(56vw, 360px); max-height: 64px; }
  .footer-logo           { font-size: 1.5rem; }
  .footer-logo img       { width: 46px; height: 46px; }
  .splash-mark img       { width: min(40vw, 240px); }
  .splash-mark span      { font-size: clamp(2rem, 6vw, 3.2rem); }
  .stats-bar             { padding: 48px 24px; }
}

@media (max-width: 640px) {
  html                  { font-size: 16.4px; }
  .section               { padding: 64px 0; }
  .grid-3                { grid-template-columns: 1fr; }
  .partner-grid          { grid-template-columns: 1fr 1fr; }
  .grid-2                { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .stats-bar-inner       { grid-template-columns: 1fr 1fr; }
  .footer-inner          { grid-template-columns: 1fr; gap: 32px; }
  .gallery-track         { gap: 0; }
  .gallery-slide         { flex-basis: 58vw; }
  .gallery-slide img     { width: 100%; height: 180px; }
  .hero-stat-card        { display: none; }
  .footer-bottom         { flex-direction: column; gap: 8px; text-align: center; }
  .container             { padding: 0 20px; }
  .nav-logo img          { width: min(64vw, 300px); max-height: 58px; }
  .footer-logo           { font-size: 1.34rem; gap: 10px; }
  .footer-logo img       { width: 42px; height: 42px; }
  .btn                   { width: 100%; justify-content: center; }
  .stats-bar             { padding: 40px 18px; }
  .page-hero             { padding: 124px 20px 64px; }
  .hours-panel           { padding: 28px 22px; }
  .form-shell            { padding: 14px; }
  .splash-mark img       { width: min(52vw, 220px); }
  .splash-mark span      { font-size: clamp(2rem, 8vw, 2.9rem); }
}

@keyframes site-orb-green {
  0%   { transform: translate3d(0, 0, 0) scale(1, 1); }
  20%  { transform: translate3d(134px, 28px, 0) scale(1.24, 0.84); }
  40%  { transform: translate3d(214px, 168px, 0) scale(0.8, 1.26); }
  60%  { transform: translate3d(98px, 286px, 0) scale(1.18, 0.9); }
  80%  { transform: translate3d(-54px, 194px, 0) scale(0.9, 1.16); }
  100% { transform: translate3d(42px, 44px, 0) scale(1.14, 0.94); }
}

@keyframes site-orb-gold {
  0%   { transform: translate3d(0, 0, 0) scale(1, 1); }
  20%  { transform: translate3d(-122px, 46px, 0) scale(1.22, 0.86); }
  40%  { transform: translate3d(-236px, 182px, 0) scale(0.82, 1.22); }
  60%  { transform: translate3d(-138px, 306px, 0) scale(1.18, 0.88); }
  80%  { transform: translate3d(36px, 212px, 0) scale(0.9, 1.14); }
  100% { transform: translate3d(-54px, 58px, 0) scale(1.12, 0.94); }
}

@keyframes site-orb-grey {
  0%   { transform: translate3d(0, 0, 0) scale(1, 1); }
  20%  { transform: translate3d(104px, -24px, 0) scale(1.2, 0.9); }
  40%  { transform: translate3d(182px, -138px, 0) scale(0.84, 1.2); }
  60%  { transform: translate3d(62px, -242px, 0) scale(1.16, 0.9); }
  80%  { transform: translate3d(-74px, -162px, 0) scale(0.92, 1.12); }
  100% { transform: translate3d(28px, -42px, 0) scale(1.1, 0.96); }
}

@keyframes page-hero-green {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-42%) translateY(58px) scale(1.08); }
}

@keyframes page-hero-gold {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-42px, -64px, 0) scale(1.12); }
}

@keyframes footer-orb-left {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(80px, 36px, 0) scale(1.08); }
}

@keyframes footer-orb-right {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-60px, -44px, 0) scale(1.1); }
}

@keyframes splash-orb-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(48px, -34px, 0) scale(1.12); }
}

@keyframes splash-text-drift {
  0%   { transform: translate3d(0, 0, 0); letter-spacing: -0.06em; }
  100% { transform: translate3d(0, -10px, 0); letter-spacing: -0.045em; }
}

@keyframes logo-pulse {
  0%   { transform: scale(0.94); opacity: 0.72; }
  100% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 400px) {
  html { font-size: 16px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.8rem; }
  .btn { padding: 13px 24px; font-size: 0.96rem; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .nav-logo img { width: min(68vw, 240px); max-height: 48px; }
  .footer-logo { font-size: 1.18rem; }
  .footer-logo img { width: 38px; height: 38px; }
  .splash-mark img { width: min(60vw, 200px); }
  .splash-mark span { font-size: 1.8rem; }
}
