:root {
  --green-900: #12352a;
  --green-800: #1b4b39;
  --green-700: #256349;
  --green-100: #e4efe8;
  --gold-600: #a8761f;
  --gold-500: #c8912f;
  --gold-200: #f0e0bf;
  --cream: #faf6ee;
  --paper: #ffffff;
  --ink: #232019;
  --ink-soft: #5b564c;
  --line: #e3dcce;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(24, 40, 32, .07);
  --shadow: 0 10px 30px rgba(24, 40, 32, .1);
  --container: 1200px;
  --header-h: 74px;

  --font-title: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 400; line-height: 1.2; color: var(--green-900); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section--paper { background: var(--paper); }
.section--green { background: var(--green-900); color: #eee9dd; }
.section--green h2, .section--green h3 { color: #fff; }
.section--green a { color: var(--gold-200); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: .8rem;
}
.section--green .eyebrow { color: var(--gold-200); }

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 68ch; }
.section--green .lead { color: #d6cfc0; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* -------------------------------------------------- Header / navigație */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__mark {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: #fff; font-family: var(--font-title); font-size: 1.05rem;
  display: grid; place-items: center; letter-spacing: .02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__title { font-family: var(--font-title); font-size: 1.05rem; color: var(--green-900); }
.brand__sub { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  display: block; padding: .55rem .7rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; color: var(--ink);
}
.nav a:hover { background: var(--green-100); color: var(--green-800); }
.nav a.is-active { color: var(--green-800); box-shadow: inset 0 -2px 0 var(--gold-500); }

.lang { display: flex; align-items: center; gap: .2rem; margin-left: .6rem; padding-left: .7rem; border-left: 1px solid var(--line); }
.lang button {
  border: 0; background: none; cursor: pointer; font: inherit; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; color: var(--ink-soft); padding: .3rem .42rem; border-radius: 6px;
}
.lang button:hover { background: var(--green-100); }
.lang button[aria-pressed="true"] { background: var(--green-800); color: #fff; }

.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm);
  width: 46px; height: 42px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; height: 2px; width: 20px; background: var(--green-900); margin: 0 auto; position: relative; content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .6rem 1.25rem 1.1rem; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h)); overflow: auto;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .lang { margin: .8rem 0 0; padding: 0; border: 0; }
}

/* -------------------------------------------------- Hero */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--green-900); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 30, 22, .72), rgba(10, 30, 22, .55) 45%, rgba(10, 30, 22, .88));
}
.hero__inner { padding: clamp(4rem, 12vw, 8.5rem) 0 clamp(3rem, 8vw, 6rem); max-width: 900px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #e6e0d3; max-width: 62ch; }
.hero .eyebrow { color: var(--gold-200); }

.page-hero { position: relative; background: var(--green-900); color: #fff; padding: clamp(2.6rem, 6vw, 4.4rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #cfc8b9; max-width: 70ch; margin: 0; }
.page-hero--image { padding: clamp(5rem, 14vw, 9rem) 0 clamp(2.6rem, 6vw, 4.4rem); overflow: hidden; }
.page-hero--image .container { position: relative; z-index: 2; }
.page-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: .38;
}
.page-hero--image::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,42,31,.55) 0%, rgba(11,42,31,.9) 100%);
}
.breadcrumbs { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-200); margin-bottom: .8rem; }
.breadcrumbs a { color: var(--gold-200); }

/* -------------------------------------------------- Butoane */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .96rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold-500); color: #2a1f06; }
.btn--primary:hover { background: var(--gold-200); color: #2a1f06; }
.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--outline { border-color: var(--green-700); color: var(--green-800); }
.btn--outline:hover { background: var(--green-100); }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* -------------------------------------------------- Grile & carduri */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--pattern {
  background:
    radial-gradient(circle at 22% 28%, rgba(200, 145, 47, .35), transparent 45%),
    linear-gradient(140deg, var(--green-800), var(--green-900));
  display: grid; place-items: center;
}
.card__initial { font-family: var(--font-title); font-size: 2.6rem; color: #fff; opacity: .85; }
.card__body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .35rem; }
.card__body p { color: var(--ink-soft); font-size: .97rem; }
.card__link { margin-top: auto; font-weight: 700; font-size: .92rem; }

.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--gold-200); color: var(--gold-600); padding: .22rem .6rem; border-radius: 999px; margin-bottom: .6rem;
}
.tag--green { background: var(--green-100); color: var(--green-800); }

.panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.section--green .panel { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .16); }

.stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.stat { text-align: center; padding: 1.2rem .8rem; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); }
.stat b { display: block; font-family: var(--font-title); font-size: 2.1rem; color: var(--gold-200); }
.stat span { font-size: .88rem; color: #d6cfc0; }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-check { list-style: none; padding: 0; margin: 0 0 1rem; }
.list-check li { position: relative; padding-left: 1.5rem; margin-bottom: .45rem; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px;
  border-radius: 2px; background: var(--gold-500); transform: rotate(45deg);
}

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.chips li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; font-size: .88rem; }
.section--green .chips li { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .18); color: #efe9dc; }

/* -------------------------------------------------- Obiectiv detaliat */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.feature--flip .feature__media { order: 2; }
.feature__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature + .feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.feature-stack > * + * { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.feature-stack .gallery { margin-top: 1.2rem; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature--flip .feature__media { order: 0; } }

.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 1.2rem; }
.gallery img { border-radius: var(--radius-sm); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-sm); }

.contact-box {
  border-left: 3px solid var(--gold-500); background: var(--green-100);
  padding: .9rem 1.1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .95rem; margin-top: 1rem;
}
.contact-box strong { display: block; color: var(--green-900); }
.section--green .contact-box { background: var(--paper); color: var(--ink); }
.section--green .contact-box a { color: var(--green-700); }
.section--green .contact-box a:hover { color: var(--gold-600); }

/* -------------------------------------------------- Acordeon localități */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.accordion__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font: inherit;
  padding: 1.05rem 1.3rem; display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-title); font-size: 1.18rem; color: var(--green-900);
}
.accordion__head:hover { background: var(--green-100); }
.accordion__head .plus { margin-left: auto; font-size: 1.4rem; color: var(--gold-600); line-height: 1; transition: transform .2s ease; }
.accordion__head[aria-expanded="true"] .plus { transform: rotate(45deg); }
.accordion__panel { padding: 0 1.3rem 1.5rem; display: none; }
.accordion__panel.is-open { display: block; }
.accordion__grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 1rem; }
.mini-title { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-600); margin-bottom: .5rem; }
.poi { margin-bottom: .9rem; }
.poi b { display: block; color: var(--green-900); }
.poi span { font-size: .94rem; color: var(--ink-soft); }
.unit { font-size: .93rem; margin-bottom: .7rem; }
.unit b { display: block; }
.unit span { display: block; color: var(--ink-soft); }
.unit-list { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.unit-list--grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.unit-list .card__body { padding: 1.1rem 1.2rem; }
.unit-list .card__body p { margin: .25rem 0; font-size: .93rem; }

/* -------------------------------------------------- Evenimente */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid; grid-template-columns: 132px 1fr; gap: 1.2rem;
  padding: 1.2rem 0; border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .when { font-family: var(--font-title); color: var(--gold-600); font-size: 1.05rem; }
.timeline .what b { display: block; color: var(--green-900); font-size: 1.05rem; }
.timeline .what span { color: var(--ink-soft); font-size: .96rem; }
@media (max-width: 620px) { .timeline li { grid-template-columns: 1fr; gap: .3rem; } }

/* -------------------------------------------------- Hartă */
.map-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.4rem; align-items: start; }
@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } }
#map { height: 620px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); z-index: 1; }
@media (max-width: 600px) { #map { height: 440px; } }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.filters button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .42rem .9rem;
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer; color: var(--ink-soft);
}
.filters button[aria-pressed="true"] { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.poi-list { max-height: 560px; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.poi-list button {
  display: block; width: 100%; text-align: left; border: 0; border-bottom: 1px solid var(--line);
  background: none; font: inherit; padding: .8rem 1rem; cursor: pointer;
}
.poi-list button:hover { background: var(--green-100); }
.poi-list b { display: block; color: var(--green-900); font-size: .98rem; }
.poi-list span { font-size: .84rem; color: var(--ink-soft); }

/* -------------------------------------------------- Footer */
.site-footer { background: var(--green-900); color: #cfc8b9; padding: 3rem 0 1.6rem; margin-top: 0; }
.site-footer h4 { color: #fff; font-family: var(--font-title); font-weight: 400; font-size: 1.1rem; margin-bottom: .7rem; }
.site-footer a { color: #cfc8b9; }
.site-footer a:hover { color: var(--gold-200); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; font-size: .95rem; }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .85rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
}

/* -------------------------------------------------- Utilitare */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: .6rem; z-index: 1000; background: #fff; padding: .6rem 1rem; border-radius: 8px; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }
.notice { background: var(--gold-200); border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-size: .93rem; color: #4a3305; }
