:root {
  --color-bg: #0d1117;
  --color-bg-2: #111827;
  --color-surface: rgba(255,255,255,0.06);
  --color-surface-hover: rgba(255,255,255,0.10);
  --color-border: rgba(255,255,255,0.10);
  --color-border-light: rgba(255,255,255,0.06);
  --color-text: #e8edf5;
  --color-text-muted: #8b9ab0;
  --color-text-faint: #4a5568;
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-glow: rgba(99,102,241,0.35);
  --color-accent: #a78bfa;
  --color-accent-warm: #c4b5fd;
  --color-gold: #fbbf24;
  --color-success: #34d399;
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%);
  --grad-hero: linear-gradient(160deg, #0d1117 0%, #1a1040 40%, #0f172a 100%);
  --grad-card: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(167,139,250,0.06) 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
  --shadow-card-hover: 0 12px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(99,102,241,0.25), inset 0 1px 0 rgba(255,255,255,0.10);
  --shadow-nav: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.4);
  --shadow-btn: 0 4px 16px rgba(99,102,241,0.4), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-btn-hover: 0 8px 32px rgba(99,102,241,0.55), 0 2px 8px rgba(0,0,0,0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: clamp(8px, 1vw, 12px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-md: clamp(20px, 3vw, 32px);
  --space-lg: clamp(32px, 5vw, 64px);
  --space-xl: clamp(56px, 8vw, 112px);
  --nav-height: 72px;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body.canvas {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-light); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

.stage { flex: 1; }


.nav-rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.nav-rail.nav--solid {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
}

.nav-rail.nav--hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img { width: 32px; height: 32px; }

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--color-primary-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-primary);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  color: #fff;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger:hover { border-color: var(--color-primary-light); }


.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  z-index: 1000;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.drawer--open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.drawer-close:hover { background: var(--color-surface-hover); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.drawer-link:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.drawer-cta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-primary);
  padding: 13px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  text-align: center;
  transition: box-shadow 0.25s ease;
  box-shadow: var(--shadow-btn);
  margin-top: auto;
}

.drawer-cta:hover {
  color: #fff;
  box-shadow: var(--shadow-btn-hover);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.backdrop--visible {
  opacity: 1;
  pointer-events: all;
}

#pageContent {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#pageContent.content--pushed {
  transform: translateX(-32px) scale(0.97);
  transform-origin: left center;
}


.stage-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.stage-curtain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(13,17,23,0.88) 0%,
    rgba(26,16,64,0.75) 40%,
    rgba(13,17,23,0.85) 100%
  );
}

.stage-curtain--dark {
  background: linear-gradient(
    160deg,
    rgba(13,17,23,0.95) 0%,
    rgba(13,17,23,0.90) 100%
  );
}

.stage-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: var(--space-xl) var(--space-md);
  padding-bottom: calc(var(--space-xl) + 120px);
}

.stage-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.stage-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.stage-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stage-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-primary);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn-primary--large {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}


.shelf--hero-cards {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  padding: 0 var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
  transform: translateY(50%);
}


.spotlight--card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.spotlight--card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.spotlight--card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  background: rgba(255,255,255,0.10);
}

.spotlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.spotlight--card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.spotlight--card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.animated-border-card {
  position: relative;
}

.animated-border-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--color-primary) 0deg,
    var(--color-accent) 0deg,
    transparent 0deg
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animated-border-card:hover::after {
  opacity: 1;
  animation: border-draw 1.2s ease forwards;
}

@keyframes border-draw {
  0% {
    background: conic-gradient(from 0deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 0deg, transparent 0deg);
  }
  25% {
    background: conic-gradient(from 0deg, transparent 0deg, var(--color-primary) 90deg, var(--color-accent) 90deg, transparent 90deg);
  }
  50% {
    background: conic-gradient(from 0deg, transparent 0deg, var(--color-primary) 180deg, var(--color-accent) 180deg, transparent 180deg);
  }
  75% {
    background: conic-gradient(from 0deg, transparent 0deg, var(--color-primary) 270deg, var(--color-accent) 270deg, transparent 270deg);
  }
  100% {
    background: conic-gradient(from 0deg, var(--color-primary) 0deg, var(--color-accent) 180deg, var(--color-primary) 360deg);
  }
}


.stage-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.stage-page-hero--short {
  min-height: 38vh;
}

.stage-hero-content--page {
  text-align: left;
  padding-bottom: var(--space-xl);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.stage-headline--page {
  font-size: clamp(2rem, 5vw, 3.8rem);
}


.gallery {
  padding: var(--space-xl) 0;
}

.gallery--intro {
  padding-top: calc(var(--space-xl) + 80px);
}

.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.gallery-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.gallery-inner--narrow {
  max-width: 860px;
  display: block;
}

.gallery-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.gallery-inner--split-contact {
  align-items: start;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.body-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.gallery-text-block p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.gallery-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
}

.gallery-map-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}


.gallery--modules {
  background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.04) 50%, transparent 100%);
}

.gallery--format {
  background: linear-gradient(180deg, transparent 0%, rgba(26,16,64,0.3) 50%, transparent 100%);
}


.shelf--modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  width: 100%;
  margin-top: var(--space-md);
}

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

.spotlight--module {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.spotlight--module::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.spotlight--module:hover::after {
  transform: scaleX(1);
}

.spotlight--module:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99,102,241,0.25);
}

.module-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.spotlight--module h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.spotlight--module p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.format-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-sm);
}

.format-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.format-list li i {
  color: var(--color-success);
  font-size: 0.8rem;
  flex-shrink: 0;
}


.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-md);
  width: 100%;
  justify-content: center;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  max-width: 220px;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 20px var(--color-primary-glow);
  position: relative;
  z-index: 1;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary-light);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin-top: 28px;
  opacity: 0.4;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-top: 2px solid var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.6;
}


.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
  width: 100%;
  margin-top: var(--space-md);
}

.image-grid-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.image-grid-item--large {
  grid-row: 1 / 3;
}

.image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 200px;
}

.image-grid-item--large img {
  min-height: 400px;
}

.image-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(99,102,241,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
}

.image-grid-item:hover .image-grid-overlay {
  background: rgba(99,102,241,0.35);
  opacity: 1;
}

.image-grid-item:hover img {
  transform: scale(1.04);
}


.gallery--contact {
  padding-top: var(--space-xl);
}

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form-block p {
  color: var(--color-text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.required-mark {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 44px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary-light);
  background: rgba(99,102,241,0.05);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-faint);
}

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

.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.btn-submit {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  align-self: flex-start;
  min-height: 44px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.spotlight--contact-card,
.spotlight--workspace {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}

.spotlight--contact-card:hover,
.spotlight--workspace:hover {
  box-shadow: var(--shadow-card-hover);
}

.spotlight--contact-card h3,
.spotlight--workspace h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.spotlight--workspace p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-item i {
  color: var(--color-primary-light);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-primary-light);
}


.map-container {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.gallery--map-full {
  padding-top: 0;
}


.gallery--cta-final {
  background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.06) 50%, transparent 100%);
}

.spotlight--cta-block {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow-card), 0 0 80px rgba(99,102,241,0.08);
  position: relative;
  overflow: hidden;
}

.spotlight--cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
}

.spotlight--cta-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.spotlight--cta-block p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}


.gallery--story .gallery-inner--narrow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.story-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.story-block p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.story-image-block img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.spotlight--value {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}

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

.spotlight--value i {
  font-size: 1.4rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.spotlight--value h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.spotlight--value p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.gallery--faq .gallery-inner--narrow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(99,102,241,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  min-height: 44px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-primary-light);
}

.faq-question i {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.faq-answer--open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


.gallery--location {
  background: linear-gradient(180deg, transparent 0%, rgba(26,16,64,0.2) 50%, transparent 100%);
}


.thanks-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-xl) var(--space-md);
}

.thanks-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.thanks-dot {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  box-shadow: 0 0 60px var(--color-primary-glow);
  animation: dot-scale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform: scale(0);
}

@keyframes dot-scale {
  to { transform: scale(1); }
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fade-up 0.6s ease 0.7s forwards;
}

.thanks-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  animation: fade-up 0.6s ease 1.2s forwards;
}

.thanks-link:hover {
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.gallery--legal {
  padding-top: var(--space-xl);
}

.legal-doc {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding: var(--space-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.legal-doc h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.legal-doc p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-doc a {
  color: var(--color-primary-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-table th,
.legal-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  vertical-align: top;
}

.legal-table th {
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255,255,255,0.03);
}

.legal-table td:first-child {
  width: 40%;
  white-space: nowrap;
}


.footer-stage {
  position: relative;
  background: rgba(7,10,15,0.98);
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(99,102,241,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(167,139,250,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-logo {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav-group h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.footer-nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-group li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-nav-group a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-group a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-faint);
}


.cookie-panel {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100%;
  z-index: 9999;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}

.cookie-panel.cookie-panel--visible {
  transform: translateX(0);
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.cookie-shield {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.cookie-panel-header h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.cookie-panel-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cookie-category-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}

.cookie-btn-accept {
  width: 100%;
  padding: 12px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
  box-shadow: var(--shadow-btn);
  min-height: 44px;
}

.cookie-btn-accept:hover {
  box-shadow: var(--shadow-btn-hover);
}

.cookie-btn-reject {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
}

.cookie-btn-reject:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.cookie-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.cookie-links a {
  font-size: 0.72rem;
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-links a:hover {
  color: var(--color-primary-light);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-overlay.cookie-overlay--visible {
  opacity: 1;
  pointer-events: all;
}


@media (max-width: 1024px) {
  .shelf--hero-cards {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(30%);
  }

  .gallery--intro {
    padding-top: calc(var(--space-xl) + 200px);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .process-track {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .shelf--hero-cards {
    grid-template-columns: 1fr;
    position: relative;
    transform: none;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .stage-hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .stage-hero-content {
    padding-bottom: var(--space-md);
  }

  .gallery--intro {
    padding-top: var(--space-xl);
  }

  .gallery-inner {
    grid-template-columns: 1fr;
  }

  .gallery-inner--split {
    grid-template-columns: 1fr;
  }

  .gallery-inner--split .gallery-image-block {
    order: -1;
  }

  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .image-grid-item--large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .shelf--modules {
    grid-template-columns: 1fr;
  }

  .shelf--modules-2col {
    grid-template-columns: 1fr;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .cookie-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--color-border);
    top: auto;
    bottom: 0;
    height: auto;
    max-height: 90vh;
    transform: translateY(100%);
  }

  .cookie-panel.cookie-panel--visible {
    transform: translateY(0);
  }

  .gallery-inner--split-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stage-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .btn-primary, .btn-ghost {
    justify-content: center;
  }

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

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

  .process-track {
    flex-direction: column;
    align-items: center;
  }

  .legal-table td:first-child {
    width: auto;
    white-space: normal;
  }
}