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

:root {
  --aurora-1: #6ee7f7;
  --aurora-2: #a78bfa;
  --aurora-3: #34d399;
  --aurora-4: #f472b6;
  --primary: #1e1b4b;
  --secondary: #4f46e5;
  --accent: #06b6d4;
  --surface: rgba(255,255,255,0.92);
  --surface-dark: rgba(255,255,255,0.06);
  --text-dark: #1e1b4b;
  --text-body: #374151;
  --text-light: rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.55);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  --shadow-glow: 0 0 24px rgba(110,231,247,0.15), 0 8px 32px rgba(0,0,0,0.2);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Epilogue', sans-serif;
  background: #0f0e2a;
  color: var(--text-body);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.25s ease, opacity 0.25s ease; }

.ld-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  width: 100%;
}


.ld-aurora-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.ld-aurora-bg::before {
  content: '';
  position: absolute; inset: -50%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #6ee7f720 0deg, #a78bfa30 80deg, #34d39920 160deg,
    #f472b615 240deg, #06b6d425 320deg, #6ee7f720 360deg
  );
  animation: ld-aurora-spin 20s linear infinite;
  border-radius: 50%;
}
.ld-aurora-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, #6ee7f715 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, #a78bfa18 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 10%, #34d39912 0%, transparent 50%);
  animation: ld-aurora-pulse 8s ease-in-out infinite alternate;
}
@keyframes ld-aurora-spin { to { transform: rotate(360deg); } }
@keyframes ld-aurora-pulse { 0% { opacity: .6; } 100% { opacity: 1; } }


.ld-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.ld-nav.ld-nav--solid {
  background: rgba(15,14,42,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(110,231,247,0.08);
}
.ld-nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.ld-nav__logo img { width: 40px; height: 40px; }
.ld-nav__logo-text {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  letter-spacing: -0.02em;
}
.ld-nav__links {
  display: flex; gap: 2rem; list-style: none;
}
.ld-nav__links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}
.ld-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  transition: width 0.3s ease; border-radius: 2px;
}
.ld-nav__links a:hover, .ld-nav__links a.ld-active { color: #fff; }
.ld-nav__links a:hover::after, .ld-nav__links a.ld-active::after { width: 100%; }
.ld-nav__cta {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; padding: 0.6rem 1.4rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ld-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.4);
}
.ld-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.ld-hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ld-hamburger.ld-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ld-hamburger.ld-open span:nth-child(2) { opacity: 0; }
.ld-hamburger.ld-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ld-mobile-menu {
  display: none; flex-direction: column;
  background: rgba(15,14,42,0.98);
  backdrop-filter: blur(20px);
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease;
  position: relative; z-index: 99;
}
.ld-mobile-menu.ld-open { max-height: 400px; }
.ld-mobile-menu a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  padding: 1rem 2rem; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.ld-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }


.ld-hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 2rem 4rem;
}
.ld-hero__inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ld-hero__eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--aurora-1);
  margin-bottom: 1.25rem;
}
.ld-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.ld-hero__title span {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ld-hero__desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px;
}
.ld-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.ld-btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Epilogue', sans-serif; border: none; cursor: pointer;
}
.ld-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79,70,229,0.45);
  color: #fff;
}
.ld-btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
  backdrop-filter: blur(8px);
}
.ld-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px); color: #fff;
}

.ld-hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(110,231,247,0.06);
}
.ld-hero__card-quote {
  font-size: 1.05rem; color: rgba(255,255,255,0.9);
  line-height: 1.7; font-style: italic;
  margin-bottom: 1.5rem; position: relative;
  padding-left: 1.5rem;
}
.ld-hero__card-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.2rem;
  font-size: 2rem; color: var(--aurora-1);
  font-style: normal; line-height: 1;
}
.ld-hero__card-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ld-hero__card-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ld-hero__card-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.ld-hero__card-role { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.ld-hero__card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ld-tag {
  background: rgba(110,231,247,0.12);
  border: 1px solid rgba(110,231,247,0.25);
  color: var(--aurora-1);
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500;
}


.ld-page-hero {
  position: relative; z-index: 1;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, rgba(15,14,42,0) 0%, rgba(15,14,42,0.4) 100%);
}
.ld-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  margin-top: 1rem; margin-bottom: 1rem;
}
.ld-page-hero__desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 600px; line-height: 1.7;
}


.ld-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.ld-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.ld-breadcrumb a:hover { color: var(--aurora-1); }
.ld-breadcrumb span:last-child { color: rgba(255,255,255,0.85); }


.ld-main { position: relative; z-index: 1; }


.ld-section {
  padding: var(--space-12) 0;
  position: relative;
}
.ld-section:nth-child(even) {
  background: rgba(255,255,255,0.02);
}
.ld-section-header {
  text-align: center; margin-bottom: var(--space-8);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.ld-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--aurora-1);
  display: block; margin-bottom: 0.75rem;
}
.ld-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 1rem;
}
.ld-section-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}


.ld-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
@container services-grid (min-width: 700px) {
  .ld-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@container services-grid (min-width: 1000px) {
  .ld-services-grid { grid-template-columns: repeat(4, 1fr); }
}
.ld-service-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.ld-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(110,231,247,0.3);
}
.ld-service-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(79,70,229,0.3), rgba(6,182,212,0.3));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--aurora-1);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(79,70,229,0.2);
}
.ld-service-card__title {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.ld-service-card__text {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.ld-service-card__link {
  color: var(--aurora-1); text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.25s ease, color 0.25s ease;
}
.ld-service-card__link:hover { gap: 0.7rem; color: #fff; }


.ld-journey-track {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap;
  position: relative;
}
.ld-journey-step {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.ld-journey-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ld-journey-step__num {
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 1rem;
}
.ld-journey-step__body h3 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.5rem;
}
.ld-journey-step__body p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.ld-journey-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.5rem; color: rgba(110,231,247,0.5);
  font-size: 1.2rem; align-self: center;
  flex-shrink: 0;
}


.ld-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.ld-gallery-item {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ld-gallery-item--wide {
  grid-column: span 2;
}
.ld-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ld-gallery-item:hover img { transform: scale(1.06); }
.ld-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,14,42,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  color: #fff; font-size: 1.5rem;
  backdrop-filter: blur(2px);
}
.ld-gallery-item:hover .ld-gallery-overlay { opacity: 1; }
.ld-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}


.ld-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.ld-badge-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.ld-badge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.3);
}
.ld-badge-card__icon {
  font-size: 1.75rem; color: var(--aurora-2);
  margin-bottom: 1rem;
}
.ld-badge-card__title {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.5rem;
}
.ld-badge-card__text {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.65;
}


.ld-about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@container about-inner (max-width: 700px) {
  .ld-about-inner { grid-template-columns: 1fr; }
}
.ld-about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 48px rgba(110,231,247,0.08);
  position: relative;
}
.ld-about-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(6,182,212,0.1));
  pointer-events: none;
}
.ld-about-image img {
  width: 100%; height: 400px; object-fit: cover;
  transition: transform 0.5s ease;
}
.ld-about-image:hover img { transform: scale(1.03); }
.ld-about-content { color: rgba(255,255,255,0.75); }
.ld-about-content p { line-height: 1.75; font-size: 1rem; }


.ld-cta-section { padding: var(--space-12) 0; }
.ld-cta-box {
  background: linear-gradient(135deg, rgba(79,70,229,0.25), rgba(6,182,212,0.2));
  border: 1px solid rgba(110,231,247,0.2);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(79,70,229,0.12);
}
.ld-cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.ld-cta-box p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
}


.ld-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@container team-grid (min-width: 700px) {
  .ld-team-grid { grid-template-columns: repeat(2, 1fr); }
}
.ld-team-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ld-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.ld-team-card__img {
  height: 280px; overflow: hidden; position: relative;
}
.ld-team-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ld-team-card:hover .ld-team-card__img img { transform: scale(1.05); }
.ld-team-card__body { padding: 2rem; }
.ld-team-card__name {
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin-bottom: 0.25rem;
}
.ld-team-card__role {
  font-size: 0.875rem; color: var(--aurora-1);
  font-weight: 500; margin-bottom: 1rem;
}
.ld-team-card__bio {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.ld-team-card__skills {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.ld-team-card__skills span {
  background: rgba(79,70,229,0.2);
  border: 1px solid rgba(79,70,229,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500;
}


.ld-values-section { background: rgba(255,255,255,0.02); }
.ld-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: var(--space-8);
}
.ld-value-item {
  padding: 2rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ld-value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(52,211,153,0.3);
}
.ld-value-item i {
  font-size: 2rem; color: var(--aurora-3);
  margin-bottom: 1rem; display: block;
}
.ld-value-item h4 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.5rem;
}
.ld-value-item p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.65;
}


.ld-schedule-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem; align-items: start;
}
@container schedule-layout (max-width: 800px) {
  .ld-schedule-layout { grid-template-columns: 1fr; }
}
.ld-schedule-table {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
}
.ld-schedule-row {
  display: grid; grid-template-columns: 140px 1fr 1fr;
  gap: 1rem; padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  transition: background 0.2s ease;
}
.ld-schedule-row:hover { background: rgba(255,255,255,0.03); }
.ld-schedule-row:last-child { border-bottom: none; }
.ld-schedule-row--header {
  background: rgba(79,70,229,0.2);
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ld-schedule-row--header:hover { background: rgba(79,70,229,0.2); }
.ld-schedule-row--closed { opacity: 0.55; }
.ld-day { font-weight: 700; color: #fff; font-size: 0.95rem; }
.ld-hours { font-size: 0.9rem; color: var(--aurora-1); font-weight: 500; }
.ld-activity { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.ld-schedule-notes {
  margin-top: 2rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--aurora-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem;
}
.ld-schedule-notes h3 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 1rem;
}
.ld-schedule-notes ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.ld-schedule-notes li {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  padding-left: 1rem; position: relative; line-height: 1.6;
}
.ld-schedule-notes li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--aurora-2); font-weight: 700;
}
.ld-schedule-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.ld-schedule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.ld-schedule-card:hover { transform: translateY(-3px); }
.ld-schedule-card__icon {
  font-size: 1.5rem; color: var(--aurora-1);
  margin-bottom: 0.75rem;
}
.ld-schedule-card h4 {
  font-size: 0.9rem; font-weight: 700; color: #fff;
  margin-bottom: 0.5rem;
}
.ld-schedule-card p {
  font-size: 0.825rem; color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.ld-schedule-card a {
  color: var(--aurora-1); text-decoration: none; font-weight: 500;
  font-size: 0.9rem;
  display: block; margin-top: 0.25rem;
}
.ld-schedule-card a:hover { color: #fff; }
.ld-schedule-card--highlight {
  background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(6,182,212,0.15));
  border-color: rgba(110,231,247,0.25);
}


.ld-guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem; align-items: start;
}
@container guide-layout (max-width: 800px) {
  .ld-guide-layout { grid-template-columns: 1fr; }
}
.ld-guide-block {
  display: flex; gap: 1.5rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ld-guide-block:last-child { border-bottom: none; margin-bottom: 0; }
.ld-guide-block__num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; flex-shrink: 0; min-width: 60px;
}
.ld-guide-block__body h2 {
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.ld-guide-block__body p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.ld-guide-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.ld-guide-sidebar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.ld-guide-sidebar-card h4 {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.ld-guide-sidebar-card h4 i { color: var(--aurora-3); }
.ld-guide-sidebar-card--cta {
  background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(6,182,212,0.15));
  border-color: rgba(110,231,247,0.2);
}
.ld-guide-sidebar-card--cta p {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.ld-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.ld-checklist li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.ld-checklist li i { color: var(--aurora-3); flex-shrink: 0; margin-top: 2px; }

.ld-fair-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@container fair-image-grid (max-width: 600px) {
  .ld-fair-image-grid { grid-template-columns: 1fr; }
}
.ld-fair-image-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.ld-fair-image-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ld-fair-image-item:hover img { transform: scale(1.05); }


.ld-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
@container contact-split (max-width: 700px) {
  .ld-contact-split { grid-template-columns: 1fr; }
}
.ld-contact-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.ld-contact-map__frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: hue-rotate(200deg) saturate(0.7) brightness(0.8);
}
.ld-contact-map__info {
  display: flex; flex-direction: column; gap: 1rem;
}
.ld-contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
}
.ld-contact-info-item i {
  color: var(--aurora-1); font-size: 1rem;
  width: 20px; margin-top: 2px; flex-shrink: 0;
}
.ld-contact-info-item strong {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.2rem;
}
.ld-contact-info-item span, .ld-contact-info-item a {
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
  text-decoration: none; line-height: 1.4;
}
.ld-contact-info-item a:hover { color: var(--aurora-1); }

.ld-contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.ld-contact-form-title {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.ld-contact-form-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  margin-bottom: 2rem; line-height: 1.6;
}
.ld-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ld-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ld-form-group label {
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75);
}
.ld-required { color: var(--aurora-4); }
.ld-form-group input,
.ld-form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0.8rem 1rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.ld-form-group input:focus,
.ld-form-group textarea:focus {
  outline: none;
  border-color: var(--aurora-1);
  box-shadow: 0 0 0 3px rgba(110,231,247,0.12);
}
.ld-form-group input::placeholder,
.ld-form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.ld-form-group textarea { resize: vertical; min-height: 120px; }
.ld-form-group--checkbox { flex-direction: row; align-items: flex-start; }
.ld-checkbox-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer; font-size: 0.875rem; color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.ld-checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--secondary); cursor: pointer;
}
.ld-checkbox-label a { color: var(--aurora-1); }
.ld-checkbox-label a:hover { color: #fff; }
.ld-form-error {
  background: rgba(244,114,182,0.1);
  border: 1px solid rgba(244,114,182,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; color: var(--aurora-4);
}
.ld-form-submit {
  width: 100%; justify-content: center;
  padding: 1rem; font-size: 1rem;
}


.iti { width: 100%; }
#phone { width: 100%; }
.iti__selected-flag { background: rgba(255,255,255,0.07) !important; }
.iti__dropdown-content { background: #1e1b4b !important; border: 1px solid rgba(255,255,255,0.15) !important; }
.iti__country:hover { background: rgba(255,255,255,0.08) !important; }
.iti__country-name, .iti__dial-code { color: #fff !important; }


.ld-urgent-section { padding: var(--space-8) 0; }
.ld-urgent-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem; align-items: center;
  background: linear-gradient(135deg, rgba(244,114,182,0.12), rgba(79,70,229,0.15));
  border: 1px solid rgba(244,114,182,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
@container urgent-box (max-width: 700px) {
  .ld-urgent-box { grid-template-columns: 1fr; text-align: center; }
}
.ld-urgent-icon {
  font-size: 2.5rem; color: var(--aurora-4);
  background: rgba(244,114,182,0.1);
  width: 64px; height: 64px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ld-urgent-content h2 {
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin-bottom: 0.5rem;
}
.ld-urgent-content p {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65;
}
.ld-urgent-contact { flex-shrink: 0; }


.ld-sidebar-cta {
  position: fixed; right: 1.5rem; bottom: 8rem; z-index: 90;
}
.ld-sidebar-cta__btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; text-decoration: none;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.7rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  writing-mode: horizontal-tb;
}
.ld-sidebar-cta__btn i { font-size: 1.3rem; }
.ld-sidebar-cta__btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(79,70,229,0.5), 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}


.ld-footer {
  position: relative; z-index: 1;
  background: rgba(10,9,30,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ld-footer__newsletter {
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(6,182,212,0.1));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.ld-footer__newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.ld-footer__newsletter h3 {
  font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem;
}
.ld-footer__newsletter p {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.ld-newsletter-form {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.ld-newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; color: #fff;
  padding: 0.7rem 1.25rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.9rem; min-width: 240px;
  transition: border-color 0.25s ease;
}
.ld-newsletter-form input:focus {
  outline: none; border-color: var(--aurora-1);
}
.ld-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.ld-newsletter-form button {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; border: none; padding: 0.7rem 1.5rem;
  border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: 'Epilogue', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ld-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,0.4);
}
.ld-footer__main { padding: 4rem 0 2rem; }
.ld-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.ld-footer__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; margin-bottom: 1rem;
}
.ld-footer__logo img { width: 36px; height: 36px; }
.ld-footer__logo span {
  font-size: 1rem; font-weight: 700; color: #fff;
}
.ld-footer__about-text {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.ld-footer__col-title {
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.ld-footer__links {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.ld-footer__links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s ease;
}
.ld-footer__links a:hover { color: var(--aurora-1); }
.ld-footer__contact {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
}
.ld-footer__contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.ld-footer__contact i {
  color: var(--aurora-1); font-size: 0.875rem;
  width: 16px; margin-top: 3px; flex-shrink: 0;
}
.ld-footer__contact span,
.ld-footer__contact a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  text-decoration: none; line-height: 1.4;
}
.ld-footer__contact a:hover { color: var(--aurora-1); }
.ld-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.ld-footer__bottom .ld-container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.ld-footer__bottom p {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.ld-footer__legal-links {
  display: flex; gap: 1.5rem;
}
.ld-footer__legal-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.ld-footer__legal-links a:hover { color: rgba(255,255,255,0.7); }


.ld-legal-layout { max-width: 800px; margin: 0 auto; }
.ld-legal-content { color: rgba(255,255,255,0.75); }
.ld-legal-intro {
  font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ld-legal-content h2 {
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin: 2.5rem 0 1rem; letter-spacing: -0.01em;
}
.ld-legal-content h3 {
  font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.9);
  margin: 1.75rem 0 0.75rem;
}
.ld-legal-content p {
  font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}
.ld-legal-content a { color: var(--aurora-1); }
.ld-legal-content a:hover { color: #fff; }
.ld-legal-content strong { color: rgba(255,255,255,0.9); }
.ld-term {
  color: var(--aurora-1); font-weight: 600;
  border-bottom: 1px dashed rgba(110,231,247,0.4);
}
.ld-definition-box {
  background: rgba(110,231,247,0.06);
  border-left: 3px solid var(--aurora-1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.ld-definition-box strong {
  display: block; color: var(--aurora-1);
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.4rem;
}
.ld-legal-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
  margin: 1rem 0 1.5rem; padding-left: 0;
}
.ld-legal-list li {
  font-size: 0.925rem; color: rgba(255,255,255,0.7);
  padding-left: 1.25rem; position: relative; line-height: 1.65;
}
.ld-legal-list li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--aurora-2); font-weight: 700;
}


.ld-cookie-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden; margin: 1rem 0 1.5rem;
}
.ld-cookie-table__header {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem; padding: 0.75rem 1.25rem;
  background: rgba(79,70,229,0.2);
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ld-cookie-table__row {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem; padding: 0.85rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  align-items: start;
}
.ld-cookie-table__row code {
  background: rgba(110,231,247,0.1);
  color: var(--aurora-1); padding: 0.15rem 0.5rem;
  border-radius: 4px; font-size: 0.8rem;
  font-family: monospace;
}


.ld-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(15,14,42,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(110,231,247,0.15);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ld-cookie-banner.ld-visible { transform: translateY(0); }
.ld-cookie-banner__left {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ld-cookie-banner__left h3 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
}
.ld-cookie-banner__left h3 i { color: var(--aurora-1); }
.ld-cookie-banner__left p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 1rem;
}
.ld-cookie
-banner__left a { color: var(--aurora-1); font-size: 0.8rem; }
.ld-cookie-banner__right {
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.ld-cookie-banner__right h4 {
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem;
}
.ld-cookie-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
}
.ld-cookie-toggle__info { display: flex; flex-direction: column; gap: 0.15rem; }
.ld-cookie-toggle__name {
  font-size: 0.875rem; font-weight: 600; color: #fff;
}
.ld-cookie-toggle__desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
.ld-toggle-switch {
  position: relative; width: 40px; height: 22px; flex-shrink: 0;
}
.ld-toggle-switch input { opacity: 0; width: 0; height: 0; }
.ld-toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: background 0.3s ease;
}
.ld-toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px;
  left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%;
  transition: transform 0.3s ease;
}
.ld-toggle-switch input:checked + .ld-toggle-slider {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}
.ld-toggle-switch input:checked + .ld-toggle-slider::before {
  transform: translateX(18px);
}
.ld-toggle-switch input:disabled + .ld-toggle-slider {
  opacity: 0.5; cursor: not-allowed;
}
.ld-cookie-banner__actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem;
}
.ld-cookie-btn-accept {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; border: none; padding: 0.65rem 1.4rem;
  border-radius: 50px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; font-family: 'Epilogue', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 1;
}
.ld-cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,0.4);
}
.ld-cookie-btn-save {
  background: rgba(255,255,255,0.08);
  color: #fff; border: 1px solid rgba(255,255,255,0.2);
  padding: 0.65rem 1.4rem; border-radius: 50px;
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; font-family: 'Epilogue', sans-serif;
  transition: background 0.25s ease;
  flex: 1;
}
.ld-cookie-btn-save:hover { background: rgba(255,255,255,0.14); }
.ld-cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,0.45);
  border: none; padding: 0.5rem;
  font-size: 0.8rem; cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  transition: color 0.2s ease; text-decoration: underline;
  width: 100%; text-align: center;
}
.ld-cookie-btn-reject:hover { color: rgba(255,255,255,0.75); }


@media (max-width: 1024px) {
  .ld-nav__links { gap: 1.25rem; }
  .ld-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ld-footer__col--about { grid-column: span 2; }
  .ld-hero__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .ld-nav__links { display: none; }
  .ld-nav__cta { display: none; }
  .ld-hamburger { display: flex; }
  .ld-mobile-menu { display: flex; }

  .ld-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }
  .ld-hero { padding: 6rem 1.5rem 3rem; }

  .ld-journey-track {
    flex-direction: column;
    gap: 1rem;
  }
  .ld-journey-connector {
    transform: rotate(90deg);
    align-self: center;
  }

  .ld-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ld-gallery-item--wide { grid-column: span 2; }

  .ld-about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ld-about-image img { height: 280px; }

  .ld-cta-box { padding: 2.5rem 1.5rem; }

  .ld-schedule-layout { grid-template-columns: 1fr; }
  .ld-schedule-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .ld-schedule-row .ld-activity { grid-column: span 2; font-size: 0.8rem; }
  .ld-schedule-row--header .ld-activity { display: none; }

  .ld-guide-layout { grid-template-columns: 1fr; }
  .ld-guide-block { flex-direction: column; gap: 0.75rem; }
  .ld-guide-block__num { font-size: 2rem; }

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

  .ld-footer__grid { grid-template-columns: 1fr; }
  .ld-footer__col--about { grid-column: auto; }
  .ld-footer__newsletter-inner { flex-direction: column; align-items: flex-start; }

  .ld-cookie-banner { grid-template-columns: 1fr; }
  .ld-cookie-banner__left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.5rem; }
  .ld-cookie-banner__right { padding: 1.5rem; }

  .ld-urgent-box { grid-template-columns: 1fr; text-align: center; }
  .ld-urgent-icon { margin: 0 auto; }

  .ld-sidebar-cta { right: 1rem; bottom: 6rem; }

  .ld-section { padding: 4rem 0; }

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

  .ld-cookie-table__header,
  .ld-cookie-table__row { grid-template-columns: 1fr 1fr; }
  .ld-cookie-table__header span:last-child,
  .ld-cookie-table__row span:last-child { display: none; }
}

@media (max-width: 480px) {
  .ld-container { padding: 0 1rem; }
  .ld-nav { padding: 0.875rem 1rem; }
  .ld-hero { padding: 5.5rem 1rem 2.5rem; }
  .ld-hero__title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .ld-hero__card { padding: 1.5rem; }
  .ld-gallery-grid { grid-template-columns: 1fr; }
  .ld-gallery-item--wide { grid-column: span 1; }
  .ld-cta-box { padding: 2rem 1.25rem; }
  .ld-contact-form-wrap { padding: 1.5rem; }
  .ld-values-grid { grid-template-columns: 1fr; }
  .ld-team-grid { grid-template-columns: 1fr; }
  .ld-page-hero { padding: 6.5rem 1rem 2.5rem; }
  .ld-footer__newsletter { padding: 1.5rem 0; }
  .ld-footer__main { padding: 2.5rem 0 1.5rem; }
  .ld-schedule-row { grid-template-columns: 1fr; }
  .ld-schedule-row .ld-activity { grid-column: auto; }
  .ld-fair-image-grid { grid-template-columns: 1fr; }
  .ld-newsletter-form { flex-direction: column; }
  .ld-newsletter-form input { min-width: unset; width: 100%; }
}

@media (min-width: 769px) {
  .ld-mobile-menu { display: none !important; }
}