/* =========================================================
   Vin în Vrancea — V2 mockup design system
   Direcția A: Editorial White
   Stack: HTML + CSS + Leaflet (no framework)
   ========================================================= */

/* ========== TOKENS (LIGHT DEFAULT) ========== */
:root {
  /* paletă light — default */
  --ink: #0A0A0A;
  --ink-soft: #1F1F1F;
  --ink-mute: #585855; /* darker pentru WCAG AA contrast (5.8:1 pe --paper) */
  --paper: #FAFAF8;
  --paper-2: #FFFFFF;
  --paper-3: #F2EFE8;
  --white: #FFFFFF;
  --hairline: #E8E5DF;
  --hairline-strong: rgba(10,10,10,.16);
  --wine: #7A1E1E;
  --wine-deep: #5A1414;
  --wine-light: #A53D3D;
  --wine-wash: #F5E8E8;
  --lichen: #5A7A3C;
  --gold: #B8893A;
  --header-bg: rgba(250,250,248,.86);
  --overlay-dark: rgba(10,10,10,.78);

  /* tipografie */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Brush Script MT", cursive;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* spațiu (8px base) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --s-11: 192px;

  /* radius */
  --r-tight: 4px;
  --r-soft: 12px;
  --r-card: 20px;
  --r-feature: 24px;
  --r-pill: 999px;

  /* shadows */
  --sh-whisper: 0 1px 2px rgba(10,10,10,.04);
  --sh-soft: 0 4px 12px rgba(10,10,10,.06);
  --sh-lift: 0 14px 36px rgba(10,10,10,.10);
  --sh-deep: 0 28px 64px rgba(10,10,10,.16);
  --sh-wine: 0 0 48px rgba(122,30,30,.20);
  --sh-glow: 0 0 0 1px rgba(10,10,10,.04) inset;

  /* container */
  --container: 1440px;
  --pad-x: clamp(20px, 5vw, 96px);
}

/* ========== TOKENS (DARK — via [data-theme="dark"]) ========== */
:root[data-theme="dark"] {
  /* paletă dark — NAVY BLUE ca la v1 (deep navy, nu pure black) */
  --ink: #E8EDF5;
  --ink-soft: #B8C3D4;
  --ink-mute: #7C8AA0;
  --paper: #0B1426;       /* deep navy blue */
  --paper-2: #131F36;     /* card elevation */
  --paper-3: #1B2A47;     /* hover elevation */
  --white: #F5F8FF;
  --hairline: rgba(180,200,235,.10);
  --hairline-strong: rgba(180,200,235,.20);
  --wine: #D55757;        /* burgundy lighter pe navy */
  --wine-deep: #7A1E1E;
  --wine-light: #F07A7A;
  --wine-wash: rgba(213,87,87,.12);
  --lichen: #9FC56F;
  --gold: #E6B66A;
  --header-bg: rgba(11,20,38,.86);
  --overlay-dark: rgba(11,20,38,.78);

  /* shadows mai opace pe dark */
  --sh-whisper: 0 1px 2px rgba(0,0,0,.40);
  --sh-soft: 0 4px 14px rgba(0,0,0,.55);
  --sh-lift: 0 14px 36px rgba(0,0,0,.65);
  --sh-deep: 0 28px 64px rgba(0,0,0,.75);
  --sh-wine: 0 0 48px rgba(196,69,69,.28);
  --sh-glow: 0 0 0 1px rgba(255,255,255,.06) inset;

  color-scheme: dark;
}

/* ========== RESET ========== */
*, *::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-feature-settings: "ss01", "cv11", "ss03";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--wine); color: var(--white); }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-4) var(--pad-x);
  background: rgba(250,250,248,.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(232,229,223,.6);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.site-header.is-dark {
  background: rgba(10,10,10,.78);
  border-bottom-color: rgba(255,255,255,.06);
  color: var(--white);
}
/* dark theme global → header & brand symbol swap */
:root[data-theme="dark"] .site-header {
  background: rgba(14,13,12,.86);
  border-bottom-color: rgba(255,255,255,.06);
}
:root[data-theme="dark"] .brand-symbol--light { display: none; }
:root[data-theme="dark"] .brand-symbol--dark { display: block; }
:root[data-theme="dark"] .brand-mark { color: var(--ink); }
:root[data-theme="dark"] .brand-tag { color: var(--ink-mute); }
:root[data-theme="dark"] .icon-btn:hover { background: rgba(255,255,255,.08); }
:root[data-theme="dark"] .lang-switch {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
:root[data-theme="dark"] .menu-trigger { background: var(--ink); color: var(--paper); }
:root[data-theme="dark"] .menu-trigger:hover { background: var(--wine); color: var(--white); }
.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.brand-logo--dark { display: none; }
.site-header.is-dark .brand-logo--light { display: none; }
.site-header.is-dark .brand-logo--dark { display: block; }
@media (max-width: 720px) {
  .brand-logo { height: 44px; }
}

/* brand = symbol black + wordmark text alături */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-symbol {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-symbol--dark { display: none; }
.site-header.is-dark .brand-symbol--light { display: none; }
.site-header.is-dark .brand-symbol--dark { display: block; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.005em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  transition: color .35s ease;
}
.brand-mark .vin {
  font-style: italic;
  font-weight: 300;
}
.brand-mark .vrancea {
  font-weight: 600;
  letter-spacing: .04em;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
  transition: color .35s ease, letter-spacing .25s ease;
  /* CSS-only attempt: distribute ALL-CAPS pe lățimea wordmark-ului */
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
  white-space: nowrap;
}
.site-header.is-dark .brand-mark { color: var(--white); }
.site-header.is-dark .brand-tag { color: rgba(255,255,255,.66); }
@media (max-width: 720px) {
  .brand-symbol { height: 40px; }
  .brand-mark { font-size: 17px; }
  .brand-tag { font-size: 9px; letter-spacing: .14em; }
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  font-size: 14px;
  font-weight: 500;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  font-size: 13px;
  letter-spacing: .04em;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.lang-switch .active { color: var(--wine); font-weight: 600; }
.lang-switch .sep { color: var(--ink-mute); }
.site-header.is-dark .lang-switch {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  transition: background .2s ease;
}
.icon-btn:hover { background: rgba(10,10,10,.06); }
.site-header.is-dark .icon-btn:hover { background: rgba(255,255,255,.08); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* ========== THEME TOGGLE ========== */
.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  transition: background .2s ease, color .2s ease;
}
.theme-toggle:hover { background: rgba(10,10,10,.06); }
.site-header.is-dark .theme-toggle:hover { background: rgba(255,255,255,.08); }
:root[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,.08); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}
.menu-trigger:hover { background: var(--wine); transform: translateY(-1px); }
.site-header.is-dark .menu-trigger { background: var(--white); color: var(--ink); }
.site-header.is-dark .menu-trigger:hover { background: var(--wine); color: var(--white); }
.menu-trigger .lines { display: none !important; }
.menu-trigger .menu-icon {
  display: inline-block !important;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
}
@media (max-width: 720px) {
  .menu-trigger .menu-icon { width: 24px; height: 24px; stroke-width: 2.6; }
}

/* ========== FLOATING CHIPS ========== */
.float-chips {
  position: fixed;
  top: 50%;
  right: var(--s-5);
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.chip {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--wine);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-soft);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  position: relative;
}
.chip:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateX(-4px);
}
.chip svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.chip[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 100%; margin-right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 6px 10px;
  border-radius: var(--r-tight);
  box-shadow: var(--sh-soft);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.chip:hover[data-tooltip]::after { opacity: 1; }
.chip .badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--wine);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}

/* ========== HERO HOMEPAGE ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.22) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 50%, rgba(10,10,10,.82) 100%);
  z-index: 2;
}
.hero-slide img,
.hero-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.97);
  transform: scale(1.04);
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-slide video { pointer-events: none; }
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1.5%); }
}
.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: var(--s-7);
  padding: calc(80px + var(--s-9)) var(--pad-x) var(--s-9);
}
.hero-eyebrow {
  grid-column: 1; grid-row: 1;
  align-self: start;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--wine-light);
}
.hero-headline {
  grid-column: 1; grid-row: 2;
  align-self: end;
  max-width: 920px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 156px);
  line-height: .92;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.40);
}
.hero-eyebrow,
.hero-sub {
  text-shadow: 0 2px 14px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.45);
}
/* Page hero (destinatie-detail etc.) — text peste image */
.page-hero-title,
.page-hero-eyebrow,
.page-hero-meta,
.page-hero-lead,
.page-title,
.page-eyebrow,
.page-stat-label,
.page-stat-value,
.page-hero .page-stat-value em {
  text-shadow: 0 4px 28px rgba(0,0,0,.65), 0 2px 8px rgba(0,0,0,.50), 0 1px 3px rgba(0,0,0,.35);
}
/* Cards cu text peste imagine */
.card-title,
.card-eyebrow,
.card-sub,
.index-card .card-title,
.index-card .card-eyebrow {
  text-shadow: 0 2px 12px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.35);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: #FFE7D9;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.hero-event { display: none !important; } /* SCOS pe toate viewport-urile — distrage de la hero cinematic. Evenimentele rămân pe /evenimente. */
.hero-event--OFF {
  grid-column: 2; grid-row: 2;
  align-self: end;
  max-width: 460px;
  background: rgba(10,10,10,.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-card);
  padding: var(--s-6);
  color: var(--white);
}
.hero-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine-light);
}
.hero-event-tag::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine-light);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-event-title {
  margin-top: var(--s-3);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.hero-event-meta {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.hero-event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-event-meta svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.hero-event-date {
  margin-top: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--wine);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

.hero-counter {
  position: absolute;
  left: var(--pad-x);
  bottom: var(--s-6);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: var(--white);
}
.hero-counter-text {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}
.hero-counter-text strong { color: #FFE7D9; font-weight: 600; }
.hero-counter-track {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,.18);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.hero-counter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--white);
  border-radius: 1px;
  width: 8.33%;
  transition: width .6s ease;
}
.hero-arrows {
  display: flex;
  gap: var(--s-2);
}
.hero-arrows button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.hero-arrows button:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.hero-arrows svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.hero-social {
  position: absolute;
  bottom: var(--s-6);
  right: var(--pad-x);
  z-index: 4;
  display: flex;
  gap: var(--s-4);
  color: rgba(255,255,255,.82);
}
.hero-social a:hover { color: var(--white); }
.hero-social svg { width: 18px; height: 18px; }

/* ========== SECTION INTRO ========== */
section.discovery {
  padding: var(--s-9) 0 var(--s-9);
  background: var(--paper);
}
section.discovery + section.discovery { padding-top: 0; }
.section-head {
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  margin-bottom: var(--s-7);
  max-width: 720px;
}
.section-head .lead-row {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--wine);
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
h2.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.section-lead {
  max-width: 720px;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.6;
  margin-top: var(--s-3);
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.section-link:hover { color: var(--wine); border-color: var(--wine); }
.section-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ========== SLIDER ========== */
.slider-wrap {
  position: relative;
  /* --fade-edge controlează lățimea fade-ului stânga+dreapta pe slider.
     Match cu --pad-x ca să fade-ul să acopere zona de padding orizontal. */
  --fade-edge: clamp(20px, 5vw, 96px);
}
.slider {
  display: flex;
  gap: var(--s-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: var(--s-5);
  scrollbar-width: none;
  /* fade-edge stânga + dreapta: primul card peek-in semi-transparent, ultimul peek-out.
     mask aplicat DOAR pe .slider (nu pe .slider-wrap) ca să NU prindă .slider-controls. */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--fade-edge),
    #000 calc(100% - var(--fade-edge)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--fade-edge),
    #000 calc(100% - var(--fade-edge)),
    transparent 100%
  );
}
.slider::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 340px);
  height: clamp(420px, 38vw, 520px);
  border-radius: var(--r-card);
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  box-shadow: var(--sh-soft);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); }
:root[data-theme="dark"] .card:hover { box-shadow: var(--sh-lift), 0 0 32px rgba(213,87,87,.18); }
.card img,
.card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.card:hover img,
.card:hover video { transform: scale(1.08); }
.card video { pointer-events: none; }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,.0) 50%, rgba(10,10,10,.82) 100%);
}
.card-content {
  position: absolute;
  left: var(--s-5);
  right: var(--s-5);
  bottom: var(--s-5);
  z-index: 2;
  color: var(--white);
}
.card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #FFE7D9;
}
.card-title {
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.card-sub {
  margin-top: var(--s-3);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-badge {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-tight);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-badge svg { width: 12px; height: 12px; fill: currentColor; }
.card-badge.alt { color: var(--lichen); }
.card-badge.gold { color: var(--gold); }

.slider .card.is-feature {
  width: clamp(340px, 30vw, 460px);
  height: clamp(440px, 42vw, 580px);
}

/* ========== EQUAL HEIGHTS — sliders specifice
   crame / trasee / gastro: toate cardurile egal-înalte.
   event slider: BIGGER decât celelalte (user a cerut mari).
   destinatii (slider-dest) rămâne asimetric (ca goturkiye „Sustainability"). */
#slider-crame .card,
#slider-trasee .card,
#slider-gastro .card,
#slider-crame .card.is-feature,
#slider-trasee .card.is-feature,
#slider-gastro .card.is-feature {
  width: clamp(260px, 24vw, 340px);
  height: clamp(420px, 38vw, 520px);
}
/* Events cards — DIMENSIUNI MARI (user: „alea cu evenimente le vreau mari") */
#slider-event .card,
#slider-event .card.is-feature {
  width: clamp(360px, 32vw, 480px);
  height: clamp(540px, 50vw, 680px);
}
/* Destinatii — ASYMMETRIC ca goturkiye Sustainability:
   - is-feature: foarte LAT (40% viewport), foarte ÎNALT
   - restul: înguste TALL, aceeași înălțime cu feature */
#slider-dest .card.is-feature {
  width: clamp(440px, 44vw, 720px);
  height: clamp(560px, 56vw, 780px);
}
#slider-dest .card:not(.is-feature) {
  width: clamp(260px, 22vw, 360px);
  height: clamp(560px, 56vw, 780px);
}
#slider-crame,
#slider-trasee,
#slider-event,
#slider-gastro {
  align-items: stretch;
}

.slider-controls {
  position: absolute;
  top: -64px;
  right: var(--pad-x);
  display: flex;
  gap: var(--s-2);
}
.slider-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: var(--paper-2);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  box-shadow: var(--sh-soft);
}
.slider-controls button:hover {
  background: var(--wine);
  color: #FFFFFF;
  border-color: var(--wine);
  transform: translateY(-1px);
}
:root[data-theme="dark"] .slider-controls button:hover {
  box-shadow: 0 0 24px rgba(213,87,87,.32), var(--sh-soft);
}
:root:not([data-theme="dark"]) .slider-controls button {
  background: #FFFFFF;
  color: #0A0A0A;
  border-color: rgba(10,10,10,.12);
}
.slider-controls svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.slider-dots {
  display: flex;
  gap: 6px;
  padding: 0 var(--pad-x);
  margin-top: var(--s-4);
  justify-content: flex-end;
}
.slider-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hairline);
  transition: background .2s ease, transform .2s ease;
}
.slider-dots span.active {
  background: var(--wine);
  transform: scale(1.18);
}

/* ========== PLAN-YOUR-TRIP DARK ========== */
.plan {
  position: relative;
  padding: var(--s-10) 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.plan::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(122,30,30,.4), transparent 70%);
  pointer-events: none;
}
.plan-inner {
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.plan-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
}
.plan-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.plan-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--wine);
}
:root[data-theme="dark"] .plan-eyebrow { color: var(--wine-light); }
:root[data-theme="dark"] .plan-eyebrow::before { background: var(--wine-light); }
.plan-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.plan-title em { font-style: italic; font-weight: 400; color: var(--wine); }
.plan-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border-radius: var(--r-feature);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  min-height: 560px;
}
.plan-panel {
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  background: var(--paper-3);
  backdrop-filter: blur(8px);
  border-right: 1px solid var(--hairline);
}
.plan-panel-tabs {
  display: flex;
  gap: var(--s-2);
  padding: 4px;
  background: var(--paper-2);
  border-radius: var(--r-pill);
}
.plan-panel-tabs button {
  flex: 1;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: background .2s ease, color .2s ease;
}
.plan-panel-tabs button.is-active {
  background: var(--wine);
  color: #FFFFFF;
}
.plan-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(10,10,10,.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink);
}
.plan-input svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; fill: none; flex-shrink: 0; }
.plan-input span.placeholder { color: var(--ink-mute); }
:root[data-theme="dark"] .plan-input {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.plan-modes {
  display: flex;
  gap: var(--s-2);
}
.plan-modes button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--r-soft);
  border: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
:root[data-theme="dark"] .plan-modes button {
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.66);
}
.plan-modes button.is-active {
  background: var(--wine-wash);
  color: var(--wine);
  border-color: var(--wine);
}
.plan-modes svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.plan-stat {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.plan-stat span { display: inline-flex; align-items: center; gap: 6px; }
.plan-stat svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.plan-points {
  flex: 1;
}
.plan-points-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--s-3);
}
.plan-points-empty {
  padding: var(--s-5);
  text-align: left;
  background: rgba(10,10,10,.02);
  border: 1px dashed var(--hairline);
  border-radius: var(--r-soft);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
:root[data-theme="dark"] .plan-points-empty {
  background: rgba(255,255,255,.02);
}
.plan-points-empty strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: var(--wine);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
}
.plan-cta:hover { background: var(--wine-deep); }

.plan-map {
  position: relative;
  min-height: 560px;
  background: #11171F;
}
#plan-map, .plan-map-canvas { position: absolute; inset: 0; }
.plan-map-overlay {
  position: absolute;
  left: 50%;
  top: var(--s-5);
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  padding: 4px;
  display: flex;
  gap: 2px;
}
.plan-map-overlay button {
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.plan-map-overlay button.is-active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.plan-presets {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.plan-preset {
  position: relative;
  border-radius: var(--r-soft);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: #161616;
  transition: transform .25s ease;
}
.plan-preset:hover { transform: translateY(-3px); }
.plan-preset img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: opacity .25s ease, transform .8s ease;
}
.plan-preset:hover img { opacity: 1; transform: scale(1.06); }
.plan-preset::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,.94) 100%);
}
.plan-preset-meta {
  position: absolute;
  left: var(--s-4); right: var(--s-4); bottom: var(--s-4);
  z-index: 2;
  color: var(--white);
}
.plan-preset-meta .days {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: #FFE7D9;
  background: rgba(122,30,30,.7);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.plan-preset-meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
}

/* ========== BLOG TEASER ========== */
.blog-teaser {
  background: var(--paper-2);
  padding: var(--s-10) 0;
}
.blog-grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  cursor: pointer;
}
.blog-card .blog-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  aspect-ratio: 4/3;
}
.blog-card.is-feature .blog-img { aspect-ratio: 5/4; }
.blog-card .blog-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.005em;
  color: var(--ink);
}
.blog-card.is-feature h3 { font-size: 30px; }
.blog-card p {
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.6;
}
.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .08em;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--paper);
  padding: var(--s-10) 0 var(--s-9);
  border-top: 1px solid var(--hairline);
}
.newsletter-inner {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.newsletter h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.newsletter h3 em { font-style: italic; font-weight: 400; color: var(--wine); }
.newsletter p {
  margin-top: var(--s-4);
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.55;
  max-width: 460px;
}
.newsletter-form {
  display: flex;
  gap: var(--s-3);
  padding: 8px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: var(--paper-2);
  box-shadow: var(--sh-whisper);
  max-width: 480px;
  margin: 0 auto 0 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.newsletter-form button:hover { background: var(--wine-deep); }
.newsletter-fine {
  margin-top: var(--s-4);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0A0A0A;
  color: #FAFAF8;
  padding: var(--s-9) 0 var(--s-5);
}
.footer-inner {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--s-4);
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.footer-symbol {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* Footer mereu dark bg → MEREU logo WHITE indiferent de theme */
.site-footer .footer-symbol--light { display: none !important; }
.site-footer .footer-symbol--dark { display: block !important; }
.footer-brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1;
}
.footer-brand-mark-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.005em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.footer-brand-mark-text .vin { font-style: italic; font-weight: 300; }
.footer-brand-mark-text .vrancea { font-weight: 600; letter-spacing: .04em; }
.footer-brand-mark-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
}
.footer-brand-logo { display: none; }
.footer-brand-text {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--wine-light); }
.footer-social {
  margin-top: var(--s-5);
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.78);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--wine); color: var(--white); border-color: var(--wine); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bar {
  margin-top: var(--s-7);
  padding: var(--s-5) var(--pad-x) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.footer-bar a { color: rgba(255,255,255,.6); }
.footer-bar a:hover { color: var(--white); }

.footer-made {
  text-align: center;
  padding: var(--s-4) var(--pad-x) var(--s-5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.footer-made svg { margin: 0 4px; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 75;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--sh-lift);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--wine); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .back-to-top { bottom: 90px; right: 16px; width: 44px; height: 44px; }
}

/* ========== COOKIE GDPR (PLACEHOLDER DEMO — visibility prin .is-hidden) ========== */
.cookie {
  position: fixed;
  left: var(--s-4); right: var(--s-4);
  bottom: var(--s-4);
  z-index: 90;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(14,13,12,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-card);
  box-shadow: 0 -12px 36px rgba(0,0,0,.50);
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245,240,232,.85);
  transform: translateY(0);
  opacity: 1;
  transition: transform .3s ease, opacity .3s ease;
}
.cookie.is-hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie > span {
  max-width: 720px;
  flex: 0 1 auto;
}
.cookie strong { color: #FAFAF8; font-weight: 600; letter-spacing: .005em; }
.cookie-btns { display: inline-flex; gap: var(--s-3); flex-shrink: 0; }
.cookie button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cookie .reject {
  color: rgba(245,240,232,.65);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
}
.cookie .reject:hover { color: #FAFAF8; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.cookie .accept {
  background: #FAFAF8;
  color: #0A0A0A;
}
.cookie .accept:hover { background: var(--wine); color: #FAFAF8; transform: translateY(-1px); }
@media (max-width: 720px) {
  .cookie { flex-direction: column; align-items: stretch; gap: var(--s-3); padding: var(--s-4) var(--pad-x); }
  .cookie-btns { justify-content: flex-end; }
  .cookie button { padding: 10px 18px; font-size: 11px; }
}

/* ========== MENU OVERLAY ========== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s-6);
  padding: var(--pad-x);
}
.menu-overlay.is-open { display: flex; }
.menu-overlay .menu-close {
  position: absolute;
  top: var(--s-5); right: var(--pad-x);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
}
/* Menu overlay brand logo top-left */
.menu-overlay-brand {
  position: absolute;
  top: var(--s-5); left: var(--pad-x);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}
.menu-overlay-symbol {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  /* Logo file e white silhouette — invertez la negru pentru light theme */
  filter: invert(1);
}
:root[data-theme="dark"] .menu-overlay-symbol { filter: none; }
.menu-overlay-brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.menu-overlay-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.005em;
}
.menu-overlay-brand-text .vin { font-style: italic; font-weight: 300; }
.menu-overlay-brand-text .vrancea { font-weight: 600; letter-spacing: .04em; }
.menu-overlay-brand-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
}
.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.menu-overlay nav a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: -.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  transition: color .2s ease, font-style .2s ease;
}
.menu-overlay nav a:hover { color: var(--wine); font-style: italic; }
.menu-overlay .menu-foot {
  margin-top: var(--s-7);
  display: flex;
  gap: var(--s-5);
  color: var(--ink-mute);
  font-size: 13px;
}

/* ========== UTILITY ========== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ========== PAGE: Detail (destinație / cramă / traseu / eveniment) ========== */
.page-hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
}
.page-hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.97);
  animation: kenburns 22s ease-in-out infinite alternate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.18) 0%, rgba(10,10,10,0) 40%, rgba(10,10,10,.84) 100%);
}
.page-hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 0 var(--pad-x) var(--s-9);
}
.page-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}
.page-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #FFE7D9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.page-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--wine-light);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 132px);
  line-height: .92;
  letter-spacing: -.025em;
  color: var(--white);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.page-title em { font-style: italic; font-weight: 400; color: #FFE7D9; }
.page-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  padding: var(--s-5);
  background: rgba(10,10,10,.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-card);
}
.page-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
  margin-bottom: 6px;
}
.page-stat-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.01em;
}

/* breadcrumb */
.breadcrumb {
  padding: var(--s-7) var(--pad-x) var(--s-4);
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-mute); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb .sep { color: var(--hairline); }
.breadcrumb .current { color: var(--ink); }

/* page editorial body */
.editorial {
  background: var(--paper);
  padding: var(--s-7) 0 var(--s-9);
}
.editorial-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: var(--s-9);
}
.editorial-body {
  font-size: 19px;
  line-height: 1.78;
  color: var(--ink-soft);
}
/* Pe viewport mare, font crește pentru lizibilitate (lățimea e dată de grid col) */
@media (min-width: 1280px) { .editorial-body { font-size: 20px; } }
@media (min-width: 1600px) { .editorial-body { font-size: 21px; } }
@media (min-width: 1920px) { .editorial-body { font-size: 22px; } }
.editorial-body p { margin-bottom: var(--s-5); }
.editorial-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: .85;
  padding-right: 12px;
  padding-top: 6px;
  font-weight: 300;
  color: var(--wine);
}
.editorial-body h3 {
  margin: var(--s-7) 0 var(--s-4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}
.editorial-body blockquote {
  margin: var(--s-7) 0;
  padding: var(--s-5) 0 var(--s-5) var(--s-6);
  border-left: 2px solid var(--wine);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -.005em;
}
.editorial-body blockquote cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.editorial-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.aside-card {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}
.aside-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--s-3);
}
.aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.aside-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.aside-card li svg { width: 14px; height: 14px; stroke: var(--wine); stroke-width: 1.75; fill: none; flex-shrink: 0; }
.aside-card .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: var(--s-4);
  transition: background .2s ease;
}
.aside-card .cta:hover { background: var(--wine-deep); }

/* gallery strip */
.gallery {
  background: var(--paper);
  padding: var(--s-7) 0 var(--s-9);
}
.gallery-head { padding: 0 var(--pad-x); margin-bottom: var(--s-6); }
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-3);
  padding: 0 var(--pad-x);
  height: clamp(420px, 50vw, 660px);
}
.gallery-strip > a {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  cursor: pointer;
}
.gallery-strip > a:nth-child(1) { grid-row: 1 / span 2; }
.gallery-strip > a img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-strip > a:hover img { transform: scale(1.05); }

/* nearby section */
.nearby {
  background: var(--paper-2);
  padding: var(--s-9) 0;
}

/* page detail map */
.map-zoom {
  background: var(--ink);
  padding: var(--s-9) 0;
  color: var(--paper);
}
.map-zoom-inner {
  padding: 0 var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.map-zoom-inner h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.map-zoom-inner h3 em { font-style: italic; font-weight: 400; color: var(--wine-light); }
.map-zoom-inner p {
  margin-top: var(--s-4);
  color: var(--paper);
  opacity: .78;
  font-size: 16px;
  line-height: 1.65;
}
.map-zoom .map-canvas {
  height: 480px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

/* ========== PAGE: Index grid ========== */
.index-hero {
  padding: calc(80px + var(--s-9)) var(--pad-x) var(--s-7);
  background: var(--paper);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-7);
  align-items: end;
}
.index-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 120px);
  line-height: .95;
  letter-spacing: -.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.index-hero h1 em { font-style: italic; font-weight: 400; color: var(--wine); }
.index-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 480px;
}

.filter-bar {
  padding: 0 var(--pad-x) var(--s-7);
  background: var(--paper);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.filter-pill svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.75; fill: none; }
.filter-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  min-width: 280px;
}
.filter-search input {
  border: none; outline: none; background: transparent;
  font: inherit; color: var(--ink); flex: 1;
}
.filter-search svg { width: 14px; height: 14px; stroke: var(--ink-mute); stroke-width: 1.75; fill: none; }

.index-grid {
  padding: 0 var(--pad-x) var(--s-10);
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.index-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  box-shadow: var(--sh-soft);
}
.index-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); }
:root[data-theme="dark"] .index-card:hover { box-shadow: var(--sh-lift), 0 0 32px rgba(213,87,87,.18); }
.index-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.index-card:hover img { transform: scale(1.08); }
.index-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 35%, rgba(10,10,10,.82) 100%);
}
.index-card .index-card-content {
  position: absolute;
  left: var(--s-4); right: var(--s-4); bottom: var(--s-4);
  z-index: 2; color: var(--white);
}
.index-card .index-card-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #FFE7D9;
  margin-bottom: 6px;
}
.index-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}

/* ========== PAGE: Blog article ========== */
.article-hero {
  padding: calc(80px + var(--s-9)) var(--pad-x) var(--s-7);
  background: var(--paper);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.article-hero .article-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-3);
}
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.article-hero p.lead {
  margin-top: var(--s-5);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.article-meta {
  margin-top: var(--s-5);
  display: flex;
  justify-content: center;
  gap: var(--s-5);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .08em;
}
.article-hero img.article-hero-img {
  margin-top: var(--s-7);
  width: 100%;
  height: clamp(360px, 52vw, 620px);
  object-fit: cover;
  border-radius: var(--r-card);
}
.article-body {
  max-width: clamp(720px, 64vw, 1320px);
  margin: 0 auto;
  padding: var(--s-9) var(--pad-x) var(--s-9);
  font-size: 19px;
  line-height: 1.78;
  color: var(--ink-soft);
}
@media (min-width: 1280px) { .article-body { font-size: 20px; line-height: 1.8; } }
@media (min-width: 1600px) { .article-body { font-size: 21px; max-width: clamp(900px, 68vw, 1480px); } }
@media (min-width: 1920px) { .article-body { font-size: 22px; max-width: clamp(1000px, 70vw, 1600px); } }
.article-body p { margin-bottom: var(--s-5); }
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: .85;
  padding-right: 12px;
  padding-top: 6px;
  font-weight: 300;
  color: var(--wine);
}
.article-body h2 {
  margin: var(--s-7) 0 var(--s-4);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.015em;
}
.article-body h3 {
  margin: var(--s-6) 0 var(--s-3);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
}
.article-body img {
  margin: var(--s-6) 0;
  width: 100%;
  border-radius: var(--r-card);
}
.article-body blockquote {
  margin: var(--s-7) 0;
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--wine);
  background: var(--paper-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -.005em;
}
.article-body a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== PAGE: Harta full ========== */
.harta-page {
  padding: calc(80px + var(--s-7)) 0 0;
  background: var(--paper);
  color: var(--ink);
  min-height: calc(100vh - 0px);
}
.harta-shell {
  display: grid;
  grid-template-columns: 380px 1fr;
  height: calc(100vh - 80px);
}
.harta-sidebar {
  background: var(--paper-2);
  border-right: 1px solid var(--hairline);
  padding: var(--s-5);
  padding-bottom: 100px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  min-height: 0;
  position: relative;
}
.harta-sidebar .harta-page-cta {
  position: sticky;
  bottom: 0;
  margin-top: var(--s-5);
  margin-left: calc(-1 * var(--s-5));
  margin-right: calc(-1 * var(--s-5));
  margin-bottom: calc(-1 * var(--s-5));
  padding: var(--s-4) var(--s-5);
  background: var(--wine);
  border-radius: 0;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
:root[data-theme="dark"] .harta-sidebar {
  background: rgba(255,255,255,.02);
  border-right-color: rgba(255,255,255,.06);
}
.harta-canvas { position: relative; }
#harta-map { position: absolute; inset: 0; }

/* fade in */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-overlay { grid-template-columns: 1fr; }
  .hero-event { grid-column: 1; grid-row: 3; max-width: 100%; }
  .plan-head { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-map { min-height: 360px; }
  .plan-presets { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.is-feature { grid-column: 1 / span 2; }
  .section-head { grid-template-columns: 1fr; gap: var(--s-4); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .editorial-inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .editorial-aside { position: static; }
  .map-zoom-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .map-zoom .map-canvas { height: 380px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-strip > a:nth-child(1) { grid-row: auto; aspect-ratio: 5/4; }
  .gallery-strip > a { aspect-ratio: 4/3; }
  .index-hero { grid-template-columns: 1fr; gap: var(--s-4); }
  .index-grid { grid-template-columns: repeat(3, 1fr); }
  .harta-shell { grid-template-columns: 1fr; height: auto; }
  .harta-sidebar { border-right: none; border-bottom: 1px solid var(--hairline); }
  .harta-canvas { height: 70vh; }
}
@media (max-width: 720px) {
  /* ---------- HEADER + NAV ---------- */
  .site-header { padding: var(--s-3) var(--pad-x); gap: var(--s-3); }
  .nav-utility { gap: var(--s-3); }
  .nav-utility .icon-btn:not(.menu-trigger):not([data-theme-toggle]) { display: none; }
  .nav-utility .lang-switch { display: none; }
  .menu-trigger { padding: 10px 14px; min-height: 44px; }
  .menu-trigger span:not(.lines) { display: none; }
  .brand-symbol { height: 36px; }
  .icon-btn { width: 44px; height: 44px; }
  /* Float chips: pe mobil CENTRATE jos. Back-to-top stă la 90px deasupra. */
  .float-chips {
    top: auto;
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 10px;
    z-index: 80;
    background: rgba(255,255,255,.92);
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  :root[data-theme="dark"] .float-chips { background: rgba(11,20,38,.92); }
  .chip { width: 40px; height: 40px; }
  /* Menu trigger pe mobile — pătrat alb cu lines negre, MEREU vizibil */
  .menu-trigger,
  .site-header.is-dark .menu-trigger,
  :root[data-theme="dark"] .menu-trigger {
    padding: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px;
    border-radius: 50% !important;
    justify-content: center;
    background: #FFFFFF !important;
    color: #0A0A0A !important;
    border: 1px solid rgba(10,10,10,.12);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
  }
  .menu-trigger .lines { gap: 5px !important; }
  .menu-trigger .lines span {
    width: 20px !important;
    height: 2.5px !important;
    border-radius: 2px;
    background: #0A0A0A !important;
  }

  /* ---------- HERO ---------- */
  .hero { min-height: 600px; height: auto; min-height: 100svh; }
  .hero-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: calc(80px + var(--s-7)) var(--pad-x) var(--s-9);
    gap: var(--s-5);
  }
  .hero-headline { font-size: clamp(36px, 11vw, 64px); max-width: 100%; }
  /* Hero event card hidden pe mobil — distrage de la conținut + ocupă viewport */
  .hero-event { display: none; }
  .hero-event-title { font-size: 22px; }
  .hero-counter {
    left: var(--pad-x);
    right: var(--pad-x);
    bottom: var(--s-4);
    gap: var(--s-3);
    flex-wrap: wrap;
  }
  .hero-counter-track { width: 120px; }
  .hero-arrows { margin-left: auto; }
  .hero-social { display: none; }

  /* ---------- SLIDERS ---------- */
  .slider-wrap { --fade-edge: 36px; }
  .slider { gap: var(--s-3); padding-left: var(--s-5); padding-right: var(--s-5); scroll-padding-left: var(--s-5); scroll-padding-right: var(--s-5); }
  .card { width: 75vw; height: clamp(360px, 90vw, 460px); }
  .slider .card.is-feature { width: 82vw; height: clamp(380px, 100vw, 520px); }
  .slider-controls { display: none; } /* touch swipe natural */
  .slider-dots { padding: 0 var(--s-5); justify-content: center; }

  /* ---------- SECTION HEAD ---------- */
  .section-head { padding: 0 var(--s-5); max-width: 100%; }
  h2.section-title { font-size: clamp(34px, 9vw, 56px); }
  .section-lead { font-size: 15px; }

  /* ---------- PLAN-YOUR-TRIP ---------- */
  .plan { padding: var(--s-9) 0 var(--s-8); }
  .plan-inner { padding: 0 var(--s-5); }
  .plan-head { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-5); }
  .plan-title { font-size: clamp(34px, 9vw, 56px); }
  .plan-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .plan-panel { order: 1; padding: var(--s-5); } /* side panel ABOVE map */
  .plan-map { order: 2; min-height: 400px; height: 400px; }
  .plan-modes { flex-wrap: wrap; }
  .plan-modes button { flex: 1 1 calc(50% - var(--s-2)); min-height: 44px; }
  .plan-presets { grid-template-columns: 1fr; }
  .plan-stat { flex-wrap: wrap; gap: var(--s-3); }
  .plan-cta { width: 100%; min-height: 48px; }

  /* ---------- BLOG ---------- */
  .blog-grid { grid-template-columns: 1fr; padding: 0 var(--s-5); gap: var(--s-5); }
  .blog-card.is-feature { grid-column: 1; }
  .blog-card.is-feature .blog-img { aspect-ratio: 4/3; }
  .blog-card.is-feature h3 { font-size: 24px; }
  .blog-card h3 { font-size: 20px; }

  /* ---------- NEWSLETTER ---------- */
  .newsletter { padding: var(--s-9) 0 var(--s-8); }
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--s-5); padding: 0 var(--s-5); }
  .newsletter h3 { font-size: clamp(30px, 8vw, 48px); }
  .newsletter-form { flex-direction: column; padding: var(--s-3); border-radius: var(--r-soft); }
  .newsletter-form input { padding: 14px 18px; }
  .newsletter-form button { width: 100%; padding: 14px 22px; min-height: 48px; }

  /* ---------- FOOTER ---------- */
  .site-footer { padding: var(--s-7) 0 var(--s-4); }
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 var(--s-5);
    gap: var(--s-6);
  }
  .footer-brand-mark { gap: 10px; }
  .footer-symbol { height: 44px; }
  .footer-col h4 { margin-bottom: var(--s-3); }
  .footer-col ul { gap: 8px; }
  .footer-bar {
    padding: var(--s-4) var(--s-5) 0;
    margin-top: var(--s-5);
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
  }
  .footer-social a { width: 44px; height: 44px; }

  /* ---------- COOKIE ---------- */
  .cookie {
    flex-direction: column;
    align-items: stretch;
    max-width: calc(100vw - 32px);
    padding: var(--s-4);
    gap: var(--s-3);
  }
  .cookie-btns { justify-content: flex-end; gap: var(--s-2); }
  .cookie button { padding: 12px 18px; font-size: 11px; min-height: 44px; }

  /* ---------- ARTICLE / EDITORIAL ---------- */
  .article-body { font-size: 16px; padding: var(--s-7) var(--s-5); }
  .article-body h2 { font-size: 28px; margin: var(--s-6) 0 var(--s-3); }
  .article-body h3 { font-size: 20px; }
  .article-body blockquote { padding: var(--s-4) var(--s-5); font-size: 19px; margin: var(--s-5) 0; }
  .editorial-body { font-size: 16px; }
  .editorial-inner { padding: 0 var(--s-5); }

  /* ---------- PAGE: hero + index ---------- */
  .page-hero { height: 70vh; min-height: 480px; }
  .page-hero-content { padding: 0 var(--s-5) var(--s-7); }
  .page-hero-inner { grid-template-columns: 1fr; gap: var(--s-4); }
  /* Top padding să clearuiască header sticky (~72px) + breathing room */
  .index-hero { grid-template-columns: 1fr; gap: var(--s-4); padding: calc(72px + var(--s-5)) var(--s-5) var(--s-5); }
  .index-hero h1 { font-size: clamp(36px, 10vw, 64px); }
  .index-grid { grid-template-columns: repeat(2, 1fr); padding: 0 var(--s-5); gap: var(--s-3); }
  /* Article + despre hero: header clearance */
  .article-hero { padding: calc(72px + var(--s-5)) var(--s-5) var(--s-5); }
  .despre-hero { padding-top: calc(72px + var(--s-7)); }
  .favorites-page { padding-top: calc(72px + var(--s-7)); }
  /* Filter bar — full width row + search full width */
  .filter-bar { padding: 0 var(--s-5) var(--s-5); gap: var(--s-2); }
  .filter-search { margin-left: 0; min-width: 0; width: 100%; flex: 1 1 100%; order: 99; }
  .filter-pill { font-size: 12px; padding: 8px 14px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .map-zoom-inner { grid-template-columns: 1fr; gap: var(--s-4); padding: 0 var(--s-5); }
  .map-zoom .map-canvas { height: 320px; }

  /* ---------- DESPRE (manifesto) ---------- */
  .despre-stats { padding: var(--s-8) var(--s-5); }
  .despre-stats-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .despre-stat-value { font-size: clamp(36px, 10vw, 64px); }
  .despre-verticale { padding: var(--s-8) var(--s-5); }
  .verticala-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .verticala-item { padding: var(--s-4); }
  .verticala-item h3 { font-size: 18px; }

  /* ---------- HARTA page ---------- */
  .harta-page { padding-top: calc(72px + var(--s-4)); }
  .harta-shell { grid-template-columns: 1fr; height: auto; }
  .harta-sidebar {
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    max-height: 50vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--s-4);
  }
  .harta-canvas { height: 55vh; min-height: 360px; }

  /* ---------- TOUCH TARGETS ---------- */
  button, a.button, .btn, .icon-btn, .menu-trigger, .slider-controls button, .hero-arrows button {
    min-height: 44px;
  }
  .footer-social a, .icon-btn { min-width: 44px; }

  /* ---------- TYPOGRAPHY ---------- */
  body { font-size: 15px; }
}

/* ========== MOBILE FINE-TUNE (≤540px — iPhone SE, small phones) ========== */
@media (max-width: 540px) {
  /* ---------- HEADER ---------- */
  :root { --pad-x: 16px; }
  .menu-trigger { padding: 8px 12px; }
  .menu-trigger .lines { width: 20px; }

  /* ---------- HERO ---------- */
  .hero-overlay { padding: calc(72px + var(--s-5)) var(--s-4) var(--s-7); }
  .hero-headline { font-size: clamp(32px, 12vw, 48px); }
  .hero-eyebrow { font-size: 10px; gap: 6px; }
  .hero-event-title { font-size: 20px; }
  .hero-counter-text { font-size: 11px; }
  .hero-counter-track { width: 80px; }

  /* ---------- SLIDERS ---------- */
  .slider-wrap { --fade-edge: 20px; }
  .slider { padding-left: var(--s-4); padding-right: var(--s-4); }
  .card { width: 82vw; height: clamp(340px, 100vw, 440px); }

  /* ---------- SECTION HEAD ---------- */
  .section-head { padding: 0 var(--s-4); }
  h2.section-title { font-size: clamp(30px, 9vw, 44px); }

  /* ---------- PLAN ---------- */
  .plan-inner { padding: 0 var(--s-4); }
  .plan-map { height: 360px; min-height: 360px; }

  /* ---------- BLOG / NEWSLETTER / FOOTER paddings ---------- */
  .blog-grid, .newsletter-inner, .footer-inner { padding-left: var(--s-4); padding-right: var(--s-4); }
  .footer-bar { padding-left: var(--s-4); padding-right: var(--s-4); }

  /* ---------- DESPRE ---------- */
  .despre-stats-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .verticala-grid { grid-template-columns: 1fr; gap: var(--s-3); }

  /* ---------- INDEX GRID ---------- */
  .index-grid { grid-template-columns: 1fr; }

  /* ---------- ARTICLE ---------- */
  .article-body { padding: var(--s-6) var(--s-4); }
  .article-body p:first-of-type::first-letter { font-size: 4em; }
}

/* ========== LEAFLET z-index FIX — sub header ========== */
.leaflet-pane,
.leaflet-control,
.leaflet-top,
.leaflet-bottom { z-index: 60 !important; }
.leaflet-control-zoom { z-index: 65 !important; }
.plan-map-overlay,
.harta-canvas-overlay { z-index: 70 !important; }

/* =========================================================
   FAVORITES — heart overlay button on cards
   ========================================================= */
.fav-toggle {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14,13,12,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  z-index: 5;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  padding: 0;
}
.fav-toggle:hover {
  background: rgba(255,255,255,.95);
  color: var(--wine);
  transform: scale(1.08);
}
.fav-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}
.fav-toggle.is-fav {
  background: var(--wine);
  color: #FFFFFF;
  border-color: var(--wine);
}
.fav-toggle.is-fav svg { fill: currentColor; }
.fav-toggle:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}
/* event-card variant: place fav-toggle relative to event-img */
.event-card .event-img { position: relative; }
.event-card .fav-toggle { top: var(--s-3); right: var(--s-3); }
.blog-listing-card { position: relative; }
.blog-listing-card .fav-toggle { top: var(--s-3); right: var(--s-3); }

/* =========================================================
   LOGIN LINK — header nav-utility user icon
   ========================================================= */
.login-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.login-link:hover {
  background: rgba(10,10,10,.06);
  color: var(--wine);
}
:root[data-theme="dark"] .login-link { color: var(--ink); }
:root[data-theme="dark"] .login-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--wine);
}
.site-header.is-dark .login-link { color: var(--white); }
.site-header.is-dark .login-link:hover { background: rgba(255,255,255,.10); }
.login-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

/* =========================================================
   AUTH PAGES — login + register
   ========================================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--pad-x) var(--s-9);
  background: var(--paper);
  position: relative;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  text-align: center;
}
.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: var(--s-2);
}
.auth-brand img {
  height: 48px;
  width: auto;
}
.auth-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.auth-brand-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -.005em;
  color: var(--ink);
}
.auth-brand-mark .vin {
  font-style: italic;
  font-weight: 300;
}
.auth-brand-mark .vrancea {
  font-weight: 500;
  letter-spacing: .02em;
}
.auth-brand-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.auth-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
}
.auth-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.auth-sub {
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.5;
  margin-top: -8px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-align: left;
  margin-top: var(--s-3);
}
.auth-field {
  position: relative;
}
.auth-field input {
  width: 100%;
  padding: 16px 48px 16px 48px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  background: var(--paper-2);
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color .2s ease, background .2s ease;
}
.auth-field input::placeholder { color: var(--ink-mute); }
.auth-field input:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--paper);
}
.auth-field > svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-mute);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  pointer-events: none;
}
.auth-field .auth-toggle-pw {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-mute);
  cursor: pointer;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}
.auth-field .auth-toggle-pw:hover {
  color: var(--wine);
  background: rgba(10,10,10,.04);
}
.auth-field .auth-toggle-pw svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}
:root[data-theme="dark"] .auth-field .auth-toggle-pw:hover { background: rgba(255,255,255,.06); }
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.auth-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}
.auth-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--wine);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.auth-row a,
.auth-check a {
  color: var(--wine);
  font-weight: 600;
}
.auth-row a:hover,
.auth-check a:hover { text-decoration: underline; }
.auth-cta {
  padding: 16px 22px;
  border-radius: var(--r-pill);
  background: var(--wine);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .2s ease, transform .2s ease;
  margin-top: var(--s-2);
  font-family: var(--font-body);
}
.auth-cta:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
}
.auth-cta:active { transform: translateY(0); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--ink-mute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin: var(--s-2) 0;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline-strong);
}
.auth-social {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.auth-social button {
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-strong);
  background: var(--paper-2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  font-family: var(--font-body);
}
.auth-social button:hover {
  background: var(--paper-3);
  border-color: var(--ink-soft);
}
.auth-social button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.auth-footer-link {
  color: var(--ink-mute);
  font-size: 14px;
  margin-top: var(--s-2);
  line-height: 1.5;
}
.auth-footer-link a {
  color: var(--wine);
  font-weight: 600;
}
.auth-footer-link a:hover { text-decoration: underline; }

/* =========================================================
   FAVORITES PAGE
   ========================================================= */
.favorites-page {
  padding: calc(80px + var(--s-9)) var(--pad-x) var(--s-10);
  background: var(--paper);
  min-height: 60vh;
}
.favorites-head {
  max-width: 1180px;
  margin: 0 auto var(--s-7);
  text-align: center;
}
.favorites-head .section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wine);
}
.favorites-head h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: var(--s-3);
}
.favorites-head h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
.favorites-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 580px;
  margin: var(--s-4) auto 0;
}
.favorites-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-5);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--wine-wash);
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.favorites-count svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.favorites-empty {
  max-width: 540px;
  margin: var(--s-9) auto;
  text-align: center;
  padding: var(--s-9) var(--s-5);
  border-radius: var(--r-feature);
  background: var(--paper-2);
  border: 1px dashed var(--hairline-strong);
}
.favorites-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wine-wash);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}
.favorites-empty-icon svg { width: 32px; height: 32px; fill: currentColor; }
.favorites-empty h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.favorites-empty p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: var(--s-5);
}
.favorites-empty .empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  background: var(--wine);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.favorites-empty .empty-cta:hover { background: var(--wine-deep); }
.favorites-empty .empty-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.favorites-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1100px) {
  .favorites-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .favorites-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .favorites-grid { grid-template-columns: 1fr; }
  .auth-page { padding: 120px var(--s-4) var(--s-7); }
  .auth-row { font-size: 12px; }
}

/* ========== RELATED GRID — articol.html, „Mai multe despre Vrancea" ========== */
/* Override slider la grid 4-col centered, nu mai e horizontal scroll */
.related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: var(--s-5);
  overflow: visible !important;
  padding: 0 var(--pad-x) var(--s-5) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  scroll-snap-type: none !important;
}
.related-grid .card {
  width: 100% !important;
  height: clamp(420px, 38vw, 520px);
}
.related-grid-wrap .slider-controls { display: none !important; }
@media (max-width: 1024px) {
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 540px) {
  .related-grid { grid-template-columns: 1fr !important; }
}
