@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --navy-950: #050b1d;
  --navy-900: #0b1f4d;
  --navy-800: #122b64;
  --blue-500: #2563eb;
  --blue-600: #1d4ed8;
  --blue-700: #1e40af;
  --blue-50: #eff6ff;
  --accent: #38bdf8;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-150: #edf2f7;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --surface: #f5f7fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
  --shadow-md: 0 10px 20px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 22px 45px rgb(15 23 42 / 0.12);
  --shadow-xl: 0 28px 70px rgb(5 11 29 / 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--slate-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

.filled {
  fill: currentColor;
}

.hidden {
  display: none !important;
}

.section {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
}

.section-soft {
  background: var(--surface);
}

.section h2,
.section-row-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font: 700 clamp(2rem, 4vw, 2.5rem) / 1.12 var(--font-display);
}

.section p {
  color: var(--slate-600);
  line-height: 1.7;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-header.compact {
  max-width: 560px;
}

.section-header p {
  margin: 0;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span:not(:last-child):not(.icon),
.eyebrow.centered > span {
  width: 28px;
  height: 2px;
  background: var(--blue-500);
}

.eyebrow-dark {
  color: #dbeafe;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 13px 24px;
  font-size: 0.875rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 10px 24px rgb(37 99 235 / 0.15);
}

.btn-primary:hover {
  background: var(--navy-900);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 22px 45px rgb(5 11 29 / 0.2);
}

.btn-ghost {
  color: var(--white);
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 0.2);
}

.btn-dark {
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--blue-600);
}

.btn-outline {
  color: var(--slate-600);
  background: transparent;
  border: 1px solid var(--slate-200);
}

.full {
  width: 100%;
}

.icon-button,
.round-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--slate-500);
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.icon-button:hover,
.round-button:hover {
  color: var(--blue-500);
  background: var(--slate-100);
}

.round-button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-block: 20px;
  background: rgb(245 247 250 / 0.75);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(4px);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  background: rgb(255 255 255 / 0.9);
  border-bottom-color: rgb(241 245 249 / 0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-small .brand-logo {
  height: 46px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  border-radius: 10px;
  padding: 10px 14px;
  color: rgb(11 31 77 / 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-500);
  background: rgb(241 245 249 / 0.6);
}

.header-cta {
  border-radius: 999px;
  padding-inline: 24px;
}

.mobile-toggle,
.mobile-drawer {
  display: none;
}

.mobile-toggle .close-icon,
.site-header.menu-open .mobile-toggle .menu-icon {
  display: none;
}

.site-header.menu-open .mobile-toggle .close-icon {
  display: block;
}

.mobile-drawer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  background: rgb(255 255 255 / 0.95);
  border-top: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition: height 0.25s ease, opacity 0.25s ease;
}

.mobile-drawer.open {
  height: auto;
  opacity: 1;
}

.mobile-drawer-inner {
  padding: 24px 16px;
}

.mobile-drawer a:not(.btn) {
  display: block;
  border-radius: 14px;
  padding: 13px 16px;
  color: rgb(11 31 77 / 0.8);
  font-weight: 700;
}

.mobile-drawer a:not(.btn):hover {
  color: var(--blue-500);
  background: var(--slate-50);
}

.mobile-contact {
  width: 100%;
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 128px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.blur-orb,
.section-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.orb-left {
  top: 25%;
  left: 10%;
  background: rgb(37 99 235 / 0.1);
}

.orb-right {
  right: 10%;
  bottom: 25%;
  background: rgb(56 189 248 / 0.08);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.2;
}

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

.hero-grid,
.dream-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-text {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font: 800 clamp(2.5rem, 6vw, 4rem) / 1.08 var(--font-display);
}

.hero h1 span {
  color: #bfdbfe;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgb(239 246 255 / 0.8);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}

.value-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.value-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 0.875rem;
}

.value-tags .icon {
  color: var(--accent);
}

.hero-media {
  grid-column: span 5;
  position: relative;
}

.media-glow {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: linear-gradient(45deg, var(--blue-500), var(--accent));
  opacity: 0.2;
  filter: blur(28px);
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: var(--shadow-xl);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  transition: transform 0.7s ease;
}

.image-card:hover img {
  transform: scale(1.02);
}

.hero-image {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
}

.hero-image::after,
.dream-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(5 11 29 / 0.8), transparent 55%);
}

.image-overlay-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 20px;
  padding: 16px;
  background: rgb(11 31 77 / 0.9);
  backdrop-filter: blur(12px);
}

.overlay-icon,
.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--accent);
  background: rgb(56 189 248 / 0.2);
}

.image-overlay-card strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
}

.image-overlay-card small {
  color: var(--slate-400);
  font-size: 0.75rem;
}

.about-section,
.dream-section,
.events-section,
.testimonials-section,
.footer {
  background: var(--white);
}

.section-orb {
  background: rgb(37 99 235 / 0.05);
}

.section-orb.accent {
  background: rgb(56 189 248 / 0.08);
}

.top-right {
  top: -80px;
  right: -80px;
}

.bottom-left {
  bottom: -80px;
  left: -80px;
}

.top-left {
  top: -80px;
  left: -80px;
}

.mid-left {
  top: 30%;
  left: 8%;
}

.mid-right {
  right: 8%;
  bottom: 30%;
}

.contact-orb {
  right: -80px;
  bottom: -80px;
  height: 384px;
}

.section-copy {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section-copy p {
  margin: 0;
  font-size: 1.05rem;
}

.section-copy .muted {
  color: var(--slate-500);
  font-size: 1rem;
}

.micro-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--slate-100);
}

.micro-counters strong {
  display: block;
  color: var(--blue-500);
  font: 800 2rem / 1 var(--font-display);
}

.micro-counters span {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tabs-panel {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tabs {
  display: flex;
  border-radius: 14px;
  padding: 4px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.tab-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--slate-500);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 800;
  transition: all 0.25s ease;
}

.tab-button .icon {
  color: var(--blue-500);
}

.tab-button.active {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-content {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  padding: 32px;
  background: rgb(248 250 252 / 0.5);
}

.tab-pane {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--blue-500);
  background: var(--blue-50);
}

.tab-pane h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font: 800 1.25rem / 1.2 var(--font-display);
}

.commitment {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 16px;
  color: var(--slate-500);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment .icon {
  color: var(--blue-500);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  display: flex;
  gap: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 20px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: rgb(37 99 235 / 0.2);
  box-shadow: var(--shadow-sm);
}

.value-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--blue-500);
  background: var(--blue-50);
}

.value-card strong {
  color: var(--navy-900);
  font: 800 0.875rem / 1.2 var(--font-display);
}

.value-card p {
  margin: 4px 0 0;
  color: var(--slate-500);
  font-size: 0.75rem;
  line-height: 1.6;
}

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

.service-card,
.stat-card {
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.lift-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgb(37 99 235 / 0.2);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--blue-500);
  background: var(--blue-50);
  transition: color 0.25s ease, background 0.25s ease;
}

.service-card:hover .card-icon {
  color: var(--white);
  background: var(--blue-500);
}

.service-card h3,
.stat-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font: 800 1.125rem / 1.25 var(--font-display);
  transition: color 0.25s ease;
}

.service-card:hover h3 {
  color: var(--blue-500);
}

.service-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.875rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: var(--blue-500);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button:hover {
  color: var(--blue-600);
}

.text-button .icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.25s ease;
}

.text-button:hover .icon {
  transform: translateX(4px);
}

.dream-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.dream-intro .section-copy {
  grid-column: auto;
}

.dream-heading {
  max-width: 760px;
  text-align: left;
}

.dream-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
}

.dream-logo-wrap img {
  width: min(70%, 260px);
  height: auto;
  object-fit: contain;
}

.dream-media {
  grid-column: span 5;
  position: relative;
}

.dream-content {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dream-image {
  aspect-ratio: 1170 / 873;
  border-color: var(--slate-100);
  border-radius: 32px;
  background: var(--slate-50);
  box-shadow: var(--shadow-lg);
}

.dream-image img {
  object-fit: contain;
  background: var(--slate-50);
}

.dream-image:hover img {
  transform: none;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--blue-500);
  background: #dbeafe;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.badge .icon {
  fill: currentColor;
  width: 0.875rem;
  height: 0.875rem;
}

.mini-heading strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-heading p {
  margin: 10px 0 0;
  color: var(--slate-500);
  font-size: 0.875rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  padding: 16px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}

.accordion-item.active {
  border-color: rgb(37 99 235 / 0.2);
  background: #f2f5fa;
  box-shadow: var(--shadow-sm);
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--slate-500);
  background: var(--slate-100);
  transition: all 0.25s ease;
}

.accordion-item.active .accordion-icon {
  color: var(--white);
  background: var(--blue-500);
}

.accordion-item > div {
  flex: 1;
}

.accordion-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  padding: 0;
  text-align: left;
  font: 600 1rem / 1.3 var(--font-display);
}

.accordion-item.active .accordion-title {
  color: var(--blue-500);
  font-weight: 800;
}

.accordion-title .icon {
  color: var(--slate-400);
  transition: transform 0.25s ease, color 0.25s ease;
}

.accordion-item.active .accordion-title .icon {
  color: var(--blue-500);
  transform: rotate(90deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.accordion-item.active .accordion-body {
  max-height: 220px;
  opacity: 1;
}

.accordion-body p {
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 0.875rem;
}

.accordion-body blockquote {
  margin: 16px 0 0;
  padding: 12px 0 0 12px;
  border-top: 1px solid rgb(226 232 240 / 0.6);
  border-left: 2px solid var(--blue-500);
  color: var(--slate-500);
  font-size: 0.75rem;
  font-style: italic;
}

.section-action {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.section-action span:last-child {
  color: var(--slate-500);
  font-size: 0.75rem;
}

.impact-section {
  padding-block: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 24px;
}

.stat-number {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.stat-number strong {
  color: var(--navy-900);
  font: 800 3rem / 1 var(--font-display);
}

.stat-number span {
  color: var(--blue-500);
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-card p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-500);
  font-size: 0.8rem;
}

.section-row-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.section-row-heading > div:first-child {
  max-width: 580px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 6px;
  background: var(--slate-50);
}

.gallery-filters {
  width: max-content;
  max-width: 100%;
  margin: -40px auto 48px;
  background: var(--white);
  border-color: var(--slate-150);
  box-shadow: var(--shadow-sm);
}

.filter-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 9px 16px;
  color: var(--slate-500);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.filter-tabs button:hover {
  color: var(--slate-800);
  background: var(--slate-100);
}

.filter-tabs button.active {
  color: var(--white);
  background: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  padding: 32px;
  background: rgb(248 250 252 / 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}

.event-row:hover {
  transform: scale(1.005);
  background: rgb(241 245 249 / 0.55);
}

.date-stamp {
  width: 128px;
  flex: 0 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--slate-150);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.date-stamp strong {
  color: var(--blue-500);
  font: 800 0.75rem / 1 var(--font-mono);
  letter-spacing: 0.18em;
}

.date-stamp span {
  color: var(--navy-900);
  font: 800 2.5rem / 1 var(--font-display);
}

.date-stamp small,
.type-pill {
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--slate-500);
  background: var(--slate-100);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-info {
  flex: 1;
  text-align: left;
}

.event-info > span {
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-info h3 {
  margin: 8px 0;
  color: var(--slate-900);
  font: 800 1.25rem / 1.3 var(--font-display);
}

.event-info p {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--slate-600);
  font-size: 0.875rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid var(--slate-100);
  padding-top: 16px;
  color: var(--slate-500);
  font-size: 0.75rem;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-meta .icon {
  width: 1rem;
  height: 1rem;
  color: var(--blue-500);
}

.event-action {
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid rgb(226 232 240 / 0.6);
}

.gallery-section {
  background: var(--slate-50);
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--slate-150);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background: rgb(5 11 29 / 0.8);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.15);
  backdrop-filter: blur(8px);
}

.gallery-overlay small {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-overlay h3 {
  margin: 4px 0;
  font: 800 1.125rem / 1.2 var(--font-display);
}

.gallery-overlay p {
  margin: 0;
  color: var(--slate-300);
  font-size: 0.75rem;
}

.allies-section {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
  border-block: 1px solid rgb(226 232 240 / 0.6);
  background: var(--slate-50);
}

.allies-section p {
  margin: 0 0 32px;
  color: var(--slate-400);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-edge {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
}

.marquee-edge.left {
  left: 0;
  background: linear-gradient(to right, var(--slate-50), transparent);
}

.marquee-edge.right {
  right: 0;
  background: linear-gradient(to left, var(--slate-50), transparent);
}

.scrolling-carousel-track {
  display: flex;
  gap: 32px;
  width: calc(250px * 16);
  animation: scroll 30s linear infinite;
}

.ally-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 80px;
  border: 1px solid var(--slate-150);
  border-radius: 14px;
  padding: 16px 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  filter: grayscale(1);
  transition: filter 0.25s ease, border-color 0.25s ease;
}

.ally-card:hover {
  border-color: rgb(37 99 235 / 0.2);
  filter: grayscale(0);
}

.ally-card img {
  max-height: 100%;
  object-fit: contain;
}

.testimonial-wrap {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 48px;
}

.quote-bg {
  position: absolute;
  top: -54px;
  left: 16px;
  color: var(--blue-50);
  font-size: 150px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.5;
  user-select: none;
}

.testimonial-card {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  padding: 48px;
  background: rgb(248 250 252 / 0.75);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.stars .icon {
  width: 1rem;
  height: 1rem;
}

.testimonial-card > p {
  margin: 24px 0;
  color: var(--slate-700);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--slate-150);
  padding-top: 24px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 2px solid var(--blue-500);
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--navy-900);
  font: 800 1rem / 1.25 var(--font-display);
}

.testimonial-author span {
  color: var(--slate-500);
  font-size: 0.75rem;
}

.testimonial-author strong {
  color: var(--blue-500);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: var(--slate-300);
  transition: width 0.25s ease, background 0.25s ease;
}

.dots button.active {
  width: 24px;
  background: var(--blue-500);
}

.contact-grid {
  align-items: start;
}

.contact-info {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}

.contact-info h2 {
  margin: 0;
  color: var(--navy-900);
  font: 800 clamp(2rem, 4vw, 2.5rem) / 1.12 var(--font-display);
}

.contact-info > p {
  margin: -16px 0 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--blue-500);
  background: var(--blue-50);
}

.contact-item h4 {
  margin: 0 0 4px;
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  display: block;
  color: var(--navy-900);
  font: 800 1.1rem / 1.3 var(--font-display);
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: var(--blue-500);
}

.contact-item small {
  display: block;
  color: var(--slate-500);
  font-size: 0.75rem;
}

.social-block {
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
}

.social-block h4 {
  margin: 0 0 16px;
  color: var(--slate-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  color: var(--slate-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.contact-form-zone {
  grid-column: span 7;
}

.form-card {
  border: 1px solid var(--slate-100);
  border-radius: 32px;
  padding: 40px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  margin: 0 0 24px;
  color: var(--navy-900);
  font: 800 1.25rem / 1.2 var(--font-display);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--slate-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  padding: 13px 16px;
  color: var(--slate-800);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-500);
}

.invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444 !important;
}

.field-error {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding-block: 16px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.success-box {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  padding: 16px;
  color: #065f46;
  background: #ecfdf5;
  text-align: left;
}

.success-box .icon {
  color: #059669;
}

.success-box strong,
.success-box span {
  display: block;
}

.success-box span {
  margin-top: 2px;
  color: #047857;
  font-size: 0.75rem;
  line-height: 1.5;
}

.success-box button {
  border: 0;
  color: #059669;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
}

.inbox-block {
  margin-top: 32px;
  text-align: left;
}

.inbox-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--slate-150);
  border-radius: 14px;
  padding: 12px;
  color: var(--blue-500);
  background: var(--slate-50);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.inbox-message {
  border: 1px solid var(--slate-150);
  border-radius: 20px;
  padding: 20px;
  background: var(--slate-50);
}

.inbox-message > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.inbox-message h4,
.inbox-message p {
  margin: 0;
}

.inbox-message h4 {
  color: var(--slate-800);
}

.inbox-message p {
  color: var(--slate-500);
  font-size: 0.75rem;
}

.inbox-message strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-500);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inbox-message > p {
  margin-top: 12px;
  border-left: 2px solid var(--slate-300);
  padding-left: 12px;
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.6;
}

.inbox-message small {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--slate-400);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.inbox-message button {
  border: 0;
  color: var(--slate-400);
  background: transparent;
}

.inbox-message button:hover {
  color: #ef4444;
}

.footer {
  position: relative;
  border-top: 1px solid rgb(241 245 249 / 0.8);
  padding: 64px 0 32px;
  color: var(--slate-600);
}

.footer-line {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(to right, transparent, rgb(37 99 235 / 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 48px;
  padding-bottom: 48px;
  text-align: left;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer h4 {
  margin: 0 0 16px;
  border-left: 2px solid var(--blue-500);
  padding-left: 12px;
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-menu,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-menu a:hover,
.footer-menu .highlight,
.footer-bottom a:hover {
  color: var(--blue-500);
}

.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-500);
}

.footer-contact .icon {
  color: var(--blue-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--slate-100);
  padding-top: 32px;
  color: var(--slate-400);
  font-size: 0.75rem;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-widget {
  position: fixed;
  z-index: 40;
  left: 24px;
  bottom: 24px;
}

.support-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(to right, #ef4444, #e11d48);
  box-shadow: 0 18px 35px rgb(225 29 72 / 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 40px rgb(225 29 72 / 0.35);
}

.support-panel {
  position: absolute;
  left: 0;
  bottom: 64px;
  width: min(384px, calc(100vw - 48px));
  border: 1px solid var(--slate-150);
  border-radius: 28px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  text-align: left;
  animation: fadeInUp 0.25s ease both;
}

.support-head,
.support-head > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.support-head h4 {
  margin: 0;
  color: var(--navy-900);
  font: 800 0.875rem / 1.25 var(--font-display);
}

.support-head small {
  color: #ef4444;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-panel p {
  color: var(--slate-600);
  font-size: 0.75rem;
  line-height: 1.55;
}

.help-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-lines div,
.confidential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--slate-150);
  border-radius: 14px;
  padding: 12px;
  background: var(--slate-50);
}

.help-lines .icon {
  color: #f43f5e;
}

.help-lines strong {
  display: block;
  color: var(--slate-800);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.help-lines a {
  color: #e11d48;
  font-size: 0.875rem;
  font-weight: 800;
}

.confidential {
  margin-top: 16px;
  color: var(--blue-600);
  background: var(--blue-50);
  font-size: 0.62rem;
  font-weight: 600;
}

.modal-shell,
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-shell.scrollable {
  overflow-y: auto;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(5 11 29 / 0.7);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 672px);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.event-modal {
  width: min(100%, 512px);
}

.modal-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px;
}

.modal-header.dark {
  color: var(--white);
  background: var(--navy-900);
}

.modal-header > div {
  display: flex;
  gap: 12px;
}

.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--accent);
  background: rgb(255 255 255 / 0.1);
}

.modal-header small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-header h3 {
  margin: 4px 0 0;
  font: 800 clamp(1.25rem, 4vw, 1.5rem) / 1.2 var(--font-display);
}

.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 24px 32px;
}

.modal-body p {
  margin: 0 0 24px;
  color: var(--slate-600);
  line-height: 1.7;
}

.modal-body h4 {
  margin: 0 0 16px;
  color: var(--navy-900);
  font: 800 0.875rem / 1.2 var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list div {
  display: flex;
  gap: 12px;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 12px;
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.875rem;
}

.benefit-list .icon {
  color: var(--blue-500);
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--slate-100);
  padding: 16px 32px;
  background: var(--slate-50);
}

.modal-footer > span {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 600;
}

.modal-footer > div {
  display: flex;
  gap: 8px;
}

.floating-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.rsvp-form-stage,
.ticket-stage {
  padding: 32px;
  text-align: left;
}

.rsvp-form-stage h3,
.ticket-stage h3 {
  margin: 12px 0 8px;
  color: var(--slate-900);
  font: 800 1.5rem / 1.2 var(--font-display);
}

.rsvp-form-stage > p,
.ticket-stage > p {
  color: var(--slate-500);
  font-size: 0.8rem;
}

.event-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--slate-100);
  border-radius: 20px;
  margin: 24px 0;
  padding: 16px;
  color: var(--slate-600);
  background: var(--slate-50);
  font-size: 0.75rem;
}

.event-modal-meta span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-modal-meta .icon {
  color: var(--blue-500);
}

.ticket-stage {
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: #10b981;
  background: #ecfdf5;
}

.success-icon .icon {
  width: 40px;
  height: 40px;
}

.ticket-card {
  position: relative;
  margin: 24px 0;
  border: 1px dashed var(--slate-200);
  border-radius: 20px;
  padding: 24px;
  background: var(--slate-50);
  text-align: left;
}

.ticket-card > small {
  display: block;
  color: var(--blue-500);
  font: 800 0.6rem / 1 var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticket-card h4 {
  margin: 8px 0 16px;
  color: var(--slate-800);
  font: 800 1rem / 1.25 var(--font-display);
}

.ticket-card > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--slate-150);
  padding-top: 16px;
}

.ticket-card span small,
.ticket-card span strong {
  display: block;
}

.ticket-card span small {
  color: var(--slate-400);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.ticket-card span strong {
  color: var(--slate-700);
  font-size: 0.75rem;
}

.lightbox {
  background: rgb(5 11 29 / 0.95);
}

.lightbox-close {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  color: rgb(255 255 255 / 0.6);
}

.lightbox-close:hover {
  color: var(--white);
  background: rgb(255 255 255 / 0.1);
}

.lightbox-card {
  position: relative;
  z-index: 2;
  width: min(100%, 896px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.05);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.lightbox-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lightbox-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: var(--white);
  background: var(--navy-900);
  text-align: left;
}

.lightbox-card span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-card h3 {
  margin: 4px 0 0;
  font: 800 1.25rem / 1.2 var(--font-display);
}

.lightbox-card p {
  max-width: 360px;
  margin: 0;
  color: var(--slate-400);
  font-size: 0.875rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.fade-in {
  animation: fadeIn 0.3s ease both;
}

.fade-in-up {
  animation: fadeInUp 0.25s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8));
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle,
  .mobile-drawer {
    display: block;
  }

  .hero-grid,
  .dream-grid,
  .dream-intro,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text,
  .hero-media,
  .section-copy,
  .tabs-panel,
  .dream-media,
  .dream-content,
  .contact-info,
  .contact-form-zone {
    grid-column: auto;
  }

  .hero-media {
    max-width: 560px;
    justify-self: center;
    width: 100%;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
  }

  .dream-image {
    aspect-ratio: 1170 / 873;
  }

  .dream-logo-wrap {
    min-height: auto;
    padding: 8px 24px 0;
  }

  .dream-logo-wrap img {
    width: min(42%, 220px);
  }

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

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

  .section-row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-row {
    flex-direction: column;
  }

  .date-stamp {
    width: 100%;
    flex-direction: row;
    flex-basis: auto;
  }

  .date-stamp small {
    display: none;
  }

  .event-action {
    width: 100%;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgb(226 232 240 / 0.6);
  }

  .event-action .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    padding-block: 16px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero {
    padding: 128px 0 96px;
  }

  .hero-actions,
  .section-action,
  .modal-footer,
  .modal-footer > div,
  .footer-bottom,
  .footer-bottom > div {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn,
  .section-action .btn,
  .modal-footer .btn {
    width: 100%;
  }

  .value-tags,
  .values-grid,
  .card-grid,
  .stats-grid,
  .gallery-grid,
  .form-row,
  .ticket-card > div,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    overflow-x: auto;
  }

  .tab-button {
    min-width: 110px;
    padding-inline: 12px;
  }

  .tab-content,
  .form-card,
  .testimonial-card,
  .rsvp-form-stage,
  .ticket-stage {
    padding: 24px;
  }

  .event-row {
    padding: 24px;
  }

  .gallery-filters {
    margin-top: -32px;
  }

  .testimonial-wrap {
    padding-inline: 0;
  }

  .quote-bg {
    display: none;
  }

  .testimonial-controls {
    justify-content: space-between;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .support-widget {
    left: 16px;
    bottom: 16px;
  }

  .support-trigger span {
    display: none;
  }

  .dream-logo-wrap {
    padding-inline: 16px;
  }

  .dream-logo-wrap img {
    width: min(58%, 190px);
  }

  .lightbox-card > div {
    display: block;
  }

  .lightbox-card p {
    margin-top: 12px;
  }
}
