/* ============================================
   KELORQONAI DIGITAL - Line Art Minimal CSS
   ============================================ */


:root {
  --color-bg: #f8f7f4;
  --color-surface: #ffffff;
  --color-surface-tint: #f2f0eb;
  --color-dark: #1a1814;
  --color-dark-mid: #2e2b26;
  --color-text: #3a3730;
  --color-text-muted: #7a7669;
  --color-text-light: #b0ac9e;
  --color-primary: #2c4a3e;
  --color-primary-light: #3d6456;
  --color-primary-pale: #eaf1ee;
  --color-accent: #b8860b;
  --color-accent-light: #d4a017;
  --color-accent-pale: #fdf6e3;
  --color-border: #e2ddd4;
  --color-border-strong: #c8c2b4;
  --color-white: #ffffff;

  --shadow-xs: 0 1px 2px rgba(26,24,20,0.06);
  --shadow-sm: 0 2px 8px rgba(26,24,20,0.07), 0 1px 2px rgba(26,24,20,0.04);
  --shadow-md: 0 4px 16px rgba(26,24,20,0.09), 0 2px 4px rgba(26,24,20,0.05);
  --shadow-lg: 0 8px 32px rgba(26,24,20,0.12), 0 3px 8px rgba(26,24,20,0.06);
  --shadow-xl: 0 16px 48px rgba(26,24,20,0.15), 0 4px 12px rgba(26,24,20,0.07);

  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --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-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --nav-height: 72px;
}


*, *::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);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-dark);
}

.heading--section {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.heading--light { color: var(--color-white); }

.body--large {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text);
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-accent);
}

.label--light {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.4);
}

.link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: gap var(--transition-base), color var(--transition-base);
  margin-top: var(--space-md);
}
.link--arrow:hover { gap: 10px; color: var(--color-primary-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  min-height: 44px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary-pale);
  transform: translateY(-1px);
}

.btn--outline.btn--light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline.btn--light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  min-height: 36px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 820px;
}

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

.section--tinted { background-color: var(--color-surface-tint); }
.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.section--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}
.section__header--light .heading--section,
.section__header--light .label { color: var(--color-white); }
.section__header--light .label { border-bottom-color: rgba(255,255,255,0.5); }

.section__subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: var(--space-xs);
}

/* ============================================
   COOKIE BAR
   ============================================ */
#cookie-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  max-height: fit-content;
  opacity: 1;
}

#cookie-bar.cookie-bar--hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-bar__text {
  flex: 1;
  min-width: 200px;
}
.cookie-bar__text a {
  color: var(--color-accent-light);
  border-bottom: 1px solid currentColor;
}

.cookie-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  min-height: 30px;
  cursor: pointer;
  font-family: var(--font-body);
}

.cookie-bar__btn--accept {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.cookie-bar__btn--accept:hover { background: var(--color-accent-light); }

.cookie-bar__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.cookie-bar__btn--decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
  background: transparent;
}

.nav--scrolled {
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 221, 212, 0.5);
  box-shadow: 0 2px 12px rgba(26,24,20,0.06);
}

.nav--solid {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

.nav__logo { flex-shrink: 0; }
.nav__logo img { transition: opacity var(--transition-base); }
.nav__logo:hover img { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__cta { margin-left: var(--space-xs); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav__hamburger:hover { background: var(--color-surface-tint); }
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.hero + * { }
.nav:not(.nav--scrolled):not(.nav--solid) .nav__link {
  color: rgba(255,255,255,0.9);
}
.nav:not(.nav--scrolled):not(.nav--solid) .nav__link::after {
  background: var(--color-white);
}
.nav:not(.nav--scrolled):not(.nav--solid) .nav__link:hover,
.nav:not(.nav--scrolled):not(.nav--solid) .nav__link--active {
  color: var(--color-white);
}
.nav:not(.nav--scrolled):not(.nav--solid) .nav__hamburger span {
  background: var(--color-white);
}

/* ============================================
   MOBILE MENU - Diagonal Clip-path Wipe
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.mobile-menu.mobile-menu--open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

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

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: color var(--transition-base), opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.mobile-menu--open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.mobile-menu--open .mobile-menu__link:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.mobile-menu--open .mobile-menu__link:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.mobile-menu--open .mobile-menu__link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.mobile-menu--open .mobile-menu__link:nth-child(4) { transition-delay: 0.35s; }
.mobile-menu.mobile-menu--open .mobile-menu__link:nth-child(5) { transition-delay: 0.4s; }

.mobile-menu__link:hover { color: var(--color-white); }

.mobile-menu__btn {
  margin-top: var(--space-sm);
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s, background var(--transition-base), box-shadow var(--transition-base);
}
.mobile-menu.mobile-menu--open .mobile-menu__btn {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__overlay {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26,24,20,0.55) 0%,
    rgba(26,24,20,0.45) 50%,
    rgba(26,24,20,0.7) 100%
  );
}

.hero__blob {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobMove 18s ease-in-out infinite;
}

.hero__blob {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation-delay: -9s;
  animation-duration: 22s;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  display: inline-block;
  padding-bottom: 4px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.intro__text { padding-right: var(--space-lg); }
.intro__text .heading--section { margin-top: var(--space-sm); }
.intro__text p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }

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

.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--color-primary-pale);
}

.feature-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   CARD GRID
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-border);
  transition: background var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
}

.card:hover::before { background: var(--color-primary); }

.card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.card--featured::before { background: var(--color-accent); }
.card--featured:hover { border-color: var(--color-primary-light); }

.card--course .card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  background: var(--color-primary-pale);
}

.card--featured .card__icon {
  border-color: rgba(255,255,255,0.2);
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.card--featured .card__title { color: var(--color-white); }

.card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.card--featured .card__text { color: rgba(255,255,255,0.8); }

.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xs);
  padding: 2px 8px;
}

.card--featured .card__tag {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}


.card:has(img) {
  padding: 0;
  overflow: hidden;
}

.card:has(img) .card__body { padding: var(--space-md); }

/* ============================================
   FEATURE ALT (Zigzag)
   ============================================ */
.feature-alt__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.feature-alt__row:last-child { margin-bottom: 0; }

.feature-alt__row--reverse .feature-alt__media { order: 2; }
.feature-alt__row--reverse .feature-alt__content { order: 1; }

.feature-alt__media {
  position: relative;
}

.feature-alt__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.feature-alt__frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.feature-alt__row--reverse .feature-alt__frame {
  right: auto;
  left: -16px;
}

.feature-alt__content .heading--section { margin-top: var(--space-sm); }
.feature-alt__content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.feature-alt__content .btn { margin-top: var(--space-sm); }

/* ============================================
   SWIPER / GALLERY
   ============================================ */
.swiper-section { overflow: hidden; }

.gallery-swiper {
  width: 100%;
  padding: 0 0 var(--space-lg);
}

.gallery-swiper .swiper-slide {
  width: 60%;
  max-width: 700px;
}

.swiper-slide__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.6;
  transition: opacity var(--transition-slow);
}

.swiper-slide-active .swiper-slide__img { opacity: 1; }

.gallery-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.gallery-swiper .swiper-pagination-bullet-active { background: var(--color-white); }

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: background var(--transition-base);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 0.9rem;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
}

.step__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: opacity var(--transition-base);
}

.step:hover .step__number { opacity: 0.4; }

.step__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.step__content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.step__connector {
  width: 1px;
  height: 60px;
  background: var(--color-border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -var(--space-sm);
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  text-align: center;
  padding: var(--space-2xl);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
}

.cta-block__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.cta-block__text {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
}

.cta-block--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  text-align: left;
  background: var(--color-primary-pale);
  border: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
}

.cta-block--inline h2 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.cta-block--inline p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-top: var(--space-sm);
}

.page-hero--short { padding: var(--space-xl) var(--space-md); }

/* ============================================
   TEAM
   ============================================ */
.team-intro {
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.team-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

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

.team-card--reverse { direction: rtl; }
.team-card--reverse > * { direction: ltr; }

.team-card__photo {
  position: relative;
}

.team-card__photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.team-card__frame {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 70%;
  height: 70%;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  z-index: -1;
  pointer-events: none;
}

.team-card--reverse .team-card__frame {
  right: auto;
  left: -10px;
}

.team-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.team-card__info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-md);
}

.team-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: 3px 10px;
  background: var(--color-primary-pale);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.approach-item {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.approach-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.approach-item__icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.approach-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.approach-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   CALENDAR
   ============================================ */
.season-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
}

.season-tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-base), border-color var(--transition-base);
  min-height: 44px;
}

.season-tab:hover { color: var(--color-primary); }

.season-tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.season-content--hidden { display: none; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.calendar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}

.calendar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.calendar-card__season {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.calendar-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.calendar-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.calendar-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.calendar-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.calendar-card__details {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}

.calendar-card__details span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.prep-item {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow var(--transition-base);
}

.prep-item:hover { box-shadow: var(--shadow-md); }

.prep-item__icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.prep-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.prep-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   LOCATIONS
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: 0;
}

.location-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.location-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.location-card__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-card:hover .location-card__img-wrap img {
  transform: scale(1.04);
}

.location-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.7), transparent);
  padding: var(--space-md);
}

.location-card__region {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.location-card__body {
  padding: var(--space-md);
}

.location-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.location-card__body p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.location-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.location-card__info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

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

.planning-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.planning-checklist h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

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

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text);
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.checklist li i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-md); }
.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--color-primary-pale);
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  transition: color var(--transition-base);
}

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

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.area-item {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow var(--transition-base);
}

.area-item:hover { box-shadow: var(--shadow-md); }

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

.area-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.area-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.map-wrap { max-width: 900px; }
.map-wrap h2 { margin-bottom: var(--space-xs); }
.map-wrap > p { color: var(--color-text-muted); margin-bottom: var(--space-md); }

.map-container {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   WIZARD FORM
   ============================================ */
.wizard-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.wizard-step-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-surface);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.wizard-step-dot--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.wizard-step-dot--done {
  background: var(--color-primary-pale);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.wizard-step-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  max-width: 80px;
}

.wizard-panel { display: none; }
.wizard-panel--active { display: block; }

.wizard-panel__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.required { color: var(--color-accent); }

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 74, 62, 0.1);
}


.form-group:has(.form-input:focus) .form-label {
  color: var(--color-primary);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7669' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-group--checkbox { margin-top: var(--space-md); }

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

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  background: var(--color-surface);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.checkbox-label a {
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
}

.wizard-nav {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-page {
  min-height: calc(100svh - var(--nav-height) - 300px);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
}

.thanks-page__inner {
  text-align: center;
  max-width: 560px;
}

.thanks-page__icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
}

.thanks-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.thanks-page__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.thanks-page__btn {
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.legal-meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.legal-header p:last-child {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child { border-bottom: none; }

.legal-summary {
  background: var(--color-primary-pale);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: disc;
  padding-left: var(--space-lg);
  margin: var(--space-sm) 0;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-section--lettered .legal-summary {
  border-left-color: var(--color-accent);
  background: var(--color-accent-pale);
  color: var(--color-accent);
}

.cookies-intro-section { border-bottom: none; padding-bottom: 0; }

.cookie-table-wrap {
  margin-bottom: var(--space-lg);
}

.cookie-table-wrap h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.cookie-table-wrap > p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
  background: var(--color-surface-tint);
}

.cookie-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 0;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo { margin-bottom: var(--space-md); }

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.55);
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  transition: color var(--transition-base);
}

.footer__contact-link:hover { color: var(--color-white); }

.footer__nav h4,
.footer__legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer__nav ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a,
.footer__legal a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-base);
}

.footer__nav a:hover,
.footer__legal a:hover { color: var(--color-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .intro__text { padding-right: 0; }
  .feature-alt__row { grid-template-columns: 1fr; }
  .feature-alt__row--reverse .feature-alt__media { order: 0; }
  .feature-alt__row--reverse .feature-alt__content { order: 0; }
  .feature-alt__img { height: 320px; }
  .team-card { grid-template-columns: 1fr; }
  .team-card--reverse { direction: ltr; }
  .planning-content { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { flex-direction: column; align-items: stretch; }
  .step__connector { width: 60px; height: 1px; align-self: flex-start; margin-left: var(--space-lg); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: var(--space-xl) 0; }
  .intro__features { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-alt__img { height: 260px; }
  .feature-alt__frame { display: none; }
  .gallery-swiper .swiper-slide { width: 85%; }
  .swiper-slide__img { height: 280px; }
  .team-card__photo img { height: 240px; }
  .team-card__frame { display: none; }
  .cta-block--inline { flex-direction: column; text-align: center; padding: var(--space-lg); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .season-tabs { flex-wrap: wrap; }
  .cookie-bar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .wizard-form { padding: var(--space-lg); }
  .wizard-nav { flex-direction: column; }
  .wizard-nav .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-sm); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .page-hero--short { padding: var(--space-lg) var(--space-sm); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .calendar-card__details { flex-direction: column; gap: var(--space-xs); }
  .cookie-table { font-size: 0.78rem; }
  .cookie-table th, .cookie-table td { padding: 8px 6px; }
}