@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --c-bg: #0d0f14;
  --c-bg-2: #12151c;
  --c-bg-3: #181c26;
  --c-bg-card: #1a1e2a;
  --c-bg-card-2: #1e2330;
  --c-surface: rgba(255,255,255,0.04);
  --c-surface-2: rgba(255,255,255,0.07);

  --c-gold: #c9a84c;
  --c-gold-light: #e8c96a;
  --c-gold-dim: rgba(201,168,76,0.15);
  --c-gold-border: rgba(201,168,76,0.3);

  --c-sapphire: #3b6fd4;
  --c-sapphire-light: #5a8de8;
  --c-sapphire-dim: rgba(59,111,212,0.15);

  --c-amethyst: #8b5cf6;
  --c-amethyst-dim: rgba(139,92,246,0.15);

  --c-text: #e8eaf0;
  --c-text-2: #a8afc4;
  --c-text-3: #6b7494;
  --c-text-inv: #0d0f14;

  --c-border: rgba(255,255,255,0.08);
  --c-border-2: rgba(255,255,255,0.12);

  --shadow-card: 0 4px 6px rgba(0,0,0,0.3), 0 12px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.06) inset;
  --shadow-card-hover: 0 8px 16px rgba(0,0,0,0.4), 0 24px 48px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.08) inset;
  --shadow-glow-gold: 0 0 20px rgba(201,168,76,0.2), 0 0 60px rgba(201,168,76,0.08);
  --shadow-glow-sapphire: 0 0 20px rgba(59,111,212,0.25), 0 0 60px rgba(59,111,212,0.1);
  --shadow-nav: 0 2px 24px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.05) inset;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  &.canvas {
    background:
      radial-gradient(ellipse 80% 50% at 20% 10%, rgba(59,111,212,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
      var(--c-bg);
  }
}

main { flex: 1; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--transition);

  &:hover { color: var(--c-gold-light); }
}

ul { list-style: none; }

address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--c-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-3); }

p { color: var(--c-text-2); line-height: 1.75; }

details summary { cursor: pointer; }

code {
  background: var(--c-surface-2);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--c-gold-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  color: var(--c-text-inv);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.25), 0 1px 0 rgba(255,255,255,0.2) inset;
  text-decoration: none;

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.35), 0 1px 0 rgba(255,255,255,0.25) inset;
    color: var(--c-text-inv);
  }

  &:active { transform: translateY(0); }

  &--large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
  }

  &--full { width: 100%; justify-content: center; }

  &--sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;

  &:hover {
    background: var(--c-surface);
    border-color: var(--c-gold-border);
    color: var(--c-gold-light);
    transform: translateY(-1px);
  }

  &--sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
  }
}

.nav-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-nav);
  transition: transform var(--transition-slow);

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

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

  & .nav-rail__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;

    & .nav-rail__logo { width: 32px; height: 32px; }

    & .nav-rail__name {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--c-text);
      letter-spacing: -0.02em;
    }
  }

  & .nav-rail__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;

    & li { position: relative; }
  }

  & .nav-rail__link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    color: var(--c-text-2);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;

    &:hover {
      color: var(--c-text);
      background: var(--c-surface);
    }

    &--active {
      color: var(--c-gold);

      &:hover { color: var(--c-gold-light); }
    }
  }

  & .nav-rail__chevron {
    font-size: 0.65rem;
    transition: transform var(--transition);
  }

  & .nav-rail__dropdown {
    &:hover {
      & .nav-rail__chevron { transform: rotate(180deg); }
      & .nav-rail__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
    }
  }

  & .nav-rail__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-2);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);

    & li { display: block; }

    & a {
      display: block;
      padding: 0.6rem 1rem;
      color: var(--c-text-2);
      font-size: 0.875rem;
      border-radius: var(--radius-sm);
      transition: all var(--transition);

      &:hover {
        color: var(--c-gold-light);
        background: var(--c-gold-dim);
      }
    }
  }

  & .nav-rail__cta { margin-left: var(--space-sm); }

  & .nav-rail__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;

    & span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--c-text);
      border-radius: 2px;
      transition: all var(--transition);
    }
  }
}

.spotlight-btn {
  position: relative;

  & .spotlight-btn__dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    background: var(--c-sapphire-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;

  &.is-open { pointer-events: all; }

  & .drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity var(--transition-slow);
    backdrop-filter: blur(4px);
  }

  &.is-open .drawer__backdrop { opacity: 1; }

  & .drawer__sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--c-bg-card);
    border-top: 1px solid var(--c-border-2);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 1rem var(--space-md) calc(var(--space-lg) + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
  }

  &.is-open .drawer__sheet { transform: translateY(0); }

  & .drawer__handle {
    width: 40px;
    height: 4px;
    background: var(--c-border-2);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
  }

  & .drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
  }

  & .drawer__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    color: var(--c-text-2);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
    min-height: 52px;

    & i { color: var(--c-gold); width: 20px; }

    &:hover {
      background: var(--c-surface);
      color: var(--c-text);
    }
  }

  & .drawer__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
    color: var(--c-text-inv);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
    min-height: 52px;

    &:hover {
      box-shadow: var(--shadow-glow-gold);
      color: var(--c-text-inv);
    }
  }
}

.stage {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding-top: calc(var(--nav-h) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;

  &--page {
    min-height: 50vh;
    padding-top: calc(var(--nav-h) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  & .stage__bg-number {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: clamp(18rem, 35vw, 32rem);
    font-weight: 800;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  & .stage__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;

    &--narrow {
      grid-template-columns: 1fr;
      max-width: 860px;
    }
  }

  & .stage__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: var(--space-sm);
    padding: 0.35rem 0.9rem;
    background: var(--c-gold-dim);
    border: 1px solid var(--c-gold-border);
    border-radius: 100px;
  }

  & .stage__headline {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: var(--space-md);
    color: var(--c-text);

    &--md { font-size: clamp(2rem, 4.5vw, 3.5rem); }

    &--accent {
      font-style: normal;
      background: linear-gradient(135deg, var(--c-gold), var(--c-gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }

  & .stage__sub {
    font-size: 1.1rem;
    color: var(--c-text-2);
    max-width: 520px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
  }

  & .stage__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

  & .stage__visual {
    display: flex;
    justify-content: center;
  }

  & .stage__card-float {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow-sapphire);
    border: 1px solid var(--c-border-2);
    max-width: 480px;
    width: 100%;
  }

  & .stage__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  & .stage__card-badge {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    background: rgba(13,15,20,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--c-border-2);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--c-text);
    font-size: 0.875rem;
    font-weight: 500;

    & i { color: var(--c-gold); font-size: 1rem; }
  }
}

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

  & .gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);

    &--two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: center;

      &.gallery__inner--reverse { direction: rtl;
        & > * { direction: ltr; }
      }
    }

    &--center { text-align: center; max-width: 640px; }

    &--contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-2xl);
      align-items: start;
    }
  }

  & .gallery__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
  }

  & .gallery__heading {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
  }

  & .gallery__sub {
    color: var(--c-text-2);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
  }

  &--intro {
    padding-bottom: 0;

    & .gallery__inner { text-align: center; max-width: 720px; }
    & .gallery__sub { margin: 0 auto; }
  }

  &--benefits {
    background: linear-gradient(180deg, transparent 0%, var(--c-bg-2) 30%, var(--c-bg-2) 70%, transparent 100%);
  }

  & .gallery__benefits-grid {
    max-width: 1280px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
  }

  & .gallery__benefit {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);

    &:hover {
      border-color: var(--c-gold-border);
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-2px);
    }
  }

  & .gallery__benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--c-gold-dim);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 1rem;
  }

  & .gallery__benefit-text {
    & h4 { margin-bottom: 0.4rem; font-size: 1rem; }
    & p { font-size: 0.9rem; line-height: 1.65; }
  }

  &--how {
    background: var(--c-bg-2);
  }

  & .gallery__steps {
    max-width: 1280px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  & .gallery__step {
    text-align: center;

    & .gallery__step-num {
      font-family: var(--font-head);
      font-size: 4rem;
      font-weight: 800;
      color: rgba(201,168,76,0.15);
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    & .gallery__step-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-sm);
      border: 1px solid var(--c-border);
      box-shadow: var(--shadow-card);
    }

    & h4 { margin-bottom: 0.5rem; }
    & p { font-size: 0.9rem; }
  }

  &--about {
    & .gallery__text-block {
      & h2 { margin-bottom: var(--space-sm); }
      & p { margin-bottom: var(--space-sm); }
    }
  }

  & .gallery__text-block {
    & p { margin-bottom: var(--space-sm); }
    & h2 { margin-bottom: var(--space-md); }
  }

  & .gallery__side-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--c-border-2);
    box-shadow: var(--shadow-card);
  }

  &--process {
    & .gallery__inner { margin-bottom: var(--space-xl); }
  }

  & .gallery__process-list {
    max-width: 860px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  & .gallery__process-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);

    &:hover {
      border-color: var(--c-border-2);
      box-shadow: var(--shadow-card-hover);
    }
  }

  & .gallery__process-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-gold);
    opacity: 0.4;
    line-height: 1;
    padding-top: 0.2rem;
  }

  & .gallery__process-content {
    & h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
    & p { margin-bottom: 0.5rem; font-size: 0.95rem; }
  }

  &--faq {
    & .gallery__inner { max-width: 860px; }
  }

  & .gallery__faq-list {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  & .gallery__faq-item {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);

    &[open] { border-color: var(--c-gold-border); }

    & summary {
      padding: var(--space-sm) var(--space-md);
      font-weight: 600;
      font-size: 1rem;
      color: var(--c-text);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color var(--transition);
      min-height: 56px;

      &::-webkit-details-marker { display: none; }

      &::after {
        content: '+';
        font-size: 1.25rem;
        color: var(--c-gold);
        flex-shrink: 0;
        transition: transform var(--transition);
      }

      &:hover { color: var(--c-gold-light); }
    }

    &[open] summary::after { transform: rotate(45deg); }

    & p {
      padding: 0 var(--space-md) var(--space-sm);
      font-size: 0.95rem;
    }
  }

  &--course-detail {
    padding: var(--space-2xl) 0;

    & .gallery__inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }

    & .gallery__text-block {
      & h2 { margin-bottom: var(--space-sm); }
      & p { margin-bottom: var(--space-sm); }
    }
  }

  &--course-alt {
    background: linear-gradient(180deg, transparent, var(--c-bg-2) 20%, var(--c-bg-2) 80%, transparent);
  }

  & .gallery__course-topics {
    list-style: none;
    margin: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      color: var(--c-text-2);
      font-size: 0.95rem;

      & i { color: var(--c-gold); margin-top: 0.25rem; flex-shrink: 0; font-size: 0.6rem; }
    }
  }

  &--contact-info { padding-top: var(--space-xl); }

  & .gallery__contact-details {
    & h2 { margin-bottom: var(--space-lg); }
  }

  & .gallery__contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    align-items: flex-start;

    & strong { display: block; color: var(--c-text); margin-bottom: 0.25rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; }
    & p { margin: 0; font-size: 0.95rem; }
    & a { color: var(--c-text-2); &:hover { color: var(--c-gold-light); } }
  }

  & .gallery__contact-icon {
    width: 40px;
    height: 40px;
    background: var(--c-gold-dim);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    flex-shrink: 0;
  }

  & .gallery__map {
    margin-top: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
  }

  & .gallery__contact-form-wrap {
    & h2 { margin-bottom: var(--space-lg); }
  }

  &--booking { background: var(--c-bg-2); }

  & .gallery__booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    align-items: start;
  }

  & .gallery__booking-text {
    & p { margin-bottom: var(--space-sm); }
  }

  & .gallery__booking-details {
    list-style: none;
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    & li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--c-text-2);
      font-size: 0.9rem;

      & i { color: var(--c-gold); width: 16px; }
    }
  }

  & .gallery__booking-card {
    & .gallery__booking-card-inner {
      background: var(--c-bg-card);
      border: 1px solid var(--c-border-2);
      border-radius: var(--radius-xl);
      padding: var(--space-lg);
      text-align: center;
      box-shadow: var(--shadow-card);
    }

    & .gallery__booking-icon {
      font-size: 2rem;
      color: var(--c-gold);
      margin-bottom: var(--space-sm);
      display: block;
    }

    & h4 { margin-bottom: 0.5rem; }
    & p { font-size: 0.9rem; margin-bottom: var(--space-md); }
  }

  &--cta-simple {
    text-align: center;
    padding: var(--space-2xl) 0;

    & h2 { margin-bottom: var(--space-sm); }
    & p { margin-bottom: var(--space-lg); color: var(--c-text-2); }
  }
}

.shelf {
  padding: var(--space-2xl) 0;

  & .shelf__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  &--courses {
    & .shelf__inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      padding-top: var(--space-xl);
    }
  }

  & .shelf__card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);

    &:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
      border-color: var(--c-border-2);
    }

    &--featured {
      border-color: var(--c-gold-border);
      box-shadow: var(--shadow-card), var(--shadow-glow-gold);

      &:hover {
        box-shadow: var(--shadow-card-hover), var(--shadow-glow-gold);
        border-color: var(--c-gold);
      }
    }
  }

  & .shelf__card-icon {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 44px;
    height: 44px;
    background: rgba(13,15,20,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--c-border-2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 1.1rem;
    z-index: 1;
  }

  & .shelf__card {
    position: relative;
  }

  & .shelf__card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  & .shelf__card-body {
    padding: var(--space-md);

    & h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
    & p { font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-sm); }
  }

  & .shelf__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-gold);
    font-size: 0.875rem;
    font-weight: 600;
    transition: gap var(--transition);

    &:hover { gap: 0.7rem; color: var(--c-gold-light); }
  }

  & .shelf__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    background: var(--c-sapphire-dim);
    color: var(--c-sapphire-light);
    border: 1px solid rgba(59,111,212,0.25);
    border-radius: 100px;
    margin-bottom: 0.5rem;

    &--gold {
      background: var(--c-gold-dim);
      color: var(--c-gold-light);
      border-color: var(--c-gold-border);
    }
  }

  &--principles {
    background: var(--c-bg-2);
    & .shelf__inner { text-align: center; }
  }

  & .shelf__principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    text-align: left;
  }

  & .shelf__principle {
    padding: var(--space-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);

    &:hover {
      border-color: var(--c-border-2);
      transform: translateY(-2px);
    }
  }

  & .shelf__principle-icon {
    width: 44px;
    height: 44px;
    background: var(--c-amethyst-dim);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-amethyst);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
  }

  & .shelf__principle {
    & h4 { margin-bottom: 0.4rem; }
    & p { font-size: 0.9rem; }
  }

  &--formats {
    & .shelf__inner { text-align: center; }
  }

  & .shelf__formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    text-align: left;
  }

  & .shelf__format-card {
    padding: var(--space-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);

    &:hover {
      border-color: var(--c-gold-border);
      transform: translateY(-2px);
    }

    & h4 { margin-bottom: 0.4rem; margin-top: var(--space-sm); }
    & p { font-size: 0.9rem; }
  }

  & .shelf__format-icon {
    width: 48px;
    height: 48px;
    background: var(--c-gold-dim);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 1.2rem;
  }
}

.spotlight-card { position: relative; }

.stage-curtain {
  &--compare {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, transparent, var(--c-bg-3) 20%, var(--c-bg-3) 80%, transparent);
  }

  & .stage-curtain__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
}

.compare-table-wrap {
  margin-top: var(--space-xl);
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-bg-card);

  & th, & td {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--c-border);
  }

  & th {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--c-text);
    background: var(--c-bg-card-2);
    position: relative;
  }

  & .compare-table__feature {
    text-align: left;
    color: var(--c-text-2);
    font-weight: 500;
  }

  & .compare-table__recommended {
    background: linear-gradient(180deg, var(--c-gold-dim), var(--c-bg-card-2));
    border-left: 1px solid var(--c-gold-border);
    border-right: 1px solid var(--c-gold-border);
    color: var(--c-gold-light);
  }

  & tbody tr {
    transition: background var(--transition);

    &:hover { background: var(--c-surface); }
    &:last-child td { border-bottom: none; }
  }

  & tbody .compare-table__recommended {
    background: rgba(201,168,76,0.04);
    border-left: 1px solid var(--c-gold-border);
    border-right: 1px solid var(--c-gold-border);
  }

  & .compare-table__badge {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.25rem;
  }

  & .compare-table__yes { color: #4ade80; font-size: 1rem; }
  & .compare-table__no { color: var(--c-text-3); font-size: 0.9rem; }
}

.spotlight {
  &--cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
  }

  & .spotlight__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);

    &--wide { max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; text-align: left; }
  }

  & .spotlight__heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
  }

  & .spotlight__sub {
    font-size: 1.05rem;
    color: var(--c-text-2);
    margin-bottom: var(--space-lg);
  }

  & .spotlight__big-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  & .spotlight__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--c-border-2);
    box-shadow: var(--shadow-card);
  }

  &--mission {
    padding: var(--space-2xl) 0;
    background: var(--c-bg-2);
  }
}

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

  & .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  & .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    & label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--c-text-2);
    }

    & .contact-form__req { color: var(--c-gold); }

    & input, & textarea {
      background: var(--c-bg-card);
      border: 1px solid var(--c-border-2);
      border-radius: var(--radius-md);
      padding: 0.75rem 1rem;
      color: var(--c-text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      width: 100%;
      transition: all var(--transition);
      outline: none;

      &::placeholder { color: var(--c-text-3); }

      &:focus {
        border-color: var(--c-gold);
        box-shadow: 0 0 0 3px var(--c-gold-dim);
      }
    }

    & textarea { resize: vertical; min-height: 130px; }
  }

  & .contact-form__privacy {
    & .contact-form__checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      cursor: pointer;
      color: var(--c-text-2);
      font-size: 0.875rem;
      line-height: 1.6;

      & input[type="checkbox"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 0.15rem;
        accent-color: var(--c-gold);
        cursor: pointer;
      }

      & a { color: var(--c-gold); }
    }
  }
}

.footer-stage {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  margin-top: auto;

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

  & .footer-stage__brand {
    & .footer-stage__logo { width: 36px; height: 36px; margin-bottom: 0.5rem; }

    & .footer-stage__name {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--c-text);
      display: block;
      margin-bottom: var(--space-sm);
    }

    & .footer-stage__tagline {
      font-size: 0.875rem;
      color: var(--c-text-2);
      line-height: 1.65;
      margin-bottom: 0.75rem;
    }

    & .footer-stage__disclaimer {
      font-size: 0.78rem;
      color: var(--c-text-3);
      line-height: 1.65;
      padding: 0.75rem;
      background: var(--c-surface);
      border: 1px solid var(--c-border);
      border-radius: var(--radius-sm);
    }
  }

  & .footer-stage__nav {
    & h5 { margin-bottom: var(--space-sm); }

    & ul { display: flex; flex-direction: column; gap: 0.4rem; }

    & a {
      color: var(--c-text-3);
      font-size: 0.875rem;
      transition: color var(--transition);

      &:hover { color: var(--c-gold-light); }
    }
  }

  & .footer-stage__contact {
    & h5 { margin-bottom: var(--space-sm); }

    & address {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;

      & p {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.875rem;
        color: var(--c-text-3);

        & i { color: var(--c-gold); margin-top: 0.2rem; flex-shrink: 0; width: 14px; }

        & a { color: var(--c-text-3); &:hover { color: var(--c-gold-light); } }
      }
    }
  }

  & .footer-stage__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--c-border);
    display: flex;
    justify-content: space-between;
    align-items: center;

    & p {
      font-size: 0.8rem;
      color: var(--c-text-3);
    }
  }
}

.legal-stage {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);

  & .legal-stage__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  & .legal-stage__header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--c-border);

    & h1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  }

  & .legal-stage__meta {
    font-size: 0.875rem;
    color: var(--c-text-3);
  }

  & .legal-stage__body {
    & h2 {
      font-size: 1.2rem;
      margin-top: var(--space-lg);
      margin-bottom: var(--space-sm);
      color: var(--c-text);
      padding-bottom: 0.4rem;
      border-bottom: 1px solid var(--c-border);
    }

    & h3 {
      font-size: 1rem;
      margin-top: var(--space-md);
      margin-bottom: 0.5rem;
      color: var(--c-gold-light);
    }

    & p { margin-bottom: var(--space-sm); font-size: 0.95rem; line-height: 1.8; }

    & ul {
      margin: var(--space-sm) 0 var(--space-sm) var(--space-md);
      list-style: disc;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;

      & li { font-size: 0.95rem; color: var(--c-text-2); }
    }

    & a { color: var(--c-gold); &:hover { color: var(--c-gold-light); } }
  }

  & .legal-stage__cookie-block {
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);

    & h2 {
      margin-top: 0;
      border-bottom-color: var(--c-border);
    }
  }

  & .legal-stage__cookie-category {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--c-border);
  }
}

.thanks-stage {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-2xl);

  & .thanks-stage__inner {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  & .thanks-stage__quote-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-gold-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-card), var(--shadow-glow-gold);
    text-align: center;
  }

  & .thanks-stage__quote-icon {
    color: var(--c-gold);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    opacity: 0.6;
  }

  & .thanks-stage__quote {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    font-style: italic;
  }

  & .thanks-stage__cite {
    font-size: 0.8rem;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: normal;
  }

  & .thanks-stage__message {
    text-align: center;

    & .thanks-stage__icon {
      font-size: 3rem;
      color: #4ade80;
      margin-bottom: var(--space-sm);
    }

    & h1 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: var(--space-sm);
    }

    & p {
      margin-bottom: var(--space-lg);
      font-size: 1rem;
    }
  }
}

.cookie-trigger {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--c-text-3);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  background: rgba(13,15,20,0.7);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);

  &:hover {
    color: var(--c-text);
    border-color: var(--c-border-2);
  }

  &.pulse {
    animation: cookie-pulse 2s ease-in-out 3;
  }
}

@keyframes cookie-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(201,168,76,0.15); border-color: var(--c-gold-border); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);

  &.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.cookie-modal {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-card);
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-slow);
  position: relative;

  .cookie-modal-overlay.is-open & { transform: scale(1) translateY(0); }

  & .cookie-modal__close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 32px;
    height: 32px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);

    &:hover { color: var(--c-text); border-color: var(--c-border-2); }
  }

  & .cookie-modal__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  & .cookie-modal__desc {
    font-size: 0.875rem;
    color: var(--c-text-2);
    margin-bottom: var(--space-md);
  }

  & .cookie-modal__options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
  }

  & .cookie-modal__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
  }
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition);

  &:hover { border-color: var(--c-border-2); }

  &--required { opacity: 0.7; cursor: default; }

  & .cookie-option__info {
    & strong { display: block; font-size: 0.875rem; color: var(--c-text); }
    & small { display: block; font-size: 0.78rem; color: var(--c-text-3); }
  }

  & input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--c-gold);
    cursor: pointer;
    flex-shrink: 0;
  }
}

[data-tippy-content] { cursor: help; }

.tippy-box[data-theme~='custom'] {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-2);
  color: var(--c-text-2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  max-width: 240px;
}

.tippy-box[data-theme~='custom'] .tippy-arrow { color: var(--c-bg-card); }

@media (max-width: 1024px) {
  .footer-stage .footer-stage__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .gallery .gallery__inner--two-col { grid-template-columns: 1fr; }
  .gallery .gallery__inner--contact { grid-template-columns: 1fr; }
  .gallery .gallery__booking-grid { grid-template-columns: 1fr; }
  .gallery .gallery__steps { grid-template-columns: 1fr 1fr; }
  .shelf--courses .shelf__inner { grid-template-columns: 1fr 1fr; }
  .spotlight .spotlight__inner--wide { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-rail {
    & .nav-rail__links { display: none; }
    & .nav-rail__cta { display: none; }
    & .nav-rail__burger { display: flex; }
    & .nav-rail__inner { gap: var(--space-sm); }
  }

  .stage {
    & .stage__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
    & .stage__visual { display: none; }
    & .stage__sub { font-size: 1rem; }
  }

  .gallery {
    & .gallery__steps { grid-template-columns: 1fr; }
    & .gallery__process-item { grid-template-columns: 60px 1fr; }
    & .gallery__contact-form-wrap h2 { margin-top: var(--space-xl); }
  }

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

  .contact-form .contact-form__row { grid-template-columns: 1fr; }

  .footer-stage {
    & .footer-stage__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
    & .footer-stage__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  .compare-table { font-size: 0.8rem;
    & th, & td { padding: 0.75rem 0.6rem; }
  }

  .stage-curtain--compare .stage-curtain__inner { padding: 0 var(--space-sm); }

  .spotlight .spotlight__inner--wide { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stage .stage__actions { flex-direction: column; }
  .gallery .gallery__benefits-grid { grid-template-columns: 1fr; }
  .shelf .shelf__principles-grid { grid-template-columns: 1fr; }
  .shelf .shelf__formats-grid { grid-template-columns: 1fr; }
  .cookie-modal .cookie-modal__actions { flex-direction: column; }
  .cookie-modal .cookie-modal__actions .btn-ghost,
  .cookie-modal .cookie-modal__actions .btn-primary { width: 100%; justify-content: center; }
}