/* ============================================================
   TOURISM.CSS · comuna1 (commune presentation / tourism hub)
   ------------------------------------------------------------
   Editorial vibe: matches the rest of the site (Helvetica light,
   chantilly + essex + rustic-taupe palette, small uppercase
   eyebrows with hairlines, generous whitespace). Mockup
   structure: hero + stats + experiente + harta + anotimpuri +
   jazz feature + povestea timeline + galerie + planifica CTA.
   Header (main-header) and footer (splash-footer) are untouched.
   ============================================================ */


/* ==========================================================
   MAIN NAV · match the spacing of the comuna1 sub-pages.
   The dropdown nav (comuna-submenu.js wraps links in .nav-item)
   is styled by comuna-submenu.css with gap:0, which loads AFTER
   tourism.css on comuna.html / harta.html. The 165 sub-sub pages
   widen this to gap:22px via comuna-subpage.css; the hubs did not,
   so comuna.html looked cramped. Re-apply the 22px gap here with a
   higher-specificity selector (header.main-header / nav.main-nav)
   so it wins regardless of stylesheet order.
   ========================================================== */
header.main-header nav.main-nav { gap: 22px; }


/* SVG sprite hide (keep <use> references resolvable) */
.com-svg-sprite {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  pointer-events: none;
}


/* ==========================================================
   Shared editorial primitives
   ========================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--rustic-taupe); opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: ''; width: 28px; height: 1px;
  background: var(--rustic-taupe); opacity: 0.7;
}
.eyebrow.on-dark { color: var(--rustic-taupe-light); }
.eyebrow.on-dark::before,
.eyebrow.on-dark::after { background: var(--rustic-taupe-light); }


/* ==========================================================
   1. HERO · 3-slide cross-fade carousel + left-aligned text
              + hero-portal CTAs (mirrors primarie-hero pattern)
   ========================================================== */

.tourism-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--essex-deep);
}

/* 3-slide cross-fade Ken Burns */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--essex-deep);
  opacity: 0;
  transform: scale(1);
  filter: brightness(1.10) saturate(1.22) contrast(1.05);
  animation: tourismSlideCycle 24s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: opacity, transform;
}
.hero-slide-1 { background-image: url('../assets/img/hero/hero-lac-semenic.jpeg?v=2026-06-14');     animation-delay: 0s;  }
.hero-slide-2 { background-image: url('../assets/img/hero/hero-sat-garana.jpeg?v=2026-06-14');     animation-delay: 8s;  }
.hero-slide-3 { background-image: url('../assets/img/hero/hero-pajisti-semenic.jpeg?v=2026-06-14'); animation-delay: 16s; }

@keyframes tourismSlideCycle {
  0%   { opacity: 0; transform: scale(1.0); }
  6%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.07); }
  39%  { opacity: 0; transform: scale(1.07); }
  100% { opacity: 0; transform: scale(1.0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 1; }
  .hero-slide-2, .hero-slide-3 { display: none; }
}

/* Cinematic overlay · vignettes only (no color grade – photos stay true) */
.hero-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* Top frame vignette · subtle */
    linear-gradient(to bottom, rgba(22, 32, 27, 0.35) 0%, rgba(22, 32, 27, 0) 18%),
    /* Bottom vignette · CTA legibility + film-still feel */
    linear-gradient(to top, rgba(22, 32, 27, 0.78) 0%, rgba(22, 32, 27, 0.22) 28%, rgba(22, 32, 27, 0) 50%),
    /* Left text-protection gradient */
    linear-gradient(
      to right,
      rgba(22, 32, 27, 0.90) 0%,
      rgba(22, 32, 27, 0.70) 18%,
      rgba(22, 32, 27, 0.38) 38%,
      rgba(22, 32, 27, 0.10) 55%,
      rgba(22, 32, 27, 0) 70%
    );
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(110px, 14vh, 170px) clamp(40px, 5vw, 100px) clamp(80px, 10vh, 130px) clamp(32px, 5vw, 80px);
}
.hero-content {
  max-width: 640px;
  color: var(--chantilly);
}
.hero-eyebrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--chantilly);
  opacity: 0.82;
  margin-bottom: clamp(28px, 4vh, 44px);
  font-weight: 500;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 36px;
  height: 1px;
  background: var(--rustic-taupe-light);
}

.tourism-hero h1 {
  font-size: clamp(2.8rem, 7.2vw, 5.6rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--chantilly);
  text-shadow: 0 2px 16px rgba(15, 23, 28, 0.45);
}
.tourism-hero h1 em {
  font-style: normal;
  font-weight: inherit;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
  color: var(--chantilly);
  opacity: 0.92;
  text-shadow: 0 1px 8px rgba(15, 23, 28, 0.5);
}

/* Hero portal cards · dark glass + icon + label + tagline
   (Identical pattern to primarie-hero, intentionally reused.) */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin-top: 16px;
}
.hero-portal {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background: rgba(15, 23, 28, 0.32);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(242, 241, 235, 0.32);
  color: var(--chantilly);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hero-portal:hover {
  background: rgba(15, 23, 28, 0.45);
  border-color: var(--chantilly);
  transform: translateY(-4px);
  color: var(--chantilly);
}
.hero-portal:active {
  background: rgba(15, 23, 28, 0.6);
  transform: scale(0.985);
  transition: transform 0.12s ease, background 0.12s ease;
}
.hero-portal:focus-visible {
  outline: 2px solid var(--rustic-taupe-light);
  outline-offset: 4px;
}
.hero-portal-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rustic-taupe-light);
}
.hero-portal-icon svg {
  width: 36px;
  height: 36px;
}
.hero-portal-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hero-portal-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rustic-taupe-light);
  text-shadow: 0 1px 8px rgba(15, 23, 28, 0.55);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 6px;
  position: relative;
  align-self: flex-start;
}
.hero-portal-label::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rustic-taupe-light);
  transform: scaleX(0) translateZ(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hero-portal:hover .hero-portal-label::after { transform: scaleX(1) translateZ(0); }
.hero-portal-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.hero-portal:hover .hero-portal-arrow { transform: translateX(6px); }
.hero-portal-tagline {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--chantilly);
  opacity: 0.88;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(15, 23, 28, 0.6);
  line-height: 1.4;
}

/* Mobile · stack hero CTAs vertically + tighten padding (mirrors primarie-hero) */
@media (max-width: 768px) {
  .tourism-hero { min-height: 100vh; min-height: 100svh; }
  .hero-content-container {
    min-height: 100vh; min-height: 100svh;
    padding: 56px 20px 48px 24px;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    gap: 10px;
    white-space: nowrap;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after { flex: 0 0 20px; }
  .hero-actions { grid-template-columns: 1fr; gap: 14px; }
  .hero-portal { padding: 22px 22px; gap: 16px; }
  .hero-portal-icon { width: 40px; height: 40px; }
  .hero-portal-icon svg { width: 30px; height: 30px; }
}
/* Narrow phones · tighten label letter-spacing + font so "PORTALUL COMUNEI" fits one line */
@media (max-width: 420px) {
  .hero-portal { padding: 20px 18px; gap: 14px; }
  .hero-portal-icon { width: 36px; height: 36px; }
  .hero-portal-icon svg { width: 26px; height: 26px; }
  .hero-portal-label { font-size: 0.72rem; letter-spacing: 0.18em; }
  .hero-portal-tagline { font-size: 0.86rem; }
}
/* Very narrow phones (iPhone SE 1st gen, Galaxy Fold cover) */
@media (max-width: 360px) {
  .hero-portal-label { font-size: 0.68rem; letter-spacing: 0.14em; }
}


/* ==========================================================
   2. STATS · 4 columns with hairline separators
   ----------------------------------------------------------
   Rhythm-breaker exception · sits below SKILL §5.4 standard
   section floor (100-140px) by design. Stats acts as a tight
   divider between hero and the slogan band; standard spacing
   would visually separate it from the hero photo above.
   ========================================================== */

.stats {
  background: var(--chantilly-pure);
  padding: 56px 32px;
  border-bottom: 1px solid var(--stone-hearth-soft);
}
.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 8px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat + .stat::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 64px;
  background: var(--stone-hearth-soft);
}
.stat-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 14px;
  color: var(--rustic-taupe);
  opacity: 0.85;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.stat-number {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 300;
  color: var(--essex);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.008em;
}
.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .stat:nth-child(3)::before { display: none; }
  .stat { padding: 8px 12px; }
  .stat-icon { width: 20px; height: 20px; margin-bottom: 12px; }
  .stat-label { font-size: 0.56rem; letter-spacing: 0.18em; }
}


/* ==========================================================
   2b. SLOGAN BAND · single memorable line
   ----------------------------------------------------------
   Rhythm-breaker exception · sits below SKILL §5.4 standard
   section floor (100-140px) by design. Paired with stats as a
   single compact divider block before experiente; standard
   spacing would dilute the punch of the motto line.
   ========================================================== */

.slogan-band {
  background: var(--chantilly-pure);
  padding: 64px 32px 64px;
  text-align: center;
  border-bottom: 1px solid var(--stone-hearth-soft);
}
.slogan-text {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--essex);
  letter-spacing: -0.008em;
}
.slogan-text span { display: inline; }
.slogan-text span:nth-child(4) {
  color: var(--rustic-taupe);
  font-weight: 500;
}
.slogan-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 0;
  max-width: 200px;
  color: var(--rustic-taupe-light);
  opacity: 0.7;
}
.slogan-ornament::before,
.slogan-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}
.slogan-ornament svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .slogan-band { padding: 48px 24px 52px; }
  .slogan-text { font-size: clamp(1.15rem, 4.5vw, 1.4rem); }
  .slogan-ornament { margin-top: 22px; max-width: 160px; }
}


/* ==========================================================
   3. EXPERIENȚE · text column + 4 portrait cards
   ========================================================== */

.experiente {
  background: var(--chantilly-pure);
  padding: 112px 32px;
}
.experiente-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.section-text { display: flex; flex-direction: column; }
.section-title {
  font-size: clamp(1.9rem, 2.9vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.14;
  color: var(--essex);
  margin: 0 0 22px;
}
.section-title em { font-style: normal; font-weight: 500; }
.section-desc {
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 28ch;
}
.section-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--essex);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rustic-taupe);
  align-self: flex-start;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.section-link:hover { color: var(--rustic-taupe); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.exp-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  color: var(--chantilly-pure);
  background-color: var(--essex);
  display: block;
  transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.exp-card-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.12) saturate(1.18) contrast(1.04);
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.45s ease;
}
.exp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15,23,18,0.38) 76%, rgba(15,23,18,0.72) 100%);
  transition: background 0.45s ease;
}
@media (hover: hover) and (pointer: fine) {
  .exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 18, 0.22);
  }
  .exp-card:hover .exp-card-photo {
    transform: scale(1.06);
    filter: brightness(1.20) saturate(1.30) contrast(1.06);
  }
  .exp-card:hover::after {
    background: linear-gradient(180deg, transparent 42%, rgba(15,23,18,0.45) 72%, rgba(15,23,18,0.82) 100%);
  }
  .exp-card:hover .exp-card-arrow {
    transform: translateX(4px);
    opacity: 1;
  }
}
.exp-card-body {
  position: absolute; inset: auto 0 0 0;
  z-index: 2;
  padding: 0 22px 24px;
  display: flex;
  flex-direction: column;
}
.exp-card-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rustic-taupe-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.exp-card-title {
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 0 6px;
  line-height: 1.22;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 6px rgba(15, 23, 28, 0.45);
}
.exp-card-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.88;
  margin: 0 0 14px;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(15, 23, 28, 0.5);
}
.exp-card-arrow {
  display: inline-block;
  font-size: 0.86rem;
  opacity: 0.7;
  align-self: flex-start;
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.3s ease;
}

.exp-photo-trei-ape    { background-image: url('../assets/img/experiente/exp-trei-ape.jpeg?v=2026-06-14');    }
.exp-photo-jazz        { background-image: url('../assets/img/experiente/exp-jazz.jpg?v=2026-06-14');         }
.exp-photo-via         { background-image: url('../assets/img/experiente/exp-via.jpeg?v=2026-06-14');         }
.exp-photo-iarna       { background-image: linear-gradient(180deg, var(--essex-deep) 0%, var(--stone-hearth) 100%); }
.exp-photo-gastronomie { background-image: url('../assets/img/experiente/exp-gastronomie.jpeg?v=2026-06-14'); }

@media (max-width: 980px) {
  .experiente-inner { grid-template-columns: 1fr; gap: 36px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .section-desc { max-width: 56ch; }
}
@media (max-width: 540px) {
  .exp-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   4. HARTA · text + map placeholder
   ========================================================== */

.harta-section {
  background: var(--chantilly-pure);
  padding: clamp(100px, 12vh, 140px) 32px 112px;
}
.harta-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Section header · centered, editorial */
.harta-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.harta-header .eyebrow { display: inline-block; margin-bottom: 18px; }
.harta-header .section-title { margin-bottom: 18px; }
.harta-header .section-desc { margin: 0 auto; max-width: 56ch; }

/* Map+POI grid */
.harta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Map block (left) */
.harta-map-block {
  display: flex;
  flex-direction: column;
}

/* Map wrap · real Google Maps iframe (or consent placeholder) */
.harta-map-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 380px;
  overflow: hidden;
  background: var(--essex);
  border: 1px solid var(--essex-deep);
}
.harta-map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  /* Essex green color grade · matches site mood without losing legibility */
  filter: grayscale(0.5) sepia(0.10) saturate(0.65) hue-rotate(55deg) brightness(0.96) contrast(1.05);
}

/* Consent placeholder · essex green theme (mirrors primarie cream theme structure) */
.harta-map-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--essex) 0%, var(--essex-deep) 100%);
  text-align: center;
}
.harta-map-consent-inner {
  max-width: 420px;
  color: var(--chantilly-pure);
  font-size: 0.92rem;
  line-height: 1.55;
}
.harta-map-consent-icon {
  width: 38px;
  height: 38px;
  stroke: var(--rustic-taupe-light);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 16px;
  opacity: 0.85;
}
.harta-map-consent-title {
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--chantilly-pure);
}
.harta-map-consent-text {
  margin: 0 0 22px;
  opacity: 0.78;
}
.harta-map-consent-text strong {
  font-weight: 500;
  color: var(--chantilly-pure);
}
.harta-map-consent-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--chantilly-pure);
  color: var(--essex);
  border: 1px solid var(--chantilly-pure);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.harta-map-consent-btn:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}
.harta-map-consent-btn:focus-visible {
  outline: 2px solid var(--rustic-taupe-light);
  outline-offset: 3px;
}
.harta-map-consent-alt {
  margin: 18px 0 0;
  font-size: 0.78rem;
  opacity: 0.68;
}
.harta-map-consent-alt a {
  color: var(--rustic-taupe-light);
  text-decoration: underline;
}
.harta-map-consent-alt a:hover {
  color: var(--chantilly-pure);
}

/* Map footer · context + external link */
.harta-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--essex-deep);
  color: var(--chantilly-pure);
  border-top: 1px solid rgba(247, 246, 241, 0.08);
}
.harta-map-context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.harta-map-context-icon {
  width: 14px; height: 14px;
  fill: none; stroke: var(--rustic-taupe-light);
  stroke-width: 1.5;
}
.harta-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--chantilly-pure);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}
.harta-map-link:hover { color: var(--rustic-taupe-light); }
.harta-map-link-arrow {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.harta-map-link:hover .harta-map-link-arrow { transform: translateX(3px); }

/* POI block (right) · essex green dark theme matching map placeholder */
.harta-poi-block {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--essex) 0%, var(--essex-deep) 100%);
  padding: clamp(28px, 4vh, 40px) clamp(24px, 3vw, 32px);
  border: 1px solid var(--essex-deep);
  color: var(--chantilly-pure);
}
.harta-poi-header { margin-bottom: 24px; }
.harta-poi-header h3 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.012em;
  color: var(--chantilly-pure);
  margin: 0 0 8px;
}
.harta-poi-header p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--chantilly-pure);
  opacity: 0.72;
  margin: 0;
}

.harta-poi-list {
  padding: 4px 0;
  flex-grow: 1;
}
.harta-poi-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px 16px 14px;
  min-height: 44px;
  border-bottom: 1px solid rgba(247, 246, 241, 0.12);
  border-left: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, padding-left 0.3s ease;
}
.harta-poi-card:last-child { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
  .harta-poi-card:hover {
    background: rgba(247, 246, 241, 0.08);
    border-left-color: var(--rustic-taupe-light);
    padding-left: 18px;
  }
}
.harta-poi-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  color: var(--rustic-taupe-light);
  opacity: 0.9;
  margin-top: 1px;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.harta-poi-icon svg {
  width: 100%; height: 100%;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.harta-poi-card:hover .harta-poi-icon {
  color: var(--chantilly-pure);
  opacity: 1;
}
.harta-poi-card-text { min-width: 0; }
.harta-poi-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--chantilly-pure);
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.harta-poi-card-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--chantilly-pure);
  opacity: 0.72;
  margin: 0;
}

.harta-poi-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 246, 241, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--chantilly-pure);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.harta-poi-cta:hover {
  color: var(--rustic-taupe-light);
  gap: 14px;
}

@media (max-width: 980px) {
  .harta-grid { grid-template-columns: 1fr; gap: 18px; }
  .harta-section { padding-top: clamp(64px, 9vh, 88px); }
  .harta-map-wrap { aspect-ratio: 4 / 3; min-height: 320px; }
  .harta-map-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* ==========================================================
   HARTA PAGE · standalone tourism map page (pages/comuna1/harta.html)
   ----------------------------------------------------------
   Shared styles for the dedicated tourism map page. Mirrors the
   primarie map page but tuned for the comuna1 tourism context.
   ========================================================== */

.harta-page-header {
  background: var(--chantilly-pure);
  padding: clamp(80px, 12vh, 130px) 32px clamp(40px, 6vh, 64px);
  text-align: center;
}
.harta-page-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.harta-page-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 18px;
}
.harta-page-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 200;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--essex);
  margin: 0 0 22px;
}
.harta-page-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--rustic-taupe);
}
.harta-page-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 auto;
  max-width: 56ch;
}

/* Big map section */
.harta-page-map {
  background: var(--chantilly-pure);
  padding: 0 32px clamp(64px, 9vh, 100px);
}
.harta-page-map-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.harta-page-map-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  overflow: hidden;
  background: var(--essex);
  border: 1px solid var(--essex-deep);
}
.harta-page-map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5) sepia(0.10) saturate(0.65) hue-rotate(55deg) brightness(0.96) contrast(1.05);
}
.harta-page-map-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--essex) 0%, var(--essex-deep) 100%);
  text-align: center;
}
.harta-page-map-consent-inner {
  max-width: 480px;
  color: var(--chantilly-pure);
  font-size: 0.95rem;
  line-height: 1.55;
}
.harta-page-map-consent-icon {
  width: 42px; height: 42px;
  stroke: var(--rustic-taupe-light);
  fill: none;
  margin-bottom: 18px;
  opacity: 0.85;
}
.harta-page-map-consent-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--chantilly-pure);
}
.harta-page-map-consent-text {
  margin: 0 0 24px;
  opacity: 0.78;
}
.harta-page-map-consent-text strong {
  font-weight: 500;
  color: var(--chantilly-pure);
}
.harta-page-map-consent-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--chantilly-pure);
  color: var(--essex);
  border: 1px solid var(--chantilly-pure);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.harta-page-map-consent-btn:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}
.harta-page-map-consent-alt {
  margin: 20px 0 0;
  font-size: 0.8rem;
  opacity: 0.68;
}
.harta-page-map-consent-alt a {
  color: var(--rustic-taupe-light);
  text-decoration: underline;
}
.harta-page-map-consent-alt a:hover {
  color: var(--chantilly-pure);
}

/* POI categories section · dark essex green band */
.harta-page-poi {
  background: linear-gradient(180deg, var(--essex) 0%, var(--essex-deep) 100%);
  padding: clamp(80px, 12vh, 130px) 32px clamp(80px, 12vh, 130px);
  color: var(--chantilly-pure);
}
.harta-page-poi-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.harta-page-poi-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vh, 72px);
}
.harta-page-poi-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe-light);
  font-weight: 500;
  margin-bottom: 18px;
}
.harta-page-poi-title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--chantilly-pure);
  margin: 0 0 18px;
}
.harta-page-poi-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--rustic-taupe-light);
}
.harta-page-poi-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--chantilly-pure);
  opacity: 0.78;
  margin: 0 auto;
  max-width: 64ch;
}

.harta-page-poi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.harta-page-poi-category {
  background: rgba(247, 246, 241, 0.04);
  border: 1px solid rgba(247, 246, 241, 0.10);
  padding: 28px 28px 32px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.harta-page-poi-category:hover {
  background: rgba(247, 246, 241, 0.07);
  border-color: rgba(247, 246, 241, 0.18);
}
.harta-page-poi-category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(247, 246, 241, 0.12);
}
.harta-page-poi-category-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  color: var(--rustic-taupe-light);
  display: flex; align-items: center; justify-content: center;
}
.harta-page-poi-category-icon svg {
  width: 100%; height: 100%;
}
.harta-page-poi-category-title {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--chantilly-pure);
  margin: 0 0 6px;
}
.harta-page-poi-category-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--chantilly-pure);
  opacity: 0.7;
  margin: 0;
}
.harta-page-poi-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.harta-page-poi-items li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--chantilly-pure);
  opacity: 0.85;
  padding-left: 18px;
  position: relative;
}
.harta-page-poi-items li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--rustic-taupe-light);
}
.harta-page-poi-items strong {
  font-weight: 500;
  color: var(--chantilly-pure);
}

@media (max-width: 880px) {
  .harta-page-poi-grid { grid-template-columns: 1fr; }
  .harta-page-map-wrap { aspect-ratio: 4 / 3; min-height: 360px; }
}


/* ==========================================================
   5. ANOTIMPURI · 4 landscape cards in a row
   ========================================================== */

.anotimpuri {
  background: var(--chantilly-pure);
  padding: 32px 32px 112px;
}
.anotimpuri-inner { max-width: 1240px; margin: 0 auto; }
.anotimpuri-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 32px;
}
.anotimpuri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.anotimp-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  color: var(--chantilly-pure);
}
.anotimp-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(1.08) saturate(1.18) contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.45s ease;
}

/* Season-specific color grading · gives each card its own mood */
.anotimp-photo.primavara { filter: brightness(1.08) saturate(1.22) contrast(1.04) hue-rotate(-3deg); }
.anotimp-photo.vara      { filter: brightness(1.10) saturate(1.25) contrast(1.05) sepia(0.04);      }
.anotimp-photo.toamna    { filter: brightness(1.04) saturate(1.32) contrast(1.06) sepia(0.10);      }
.anotimp-photo.iarna     { filter: brightness(1.16) saturate(0.85) contrast(1.10);                  }

@media (hover: hover) and (pointer: fine) {
  .anotimp-card:hover .anotimp-photo { transform: scale(1.04); }
  .anotimp-card:hover .anotimp-photo.primavara { filter: brightness(1.14) saturate(1.32) contrast(1.06) hue-rotate(-3deg); }
  .anotimp-card:hover .anotimp-photo.vara      { filter: brightness(1.16) saturate(1.35) contrast(1.07) sepia(0.04);      }
  .anotimp-card:hover .anotimp-photo.toamna    { filter: brightness(1.10) saturate(1.42) contrast(1.08) sepia(0.10);      }
  .anotimp-card:hover .anotimp-photo.iarna     { filter: brightness(1.22) saturate(0.92) contrast(1.12);                  }
}

/* Default gradient overlay (fallback before per-season tint kicks in) */
.anotimp-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(15,23,18,0.72) 100%);
  transition: background 0.45s ease;
}

/* Season-tinted bottom gradient · NO BLUE per SKILL §3.2 (Hale Navy = Trei Ape only) */
.anotimp-card:has(.anotimp-photo.primavara)::after {
  background: linear-gradient(180deg, transparent 40%, rgba(43, 61, 52, 0.48) 72%, rgba(22, 32, 27, 0.84) 100%);
}
.anotimp-card:has(.anotimp-photo.vara)::after {
  background: linear-gradient(180deg, transparent 42%, rgba(122, 90, 50, 0.34) 70%, rgba(22, 32, 27, 0.82) 100%);
}
.anotimp-card:has(.anotimp-photo.toamna)::after {
  background: linear-gradient(180deg, transparent 40%, rgba(140, 80, 40, 0.40) 68%, rgba(22, 32, 27, 0.85) 100%);
}
.anotimp-card:has(.anotimp-photo.iarna)::after {
  background: linear-gradient(180deg, transparent 42%, rgba(194, 181, 160, 0.30) 72%, rgba(22, 32, 27, 0.82) 100%);
}
.anotimp-body {
  position: absolute; inset: auto 0 0 0;
  z-index: 2;
  padding: 24px 24px 26px;
  text-align: center;
}
.anotimp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  margin-bottom: 14px;
  border: 1px solid rgba(247,246,241,0.65);
}
.anotimp-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.anotimp-title {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.anotimp-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.92;
  margin: 0;
}

.anotimp-photo.primavara { background-image: url('../assets/img/sezoane/primavara.jpeg?v=2026-06-14'); }
.anotimp-photo.vara      { background-image: url('../assets/img/sezoane/vara.jpeg?v=2026-06-14');      }
.anotimp-photo.toamna    { background-image: url('../assets/img/sezoane/toamna.jpeg?v=2026-06-14');    }
.anotimp-photo.iarna     { background-image: url('../assets/img/sezoane/iarna.jpeg?v=2026-06-14');     }

@media (max-width: 880px) {
  .anotimpuri-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .anotimpuri-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   6. JAZZ FEATURE · full-width darkened block
   ========================================================== */

.jazz-feature {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--chantilly-pure);
  overflow: hidden;
}
/* Jazz festival countdown · small timer pinned to the top-right corner */
.jazz-countdown {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  padding: 13px 16px 11px;
  background: rgba(15, 23, 18, 0.52);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247, 246, 241, 0.18);
  border-radius: 12px;
  text-align: center;
  color: var(--chantilly-pure);
  box-shadow: 0 8px 24px rgba(15, 23, 18, 0.30);
}
.jazz-cd-eyebrow {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rustic-taupe-light);
  margin-bottom: 8px;
}
.jazz-cd-grid { display: flex; gap: 12px; }
.jazz-cd-cell { display: flex; flex-direction: column; align-items: center; min-width: 28px; }
.jazz-cd-num {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.jazz-cd-lbl {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 4px;
}
.jazz-countdown.is-live,
.jazz-countdown.is-over { padding: 14px 18px; }
.jazz-countdown.is-live .jazz-cd-eyebrow,
.jazz-countdown.is-over .jazz-cd-eyebrow {
  margin: 0;
  font-size: 0.64rem;
  line-height: 1.5;
}
.jazz-countdown.is-live { border-color: rgba(168, 149, 127, 0.55); }
@media (max-width: 640px) {
  .jazz-countdown { top: 14px; right: 14px; padding: 9px 12px 8px; }
  .jazz-cd-grid { gap: 8px; }
  .jazz-cd-num { font-size: 1.1rem; }
  .jazz-cd-cell { min-width: 22px; }
}

.jazz-photo {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,23,18,0.48) 0%, rgba(15,23,18,0.72) 100%),
    url('../assets/img/jazz/jazz-festival.jpeg?v=2026-06-14');
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.04);
}
.jazz-content {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.jazz-text { max-width: 580px; }
.jazz-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.jazz-title em { font-style: normal; font-weight: 500; color: var(--rustic-taupe-light); }
.jazz-desc {
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.92;
  margin: 0 0 28px;
}
.jazz-meta {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.jazz-date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding-right: 18px;
  border-right: 1px solid rgba(247,246,241,0.3);
}
.jazz-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--essex);
  background: var(--chantilly-pure);
  border: 1px solid var(--chantilly-pure);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.jazz-cta:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}
.jazz-cta-ext {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.jazz-cta:hover .jazz-cta-ext {
  opacity: 1;
  transform: translate(2px, -2px);
}

.jazz-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--chantilly-pure);
  background: transparent;
  border: 1px solid rgba(247, 246, 241, 0.4);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.jazz-cta-ghost:hover {
  background: rgba(247, 246, 241, 0.12);
  border-color: rgba(247, 246, 241, 0.85);
}

.jazz-logo {
  text-align: right;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 0.96;
  opacity: 0.42;
  letter-spacing: -0.005em;
  align-self: end;
}
.jazz-logo span { display: block; }

@media (max-width: 880px) {
  .jazz-content { grid-template-columns: 1fr; }
  .jazz-logo { text-align: left; font-size: 1.8rem; }
}


/* ==========================================================
   FOLK FEATURE · counterpart to jazz banner · same skeleton
   Photo: assets/img/garana-folk.jpeg (fallback: garana.jpeg)
   ========================================================== */
.folk-feature {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--chantilly-pure);
  overflow: hidden;
}
.folk-photo {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,23,18,0.52) 0%, rgba(15,23,18,0.78) 100%),
    url('../assets/img/garana-folk.jpeg?v=2026-06-14'),
    url('../assets/img/garana.jpeg?v=2026-06-14');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.04);
}
.folk-content {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.folk-text { max-width: 580px; }
.folk-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.folk-title em { font-style: normal; font-weight: 500; color: var(--rustic-taupe-light); }
.folk-desc {
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.92;
  margin: 0 0 28px;
}
.folk-meta {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.folk-date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding-right: 18px;
  border-right: 1px solid rgba(247,246,241,0.3);
}
.folk-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--essex);
  background: var(--chantilly-pure);
  border: 1px solid var(--chantilly-pure);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.folk-cta:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}
.folk-cta-ext {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.folk-cta:hover .folk-cta-ext {
  opacity: 1;
  transform: translateX(2px);
}
.folk-logo {
  text-align: right;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 0.96;
  opacity: 0.42;
  letter-spacing: -0.005em;
  align-self: end;
}
.folk-logo span { display: block; }

@media (max-width: 880px) {
  .folk-content { grid-template-columns: 1fr; }
  .folk-logo { text-align: left; font-size: 1.8rem; }
}


/* ==========================================================
   7. POVESTEA · timeline + old photo
   ========================================================== */

.povestea {
  background: var(--chantilly-pure);
  padding: 112px 32px;
}
.povestea-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  top: 6px; left: 4px; right: 4px;
  height: 1px;
  background: var(--stone-hearth-soft);
  z-index: 0;
}
.timeline-step {
  position: relative;
  padding-top: 24px;
}
.timeline-step::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--essex);
  z-index: 1;
}
.timeline-year {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--essex);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.timeline-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--essex);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.timeline-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .timeline-step::before { left: 0; }
}


/* ==========================================================
   8. GALERIE · 8-cell grid (7 photos + CTA)
   ========================================================== */

.galerie {
  background: var(--chantilly-pure);
  padding: 0 0 112px;
}
.galerie-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.galerie-title {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 300;
  color: var(--essex);
  margin: 0 0 32px;
  line-height: 1.18;
  letter-spacing: -0.008em;
}
.galerie-title em { font-style: normal; font-weight: 500; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.galerie-cell {
  aspect-ratio: 1 / 1;
  background-color: var(--edgecomb);
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
/* Image layer · in ::before so it can zoom independently of the cell box */
.galerie-cell::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.06) saturate(1.15) contrast(1.03);
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s ease;
  z-index: 0;
}
/* Caption layer · slides up from bottom with the cell's aria-label */
.galerie-cell::after {
  content: attr(aria-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px 12px;
  color: var(--chantilly-pure);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.3;
  background: linear-gradient(180deg, rgba(15,23,18,0) 0%, rgba(15,23,18,0.78) 60%, rgba(15,23,18,0.92) 100%);
  transform: translateY(102%);
  transition: transform 0.42s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}
.galerie-cell:hover::before,
.galerie-cell:focus-visible::before {
  transform: scale(1.08);
  filter: brightness(1.14) saturate(1.3) contrast(1.06);
}
.galerie-cell:hover::after,
.galerie-cell:focus-visible::after {
  transform: translateY(0);
}
.galerie-cell:hover {
  box-shadow: 0 10px 28px -10px rgba(15, 23, 18, 0.45);
}
.galerie-cell:active {
  transform: scale(0.985);
  transition: transform 0.12s ease;
}
.galerie-cell:focus-visible {
  outline: 2px solid var(--rustic-taupe);
  outline-offset: 3px;
}
.galerie-cell-1::before { background-image: url('../assets/img/galerie/gal-lacul-trei-ape.jpeg?v=2026-06-14');    }
.galerie-cell-2::before { background-image: url('../assets/img/galerie/gal-jazz.jpeg?v=2026-06-14');             }
.galerie-cell-3::before { background-image: url('../assets/img/galerie/gal-kirchweih.jpeg?v=2026-06-14');        }
.galerie-cell-4::before { background-image: url('../assets/img/galerie/gal-padurea.jpeg?v=2026-06-14');          }
.galerie-cell-5::before { background-image: url('../assets/img/galerie/gal-via-transilvanica.jpeg?v=2026-06-14'); }
.galerie-cell-6::before { background-image: url('../assets/img/galerie/gal-semenic.jpeg?v=2026-06-14');          }
.galerie-cell-7::before { background-image: url('../assets/img/galerie/gal-povesti.jpeg?v=2026-06-14');          }

.galerie-cta {
  background: var(--essex);
  color: var(--chantilly-pure);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.3s ease;
}
.galerie-cta:hover {
  background: var(--essex-deep);
  box-shadow: 0 10px 28px -10px rgba(15, 23, 18, 0.45);
}
.galerie-cta:hover .galerie-cta-icon {
  border-color: var(--rustic-taupe-light);
  color: var(--rustic-taupe-light);
}
.galerie-cta:active { transform: scale(0.985); transition: transform 0.12s ease; }
.galerie-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(247,246,241,0.55);
  margin-bottom: 10px;
  color: var(--chantilly-pure);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.galerie-cta-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 880px) {
  .galerie-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 380px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================
   9. PLANIFICĂ-ȚI VIZITA · dark green CTA band
   ========================================================== */

.planifica {
  background: var(--essex);
  color: var(--chantilly-pure);
  padding: 64px 32px;
}
.planifica-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 32px;
}
.planifica-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(247,246,241,0.36);
  color: var(--chantilly-pure);
}
.planifica-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.planifica-title {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 300;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.008em;
}
.planifica-title em { font-style: normal; font-weight: 500; color: var(--rustic-taupe-light); }
.planifica-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.86;
  margin: 0;
  max-width: 56ch;
}
.planifica-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--essex);
  background: var(--chantilly-pure);
  border: 1px solid var(--chantilly-pure);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.planifica-cta:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}
@media (max-width: 880px) {
  .planifica-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .planifica-icon { margin: 0 auto; }
  .planifica-cta { justify-self: center; }
}


/* ==========================================================
   MOBILE TAP TARGETS · WCAG 2.5.5 / 44px floor
   ----------------------------------------------------------
   Tourism-side CTAs on the comuna1 hubs sit at ~30-40px tall
   on default mobile (font 0.72rem + 12-14px vertical padding).
   The site-wide chrome (.a11y-btn, .lang-btn, .hamburger,
   .doc-btn) already hits 44px via responsive.css. Bring the
   tourism CTAs to the same floor.
   ========================================================== */
@media (max-width: 720px) {
  .section-link {
    min-height: 44px;
    padding: 12px 0 6px;
  }
  .harta-btn,
  .jazz-cta,
  .jazz-cta-ghost,
  .galerie-cta,
  .planifica-cta {
    min-height: 44px;
    align-items: center;
  }
}


/* ==========================================================
   HARTA PAGE INTERACTIVE · MapTiler + sidebar + chips + stats
   ----------------------------------------------------------
   New layout (mockup-style) for pages/comuna1/harta.html.
   Overrides the legacy harta-page-* styles above.
   ========================================================== */

.harta-page {
  background: var(--chantilly-pure);
  padding: clamp(28px, 4vh, 40px) clamp(20px, 3vw, 32px);
}

/* TOP · title left + chips right */
.harta-page-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-end;
  max-width: 1480px;
  margin: 0 auto clamp(20px, 3vh, 32px);
  padding-bottom: clamp(20px, 3vh, 32px);
}
.harta-page-top-left {
  max-width: 580px;
}
.harta-page-top .harta-page-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rustic-taupe);
  font-weight: 500;
  margin-bottom: 14px;
}
.harta-page-top .harta-page-title {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--essex);
  margin: 0 0 14px;
}
.harta-page-top .harta-page-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--rustic-taupe);
}
.harta-page-top .harta-page-lead {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 56ch;
}

/* CHIPS · filter row */
.harta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}
.harta-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  min-width: 76px;
  background: var(--chantilly);
  border: 1px solid transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.harta-chip svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.harta-chip span {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.harta-chip:hover {
  background: var(--edgecomb-light);
  color: var(--essex);
}
.harta-chip.is-active {
  background: var(--essex);
  color: var(--chantilly-pure);
  border-color: var(--essex);
}

/* BODY · sidebar + map split */
.harta-page-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
  min-height: 600px;
}

/* SIDEBAR · dark essex green */
.harta-sidebar {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--essex) 0%, var(--essex-deep) 100%);
  color: var(--chantilly-pure);
  overflow: hidden;
}
.harta-sidebar-tabs {
  display: flex;
  gap: 24px;
  padding: 22px 26px 0;
  border-bottom: 1px solid rgba(247, 246, 241, 0.08);
}
.harta-sidebar-tab {
  background: transparent;
  border: 0;
  color: var(--chantilly-pure);
  opacity: 0.55;
  padding: 12px 0;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: opacity 0.25s ease;
}
.harta-sidebar-tab.is-active {
  opacity: 1;
}
.harta-sidebar-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--rustic-taupe-light);
}
.harta-sidebar-tab:hover { opacity: 0.85; }

.harta-sidebar-panel {
  display: none;
  flex: 1;
  overflow-y: auto;
  max-height: 540px;
}
.harta-sidebar-panel.is-active { display: block; }

.harta-sidebar-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
/* Section sub-headers within sidebar (e.g., "Cazare · Gărâna", "Patrimoniu & cultură") */
.harta-sidebar-section {
  padding: 18px 26px 6px;
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rustic-taupe-light);
  border-top: 1px solid rgba(247, 246, 241, 0.06);
}
.harta-sidebar-section:first-child {
  margin-top: 0;
  border-top: 0;
}
.harta-sidebar-item {
  /* <button> UA reset · order matters: border:0 BEFORE border-left override */
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  /* layout */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  text-decoration: none;
  color: var(--chantilly-pure);
  border-left: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.harta-sidebar-item:hover {
  background: rgba(247, 246, 241, 0.04);
}
.harta-sidebar-item.is-active {
  background: rgba(247, 246, 241, 0.06);
  border-left-color: var(--rustic-taupe-light);
}
.harta-sidebar-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247, 246, 241, 0.08);
  border-radius: 50%;
  color: var(--rustic-taupe-light);
}
.harta-sidebar-item.is-active .harta-sidebar-icon {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
}
.harta-sidebar-icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5;
}
.harta-sidebar-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.harta-sidebar-item strong {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chantilly-pure);
  line-height: 1.25;
}
.harta-sidebar-item span {
  font-size: 0.75rem;
  color: var(--chantilly-pure);
  opacity: 0.6;
  line-height: 1.3;
}

/* Google Maps fallback button · bottom of sidebar */
.harta-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
  padding: 14px 22px;
  background: var(--chantilly-pure);
  color: var(--essex);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--chantilly-pure);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.harta-google-btn svg {
  width: 14px; height: 14px;
}
.harta-google-btn:hover {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
  border-color: var(--rustic-taupe);
}

/* MAP AREA · right side, big interactive map */
.harta-map-area {
  position: relative;
  background: var(--essex);
  overflow: hidden;
  min-height: 600px;
}
.harta-map-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.harta-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--essex) 0%, var(--essex-deep) 100%);
  color: var(--chantilly-pure);
  padding: 32px;
  text-align: center;
}
.harta-map-fallback a {
  color: var(--rustic-taupe-light);
  text-decoration: underline;
}

/* Custom marker styling */
.harta-marker {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--chantilly-pure);
  box-shadow: 0 2px 6px rgba(15, 23, 18, 0.35);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chantilly-pure);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.harta-marker svg {
  width: 12px; height: 12px;
  fill: currentColor;
}
.harta-marker:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(15, 23, 18, 0.5);
}
.harta-marker.is-active {
  transform: scale(1.25);
  outline: 3px solid var(--rustic-taupe-light);
  outline-offset: 2px;
}

/* DETAIL CARD · floating bottom-left over map */
.harta-detail-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: min(320px, calc(100% - 40px));
  background: var(--chantilly-pure);
  padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 18, 0.18);
  border-left: 3px solid var(--rustic-taupe);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.harta-detail-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.harta-detail-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--essex);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.harta-detail-desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0 0 12px;
  line-height: 1.45;
}
.harta-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--essex);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rustic-taupe);
  transition: color 0.25s ease, gap 0.25s ease;
}
.harta-detail-cta:hover {
  color: var(--rustic-taupe);
  gap: 10px;
}

/* STATS BAR · bottom */
.harta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1480px;
  margin: 16px auto 0;
  padding: 20px 24px;
  background: var(--chantilly);
  border: 1px solid var(--stone-hearth-soft);
}
.harta-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.harta-stat-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--essex);
  color: var(--chantilly-pure);
  border-radius: 50%;
}
.harta-stat-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5;
}
.harta-stat strong {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--essex);
  letter-spacing: -0.005em;
}
.harta-stat span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

/* Responsive · sidebar stacks above map on tablet & mobile */
@media (max-width: 1024px) {
  .harta-page-top {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
  }
  .harta-chips { justify-content: flex-start; }
  .harta-page-body {
    grid-template-columns: 1fr;
  }
  .harta-sidebar {
    max-height: 460px;
    overflow-y: auto;
  }
  .harta-sidebar-panel { max-height: none; }
  .harta-map-area { min-height: 500px; }
  .harta-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  /* WCAG 2.2 SC 2.5.8 - min 24x24, tourism target 44x44 for primary controls */
  .harta-chip { min-width: 64px; min-height: 44px; padding: 10px 8px; }
  .harta-chip span { font-size: 0.62rem; }
  .harta-sidebar-tab { padding: 14px 0; min-height: 44px; }
  .harta-stats { grid-template-columns: 1fr; }
  .harta-detail-card { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  /* Folk/Jazz feature banner tighter padding on phone */
  .folk-content, .jazz-content { padding: clamp(48px, 8vh, 88px) clamp(20px, 5vw, 32px); }
}

/* ==========================================================
   HARTA SECTION · HUB MOCKUP VARIANT
   Used on comuna.html – replicates standalone mockup
   (chips + sidebar + map + stats) but with 4 hub categories
   in sidebar that deep-link to standalone harta.html?cat=X
   ========================================================== */
.harta-chips--hub {
  justify-content: center;
  margin: 0 auto clamp(28px, 4vh, 40px);
  max-width: 720px;
}
/* Explicit chip styling for hub variant · chips are <a> links to standalone
   harta page, not filter buttons. Default state = cream cream, no "is-active"
   sticky. */
.harta-chips--hub .harta-chip {
  background: var(--chantilly);
  color: var(--text-soft);
  border: 1px solid transparent;
  text-decoration: none;
}
.harta-chips--hub .harta-chip:hover {
  background: var(--edgecomb-light);
  color: var(--essex);
  border-color: transparent;
}
.harta-chips--hub .harta-chip:focus-visible {
  outline: 2px solid var(--rustic-taupe);
  outline-offset: 2px;
}

.harta-page-body--hub {
  max-width: 1240px;
  min-height: 560px;
}
.harta-page-body--hub .harta-sidebar {
  position: relative;
}
.harta-sidebar-header {
  padding: 22px 26px 16px;
  border-bottom: 1px solid rgba(247, 246, 241, 0.08);
}
.harta-sidebar-header h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--chantilly-pure);
}
.harta-sidebar-header p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--chantilly-pure);
  opacity: 0.7;
}
.harta-page-body--hub .harta-sidebar-list {
  flex: 1;
  padding: 12px 0;
}
.harta-page-body--hub .harta-sidebar-item {
  padding: 16px 26px;
  gap: 14px;
  align-items: flex-start;
}
.harta-page-body--hub .harta-sidebar-item:hover .harta-sidebar-icon {
  background: var(--rustic-taupe);
  color: var(--chantilly-pure);
}
.harta-page-body--hub .harta-sidebar-item:hover .harta-sidebar-arrow {
  transform: translateX(3px);
  opacity: 1;
}
.harta-sidebar-arrow {
  margin-left: auto;
  align-self: center;
  font-size: 0.95rem;
  color: var(--rustic-taupe-light);
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0;
}

/* Stats bar inside hub section · scope to mockup variant */
.harta-section--mockup .harta-stats {
  max-width: 1240px;
  margin: clamp(24px, 3vh, 36px) auto 0;
}

@media (max-width: 1024px) {
  .harta-page-body--hub { min-height: 0; }
  .harta-page-body--hub .harta-sidebar { max-height: none; }
  .harta-page-body--hub .harta-sidebar-list { max-height: 380px; overflow-y: auto; }
}
@media (max-width: 540px) {
  .harta-chips--hub { justify-content: flex-start; }
  .harta-sidebar-header { padding: 18px 20px 14px; }
  .harta-page-body--hub .harta-sidebar-item { padding: 14px 20px; }
  .harta-sidebar-arrow { display: none; }
}


/* ============================================================
   Elegance pass · jazz & folk feature bands (palette unchanged)
   Cinematic slow zoom + directional veil + vignette + soft title
   shadow. Purely additive – does not touch the existing rules.
   ============================================================ */
.jazz-photo, .folk-photo {
  transform-origin: center;
  animation: tour-kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes tour-kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
/* Directional shade (frames the left-aligned text) + soft edge vignette */
.jazz-photo::after, .folk-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,16,12,0.55) 0%, rgba(10,16,12,0.14) 46%, rgba(10,16,12,0) 72%),
    radial-gradient(125% 115% at 50% 45%, transparent 52%, rgba(6,11,8,0.42) 100%);
}
.jazz-title, .folk-title { text-shadow: 0 1px 26px rgba(0,0,0,0.38); }
.jazz-desc, .folk-desc { opacity: 0.88; }
@media (prefers-reduced-motion: reduce) {
  .jazz-photo, .folk-photo { animation: none; }
}

.harta-marker{
  position:relative;
}

.harta-marker-label{
  position:absolute;
  left:50%;
  top:100%;
  transform:translateX(-50%);
  margin-top:8px;

  padding:4px 10px;
  border-radius:999px;

  background:rgba(255,255,255,.96);
  color:var(--essex);

  font-size:11px;
  font-weight:600;
  white-space:nowrap;

  box-shadow:0 4px 12px rgba(0,0,0,.15);

  opacity:0;
  visibility:hidden;
  transition:.2s ease;
}

.harta-marker:hover .harta-marker-label,
.harta-marker.is-active .harta-marker-label{
  opacity:1;
  visibility:visible;
}