/* =============================================
   MOONCHROME – STYLE.CSS
   Duotone Bold: Deep Indigo #1a1040 + Amber #f5a623
   ============================================= */

/* === TOKENS === */
:root {
  --c-ink: #1a1040;
  --c-ink-deep: #110a2e;
  --c-ink-mid: #2d1f5e;
  --c-amber: #f5a623;
  --c-amber-light: #fbbf5c;
  --c-amber-pale: #fef3d9;
  --c-cream: #faf8f2;
  --c-white: #ffffff;
  --c-text-on-ink: #ede8ff;
  --c-text-muted-on-ink: #a89fcc;
  --c-text-on-cream: #1a1040;
  --c-text-muted-on-cream: #5a4e80;
  --c-glass-ink: rgba(26,16,64,0.72);
  --c-glass-amber: rgba(245,166,35,0.12);
  --c-border-ink: rgba(255,255,255,0.08);
  --c-border-cream: rgba(26,16,64,0.12);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 48px;
  --sp-xl: 80px;
  --sp-xxl: 120px;

  --sh-card: 0 2px 8px rgba(26,16,64,0.08), 0 8px 32px rgba(26,16,64,0.12), 0 1px 0 rgba(255,255,255,0.6) inset;
  --sh-card-hover: 0 4px 16px rgba(26,16,64,0.12), 0 16px 48px rgba(26,16,64,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  --sh-amber: 0 4px 20px rgba(245,166,35,0.35), 0 1px 4px rgba(245,166,35,0.2);
  --sh-amber-hover: 0 6px 32px rgba(245,166,35,0.5), 0 2px 8px rgba(245,166,35,0.3);

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

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--c-text-on-cream);
  background: var(--c-cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === SKELETON LOADER === */
.skel {
  position: fixed;
  inset: 0;
  background: var(--c-ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  padding: var(--sp-lg);
  transition: opacity 0.5s ease, visibility 0.5s ease;

  &.skel--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.skel-nav {
  height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  animation: skelPulse 1.4s ease-in-out infinite;
}
.skel-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-md);
  max-width: 640px;
}
.skel-line {
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  animation: skelPulse 1.4s ease-in-out infinite;

  &--xl { height: 64px; width: 90%; animation-delay: 0.1s; }
  &--lg { height: 48px; width: 75%; animation-delay: 0.2s; }
  &--md { height: 28px; width: 60%; animation-delay: 0.3s; }
}
.skel-btn {
  height: 52px;
  width: 180px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--r-full);
  animation: skelPulse 1.4s ease-in-out infinite;
  animation-delay: 0.4s;
}
@keyframes skelPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

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

/* === TYPOGRAPHY SCALE === */
.sec-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-sm);

  &--light { color: var(--c-amber); }
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);

  &--light { color: var(--c-cream); }
}
.sec-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-muted-on-cream);
  margin-bottom: var(--sp-md);

  &:last-child { margin-bottom: 0; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: all var(--transition);
  white-space: nowrap;

  &--primary {
    background: var(--c-amber);
    color: var(--c-ink);
    box-shadow: var(--sh-amber);

    &:hover {
      background: var(--c-amber-light);
      box-shadow: var(--sh-amber-hover);
      transform: translateY(-2px);
    }
    &:active { transform: translateY(0); }
  }

  &--ghost {
    background: transparent;
    color: var(--c-text-on-ink);
    border: 1.5px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);

    &:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.5);
      transform: translateY(-2px);
    }
  }

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

  &--primary-sm {
    background: var(--c-amber);
    color: var(--c-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--r-full);
    transition: all var(--transition);

    &:hover { background: var(--c-amber-light); transform: translateY(-1px); }
  }

  &--ghost-sm {
    background: transparent;
    color: var(--c-text-on-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all var(--transition);

    &:hover { background: rgba(255,255,255,0.08); }
  }
}

/* === HEADER === */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s ease, box-shadow 0.35s ease;

  &.hdr--scrolled {
    background: rgba(26,16,64,0.92);
    backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(17,10,46,0.4);
  }

  &.hdr--hidden {
    transform: translateY(-100%);
  }
}
.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.hdr-nav {
  display: none;
  align-items: center;
  gap: var(--sp-md);

  @media (min-width: 900px) {
    display: flex;
  }
}
.hdr-nav-lnk {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-on-ink);
  opacity: 0.85;
  transition: all var(--transition);

  &:hover {
    opacity: 1;
    color: var(--c-amber);
  }

  &.hdr-cta {
    background: var(--c-amber);
    color: var(--c-ink);
    padding: 10px 22px;
    border-radius: var(--r-full);
    opacity: 1;
    box-shadow: var(--sh-amber);

    &:hover {
      background: var(--c-amber-light);
      box-shadow: var(--sh-amber-hover);
      transform: translateY(-2px);
    }
  }
}
.hdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--transition);

  @media (min-width: 900px) { display: none; }

  & span {
    display: block;
    height: 2px;
    background: var(--c-text-on-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  &:hover { background: rgba(255,255,255,0.08); }

  &.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  &.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  &.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* === MOBILE MENU CURTAIN === */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--c-ink-deep);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;

  &.is-open {
    transform: translateY(0);
    pointer-events: all;
  }
}
.mob-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}
.mob-lnk {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text-on-ink);
  opacity: 0;
  transform: translateY(-24px);
  transition: all var(--transition), opacity 0.4s ease, transform 0.4s ease;

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

  &--cta {
    color: var(--c-amber);
    border: 2px solid var(--c-amber);
    padding: 12px 36px;
    border-radius: var(--r-full);
    margin-top: var(--sp-sm);
    font-size: clamp(1.1rem, 3vw, 1.4rem);

    &:hover { background: var(--c-amber); color: var(--c-ink); }
  }

  .mob-menu.is-open & {
    opacity: 1;
    transform: translateY(0);

    &:nth-child(1) { transition-delay: 0.12s; }
    &:nth-child(2) { transition-delay: 0.18s; }
    &:nth-child(3) { transition-delay: 0.24s; }
    &:nth-child(4) { transition-delay: 0.30s; }
    &:nth-child(5) { transition-delay: 0.36s; }
  }
}
.mob-close {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-muted-on-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: all var(--transition);

  &:hover { color: var(--c-text-on-ink); border-color: rgba(255,255,255,0.35); }
}

/* === SECTIONS COMMON === */
.sec {
  position: relative;
  overflow: hidden;
}

/* === HERO === */
.sec--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-ink-deep);
  padding-top: var(--nav-h);
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  filter: sepia(1) hue-rotate(220deg) saturate(0.6) brightness(0.4);
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,64,0.95) 0%, rgba(17,10,46,0.85) 50%, rgba(26,16,64,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  max-width: 760px;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: var(--sp-md);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--c-text-on-ink);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}
.hero-title-accent {
  color: var(--c-amber);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-text-muted-on-ink);
  margin-bottom: var(--sp-lg);
  max-width: 580px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted-on-ink);
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === DESPRE === */
.sec--despre {
  background: var(--c-cream);
  padding: var(--sp-xxl) 0;
}
.despre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);

  @media (min-width: 900px) {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.despre-text {}
.despre-visual {}
.despre-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.despre-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  filter: sepia(0.2) hue-rotate(220deg) saturate(1.1);
  box-shadow: 0 8px 40px rgba(26,16,64,0.18), 0 2px 8px rgba(26,16,64,0.1);
}
.despre-img-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  padding: var(--sp-md);
  border-radius: var(--r-lg);
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(17,10,46,0.4);
  border: 1px solid var(--c-border-ink);

  & i {
    font-size: 1.5rem;
    color: var(--c-amber);
    margin-bottom: 8px;
    display: block;
  }

  & p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--c-text-muted-on-ink);
  }
}
.despre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-md);
}
.tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(26,16,64,0.06);
  color: var(--c-ink);
  border: 1px solid rgba(26,16,64,0.12);
  cursor: default;
  transition: all var(--transition);

  &:hover {
    background: var(--c-amber-pale);
    border-color: var(--c-amber);
    color: var(--c-ink);
  }
}

/* === CURRICULUM === */
.sec--curr {
  background: var(--c-ink);
  padding: var(--sp-xxl) 0;
}
.curr-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
}
.curr-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--c-text-muted-on-ink);
}
.curr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);

  @media (min-width: 640px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 1000px) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.crd--curr {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  position: relative;
  backdrop-filter: blur(8px);
  transition: all var(--transition);

  &:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(245,166,35,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(17,10,46,0.5), 0 0 0 1px rgba(245,166,35,0.15);
  }
}
.crd-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-amber);
  opacity: 0.7;
  margin-bottom: var(--sp-md);
}
.crd-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  transition: all var(--transition);

  & i {
    font-size: 1.2rem;
    color: var(--c-amber);
  }

  .crd--curr:hover & {
    background: rgba(245,166,35,0.2);
    border-color: rgba(245,166,35,0.4);
  }
}
.crd-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-on-ink);
  margin-bottom: 10px;
}
.crd-txt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-text-muted-on-ink);
}

/* === METODA === */
.sec--metoda {
  background: var(--c-cream);
  padding: var(--sp-xxl) 0;
}
.metoda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);

  @media (min-width: 900px) {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.metoda-img-stack {
  position: relative;
  height: 480px;
}
.metoda-img {
  position: absolute;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(26,16,64,0.16);

  &--back {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
    filter: sepia(0.3) hue-rotate(200deg) saturate(0.9);
  }

  &--front {
    width: 65%;
    height: 70%;
    bottom: 0;
    left: 0;
    border: 4px solid var(--c-cream);
    filter: sepia(0.1) hue-rotate(220deg) saturate(1.2);
    box-shadow: 0 16px 48px rgba(26,16,64,0.22), 0 4px 12px rgba(26,16,64,0.1);
  }
}
.metoda-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.metoda-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  padding: var(--sp-md);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--c-border-cream);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  box-shadow: var(--sh-card);

  &:hover {
    box-shadow: var(--sh-card-hover);
    transform: translateX(4px);
    border-color: rgba(245,166,35,0.3);
  }
}
.metoda-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;

  & i {
    font-size: 1rem;
    color: var(--c-amber);
  }
}
.metoda-item-txt {
  & h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 4px;
  }

  & p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--c-text-muted-on-cream);
  }
}

/* === GALERIE === */
.sec--galerie {
  background: var(--c-ink-deep);
  padding: var(--sp-xxl) 0;
}
.galerie-head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.galerie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-sm);

  @media (min-width: 768px) {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: sepia(0.4) hue-rotate(220deg) saturate(0.8) brightness(0.85);
    mix-blend-mode: normal;

    @media (min-width: 768px) { aspect-ratio: unset; }
  }

  &:hover img { transform: scale(1.06); filter: sepia(0.2) hue-rotate(220deg) saturate(1.1) brightness(0.9); }

  &--large {
    @media (min-width: 768px) {
      grid-row: span 2;
    }
  }

  &--wide {
    grid-column: span 2;

    @media (min-width: 768px) {
      grid-column: span 1;
    }
  }
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,64,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-md);
  opacity: 0;
  transition: opacity var(--transition);

  & span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-on-ink);
  }

  .gal-item:hover & { opacity: 1; }
}

/* === PENTRU CINE === */
.sec--pcine {
  background: var(--c-ink-mid);
  padding: var(--sp-xxl) 0;
}
.pcine-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}
.pcine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);

  @media (min-width: 640px) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.crd--pcine {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  transition: all var(--transition);

  &:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(245,166,35,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17,10,46,0.4);
  }

  & .crd-title {
    color: var(--c-text-on-ink);
  }

  & .crd-ico {
    background: rgba(245,166,35,0.1);
    border-color: rgba(245,166,35,0.2);
  }
}

/* === CONTACT === */
.sec--contact {
  background: var(--c-cream);
  padding: var(--sp-xxl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);

  @media (min-width: 900px) {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.95rem;
  color: var(--c-text-muted-on-cream);

  & i {
    width: 20px;
    color: var(--c-amber);
    flex-shrink: 0;
  }

  & a {
    color: var(--c-ink);
    font-weight: 500;
    transition: color var(--transition);

    &:hover { color: var(--c-amber); }
  }
}
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}

/* === FORM === */
.frm {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  box-shadow: var(--sh-card);
  border: 1px solid var(--c-border-cream);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.frm-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);

  @media (min-width: 600px) {
    grid-template-columns: 1fr 1fr;
  }
}
.frm-grp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.frm-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.04em;

  & span { color: var(--c-amber); }
}
.frm-inp {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--c-ink);
  background: var(--c-cream);
  border: 1.5px solid var(--c-border-cream);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%;
  transition: all var(--transition);
  outline: none;
  appearance: none;

  &::placeholder { color: var(--c-text-muted-on-cream); opacity: 0.6; }

  &:focus {
    border-color: var(--c-amber);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  }

  &.frm-textarea {
    resize: vertical;
    min-height: 140px;
  }
}
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.frm-chk {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--c-amber);
  margin-top: 2px;
  cursor: pointer;
}
.frm-chk-lbl {
  font-size: 0.85rem;
  color: var(--c-text-muted-on-cream);
  line-height: 1.5;

  & a {
    color: var(--c-amber);
    text-decoration: underline;
    text-decoration-color: rgba(245,166,35,0.4);

    &:hover { text-decoration-color: var(--c-amber); }
  }
}

/* === FOOTER === */
.ftr {
  background: var(--c-ink-deep);
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);

  @media (min-width: 640px) {
    grid-template-columns: 1fr 1fr;
  }

  @media (min-width: 900px) {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.ftr-logo {
  margin-bottom: var(--sp-sm);
  filter: brightness(1.1);
}
.ftr-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-text-muted-on-ink);
  max-width: 260px;
}
.ftr-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-md);
}
.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 10px;

  & li, & a {
    font-size: 0.88rem;
    color: var(--c-text-muted-on-ink);
    transition: color var(--transition);
  }

  & a:hover { color: var(--c-text-on-ink); }
}
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-sm);
}
.ftr-copy, .ftr-legal-note {
  font-size: 0.82rem;
  color: rgba(168,159,204,0.6);
}

/* === COOKIE CONSENT === */
.ck-trigger {
  position: fixed;
  bottom: var(--sp-md);
  left: var(--sp-md);
  z-index: 800;
}
.ck-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted-on-ink);
  background: rgba(26,16,64,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(17,10,46,0.3);

  & i { color: var(--c-amber); font-size: 0.85rem; }

  &:hover {
    color: var(--c-text-on-ink);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 4px 20px rgba(17,10,46,0.4);
  }

  &.ck-pulse {
    animation: ckPulse 2s ease-in-out 3;
  }
}
@keyframes ckPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(17,10,46,0.3); }
  50% { box-shadow: 0 2px 12px rgba(17,10,46,0.3), 0 0 0 6px rgba(245,166,35,0.2); }
}
.ck-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,10,46,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  &.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.ck-modal {
  background: var(--c-ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 24px 80px rgba(17,10,46,0.7);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);

  .ck-modal-overlay.is-open & {
    transform: translateY(0) scale(1);
  }
}
.ck-modal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  & h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text-on-ink);
    display: flex;
    align-items: center;
    gap: 8px;

    & i { color: var(--c-amber); }
  }
}
.ck-modal-close {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-text-muted-on-ink);
  transition: all var(--transition);

  &:hover { background: rgba(255,255,255,0.08); color: var(--c-text-on-ink); }
}
.ck-modal-body {
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);

  & > p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--c-text-muted-on-ink);
  }
}
.ck-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);

  &:last-child { border-bottom: none; }
}
.ck-cat-info {
  & strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-text-on-ink);
    margin-bottom: 3px;
  }

  & p {
    font-size: 0.78rem;
    color: var(--c-text-muted-on-ink);
    line-height: 1.4;
  }
}
.ck-always {
  font-size: 0.75rem;
  color: var(--c-amber);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.ck-toggle-wrap {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.ck-chk {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ck-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  position: relative;
  transition: background var(--transition);

  &::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--c-white);
    border-radius: 50%;
    transition: transform var(--transition);
  }

  .ck-chk:checked + & {
    background: var(--c-amber);

    &::after { transform: translateX(20px); }
  }
}
.ck-modal-ftr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: var(--sp-md) var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

/* === TIPPY CUSTOM THEME === */
.tippy-box[data-theme~='custom'] {
  background: var(--c-ink);
  color: var(--c-text-on-ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(17,10,46,0.5);
  max-width: 220px;
  padding: 2px;
}
.tippy-box[data-theme~='custom'] .tippy-arrow::before {
  color: var(--c-ink);
}

/* === LEGAL PAGES === */
.legal-pg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-pg main {
  flex: 1;
  padding: calc(var(--nav-h) + var(--sp-xl)) 0 var(--sp-xxl);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
.legal-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);
  line-height: 1.15;
}
.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--c-text-muted-on-cream);
  margin-bottom: var(--sp-xl);
  display: block;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}
.legal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink-mid);
  margin-top: var(--sp-md);
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--c-text-muted-on-cream);
  margin-bottom: var(--sp-sm);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-sm);

  & li {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--c-text-muted-on-cream);
    margin-bottom: 6px;
  }
}
.legal-content a {
  color: var(--c-amber);
  text-decoration: underline;
}

/* === THANKS PAGE === */
.thanks-pg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-pg main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) var(--sp-md) var(--sp-xl);
}
.thanks-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}
.thanks-dot {
  width: 24px;
  height: 24px;
  background: var(--c-amber);
  border-radius: 50%;
  animation: dotExpand 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}
@keyframes dotExpand {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-ink);
  animation: fadeInUp 0.7s ease 0.9s both;
}
.thanks-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted-on-cream);
  max-width: 440px;
  line-height: 1.65;
  animation: fadeInUp 0.7s ease 1.2s both;
}
.thanks-link {
  animation: fadeInUp 0.7s ease 1.6s both;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-amber);
  transition: gap var(--transition);

  &:hover { gap: 12px; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 480px) {
  .despre-img-card { display: none; }
  .metoda-img-stack { height: 300px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}