@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap");

:root {
  --green-900: #1a2e1a;
  --green-800: #3a5c28;
  --green-700: #4a6b30;
  --green-600: #5a7a3a;
  --green-500: #6b8b4a;
  --green-400: #8baa6a;
  --green-100: #eaf2e0;
  --lime: #bed431;
  --lime-dark: #a8b83c;
  --olive: #4a5a2b;
  --olive-light: #6b7b3a;
  --earth-800: #5c4a2a;
  --earth-600: #8a6d42;
  --earth-400: #bfa06a;
  --earth-200: #d9c89e;
  --earth-100: #ede5d8;
  --sky-700: #3a7a94;
  --sky-500: #4e8ba0;
  --sky-300: #7bb4cc;
  --sky-100: #dff0f7;
  --cream: #f7f2eb;
  --cream-deep: #ede5d8;
  --white: #fefcf9;
  --charcoal: #1e1e1e;
  --text: #2e2e2e;
  --text-mid: #555;
  --text-light: #7a7a7a;
  --text-faint: #a0a0a0;
  /* Accent = verde închis din logo (lizibil pe alb, text + fill).
     Lime-ul (--lime) e pop-ul aprins pe butoane/CTA și pe fundaluri închise. */
  --accent: #3a5c28;
  --accent-hover: #2c481e;
  --accent-soft: rgba(58, 92, 40, 0.1);
  --stone: #d6c9ae;
  --line: rgba(0, 0, 0, 0.06);
  --line-s: rgba(0, 0, 0, 0.1);
  /* "DoAmp" pune înaintea Playfair doar caracterul & (U+0026), care în Playfair
     iese ornamentat/ilizibil. Restul textului rămâne Playfair (DoAmp acoperă doar &). */
  --fd: "DoAmp", "Playfair Display", Georgia, serif;
  --fb: "Source Sans 3", "Segoe UI", sans-serif;
  --fa: "Cormorant Garamond", Georgia, serif;
  --r: 10px;
  --rl: 16px;
  --rxl: 24px;
  --rp: 100px;
  --eo: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--fd);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
::selection {
  background: var(--accent-soft);
  color: var(--charcoal);
}

/* HEADER */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  transition:
    background 0.35s var(--eo),
    box-shadow 0.35s var(--eo),
    height 0.35s var(--eo);
}
.hdr--t {
  background: transparent;
}
.hdr--s {
  background: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  height: 82px;
}
.hdr--s .hdr__logo {
  color: var(--charcoal);
}
.hdr--s .nav__a {
  color: var(--charcoal);
}
.hdr--s .lang__b {
  color: var(--text-light);
}
.hdr--s .lang__b--on {
  background: var(--green-800);
  color: #fff;
}
.hdr--s .ham span {
  background: var(--charcoal);
}
.hdr--green {
  background: var(--green-800);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hdr__logo {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  transition: color 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
/* Homepage only: hide the logo while the header is at the top of the page.
   Once scrolled (.hdr--s) or on any inner page (no .hdr--home) it reappears. */
.hdr--home.hdr--t .hdr__logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hdr__logo-tx {
  font-family: var(--fd);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.35s ease;
}
.hdr__logo-tx em {
  font-style: normal;
  color: var(--lime);
  transition: color 0.35s ease;
}
.hdr--s .hdr__logo-tx {
  color: var(--green-900);
}
.hdr--s .hdr__logo-tx em {
  color: var(--green-700);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav__a {
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.18s ease;
}
/* Menu is long (multe elemente) → collapse to the burger earlier so labels
   never wrap onto two lines. NOTE: the .ham display:flex rule lives further down,
   after the base `.ham { display:none }` definition, otherwise source order would
   override it (see the collapse block after `.ham span`). */
@media (max-width: 1200px) {
  .nav__ul { display: none; }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .nav__ul { gap: 0.85rem; }
  .nav { gap: 1.1rem; }
  .nav__a { font-size: 0.72rem; letter-spacing: 0.01em; }
}
.nav__a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--eo);
}
.nav__a:hover::after,
.nav__a--on::after {
  width: 100%;
}

/* DROPDOWN SUBMENU */
.nav__item {
  position: relative;
}
.nav__item--has-sub > .nav__a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
/* Non-link parent label (URL «#») — looks like a nav link but only toggles. */
.nav__a--label {
  cursor: pointer;
  user-select: none;
}
/* Lock page scroll while the burger menu is open. */
body.nav-locked {
  overflow: hidden;
}
.nav__caret {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s var(--eo);
}
.nav__item--has-sub:hover > .nav__a .nav__caret,
.nav__item--has-sub:focus-within > .nav__a .nav__caret,
.nav__item--open > .nav__a .nav__caret {
  transform: rotate(180deg);
}
.nav__sub-tgl {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}
.nav__sub-tgl svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--eo);
}
.nav__item--open > .nav__sub-tgl svg {
  transform: rotate(180deg);
}
.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--eo),
    transform 0.3s var(--eo),
    visibility 0.3s;
  z-index: 1001;
}
/* invisible bridge so the cursor can travel from link to panel */
.nav__sub::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__item--has-sub:hover > .nav__sub,
.nav__item--has-sub:focus-within > .nav__sub,
.nav__item--has-sub.nav__item--open > .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav__sub li + li {
  margin-top: 2px;
}
.nav__sub-a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.nav__sub-a:hover {
  background: var(--cream);
  color: var(--green-800);
  padding-left: 1.1rem;
}
.nav__sub-a--on {
  background: var(--green-100);
  color: var(--green-800);
}
.lang {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--rp);
  padding: 3px;
}
.lang__b {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: none;
  border-radius: var(--rp);
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.04em;
}
.lang__b--on {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}
.ham span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.18s ease;
}
/* Collapse to burger up to 1200px. Placed AFTER the base `.ham { display:none }`
   so it wins on source order (equal specificity). */
@media (max-width: 1200px) {
  .ham { display: flex; }
}

/* CONTAINERS */
.ctn {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ctn--n {
  max-width: 780px;
}
.sec {
  padding: 5rem 0;
}
.sec--c {
  padding: 3rem 0;
}
.sec--cr {
  background: var(--cream);
}
.sec--g {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
}
.dvd {
  height: 1px;
  background: var(--line);
  max-width: 1340px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
.ey {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ey::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--lime);
}
.st {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.ss {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.prose {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  max-width: 680px;
}
.prose p {
  margin-bottom: 1.5rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero--full {
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  align-items: center;
  justify-content: center;
}
.hero--page {
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
}
.hero__m {
  position: absolute;
  inset: 0;
}
.hero__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hz 25s ease-in-out infinite alternate;
}
@keyframes hz {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero__ov {
  position: absolute;
  inset: 0;
}
.hero__ov--full {
  background:
    linear-gradient(to bottom, rgba(26, 51, 40, 0.3) 0%, transparent 35%),
    linear-gradient(to top, rgba(26, 51, 40, 0.6) 0%, transparent 55%);
}
.hero__ov--page {
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.85) 0%,
    rgba(26, 51, 40, 0.15) 50%,
    rgba(26, 51, 40, 0.25) 100%
  );
}
.hero__c {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero__c--center {
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}
.hero__c--bottom {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem 4.5rem;
}
.hero__ey {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.hero__t {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero__t--sm {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.hero__d {
  font-family: var(--fa);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__d--center {
  margin-left: auto;
  margin-right: auto;
}
.hero__bc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}
.hero__bc a {
  color: rgba(255, 255, 255, 0.65);
}
.hero__bc .sep {
  margin: 0 0.5rem;
  opacity: 0.35;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 16px;
  border-radius: var(--rp);
  margin-bottom: 1rem;
}
.hero__badge svg {
  width: 13px;
  height: 13px;
}
.hero__acts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.hero__scroll-t {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
.hero__scroll-l {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: sp 2.5s ease-in-out infinite;
}
@keyframes sp {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.5);
    transform-origin: top;
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1);
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 30px;
  border-radius: var(--rp);
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.18s var(--eo);
  text-transform: uppercase;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s var(--eo);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--p {
  background: var(--lime);
  color: var(--green-900);
}
.btn--p:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(190, 212, 49, 0.4);
}
.btn--ow {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}
.btn--ow:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.btn--od {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px var(--line-s);
}
.btn--od:hover {
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
  transform: translateY(-2px);
}
.btn--g {
  background: var(--green-800);
  color: #fff;
}
.btn--g:hover {
  background: var(--green-900);
  transform: translateY(-2px);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.stat {
  background: var(--cream);
  border-radius: var(--r);
  padding: 1.25rem 1rem;
  text-align: center;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.stat__n {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.125rem;
}
.stat__l {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* CARDS - category (visit-norway style) */
.cards {
  display: grid;
  gap: 1rem;
}
.cards--hero {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
}
.cards--hero .cd:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.cards--hero .cd:nth-child(2) {
  grid-column: span 5;
}
.cards--hero .cd:nth-child(3) {
  grid-column: span 5;
}
.cards--hero .cd:nth-child(4) {
  grid-column: span 4;
}
.cards--hero .cd:nth-child(5) {
  grid-column: span 4;
}
.cards--hero .cd:nth-child(6) {
  grid-column: span 4;
}
.cards--3 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
}
.cards--2 {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
}

.cd {
  position: relative;
  border-radius: var(--rxl);
  overflow: hidden;
  cursor: pointer;
  display: block;
  /* Forțează cardul pe propriul layer de compositing, ca `overflow:hidden` +
     `border-radius` să taie imaginea (promovată de will-change) de la început,
     nu abia la primul repaint (hover). */
  transform: translateZ(0);
}
.cd__m {
  position: absolute;
  inset: 0;
  /* Rotunjire moștenită + clip direct pe wrapper-ul imaginii (bulletproof). */
  border-radius: inherit;
  overflow: hidden;
}
.cd__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--eo);
  will-change: transform;
}
.cd:hover .cd__m img {
  transform: scale(1.07);
}
.cd__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.8) 0%,
    rgba(26, 51, 40, 0.15) 45%,
    rgba(26, 51, 40, 0.02) 100%
  );
  transition: background 0.6s ease;
}
.cd:hover .cd__ov {
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.88) 0%,
    rgba(26, 51, 40, 0.25) 50%,
    rgba(26, 51, 40, 0.08) 100%
  );
}
.cd__c {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
  color: #fff;
}
.cd__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: var(--rp);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cd__t {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cards--hero .cd:nth-child(1) .cd__t {
  font-size: 2.25rem;
}
.cd__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.35s ease 0.05s,
    max-height 0.35s var(--eo);
}
.cd:hover .cd__desc {
  opacity: 0.8;
  max-height: 100px;
  margin-top: 0.5rem;
}
.cd__arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--eo);
}
.cd:hover .cd__arr {
  opacity: 1;
  transform: translateY(0);
}
.cd__arr svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* LISTING CARDS */
.lgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lcard {
  background: var(--white);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo),
    border-color 0.35s ease;
}
.lcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.lcard__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.lcard__img img:not(.lcard__emblem) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.lcard:hover .lcard__img img:not(.lcard__emblem) {
  transform: scale(1.05);
}
.lcard__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-800);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--rp);
}
/* Marcaj traseu — simbolul turistic, colț dreapta-sus peste poză */
.lcard__marcaj {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  z-index: 2;
}
.lcard__marcaj svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lcard__body {
  padding: 1.25rem 1.5rem 1.25rem;
}
.lcard__name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.lcard__loc {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.lcard__loc svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}
.lcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.lcard__rat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--earth-600);
}
.lcard__rat svg {
  width: 14px;
  height: 14px;
  fill: var(--earth-400);
}
.lcard__lnk {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lcard__note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.5rem;
}

/* HIGHLIGHT BANNER */
.hl {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hl__m {
  position: absolute;
  inset: 0;
}
.hl__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hl__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 51, 40, 0.92) 0%,
    rgba(26, 51, 40, 0.6) 40%,
    rgba(26, 51, 40, 0.15) 70%,
    transparent 100%
  );
}
.hl__c {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
  padding: 4rem 0;
}
.hl__ey {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth-200);
  margin-bottom: 1rem;
}
.hl__t {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  font-family: var(--fd);
  font-weight: 700;
}
.hl__d {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* QUOTE */
.qt {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.qt__mk {
  font-family: var(--fd);
  font-size: 4rem;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.qt__tx {
  font-family: var(--fa);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.qt__au {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* INFO BOX */
.ib {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--cream);
  border-radius: var(--rxl);
  padding: 2rem;
  border: 1px solid var(--cream-deep);
}
.ib__i {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ib__ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ib__ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
}
.ib__lb {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0.125rem;
}
.ib__vl {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* GALLERY */
.gal {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}
.gal__i {
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal__i:first-child {
  grid-row: span 2;
}
.gal__i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.gal__i:hover img {
  transform: scale(1.06);
}

/* TOPIC CARDS */
.tpcs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tpc {
  background: var(--white);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo),
    border-color 0.35s ease;
  display: block;
}
.tpc:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}
.tpc__img {
  height: 160px;
  overflow: hidden;
}
.tpc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.tpc:hover .tpc__img img {
  transform: scale(1.06);
}
.tpc__b {
  padding: 1.25rem 1.5rem 1.5rem;
}
.tpc__n {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.tpc__d {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.tpc__l {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* QUICK ACCESS */
.qa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.qac {
  background: var(--white);
  border-radius: var(--rl);
  border: 1px solid var(--line);
  padding: 1.75rem;
  text-align: center;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo),
    border-color 0.35s ease;
  display: block;
}
.qac:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--green-500);
}
.qac svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 0.75rem;
  display: block;
}
.qac__t {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.qac__d {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* TRAIL CARDS */
.trl {
  background: var(--white);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.trl:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}
.trl__img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.trl__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.trl:hover .trl__img img {
  transform: scale(1.05);
}
.trl__bdg {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rp);
}
.trl__b {
  padding: 1.25rem;
}
.trl__n {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trl__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.trl__mi {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-light);
}
.trl__mi svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.trl__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.trl__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.trl__diff {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--rp);
}
.trl__lnk {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

/* FILTER BAR */
.fb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ft {
  padding: 9px 22px;
  border-radius: var(--rp);
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--line-s);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: var(--fb);
}
.ft:hover {
  border-color: var(--green-700);
  color: var(--green-800);
}
.ft--on {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}
/* Chip activ la hover: textul rămâne lizibil pe fundalul verde-închis (verde deschis). */
.ft--on:hover {
  background: var(--green-800);
  color: var(--lime);
  border-color: var(--green-800);
}

/* PARTNERS */
.ptrs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3rem 0;
  opacity: 0.4;
  transition: opacity 0.35s ease;
}
.ptrs:hover {
  opacity: 0.6;
}

/* FOOTER */
.ftr {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
}
.ftr__g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.6fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
/* Social icon row (brand column) */
.ftr__soc {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.ftr__soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.ftr__soc a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.ftr__soc svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.85);
}
.ftr__br {
  font-family: var(--fd);
  font-size: 1.35rem;
  color: var(--stone);
  font-weight: 700;
}
/* Brand row: badge logo + DiscoverOltenia wordmark (mirrors header) */
.ftr__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.ftr__brand .ftr__logo-img {
  margin-bottom: 0;
}
.ftr__logo-tx {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.ftr__logo-tx em {
  font-style: normal;
  color: var(--lime);
}
.ftr__bd {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.6;
  margin-top: 1rem;
  max-width: 300px;
}
.ftr__h {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.ftr__ls li {
  margin-bottom: 0.6rem;
}
.ftr__ls a {
  font-size: 0.85rem;
  opacity: 0.6;
  transition:
    opacity 0.18s ease,
    padding-left 0.18s ease;
}
.ftr__ls a:hover {
  opacity: 1;
  color: var(--stone);
  padding-left: 4px;
}
.ftr__nd {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.ftr__fm {
  display: flex;
  gap: 0.4rem;
}
.ftr__inp {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--rp);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.85rem;
  outline: none;
}
.ftr__inp::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.ftr__inp:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.ftr__sub {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 11px 22px;
  border: none;
  border-radius: var(--rp);
  background: var(--accent);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}
.ftr__sub:hover {
  background: var(--accent-hover);
}
.ftr__bt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  opacity: 0.4;
}

/* ANIMATIONS */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--eo),
    transform 0.8s var(--eo);
}
.rv--v {
  opacity: 1;
  transform: translateY(0);
}
.sg > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--eo),
    transform 0.6s var(--eo);
}
.sg--v > *:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(2) {
  transition-delay: 70ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(3) {
  transition-delay: 140ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(4) {
  transition-delay: 210ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(5) {
  transition-delay: 280ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(6) {
  transition-delay: 350ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(7) {
  transition-delay: 420ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(8) {
  transition-delay: 490ms;
  opacity: 1;
  transform: translateY(0);
}
.sg--v > *:nth-child(9) {
  transition-delay: 560ms;
  opacity: 1;
  transform: translateY(0);
}
/* Catch-all: orice element peste al 9-lea (grile cu mulți membri/carduri)
   devine vizibil — altfel ar rămâne opacity:0 și ar lăsa spațiu gol. */
.sg--v > * {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .cards--hero {
    grid-template-columns: repeat(6, 1fr);
  }
  .cards--hero .cd:nth-child(1) {
    grid-column: span 6;
    grid-row: span 1;
  }
  .cards--hero .cd:nth-child(2) {
    grid-column: span 3;
  }
  .cards--hero .cd:nth-child(3) {
    grid-column: span 3;
  }
  .cards--hero .cd:nth-child(4) {
    grid-column: span 2;
  }
  .cards--hero .cd:nth-child(5) {
    grid-column: span 2;
  }
  .cards--hero .cd:nth-child(6) {
    grid-column: span 2;
  }
  .ftr__g {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftr__g > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1024px) {
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }
  .lgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tpcs {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ib {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav__ul {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero--full {
    min-height: 500px;
  }
  .hero__c--bottom {
    padding-bottom: 3rem;
  }
  .sec {
    padding: 3rem 0;
  }
  .ctn {
    padding: 0 1.5rem;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .stat__n {
    font-size: 1.2rem;
  }
  .cards--hero,
  .cards--3,
  .cards--2 {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .cards--hero .cd:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .lgrid {
    grid-template-columns: 1fr;
  }
  .tpcs {
    grid-template-columns: 1fr;
  }
  .gal {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gal__i:first-child {
    grid-row: span 1;
  }
  .qa {
    grid-template-columns: 1fr;
  }
  .hl__ov {
    background: rgba(26, 51, 40, 0.8) !important;
  }
  .hl__c {
    max-width: 100%;
  }
  .ftr__g {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ftr__bt {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .hero__acts {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cd__c {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero__t {
    font-size: 2rem;
  }
  .hero__t--sm {
    font-size: 1.75rem;
  }
}

/* LOGO IMAGE */
.hdr__logo-img {
  height: 80px;
  width: auto;
  transition: height 0.35s ease, opacity 0.35s ease;
}
.hdr--s .hdr__logo-img {
  height: 62px;
}
/* Swap logo la scroll: cel „top" dispare, cel „scrolled" (închis) apare.
   Când nu există logo scrolled, al doilea <img> nu e randat, deci cel „top" rămâne mereu. */
.hdr__logo-img--scrolled {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.hdr__logo { position: relative; }
.hdr--s .hdr__logo-img--top { opacity: 0; }
.hdr--s .hdr__logo-img--scrolled { opacity: 1; }
.ftr__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}

/* CATEGORY ICONS STRIP */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.cat-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--rxl);
  transition:
    transform 0.35s var(--eo),
    background 0.35s ease;
  cursor: pointer;
  text-decoration: none;
}
.cat-strip__item:hover {
  transform: translateY(-6px);
  background: var(--cream);
}
.cat-strip__icon {
  width: 180px;
  height: 180px;
  object-fit: contain;
}
.cat-strip__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* BADGE EMBLEMS on listing cards */
.lcard__emblem {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 56px;
  height: 56px;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

/* Page hero with category icon */
.hero__cat-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .cat-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .cat-strip__icon {
    width: 135px;
    height: 135px;
  }
  .hero__cat-icon {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .cat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== BRAND INTEGRATION EXTRAS ===== */

/* Section header with category icon inline */
.sec-branded {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.sec-branded__icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sec-branded__icon {
    width: 64px;
    height: 64px;
  }
  .sec-branded {
    gap: 1rem;
  }
}

/* Trail card brand badge (top-right corner) */
.trl__brand {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  z-index: 2;
}

/* Navigation category indicators - small icons next to nav links */
.nav__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
  opacity: 0.7;
  transition: opacity 0.18s ease;
}
.nav__a:hover .nav__icon,
.nav__a--on .nav__icon {
  opacity: 1;
}

/* Hero floating brand badge */
.hero__brand-float {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.7;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
  transition: opacity 0.35s ease;
}
.hero__brand-float:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .hero__brand-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Brand watermark in sections */
.sec-watermark {
  position: relative;
  overflow: hidden;
}
.sec-watermark::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background-image: var(--wm-img);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

/* Footer brand area - larger logo */
.ftr__brand-area {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ftr__logo-lg {
  height: 80px;
  width: auto;
  margin-bottom: 0.5rem;
}

/* CTA band with brand icon */
.cta-branded {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--cream);
  border-radius: var(--rxl);
  padding: 2rem 2.5rem;
}
.cta-branded__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.cta-branded__content {
  flex: 1;
}
.cta-branded__title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cta-branded__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cta-branded {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .cta-branded__icon {
    width: 56px;
    height: 56px;
  }
}

/* Category badge on card overlays */
.cd__cat-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  opacity: 0.85;
  transition: opacity 0.35s ease;
}
.cd:hover .cd__cat-icon {
  opacity: 1;
}

/* Partners strip with real logos */
.ptrs-branded {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3rem 0;
}
.ptrs-branded img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.35s ease;
}
.ptrs-branded img:hover {
  opacity: 0.85;
}

/* Mobile nav drawer (extends mockup mobile styles) — matches the burger breakpoint (1200px). */
@media (max-width: 1200px) {
  .nav.nav--open .nav__ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .nav.nav--open .nav__a {
    color: var(--charcoal) !important;
    font-size: 1rem;
  }
  .nav.nav--open .lang {
    margin-top: 1rem;
    align-self: flex-start;
  }
  /* Submenu becomes an accordion toggled by the caret button */
  .nav.nav--open .nav__item--has-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .nav.nav--open .nav__item--has-sub > .nav__a .nav__caret {
    display: none;
  }
  /* Non-link parent labels have no caret button — keep their own caret visible
     (they toggle the submenu on tap). */
  .nav.nav--open .nav__a--label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav.nav--open .nav__a--label .nav__caret {
    display: inline-flex !important;
  }
  .nav.nav--open .nav__sub-tgl {
    display: inline-flex;
  }
  .nav.nav--open .nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    border-left: 2px solid var(--green-100);
    margin: 0.5rem 0 0.25rem;
  }
  .nav.nav--open .nav__sub::before {
    display: none;
  }
  .nav.nav--open .nav__item--open > .nav__sub {
    display: block;
  }
  .nav.nav--open .nav__sub-a {
    white-space: normal;
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
  }
}

/* Admin bar adjustment */
body.admin-bar .hdr {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .hdr {
    top: 46px;
  }
}

/* WordPress alignment classes */
.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* SR-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === SINGLE PAGE STYLES (from casa-cucu + traseu-horezu mockups) === */
.detail-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  max-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-hero__m {
  position: absolute;
  inset: 0;
}
.detail-hero__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 51, 40, 0.85) 0%,
    rgba(26, 51, 40, 0.1) 55%,
    rgba(26, 51, 40, 0.2) 100%
  );
}
.detail-hero__c {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  color: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.detail-sidebar {
  position: sticky;
  top: 100px;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
}
.amenity svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--rxl);
  padding: 2rem;
  border: 1px solid var(--cream-deep);
}
.contact-card__title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-row a {
  color: var(--accent);
  font-weight: 600;
}

.price-box {
  background: var(--green-800);
  color: #fff;
  border-radius: var(--rxl);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.price-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.price-box__price {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.price-box__note {
  font-size: 0.8rem;
  opacity: 0.6;
}

.gallery-sm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}
.gallery-sm__i {
  border-radius: var(--r);
  overflow: hidden;
  height: 100px;
  cursor: pointer;
}
.gallery-sm__i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--eo);
}
.gallery-sm__i:hover img {
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .amenities {
    grid-template-columns: 1fr;
  }
  .gallery-sm {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === TRAIL/ACTIVITY DETAIL STYLES === */
.trail-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.trail-sidebar {
  position: sticky;
  top: 100px;
}
.waypoints {
  counter-reset: wp;
}
.wp {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.wp:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wp__num {
  counter-increment: wp;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wp__num::before {
  content: counter(wp);
}
.wp__title {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.wp__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.wp__km {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}
.elev-chart {
  background: var(--cream);
  border-radius: var(--rxl);
  padding: 2rem;
  text-align: center;
}
.trail-info-box {
  background: var(--green-800);
  color: #fff;
  border-radius: var(--rxl);
  padding: 2rem;
}
.trail-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.trail-info-row:last-child {
  border-bottom: none;
}
.trail-info-label {
  font-size: 0.78rem;
  opacity: 0.6;
}
.trail-info-val {
  font-size: 0.9rem;
  font-weight: 600;
}
/* Marcaj traseu în boxul «Informații traseu» */
.trail-info-val--marcaj {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trail-marcaj {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.trail-marcaj svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .trail-detail {
    grid-template-columns: 1fr;
  }
  .trail-sidebar {
    position: static;
  }
}

/* ========== GUTENBERG BLOCK EDITOR PREVIEW ========== */
.acf-block-preview .hero,
.acf-block-preview .hl,
.acf-block-preview .sec--cr {
  min-height: 280px;
}
.acf-block-preview .hero--full {
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
}
.acf-block-preview .hero__t {
  font-size: 2rem;
}
.acf-block-preview .hero__t--sm {
  font-size: 1.5rem;
}
/* Force editor preview to respect page width */
.acf-block-preview .ctn {
  max-width: 100%;
}

/* CTA button standalone (when used as block) */
.btn--g {
  background: var(--green-800);
  color: #fff;
}
.btn--g:hover {
  background: var(--green-900);
  color: #fff;
}
.btn--od {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--od:hover {
  background: var(--charcoal);
  color: #fff;
}

/* Make sure the page template main content wraps blocks properly */
.is-page-builder {
  padding-top: 0;
}
.is-page-builder .site-content > .hero,
.is-page-builder .site-content > .hl {
  margin-top: 0;
}

/* ========== EVENTS LIST ========== */
.evt-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.evt-featured__img {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.evt-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.evt-featured:hover .evt-featured__img img {
  transform: scale(1.04);
}
.evt-featured__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.evt-featured__date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.evt-featured__date svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}
.evt-featured__title {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.evt-featured__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.evt-featured__loc {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.evt-featured__loc svg {
  width: 14px;
  height: 14px;
  fill: var(--text-light);
  flex-shrink: 0;
}
.evt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.evt {
  background: var(--white);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.evt:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}
.evt__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.evt__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.evt:hover .evt__img img {
  transform: scale(1.05);
}
.evt__month {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  border-radius: var(--rl);
  padding: 0.5rem 0.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.evt__month-m {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.evt__month-d {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.evt__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.evt__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 3px 10px;
  border-radius: var(--rp);
  margin-bottom: 0.5rem;
}
.evt__title {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.evt__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.evt__lnk {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== TIMELINE ========== */
.timeline__head {
  max-width: 680px;
  margin-bottom: 2rem;
}
.timeline {
  max-width: 680px;
}
.tl-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tl-date {
  min-width: 100px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--rl);
  padding: 0.75rem;
  flex-shrink: 0;
}
.tl-date__month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.tl-date__day {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  font-family: var(--fd);
}
.tl-date__year {
  font-size: 0.72rem;
  color: var(--text-light);
}
/* Period variant: free-text era label (e.g. «Neolitic», «Secolele XV–XVIII») */
.tl-date--era {
  min-width: 100px;
  max-width: 150px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-date__era {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.3;
}
.tl-content__title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.tl-content__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== TEAM GRID ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.member {
  background: var(--white);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  text-align: center;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
}
.member__photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 1s var(--eo);
}
.member:hover .member__photo img {
  transform: scale(1.04);
}
.member__body {
  padding: 1.5rem;
}
.member__name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.member__role {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.member__bio {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Avatar gradients (initials fallback + compact photos) */
.member__av--1 { background: linear-gradient(150deg, #2b4a20, #3a5c28); }
.member__av--2 { background: linear-gradient(150deg, #5a7a3a, #8bae56); }
.member__av--3 { background: linear-gradient(150deg, #5a4a32, #8a6d42); }
.member__av--4 { background: linear-gradient(150deg, #2f5a6a, #4e8ba0); }
.member__av--5 { background: linear-gradient(150deg, #8a3f22, #b8623a); }
.member__av--6 { background: linear-gradient(150deg, #4a3350, #7a5a8a); }

/* «cards» layout, member without a photo → gradient block with big initials */
.member__photo--ini { display: grid; place-items: center; }
.member__photo--ini .member__ini { font-family: var(--fd); font-weight: 700; font-size: 3.5rem; color: #fff; }

/* «compact» layout — avatar (foto sau inițiale) + nume/rol, bio dedesubt */
.team-grid--compact { grid-template-columns: repeat(3, 1fr); }
.team-grid--compact .member { text-align: left; }
.member--compact { padding: 1.5rem; overflow: visible; }
.member__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; }
.member__av {
  width: 56px; height: 56px; border-radius: 50%; flex: 0 0 auto; overflow: hidden;
  display: grid; place-items: center;
  color: #fff; font-family: var(--fd); font-weight: 700; font-size: 1.15rem;
}
.member__av img { width: 100%; height: 100%; object-fit: cover; }
.member__meta { min-width: 0; }
.member--compact .member__name { font-size: 1.15rem; margin: 0; }
.member--compact .member__role { margin: 0.15rem 0 0; }
.member--compact .member__bio { margin: 0; }
@media (max-width: 900px) { .team-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid--compact { grid-template-columns: 1fr; } }

/* ========== PARTNERS GRID ========== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.partner {
  background: var(--white);
  border-radius: var(--rl);
  border: 1px solid var(--line);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.partner__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.partner__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.partner__desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========== RESPONSIVE: EVENTS, TIMELINE, TEAM, PARTNERS ========== */
@media (max-width: 1024px) {
  .evt-featured {
    grid-template-columns: 1fr;
  }
  .evt-featured__img {
    min-height: 260px;
  }
  .evt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .evt-grid {
    grid-template-columns: 1fr;
  }
  .tl-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  .tl-date {
    min-width: auto;
    text-align: left;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .member__photo {
    height: 220px;
  }
}

/* ===== FEATURED CARD (do/featured-card) ===== */
.evt-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 1rem 0;
}
.evt-featured--rev {
  grid-template-columns: 1fr 1.2fr;
}
.evt-featured--rev .evt-featured__img {
  order: 2;
}
.evt-featured__img {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.evt-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.evt-featured:hover .evt-featured__img img {
  transform: scale(1.04);
}
.evt-featured__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.evt-featured__date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.evt-featured__date svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}
.evt-featured__title {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.evt-featured__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.evt-featured__loc {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.evt-featured__loc svg {
  width: 14px;
  height: 14px;
  fill: var(--text-light);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .evt-featured,
  .evt-featured--rev {
    grid-template-columns: 1fr;
  }
  .evt-featured--rev .evt-featured__img {
    order: 0;
  }
  .evt-featured__img {
    min-height: 260px;
  }
}

/* ===== WAYPOINTS (do/waypoints) ===== */
.waypoints {
  max-width: 780px;
  counter-reset: wp;
  margin: 1rem 0;
}
.wp {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.wp:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wp__num {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wp__title {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.wp__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.wp__km {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ===== PRICE BOX (do/price-box) ===== */
.price-box {
  background: var(--green-800);
  color: #fff;
  border-radius: var(--rxl);
  padding: 2rem;
  text-align: center;
  margin: 1rem 0;
  max-width: 360px;
}
.price-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}
.price-box__price {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.price-box__note {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== CONTACT CARD (do/contact-card) ===== */
.contact-card {
  background: var(--cream);
  border-radius: var(--rxl);
  padding: 2rem;
  border: 1px solid var(--cream-deep);
  margin: 1rem 0;
  max-width: 420px;
}
.contact-card__title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-row a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== AMENITIES (do/amenities) ===== */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
}
.amenity svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .amenities {
    grid-template-columns: 1fr;
  }
}

/* ===== ACCORDION (do/accordion) ===== */
.do-accordion {
  margin: 1.5rem 0;
}
.do-accordion__item {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.do-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.do-accordion__head::-webkit-details-marker {
  display: none;
}
.do-accordion__item[open] .do-accordion__head {
  border-bottom-color: var(--cream-deep);
  background: var(--cream);
}
.do-accordion__title {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  flex: 1;
}
.do-accordion__chev {
  stroke: var(--text-light);
  transition: transform 0.35s var(--eo);
}
.do-accordion__item[open] .do-accordion__chev {
  transform: rotate(180deg);
  stroke: var(--green-700);
}
.do-accordion__body {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.do-accordion__body p {
  margin-bottom: 0.75rem;
}
.do-accordion__body p:last-child {
  margin-bottom: 0;
}
.do-accordion__body a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== HIGHLIGHTED BOX (do/highlighted-box) ===== */
.do-hl-box {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  margin: 1.5rem auto;
  max-width: 760px;
}
.do-hl-box--left {
  text-align: left;
  margin-left: 0;
}
.do-hl-box--center {
  text-align: center;
}
.do-hl-box--cream {
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid var(--cream-deep);
}
.do-hl-box--green {
  background: var(--green-900);
  color: #fff;
}
.do-hl-box--accent {
  background: var(--accent);
  color: #fff;
}
.do-hl-box--outline {
  background: #fff;
  color: var(--charcoal);
  border: 2px solid var(--green-800);
}
.do-hl-box__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.do-hl-box--green .do-hl-box__eyebrow,
.do-hl-box--accent .do-hl-box__eyebrow {
  color: var(--lime);
}
.do-hl-box__title {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.do-hl-box__body {
  font-size: 1rem;
  line-height: 1.75;
}
.do-hl-box__body p {
  margin-bottom: 0.75rem;
}
.do-hl-box__body p:last-child {
  margin-bottom: 0;
}

/* ===== DOWNLOAD LIST (do/download-list) ===== */
.do-downloads {
  margin: 1.5rem 0;
}
.do-download {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo),
    border-color 0.25s ease;
}
.do-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--green-500);
}
.do-download__icon {
  width: 32px;
  height: 32px;
  stroke: var(--green-700);
  flex-shrink: 0;
}
.do-download__body {
  flex: 1;
}
.do-download__title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.do-download__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.do-download__meta {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.do-download__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--green-800);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.do-download:hover .do-download__btn {
  background: var(--green-900);
}
@media (max-width: 640px) {
  .do-download {
    flex-direction: column;
    align-items: flex-start;
  }
  .do-download__btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== CATEGORY LIST (do/category-list) ===== */
.do-catlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.do-catlist--2col {
  grid-template-columns: repeat(2, 1fr);
}
.do-catlist__cat {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.do-catlist__title {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-500);
}
.do-catlist__items {
  list-style: disc inside;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.do-catlist__items li {
  padding-left: 0.25rem;
}
@media (max-width: 768px) {
  .do-catlist--2col {
    grid-template-columns: 1fr;
  }
}

/* ===== PRESS LIST (archive-do_press_mention) ===== */
.do-press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.do-press-item {
  margin: 0;
}
.do-press-item__link {
  position: relative;
  display: block;
  padding: 1.5rem 3rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo),
    border-color 0.25s ease;
}
.do-press-item__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--green-500);
}
.do-press-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.do-press-item__date {
  color: var(--accent);
  font-weight: 600;
}
.do-press-item__pub {
  font-weight: 600;
  color: var(--green-800);
}
.do-press-item__title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}
.do-press-item__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0 0 0.35rem;
  line-height: 1.55;
}
.do-press-item__author {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}
.do-press-item__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--green-700);
  transition: transform 0.25s var(--eo);
}
.do-press-item__link:hover .do-press-item__icon {
  transform: translate(3px, -3px);
  color: var(--accent);
}
@media (max-width: 640px) {
  .do-press-item__link {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
  .do-press-item__icon {
    position: static;
    display: inline-block;
    margin-top: 0.5rem;
  }
}

/* ===== PROJECT SINGLE LAYOUT (single-do_project) ===== */
.do-proj-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: flex-start;
}
.do-proj-main {
  min-width: 0;
}
.do-proj-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.do-proj-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.5rem 1.5rem;
}
.do-proj-card__title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.do-proj-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 0;
}
.do-proj-meta dt {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.do-proj-meta dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}
.do-proj-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--green-800);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease;
}
.do-proj-card__cta:hover {
  background: var(--green-900);
}
.do-proj-partners {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.do-proj-partners li {
  padding: 0.6rem 0.85rem;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}
@media (max-width: 900px) {
  .do-proj-layout {
    grid-template-columns: 1fr;
  }
  .do-proj-sidebar {
    position: static;
    order: 2;
  }
  .do-proj-main {
    order: 1;
  }
}

/* ===== NEWS SINGLE ARTICLE (single-do_news) ===== */
.do-news-article {
  max-width: 780px;
  margin: 0 auto;
}
.do-news-article .prose {
  font-size: 1.05rem;
  line-height: 1.75;
}
.do-news-article .prose p {
  margin-bottom: 1.25rem;
}

/* ===== CLIMBING ROUTE TABLE (do/climbing-route-table) ===== */
.do-climb-table {
  margin: 2rem 0;
}
.do-climb-table__head {
  margin-bottom: 1rem;
}
.do-climb-table__title {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: var(--green-900);
  margin: 0 0 0.25rem;
}
.do-climb-table__meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.do-climb-table__wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
}
.do-climb-table__t {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.do-climb-table__t thead {
  background: var(--cream);
}
.do-climb-table__t th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--green-800);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--green-500);
  white-space: nowrap;
}
.do-climb-table__t tbody tr {
  border-top: 1px solid #f1ebde;
  transition: background 0.15s ease;
}
.do-climb-table__t tbody tr:hover {
  background: #fdf9f0;
}
.do-climb-table__t td {
  padding: 0.85rem 1rem;
  color: var(--text-dark);
  vertical-align: middle;
}
.do-climb-table__c-code {
  font-weight: 700;
  color: var(--accent);
  width: 50px;
  font-family: var(--fd);
}
.do-climb-table__c-name {
  font-weight: 600;
  color: var(--green-900);
  min-width: 160px;
}
.do-climb-grade {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--fd);
  letter-spacing: 0.02em;
}
.do-climb-grade--frae {
  background: #eaf2e0;
  color: var(--green-800);
}
.do-climb-grade--uiaa {
  background: #fbe9d9;
  color: var(--accent);
}
@media (max-width: 640px) {
  .do-climb-table__t th,
  .do-climb-table__t td {
    padding: 0.65rem 0.65rem;
    font-size: 0.82rem;
  }
}

/* ===== ROUTE STATS (do/route-stats) ===== */
.do-route-stats {
  margin: 1.5rem 0;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.do-route-stats__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  align-items: center;
}
.do-route-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 90px;
}
.do-route-stats__item--wide {
  flex: 1;
  min-width: 160px;
}
.do-route-stats__lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.do-route-stats__val {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.1;
}
.do-route-stats__val--text {
  font-family: var(--fa);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.do-route-stats__markers {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.do-route-stats__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.do-route-stats__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.do-route-stats__chip-lbl {
  font-family: var(--fd);
  letter-spacing: 0.04em;
}
.do-route-stats__shape {
  display: inline-block;
  flex-shrink: 0;
}
.do-route-stats__shape--stripe {
  width: 18px;
  height: 6px;
  border-radius: 2px;
}
.do-route-stats__shape--dot,
.do-route-stats__shape--circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.do-route-stats__shape--triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid currentColor;
  background: transparent !important;
}
.do-route-stats__shape--cross {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: transparent !important;
}
.do-route-stats__shape--cross::before {
  content: "✚";
}
.do-route-stats__chip--red .do-route-stats__shape,
.do-route-stats__chip--red .do-route-stats__shape--triangle,
.do-route-stats__chip--red .do-route-stats__shape--cross {
  background: #d74a3a;
  color: #d74a3a;
}
.do-route-stats__chip--blue .do-route-stats__shape,
.do-route-stats__chip--blue .do-route-stats__shape--triangle,
.do-route-stats__chip--blue .do-route-stats__shape--cross {
  background: #3b6eb5;
  color: #3b6eb5;
}
.do-route-stats__chip--yellow .do-route-stats__shape,
.do-route-stats__chip--yellow .do-route-stats__shape--triangle,
.do-route-stats__chip--yellow .do-route-stats__shape--cross {
  background: #e5c100;
  color: #a88e00;
}
.do-route-stats__chip--green .do-route-stats__shape,
.do-route-stats__chip--green .do-route-stats__shape--triangle,
.do-route-stats__chip--green .do-route-stats__shape--cross {
  background: var(--green-800);
  color: var(--green-800);
}
.do-route-stats__chip--white .do-route-stats__shape,
.do-route-stats__chip--white .do-route-stats__shape--triangle,
.do-route-stats__chip--white .do-route-stats__shape--cross {
  background: #fefcf9;
  color: #999;
  border: 1px solid #ddd;
}
.do-route-stats__chip--black .do-route-stats__shape,
.do-route-stats__chip--black .do-route-stats__shape--triangle,
.do-route-stats__chip--black .do-route-stats__shape--cross {
  background: #1e1e1e;
  color: #1e1e1e;
}
@media (max-width: 640px) {
  .do-route-stats {
    padding: 1.25rem;
  }
  .do-route-stats__row {
    gap: 1rem 1.5rem;
  }
  .do-route-stats__val {
    font-size: 1.2rem;
  }
}

/* Paginile Buila (do_park): blocurile de text nu mai sunt înguste.
   Lățim coloana de prose / containerul îngust la lățimea obișnuită a conținutului. */
.do-park-content .prose { max-width: 960px; }
.do-park-content .ctn--n { max-width: 1000px; }
.do-park-content .prose--full { max-width: none; }

/* ===== SPECIES CARD GRID (do/species-card-grid) ===== */
.do-species-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}
.do-species-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.do-species-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.do-species-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.do-species-card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo);
}
.do-species-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.do-species-card__img {
  /* Înălțime standard, puțin mai mare decât înainte (1/1 în loc de 4/3). */
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  padding: 0.6rem;
}
.do-species-sec .do-species-grid {
  margin: 0;
}
.do-species-card__img img {
  width: 100%;
  height: 100%;
  /* Poza se încadrează complet în înălțime, integral vizibilă (fără crop). */
  object-fit: contain;
  display: block;
}
.do-species-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.do-species-card__name {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0;
  line-height: 1.2;
}
.do-species-card__latin {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.do-species-card__traits {
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.do-species-card__traits li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.do-species-card__traits li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}
.do-species-card__notes {
  margin: 0.4rem 0 0;
  padding: 0.6rem 0.75rem;
  background: var(--cream);
  border-left: 3px solid var(--accent);
  font-size: 0.78rem;
  color: var(--text-mid);
  font-style: italic;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 900px) {
  .do-species-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .do-species-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .do-species-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== TOPIC TILE GRID (do/topic-tile-grid) ===== */
.do-tile-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
.do-tile-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.do-tile-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.do-tile-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.do-tile-grid--6col {
  grid-template-columns: repeat(6, 1fr);
}
.do-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--green-800);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.3s var(--eo),
    box-shadow 0.3s var(--eo);
}
.do-tile-grid--square .do-tile {
  aspect-ratio: 1/1;
}
.do-tile-grid--wide .do-tile {
  aspect-ratio: 5/3;
}
.do-tile-grid--tall .do-tile {
  aspect-ratio: 4/5;
}
.do-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.do-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
  transition: background 0.3s ease;
}
.do-tile:hover .do-tile__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.do-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
@media (max-width: 900px) {
  .do-tile-grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
  .do-tile-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .do-tile-grid--6col,
  .do-tile-grid--4col,
  .do-tile-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .do-tile__label {
    font-size: 0.92rem;
    padding: 0.75rem 0.85rem;
  }
}

/* ===== MONUMENT CATALOG (do/monument-catalog) ===== */
.do-mc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.do-mc__group {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.do-mc__head {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green-500);
}
.do-mc__title {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0;
}
.do-mc__intro {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.25rem 0 0;
  font-style: italic;
}
.do-mc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem 1.5rem;
}
.do-mc__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #e8e0cc;
}
.do-mc__name {
  flex: 1;
  font-weight: 500;
  color: var(--green-900);
  text-decoration: none;
}
.do-mc__name:hover {
  color: var(--accent);
}
.do-mc__century {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  white-space: nowrap;
}
.do-mc__badge {
  display: inline-block;
  padding: 2px 9px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  background: var(--green-800);
}
.do-mc__badge--unesco {
  background: var(--accent);
}
.do-mc__badge--protejat {
  background: #3b6eb5;
}
@media (max-width: 640px) {
  .do-mc__list {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNER CATEGORY BLOCK (do/partner-category-block) ===== */
.do-pcb {
  margin: 2rem 0;
}
.do-pcb__head {
  margin-bottom: 1.25rem;
}
.do-pcb__title {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--green-900);
  margin: 0;
}
.do-pcb__intro {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 0.4rem 0 0;
  line-height: 1.55;
}
.do-pcb__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.do-pcb__card {
  display: block;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo),
    border-color 0.25s ease;
}
.do-pcb__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--green-500);
}
.do-pcb__logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin-bottom: 0.75rem;
}
.do-pcb__logo img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.do-pcb__name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 0.35rem;
}
.do-pcb__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.55;
}
.do-pcb__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: center;
}
.do-pcb__logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 10px;
  padding: 1rem;
  text-decoration: none;
  color: var(--text-mid);
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo);
}
.do-pcb__logo-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.do-pcb__logo-cell img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.do-pcb__logo-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.do-pcb__list {
  list-style: disc inside;
  columns: 2;
  column-gap: 2rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
  padding: 0;
}
.do-pcb__list a {
  color: var(--green-800);
  text-decoration: none;
}
.do-pcb__list a:hover {
  color: var(--accent);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .do-pcb__list {
    columns: 1;
  }
}

/* ===== ACCESS METHODS (do/access-methods) ===== */
.do-am {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.do-am__card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition:
    transform 0.25s var(--eo),
    box-shadow 0.25s var(--eo);
}
.do-am__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.do-am__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.do-am__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  color: var(--green-800);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.do-am__icon svg {
  width: 26px;
  height: 26px;
}
.do-am__title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0;
  line-height: 1.2;
}
.do-am__directions {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin: 0 0 0.85rem;
  line-height: 1.6;
}
.do-am__distances {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  border-top: 1px solid var(--cream-deep);
  padding-top: 0.65rem;
}
.do-am__distances li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.25rem 0;
  border-bottom: 1px dashed #e8e0cc;
}
.do-am__distances li:last-child {
  border-bottom: none;
}

/* ===== LEGEND STORY LIST (do/legend-story-list) ===== */
.do-lsl {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.do-lsl__story {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--cream-deep);
}
.do-lsl__story:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
/* Imaginea trăiește mereu în coloana îngustă (fixă); narațiunea în cea largă (1fr).
   Ordinea (stânga/dreapta) e controlată de `order`, nu de mărimea coloanei. */
.do-lsl__story--left {
  grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
}
.do-lsl__story--left .do-lsl__media { order: 1; }
.do-lsl__story--left .do-lsl__body  { order: 2; }
.do-lsl__story--right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 40%);
}
.do-lsl__story--right .do-lsl__media { order: 2; }
.do-lsl__story--right .do-lsl__body  { order: 1; }
.do-lsl__story--none {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.do-lsl__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.do-lsl__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.do-lsl__caption {
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  background: var(--cream);
}
.do-lsl__body {
  padding: 0;
  max-width: 60ch;
}
.do-lsl__mark {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.1rem;
  border-radius: 2px;
}
.do-lsl__heading {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 1.1rem;
  line-height: 1.2;
}
.do-lsl__content {
  font-size: 1.05rem;
  color: var(--text, #2e2e2e);
  line-height: 1.8;
}
.do-lsl__content p {
  margin: 0 0 1rem;
}
.do-lsl__content p:last-child {
  margin-bottom: 0;
}
/* Drop-cap doar la primul paragraf (nu la fiecare). */
.do-lsl__content p:first-child::first-letter {
  font-family: var(--fd);
  font-size: 3.4rem;
  float: left;
  line-height: 0.82;
  padding: 0.35rem 0.5rem 0 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 780px) {
  .do-lsl__story--right,
  .do-lsl__story--left {
    grid-template-columns: 1fr;
  }
  .do-lsl__story--left .do-lsl__body,
  .do-lsl__story--left .do-lsl__media,
  .do-lsl__story--right .do-lsl__body,
  .do-lsl__story--right .do-lsl__media {
    order: initial;
  }
  .do-lsl__body { max-width: none; }
}

/* ===== GPX DOWNLOAD BUTTONS (biking + trekking) ===== */
/* Trekking / activity cards: overlay button on the image (outside the card link). */
.lcard-wrap { position: relative; display: flex; flex-direction: column; }
.lcard-wrap > .lcard { flex: 1; width: 100%; }
.lcard__gpx {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.7rem; border-radius: 999px;
  background: var(--lime, #bed431); color: #1c2a12;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.02em;
  text-decoration: none; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.lcard__gpx:hover { transform: translateY(-1px); filter: brightness(1.05); }
.lcard__gpx svg { width: 14px; height: 14px; }

/* Biking route cards: text button in the card footer. */
.do-bkr__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }
.do-bkr__foot:empty { margin-top: 0; }
.do-bkr__gpx {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: var(--lime, #bed431); color: #1c2a12;
  font-size: 0.78rem; font-weight: 800; text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease; margin-left: auto;
}
.do-bkr__gpx:hover { transform: translateY(-1px); filter: brightness(1.05); }
.do-bkr__gpx svg { width: 15px; height: 15px; }

/* ===== BIKING ROUTE LISTS (do/activities-biking) ===== */
.do-bkr__group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.do-bkr__group:last-child { margin-bottom: 0; }
.do-bkr__ghead { display: flex; align-items: center; gap: 1rem; }
.do-bkr__gic { width: 52px; height: 52px; border-radius: 14px; flex: 0 0 auto; display: grid; place-items: center; }
.do-bkr__gic svg { width: 28px; height: 28px; }
.do-bkr__gic--road { background: rgba(58, 92, 40, 0.14); color: var(--accent, #3a5c28); }
.do-bkr__gic--mtb  { background: rgba(138, 109, 66, 0.18); color: var(--earth, #8a6d42); }
.do-bkr__gey { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.2rem; color: var(--sage, #6b8b4a); }
.do-bkr__gtitle { font-family: "DoAmp", var(--fd); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.1; margin: 0; color: inherit; }
.do-bkr__gintro { max-width: 62ch; margin: 1rem 0 0; color: var(--text-light, #5c6650); font-size: 0.95rem; }
.do-bkr__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.6rem; }
.do-bkr__card {
  position: relative; overflow: hidden;
  border: 1px solid var(--card-line, rgba(26,46,26,.1)); border-radius: 16px;
  padding: 1.3rem 1.4rem; background: var(--card, #fff); box-shadow: var(--shadow, 0 1px 3px rgba(26,46,26,.06));
}
.do-bkr__card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.do-bkr__card--road::before { background: var(--accent, #3a5c28); }
.do-bkr__card--mtb::before  { background: var(--earth, #8a6d42); }
.do-bkr__topline { display: flex; align-items: flex-start; gap: 0.9rem; }
.do-bkr__num { font-family: "DoAmp", var(--fd); font-size: 1.6rem; font-weight: 700; color: var(--sage, #6b8b4a); min-width: 2ch; line-height: 1; font-variant-numeric: tabular-nums; }
.do-bkr__tt { flex: 1; min-width: 0; }
.do-bkr__badge { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 999px; margin-bottom: 0.3rem; background: rgba(58,92,40,.12); color: var(--accent, #3a5c28); }
.do-bkr__card--mtb .do-bkr__badge { background: rgba(138,109,66,.18); color: var(--earth, #8a6d42); }
/* Rând badge (dificultate) + simbol marcaj — pt. cardurile de trekking */
.do-bkr__badgerow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.do-bkr__badgerow .do-bkr__badge { margin-bottom: 0; }
.do-bkr__marcaj { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 5px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.22); }
.do-bkr__marcaj svg { display: block; width: 100%; height: 100%; }
/* Coloana din dreapta a cardului de trekking: altitudine + marcaj (mai mare) */
.do-bkr__rightcol { display: flex; align-items: center; gap: 0.8rem; flex: 0 0 auto; }
.do-bkr__marcaj--lg { width: 46px; height: 46px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.do-bkr__name { font-size: 1.2rem; margin: 0; }
.do-bkr__name a { text-decoration: none; color: inherit; }
.do-bkr__name a:hover { text-decoration: underline; }
.do-bkr__peak { margin-left: auto; text-align: right; flex: 0 0 auto; }
.do-bkr__peak b { display: block; font-family: "DoAmp", var(--fd); font-size: 1.1rem; color: var(--earth, #8a6d42); font-variant-numeric: tabular-nums; }
.do-bkr__peak span { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light, #5c6650); }
.do-bkr__path { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; margin: 0.9rem 0 0; line-height: 1.5; }
/* Rezumat pentru traseele fără puncte cheie completate */
.do-bkr__sum { margin: 0.9rem 0 0; font-size: 0.9rem; line-height: 1.6; color: var(--text-light, #5c6650); }
.do-bkr__wp { font-size: 0.86rem; color: var(--text-light, #5c6650); }
.do-bkr__wp.is-term { font-weight: 700; color: var(--text, #22301b); }
.do-bkr__sep { color: var(--sage, #6b8b4a); font-size: 0.8rem; }
.do-bkr__circ { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; font-size: 0.74rem; font-weight: 700; color: var(--sage, #6b8b4a); }
.do-bkr__circ svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .do-bkr__grid { grid-template-columns: 1fr; } }

/* ===== TEXT + PILLS (do/text-pills) ===== */
.do-tp--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-tp--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-tp--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-tp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.do-tp__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.7rem; color: #9fc45a; }
.do-tp--cream .do-tp__ey, .do-tp--white .do-tp__ey { color: #6b8b4a; }
.do-tp__title { font-family: "DoAmp", var(--fd); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.12; margin: 0 0 0.8rem; color: inherit; }
.do-tp__text { font-size: 1rem; line-height: 1.7; color: #c8d4ba; }
.do-tp--cream .do-tp__text, .do-tp--white .do-tp__text { color: #5c6650; }
.do-tp__text p { margin: 0 0 1rem; }
.do-tp__text p:last-child { margin-bottom: 0; }
.do-tp__text strong { color: inherit; font-weight: 700; }
.do-tp--dark .do-tp__text strong { color: #eaf0dd; }
.do-tp__pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.do-tp__pill {
  padding: 0.55rem 1.05rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); color: #eef2e6;
}
.do-tp--cream .do-tp__pill, .do-tp--white .do-tp__pill {
  background: #fff; border-color: rgba(26, 46, 26, 0.12); color: #22301b;
}
@media (max-width: 760px) { .do-tp__grid { grid-template-columns: 1fr; } }

/* ===== PILL GROUPS (do/pill-groups) ===== */
.do-plg--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-plg--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-plg--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-plg__intro { margin-bottom: 1.5rem; }
.do-plg__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem; color: #9fc45a; }
.do-plg--cream .do-plg__ey, .do-plg--white .do-plg__ey { color: #6b8b4a; }
.do-plg__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.1; margin: 0; color: inherit; }
.do-plg__group { margin-top: 1.8rem; }
.do-plg__group:first-of-type { margin-top: 0; }
.do-plg__gh { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 0.8rem; color: #c6a86a; }
.do-plg--cream .do-plg__gh, .do-plg--white .do-plg__gh { color: #8a6d42; }
.do-plg__gic { font-size: 1.05rem; line-height: 1; }
.do-plg__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.do-plg__pill {
  padding: 0.45rem 0.95rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.14); color: #eef2e6;
}
.do-plg--cream .do-plg__pill, .do-plg--white .do-plg__pill {
  background: #fff; border-color: rgba(26, 46, 26, 0.12); color: #22301b;
}

/* ===== PEOPLE GRID (do/people-grid) ===== */
.do-pg--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-pg--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-pg--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-pg__intro { margin-bottom: 2rem; }
.do-pg__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem; color: #9fc45a; }
.do-pg--cream .do-pg__ey, .do-pg--white .do-pg__ey { color: #6b8b4a; }
.do-pg__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.1; margin: 0; color: inherit; }
.do-pg__grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(3, 1fr); }
.do-pg__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-pg__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-pg__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-pg__card {
  display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem; border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.02);
}
.do-pg--cream .do-pg__card, .do-pg--white .do-pg__card {
  border-color: rgba(26, 46, 26, 0.1); background: #fff; box-shadow: 0 1px 2px rgba(26, 46, 26, 0.04);
}
.do-pg__av {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-family: "DoAmp", var(--fd); font-weight: 700; font-size: 0.95rem;
}
.do-pg__av--1 { background: linear-gradient(150deg, #2b4a20, #3a5c28); }
.do-pg__av--2 { background: linear-gradient(150deg, #5a4a32, #8a6d42); }
.do-pg__av--3 { background: linear-gradient(150deg, #2f5a6a, #4e8ba0); }
.do-pg__av--4 { background: linear-gradient(150deg, #8a3f22, #b8623a); }
.do-pg__av--5 { background: linear-gradient(150deg, #4a3350, #7a5a8a); }
.do-pg__av--6 { background: linear-gradient(150deg, #8a6a1a, #b8963a); }
.do-pg__meta { min-width: 0; }
.do-pg__name { font-family: var(--sans, inherit); font-weight: 700; font-size: 0.98rem; line-height: 1.2; margin: 0; color: inherit; }
.do-pg__role { font-size: 0.8rem; margin: 0.1rem 0 0; color: #a9b79c; }
.do-pg--cream .do-pg__role, .do-pg--white .do-pg__role { color: #5c6650; }
@media (max-width: 820px) { .do-pg__grid, .do-pg__grid--3, .do-pg__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .do-pg__grid, .do-pg__grid--2, .do-pg__grid--3, .do-pg__grid--4 { grid-template-columns: 1fr; } }

/* ===== TWO COLUMNS WITH TITLE (do/two-cols) ===== */
.do-2c--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-2c--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-2c--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-2c__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(2, 1fr); }
.do-2c__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-2c__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-2c__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.6rem; color: #c6a86a; }
.do-2c--cream .do-2c__ey, .do-2c--white .do-2c__ey { color: #8a6d42; }
.do-2c__title { font-family: "DoAmp", var(--fd); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; margin: 0 0 0.7rem; color: inherit; }
.do-2c__text { font-size: 1rem; line-height: 1.7; color: #c8d4ba; }
.do-2c--cream .do-2c__text, .do-2c--white .do-2c__text { color: #5c6650; }
.do-2c__text p { margin: 0 0 1rem; }
.do-2c__text p:last-child { margin-bottom: 0; }
.do-2c__text strong { color: inherit; font-weight: 700; }
.do-2c--dark .do-2c__text strong { color: #eaf0dd; }
@media (max-width: 760px) {
  .do-2c__grid, .do-2c__grid--2, .do-2c__grid--3 { grid-template-columns: 1fr; }
}

/* ===== COLOR CARDS (do/color-cards) ===== */
.do-cc--dark { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-cc--dark .ey { color: #bed431; }
.do-cc--dark .st { color: #fbf8f1; }
.do-cc__intro { margin-bottom: 2rem; }
.do-cc__grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
.do-cc__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-cc__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-cc__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-cc__card {
  border-radius: 18px; padding: 1.6rem 1.5rem; color: #fff;
  box-shadow: 0 18px 40px -28px rgba(26, 46, 26, 0.5);
}
.do-cc__card--earth  { background: linear-gradient(150deg, #5a4a32, #8a6d42); }
.do-cc__card--green  { background: linear-gradient(150deg, #5a7a3a, #8bae56); }
.do-cc__card--forest { background: linear-gradient(150deg, #1f3d18, #3a5c28); }
.do-cc__card--clay   { background: linear-gradient(150deg, #8a3f22, #b8623a); }
.do-cc__card--sky    { background: linear-gradient(150deg, #2f5a6a, #4e8ba0); }
.do-cc__card--gold   { background: linear-gradient(150deg, #8a6a1a, #b8963a); }
.do-cc__card--plum   { background: linear-gradient(150deg, #4a3350, #7a5a8a); }
.do-cc__card--dark   { background: linear-gradient(150deg, #12200b, #1a2e1a); }
.do-cc__ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.18); margin-bottom: 1rem;
}
.do-cc__ic svg { width: 24px; height: 24px; }
.do-cc__title { font-family: "DoAmp", var(--fd); font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 0 0.3rem; }
.do-cc__text { font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); margin: 0; line-height: 1.55; }
@media (max-width: 820px) {
  .do-cc__grid, .do-cc__grid--3, .do-cc__grid--4 { grid-template-columns: 1fr; }
}

/* ===== CLIMBING SECTORS (do/climbing-sectors) ===== */
.do-csec--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-csec--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-csec--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-csec__intro { margin-bottom: 2rem; }
.do-csec__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem; color: #bed431; }
.do-csec--cream .do-csec__ey, .do-csec--white .do-csec__ey { color: #6b8b4a; }
.do-csec__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.1; margin: 0; color: inherit; }
.do-csec__grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(2, 1fr); }
.do-csec__grid--1 { grid-template-columns: 1fr; }
.do-csec__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-csec__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-csec__card {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px;
  padding: 1.4rem 1.5rem; background: rgba(255, 255, 255, 0.02);
}
.do-csec--cream .do-csec__card, .do-csec--white .do-csec__card {
  border-color: rgba(26, 46, 26, 0.1); background: #fff; box-shadow: var(--shadow, 0 1px 3px rgba(26,46,26,.06));
}
.do-csec__head { display: flex; align-items: flex-start; gap: 0.8rem; }
.do-csec__num { font-family: "DoAmp", var(--fd); font-size: 1.3rem; font-weight: 700; color: #9a9186; min-width: 2.2ch; line-height: 1.1; }
.do-csec__name { font-family: "DoAmp", var(--fd); font-size: 1.18rem; margin: 0; color: inherit; }
.do-csec__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.7rem 0 0.9rem; }
.do-csec__pill { display: inline-flex; align-items: center; padding: 0.28rem 0.65rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.do-csec__pill--n { background: rgba(107, 139, 74, 0.18); color: #cfe0b8; border: 1px solid rgba(255, 255, 255, 0.12); }
.do-csec--cream .do-csec__pill--n, .do-csec--white .do-csec__pill--n { background: rgba(58, 92, 40, 0.1); color: #3a5c28; border-color: rgba(26, 46, 26, 0.1); }
.do-csec__pill--code { background: rgba(125, 116, 104, 0.2); color: #c9c2b8; font-family: ui-monospace, monospace; letter-spacing: 0; }
.do-csec--cream .do-csec__pill--code, .do-csec--white .do-csec__pill--code { color: #6b6459; }
.do-csec__grade { color: #fff; }
/* Semantic grade tiers (shared) */
.do-g-easy { background: #5a9e4f; color: #fff; }
.do-g-med  { background: #c7a52e; color: #fff; }
.do-g-hard { background: #d07a2c; color: #fff; }
.do-g-exp  { background: #c8452f; color: #fff; }
.do-csec__tbl { margin-top: auto; overflow-x: auto; }
.do-csec__tbl table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.do-csec__tbl th {
  text-align: left; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: currentColor; opacity: 0.6; font-weight: 700; padding: 0 0.5rem 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.do-csec--cream .do-csec__tbl th, .do-csec--white .do-csec__tbl th { border-bottom-color: rgba(26, 46, 26, 0.12); }
.do-csec__tbl td { padding: 0.45rem 0.5rem 0.45rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); vertical-align: middle; }
.do-csec--cream .do-csec__tbl td, .do-csec--white .do-csec__tbl td { border-bottom-color: rgba(26, 46, 26, 0.08); }
.do-csec__tbl tr:last-child td { border-bottom: 0; }
.do-csec__rname { font-weight: 600; color: inherit; }
.do-csec__rextra { font-size: 0.8rem; opacity: 0.75; }
.do-csec__g { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 6px; font-size: 0.72rem; font-weight: 800; }
.do-csec__note { font-size: 0.82rem; margin: 0.9rem 0 0; opacity: 0.8; }
@media (max-width: 820px) { .do-csec__grid, .do-csec__grid--2, .do-csec__grid--3 { grid-template-columns: 1fr; } }

/* ===== DIFFICULTY SCALE (do/scala-dificultate) ===== */
.do-scala--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-scala--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-scala--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-scala__intro { margin-bottom: 1.5rem; }
.do-scala__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem; color: #bed431; }
.do-scala--cream .do-scala__ey, .do-scala--white .do-scala__ey { color: #6b8b4a; }
.do-scala__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin: 0; color: inherit; }
.do-scala__grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.do-scala__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-scala__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-scala__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-scala__grid--5 { grid-template-columns: repeat(5, 1fr); }
.do-scala__lvl { border-radius: 14px; padding: 1.1rem 1.2rem; color: #fff; }
.do-scala__lvl-label { display: block; font-family: "DoAmp", var(--fd); font-size: 1.3rem; font-weight: 700; line-height: 1.1; }
.do-scala__lvl-text { display: block; margin-top: 0.15rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.92); }
.do-scala__note {
  display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.5rem;
  border-radius: 16px; padding: 1.3rem 1.4rem;
  background: rgba(138, 109, 66, 0.16); border: 1px solid rgba(138, 109, 66, 0.4);
}
.do-scala--cream .do-scala__note, .do-scala--white .do-scala__note {
  background: rgba(138, 109, 66, 0.1); border-color: rgba(138, 109, 66, 0.35);
}
.do-scala__note-ic { flex: 0 0 auto; width: 24px; height: 24px; margin-top: 2px; color: #c6a86a; }
.do-scala--cream .do-scala__note-ic, .do-scala--white .do-scala__note-ic { color: #8a6d42; }
.do-scala__note-ic svg { width: 100%; height: 100%; display: block; }
.do-scala__note-tx { margin: 0; font-size: 0.95rem; color: inherit; opacity: 0.9; }
@media (max-width: 820px) {
  .do-scala__grid--4, .do-scala__grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .do-scala__grid, .do-scala__grid--2, .do-scala__grid--3, .do-scala__grid--4, .do-scala__grid--5 { grid-template-columns: 1fr; }
}

/* ===== ROUTE ITINERARY (do/traseu-itinerar) ===== */
.do-itin--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-itin--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-itin--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-itin__intro { margin-bottom: 1.5rem; }
.do-itin__ey { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 0.5rem; color: #bed431; }
.do-itin--cream .do-itin__ey, .do-itin--white .do-itin__ey { color: #6b8b4a; }
.do-itin__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.1; margin: 0; color: inherit; }
.do-itin__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 860px) { .do-itin__grid { grid-template-columns: 1fr; } }

/* waypoints timeline */
.do-itin__wps { position: relative; padding-left: 1.9rem; }
.do-itin__wps::before { content: ""; position: absolute; left: 6px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(#6b8b4a, rgba(107,139,74,.25)); }
.do-itin__wp { position: relative; padding-bottom: 1.15rem; }
.do-itin__wp:last-child { padding-bottom: 0; }
.do-itin__wp::before { content: ""; position: absolute; left: -1.9rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--green-900, #1a2e1a); border: 3px solid #6b8b4a; }
.do-itin--cream .do-itin__wp::before, .do-itin--white .do-itin__wp::before { background: #eaf2e0; }
.do-itin--white .do-itin__wp::before { background: #fff; }
.do-itin__wp--peak::before { border-color: #1e5cbe; }
.do-itin__wp--start::before, .do-itin__wp--final::before { border-color: #bed431; background: #bed431; }
.do-itin__wp-name { font-size: 1rem; font-weight: 700; color: inherit; }
.do-itin__wp-alt { display: inline-block; margin-left: 0.5rem; font-size: 0.8rem; font-weight: 700; color: #b89a5e; font-variant-numeric: tabular-nums; }
.do-itin--cream .do-itin__wp-alt, .do-itin--white .do-itin__wp-alt { color: #8a6d42; }
.do-itin__wp-note { display: inline-block; margin-left: 0.45rem; font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #8fae5e; }
.do-itin--cream .do-itin__wp-note, .do-itin--white .do-itin__wp-note { color: #6b8b4a; }

/* side panels */
.do-itin__panels { display: flex; flex-direction: column; gap: 1.1rem; }
.do-itin__panel { border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 1.3rem 1.4rem; background: rgba(255,255,255,.02); }
.do-itin--cream .do-itin__panel, .do-itin--white .do-itin__panel { border-color: rgba(26,46,26,.1); background: #fff; box-shadow: 0 1px 2px rgba(26,46,26,.04); }
.do-itin__panel-h { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.7rem; color: inherit; }
.do-itin__panel-ic { width: 18px; height: 18px; flex: 0 0 auto; color: #8fae5e; }
.do-itin--cream .do-itin__panel-ic, .do-itin--white .do-itin__panel-ic { color: #3a5c28; }
.do-itin__panel-ic svg { width: 100%; height: 100%; display: block; }
.do-itin__panel-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.do-itin__panel-list li { font-size: 0.9rem; color: inherit; opacity: 0.85; padding-left: 1rem; position: relative; }
.do-itin__panel-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: #6b8b4a; }
.do-itin__panel-text { margin: 0; font-size: 0.9rem; color: inherit; opacity: 0.85; }
.do-itin__panel--warn { background: color-mix(in srgb, #ce503c 10%, transparent); border-color: color-mix(in srgb, #ce503c 32%, transparent); }
.do-itin__panel--warn .do-itin__panel-ic { color: #e08a72; }
.do-itin--cream .do-itin__panel--warn, .do-itin--white .do-itin__panel--warn { background: color-mix(in srgb, #ce503c 8%, #fff); }
.do-itin--cream .do-itin__panel--warn .do-itin__panel-ic, .do-itin--white .do-itin__panel--warn .do-itin__panel-ic { color: #c0492f; }

/* ===== ELEVATION PROFILE (do/elevation-profile) ===== */
.do-elev--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-elev--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-elev--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-elev__intro { margin-bottom: 1.5rem; }
.do-elev__ey {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 0.5rem; color: #bed431;
}
.do-elev--cream .do-elev__ey, .do-elev--white .do-elev__ey { color: #6b8b4a; }
.do-elev__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.1; margin: 0; color: inherit; }
.do-elev__box {
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2rem); background: rgba(255, 255, 255, 0.02);
}
.do-elev--cream .do-elev__box, .do-elev--white .do-elev__box {
  border-color: rgba(26, 46, 26, 0.1); background: #fff; box-shadow: var(--shadow, 0 1px 3px rgba(26,46,26,.06));
}
.do-elev__svg { width: 100%; height: auto; display: block; overflow: visible; }
.do-elev__legend {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1rem;
  font-size: 0.82rem; color: inherit; opacity: 0.85;
}
.do-elev__legend b { font-variant-numeric: tabular-nums; }
@media (max-width: 560px) {
  .do-elev__svg { min-height: 200px; }
}

/* ===== THEMATIC ROUTES (do/trasee-tematice) ===== */
.do-tt--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-tt--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-tt--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-tt__intro { margin-bottom: 2rem; }
.do-tt__ey {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 0.5rem; color: #bed431;
}
.do-tt--cream .do-tt__ey, .do-tt--white .do-tt__ey { color: #6b8b4a; }
.do-tt__st { font-family: "DoAmp", var(--fd); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin: 0; color: inherit; }
.do-tt__grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(3, 1fr); }
.do-tt__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-tt__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-tt__card {
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; overflow: hidden; background: #17240f;
  display: flex; flex-direction: column;
}
.do-tt--cream .do-tt__card, .do-tt--white .do-tt__card {
  border-color: rgba(26, 46, 26, 0.1); background: #fff; box-shadow: var(--shadow, 0 1px 3px rgba(26,46,26,.06));
}
.do-tt__media {
  position: relative; aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, #2b4a20, #132009);
}
.do-tt__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.do-tt__marks { position: absolute; left: 0.7rem; bottom: 0.7rem; display: flex; gap: 0.4rem; z-index: 2; }
.do-tt__mk { width: 34px; height: 34px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }
.do-tt__mk svg { width: 100%; height: 100%; display: block; }
.do-tt__body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.do-tt__title { font-family: "DoAmp", var(--fd); font-size: 1.3rem; font-weight: 700; margin: 0 0 0.3rem; color: inherit; }
.do-tt__route { font-size: 0.82rem; margin: 0 0 0.9rem; color: #a9b79c; }
.do-tt--cream .do-tt__route, .do-tt--white .do-tt__route { color: #5c6650; }
.do-tt__stats { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.do-tt__stat {
  display: inline-flex; align-items: center; padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem; font-weight: 600; color: inherit;
}
.do-tt--cream .do-tt__stat, .do-tt--white .do-tt__stat { background: rgba(58, 92, 40, 0.09); border-color: rgba(26, 46, 26, 0.1); }
.do-tt__desc { font-size: 0.9rem; line-height: 1.55; margin: 0; color: #a9b79c; }
.do-tt--cream .do-tt__desc, .do-tt--white .do-tt__desc { color: #5c6650; }
/* Read more (clamp descriere lungă) */
.do-readmore__text {
  display: -webkit-box;
  -webkit-line-clamp: var(--rm-lines, 4);
  line-clamp: var(--rm-lines, 4);
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.do-readmore__text--open {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.do-readmore__btn {
  margin-top: 0.55rem; padding: 0; background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 0.82rem; font-weight: 700; color: #bed431;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.do-readmore__btn::after { content: "▾"; font-size: 0.75em; }
.do-readmore__btn[aria-expanded="true"]::after { content: "▴"; }
.do-tt--cream .do-readmore__btn, .do-tt--white .do-readmore__btn { color: #3a5c28; }
.do-tt__extras { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.3rem; }
.do-tt__x { border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 1.3rem 1.4rem; }
.do-tt--cream .do-tt__x, .do-tt--white .do-tt__x { border-color: rgba(26, 46, 26, 0.14); }
.do-tt__x-ey { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 0.2rem; color: #c6a86a; }
.do-tt--cream .do-tt__x-ey, .do-tt--white .do-tt__x-ey { color: #8a6d42; }
.do-tt__x-title { font-family: "DoAmp", var(--fd); font-size: 1.15rem; font-weight: 700; margin: 0 0 0.4rem; color: inherit; }
.do-tt__x-text { font-size: 0.88rem; line-height: 1.5; margin: 0; color: #a9b79c; }
.do-tt--cream .do-tt__x-text, .do-tt--white .do-tt__x-text { color: #5c6650; }
@media (max-width: 900px) {
  .do-tt__grid, .do-tt__grid--2, .do-tt__grid--3 { grid-template-columns: 1fr; }
  .do-tt__extras { grid-template-columns: 1fr; }
}

/* ===== TRAIL MARKINGS LEGEND (do/marcaje-legenda) ===== */
.do-mklg--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-mklg--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-mklg--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-mklg__intro { margin-bottom: 2rem; }
.do-mklg__ey {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 0.5rem; color: #bed431;
}
.do-mklg--cream .do-mklg__ey,
.do-mklg--white .do-mklg__ey { color: #6b8b4a; }
.do-mklg__st {
  font-family: "DoAmp", var(--fd);
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin: 0; color: inherit;
}
.do-mklg__grid { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.do-mklg__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-mklg__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-mklg__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-mklg__item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.1rem; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03);
}
.do-mklg--cream .do-mklg__item,
.do-mklg--white .do-mklg__item {
  border-color: rgba(26, 46, 26, 0.1); background: #fff;
  box-shadow: 0 1px 2px rgba(26, 46, 26, 0.04);
}
.do-mklg__sym { flex: 0 0 auto; width: 46px; height: 46px; }
.do-mklg__sym svg { width: 100%; height: 100%; display: block; }
.do-mklg__tx { min-width: 0; }
.do-mklg__title { font-family: "DoAmp", var(--fd); font-size: 1rem; font-weight: 700; margin: 0 0 0.1rem; color: inherit; }
.do-mklg__desc { font-size: 0.82rem; line-height: 1.35; margin: 0; color: #a9b79c; }
.do-mklg--cream .do-mklg__desc,
.do-mklg--white .do-mklg__desc { color: #5c6650; }
@media (max-width: 820px) {
  .do-mklg__grid--3, .do-mklg__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .do-mklg__grid, .do-mklg__grid--2, .do-mklg__grid--3, .do-mklg__grid--4 { grid-template-columns: 1fr; }
}

/* ===== ATTRACTIONS BY CATEGORY (do/atractii-natura, do/atractii-cultura) ===== */
.do-atr__head {
  margin-bottom: 1.75rem;
}

/* ===== SECTION CATALOG (do/section-catalog) ===== */
/* Ampersand fix: Playfair Display randează „&" ca ligatură ornamentală „Et".
   Preluăm DOAR caracterul „&" (U+0026) dintr-un font cu ampersand simplu, curat. */
@font-face {
  font-family: "DoAmp";
  src: local("Georgia"), local("Times New Roman"), local("Times");
  unicode-range: U+0026;
}
.do-scat {
  border-radius: 4px;
}
.do-scat--dark {
  background: var(--green-900, #1a2e1a);
  color: #f7f2eb;
}
.do-scat--cream {
  background: #eaf2e0;
  color: var(--green-900, #1a2e1a);
}
.do-scat--white {
  background: #fff;
  color: var(--green-900, #1a2e1a);
}
.do-scat__intro {
  margin-bottom: 2rem;
}
.do-scat__ey {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: #bed431;
}
.do-scat--cream .do-scat__ey,
.do-scat--white .do-scat__ey {
  color: #6b8b4a;
}
.do-scat__st {
  font-family: "DoAmp", var(--fd);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0;
  color: inherit;
}
.do-scat__group {
  margin-top: 2.75rem;
}
.do-scat__group:first-child {
  margin-top: 0;
}
.do-scat__ghead {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.do-scat__gtitle {
  font-family: "DoAmp", var(--fd);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  margin: 0;
  color: inherit;
}
.do-scat__count {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(190, 212, 49, 0.5);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bed431;
  white-space: nowrap;
}
.do-scat--cream .do-scat__count,
.do-scat--white .do-scat__count {
  border-color: rgba(58, 92, 40, 0.4);
  color: #3a5c28;
}
.do-scat__rule {
  height: 1px;
  border: 0;
  background: currentColor;
  opacity: 0.18;
  margin: 0.9rem 0 1.4rem;
}
.do-scat__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.do-scat__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-scat__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-scat__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-scat__card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.do-scat--cream .do-scat__card,
.do-scat--white .do-scat__card {
  border-color: rgba(26, 46, 26, 0.1);
  background: #fff;
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.05);
}
a.do-scat__card:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 212, 49, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.do-scat--cream a.do-scat__card:hover,
.do-scat--white a.do-scat__card:hover {
  border-color: rgba(58, 92, 40, 0.4);
  background: #fbfaf7;
}
.do-scat__ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(190, 212, 49, 0.1);
  color: #9fc45a;
}
.do-scat--cream .do-scat__ic,
.do-scat--white .do-scat__ic {
  background: rgba(58, 92, 40, 0.1);
  color: #3a5c28;
}
.do-scat__ic svg {
  width: 22px;
  height: 22px;
}
.do-scat__ctext {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.do-scat__ctitle {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
}
.do-scat__csub {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  color: #9fc45a;
}
.do-scat--cream .do-scat__csub,
.do-scat--white .do-scat__csub {
  color: #6b8b4a;
}
@media (max-width: 900px) {
  .do-scat__grid--3,
  .do-scat__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .do-scat__grid,
  .do-scat__grid--2,
  .do-scat__grid--3,
  .do-scat__grid--4 { grid-template-columns: 1fr; }
}

/* =================================================================
   RESPONSIVE SUPPLEMENT — fills gaps for tablet (≤900px) + mobile (≤640px) + small (≤480px)
   Applied at the end so it overrides any base block styles cleanly.
   ================================================================= */

/* TABLET — 900px (large iPad portrait, small laptop) */
@media (max-width: 900px) {
  .ctn { padding: 0 1.25rem; }
  .sec { padding: 3.5rem 0; }
  .hero__t { font-size: 3rem; }
  .hero__d { font-size: 1rem; }
  .st { font-size: 1.65rem; }

  /* Topic cards / asym-grid: cards already drop to 2-col via existing rules; nothing more needed */

  /* Featured card (single big card): stack image + content */
  .evt-featured,
  .evt-featured--rev {
    grid-template-columns: 1fr !important;
  }

  /* Map blocks: cap height */
  [data-map] { height: 360px !important; }

  /* Project sidebar already handled; news article OK; tile-grid OK */
}

/* MOBILE — 640px (phones in portrait) */
@media (max-width: 640px) {
  /* Container + section spacing */
  .ctn { padding: 0 1rem; }
  .sec { padding: 2.5rem 0; }
  .hero__t,
  .hero__t--sm { font-size: 1.85rem !important; line-height: 1.1; }
  .hero__d { font-size: 0.95rem; }
  .st { font-size: 1.4rem; }
  .ey { font-size: 0.7rem; }

  /* Quote */
  .qt__tx { font-size: 1.1rem; }

  /* Section title (do/section-title) */
  .rv h2.st { font-size: 1.4rem; }

  /* CTA blocks */
  .cta {
    padding: 2rem 1.25rem !important;
    text-align: center;
  }
  .cta__t { font-size: 1.5rem !important; }

  /* Filter buttons row — wrap + reduced padding */
  .fb {
    flex-wrap: wrap;
    gap: 0.5rem !important;
    justify-content: center;
  }
  .ft {
    padding: 0.5rem 1rem !important;
    font-size: 0.78rem !important;
  }

  /* Stats — fit 2 columns, smaller fonts */
  .stat__n { font-size: 1.5rem !important; }
  .stat__l { font-size: 0.65rem !important; letter-spacing: 0.06em; }

  /* Timeline: stack date pill above content */
  .tl-item {
    flex-direction: column;
    gap: 0.85rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .tl-date {
    min-width: 0;
    align-self: flex-start;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    gap: 0.45rem;
    align-items: baseline;
  }
  .tl-date__month,
  .tl-date__day,
  .tl-date__year { display: inline; }
  .tl-date__day { font-size: 1.1rem; }

  /* Waypoints: tighter padding, smaller bullet */
  .waypoints { padding: 0; }
  .wp { gap: 0.85rem; padding-bottom: 1rem; margin-bottom: 1rem; }
  .wp__num { min-width: 30px; height: 30px; font-size: 0.78rem; }
  .wp__title { font-size: 0.9rem; }

  /* Price box: smaller padding + price */
  .price-box {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }
  .price-box__price { font-size: 1.65rem; }

  /* Contact card: full width, smaller padding */
  .contact-card {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }
  .contact-row { font-size: 0.85rem; gap: 0.55rem; }

  /* Amenities: 2 columns */
  .amenities { grid-template-columns: repeat(2, 1fr) !important; }

  /* Map: shorter on mobile */
  [data-map] { height: 280px !important; }

  /* Featured card image height clamp */
  .evt-featured__img { min-height: 240px; }
  .evt-featured__c { padding: 1.5rem 1.25rem !important; }
  .evt-featured__t { font-size: 1.5rem !important; }

  /* Quick-access: stack icon + title vertically */
  .qa-card { padding: 1.25rem !important; }

  /* Highlighted box: padding + heading size */
  .do-hl-box { padding: 1.25rem 1.25rem !important; }
  .do-hl-box__title { font-size: 1.1rem !important; }
  .do-hl-box__body { font-size: 0.9rem !important; }

  /* Accordion */
  .do-accordion__head { padding: 0.85rem 1rem; }
  .do-accordion__title { font-size: 0.92rem; }
  .do-accordion__body { padding: 0.85rem 1rem 1rem; font-size: 0.9rem; }

  /* Download list */
  .do-download {
    padding: 1rem 1.1rem;
    gap: 0.85rem;
  }
  .do-download__title { font-size: 0.92rem; }
  .do-download__desc { font-size: 0.78rem; }

  /* Climbing route table: rely on horizontal scroll, but tighten header */
  .do-climb-table__title { font-size: 1.15rem; }
  .do-climb-table__meta { font-size: 0.75rem; }

  /* Route stats: keep flex wrap, smaller numbers */
  .do-route-stats { padding: 1rem 1.25rem; }
  .do-route-stats__row { gap: 0.85rem 1.25rem; }
  .do-route-stats__val { font-size: 1.1rem !important; }
  .do-route-stats__lbl { font-size: 0.62rem; }

  /* Monument catalog: single column items + reduced group padding */
  .do-mc__group { padding: 1.25rem 1.25rem; }
  .do-mc__title { font-size: 1.1rem; }
  .do-mc__list {
    grid-template-columns: 1fr !important;
    gap: 0.25rem 0 !important;
  }
  .do-mc__item { flex-wrap: wrap; gap: 0.4rem; }

  /* Partner category block: cards already auto-fit, just smaller cards */
  .do-pcb__title { font-size: 1.2rem; }
  .do-pcb__card { padding: 1rem 1.1rem; }

  /* Access methods: smaller icon + card padding */
  .do-am__card { padding: 1.25rem 1.25rem; }
  .do-am__icon { width: 40px; height: 40px; }
  .do-am__icon svg { width: 22px; height: 22px; }
  .do-am__title { font-size: 1.05rem; }
  .do-am__directions { font-size: 0.85rem; }

  /* Species card grid: titles smaller */
  .do-species-card__name { font-size: 1rem; }
  .do-species-card__latin { font-size: 0.78rem; }
  .do-species-card__traits li { font-size: 0.82rem; }

  /* Tile grid label */
  .do-tile__label { font-size: 0.85rem !important; padding: 0.55rem 0.7rem !important; }

  /* Press list: stack meta vertically */
  .do-press-item__title { font-size: 1rem; }
  .do-press-item__desc { font-size: 0.85rem; }

  /* Project layout (already single col), tighten sidebar cards */
  .do-proj-card { padding: 1.25rem 1.25rem; }
  .do-proj-card__title { font-size: 0.9rem; }

  /* News article: drop-cap smaller on mobile */
  .do-news-article .prose { font-size: 0.95rem; }

  /* Site header (logo + nav) — already handled by .nav__ul display:none + .ham display:flex */
  .hdr { height: 78px; }
  .hdr--s { height: 70px; }
  .hdr__logo-img { height: 54px; }
}

/* =================================================================
   ATTRACTION SINGLE — EDITORIAL FACT SECTIONS (nature / culture)
   Pure typography layout matching site editorial style (no boxes)
   ================================================================= */

/* Wider prose for attraction description with 2-col flow for long text */
.prose--full {
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}
.prose--full > p:first-of-type {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--green-900);
  margin-bottom: 2rem;
}
.prose--full > p:first-of-type::first-letter {
  font-family: var(--fd);
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  padding: 0.4rem 0.65rem 0 0;
  color: var(--accent);
  font-weight: 700;
}
@media (min-width: 900px) {
  .prose--full {
    column-count: 2;
    column-gap: 4rem;
  }
  .prose--full > p:first-of-type {
    column-span: all;
  }
  .prose--full > * {
    break-inside: avoid-column;
  }
}
@media (max-width: 640px) {
  .prose--full > p:first-of-type { font-size: 1.15rem; }
  .prose--full > p:first-of-type::first-letter { font-size: 2.5rem; }
}

/* Fact section — editorial, no boxes */
.attr-section {
  margin: 4rem 0 0;
}
.attr-section__head {
  margin-bottom: 2.5rem;
}
.attr-section__head .ey {
  margin-bottom: 0.5rem;
}
.attr-section__head .st {
  margin: 0;
}

/* Facts grid — clean typography pairs separated by hairlines */
.attr-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-deep);
  border-left: 1px solid var(--cream-deep);
  margin-bottom: 3rem;
}
.attr-fact {
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #fff;
  transition: background 0.2s ease;
}
.attr-fact:hover {
  background: var(--cream);
}
.attr-fact__lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.attr-section--nature .attr-fact__lbl {
  color: var(--green-700);
}
.attr-fact__val {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
}

/* Sub-sections inside (schedule + contact, how-to-get + rules) */
.attr-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-deep);
}
.attr-section__sub-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.attr-section--nature .attr-section__sub-title {
  color: var(--green-700);
}
.attr-section__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.attr-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.attr-section__list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-left: 1.3rem;
}
.attr-section__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--accent);
  font-weight: 700;
}
.attr-section--nature .attr-section__list li::before {
  color: var(--green-700);
}
.attr-section__list li:first-child { padding-top: 0; }
.attr-section__list li:first-child::before { top: 0; }
.attr-section__list li:last-child { border-bottom: none; }
.attr-section__list--schedule li::before {
  content: "";
  display: none;
}
.attr-section__list--schedule li {
  padding-left: 0;
  font-family: var(--fb);
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.attr-section__contacts {
  margin: 0;
}
.attr-section__contacts dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.attr-section__contacts dd {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--text-dark);
  font-weight: 500;
}
.attr-section__contacts dd a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.attr-section__contacts dd a:hover {
  color: var(--green-800);
}
.attr-section--nature .attr-section__contacts dd a {
  color: var(--green-800);
}

/* Safety callout — accent stripe */
.attr-section__safety {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--accent);
  background: var(--cream);
}
.attr-section__safety .attr-section__sub-title { margin-top: 0; }
.attr-section__safety .attr-section__warn {
  font-family: var(--fd);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0.5rem 0 0;
}

/* CTAs */
.attr-section__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.attr-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--eo);
}
.attr-section__cta--primary {
  background: var(--accent);
  color: #fff;
}
.attr-section__cta--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 92, 40, 0.3);
}
.attr-section--nature .attr-section__cta--primary {
  background: var(--green-800);
}
.attr-section--nature .attr-section__cta--primary:hover {
  background: var(--green-900);
  box-shadow: 0 8px 20px rgba(26, 46, 26, 0.3);
}
.attr-section__cta--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.attr-section__cta--ghost:hover {
  background: var(--accent);
  color: #fff;
}
.attr-section--nature .attr-section__cta--ghost {
  color: var(--green-800);
  border-color: var(--green-800);
}
.attr-section--nature .attr-section__cta--ghost:hover {
  background: var(--green-800);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .attr-facts { grid-template-columns: repeat(2, 1fr); }
  .attr-section__split { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .attr-section { margin-top: 2.5rem; }
  .attr-section__head { margin-bottom: 1.5rem; }
  .attr-facts { grid-template-columns: 1fr; }
  .attr-fact { padding: 1.1rem 1.25rem; }
  .attr-fact__val { font-size: 1.1rem; }
  .attr-section__split { padding-top: 1.5rem; gap: 1.5rem; }
  .attr-section__ctas { flex-direction: column; }
  .attr-section__cta { justify-content: center; padding: 12px 20px; }
}

/* =================================================================
   ATTRACTION SINGLE — 2-COLUMN LAYOUT (description left, facts right)
   Used by single-do_attraction.php: .attr-grid + .attr-info sidebar
   ================================================================= */
.attr-grid {
  display: block;
}
.attr-grid--has-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3.5rem;
  align-items: start;
}
.attr-grid__main {
  min-width: 0;
}
/* Prose inside the 2-col layout should fill the column, not cap at 680px */
.attr-grid--has-side .attr-grid__main .prose {
  max-width: none;
}
.attr-grid__side {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* The fact card itself */
.attr-info {
  background: var(--cream);
  border-radius: var(--rxl);
  border-top: 4px solid var(--accent);
  padding: 1.75rem 1.75rem 2rem;
}
.attr-info.is-nature {
  border-top-color: var(--green-700);
}
.attr-info__head {
  margin-bottom: 1.25rem;
}
.attr-info__ey {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.attr-info.is-nature .attr-info__ey {
  color: var(--green-700);
}
.attr-info__title {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0;
  line-height: 1.2;
}

/* Definition list of facts (label / value) */
.attr-info__list {
  margin: 0;
}
.attr-info__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-deep);
}
.attr-info__row:last-child {
  border-bottom: none;
}
.attr-info__row dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}
.attr-info__row dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-900);
  text-align: right;
  line-height: 1.4;
}
.attr-info__row dd a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.attr-info.is-nature .attr-info__row dd a {
  color: var(--green-800);
}

/* Sub-headings inside the card (Vizitare, Contact, …) */
.attr-info__sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.75rem 0 0.75rem;
}
.attr-info.is-nature .attr-info__sub {
  color: var(--green-700);
}
.attr-info__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* Bulleted lists (rules) */
.attr-info__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.attr-info__bullets li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.attr-info__bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.attr-info.is-nature .attr-info__bullets li::before {
  color: var(--green-700);
}

/* Schedule list (label left, hours right) */
.attr-info__schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}
.attr-info__schedule li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--cream-deep);
}
.attr-info__schedule li:last-child {
  border-bottom: none;
}

/* Safety callout */
.attr-info__warn {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(58, 92, 40, 0.07);
  border-radius: 0 var(--r) var(--r) 0;
}
.attr-info__warn-lbl {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.attr-info__warn p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.attr-info__warn-strong {
  font-weight: 700;
  color: var(--green-900) !important;
}

/* Call-to-action buttons inside the card */
.attr-info__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.attr-info__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border-radius: var(--rp);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.attr-info__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.attr-info.is-nature .attr-info__cta {
  background: var(--green-800);
}
.attr-info.is-nature .attr-info__cta:hover {
  background: var(--green-900);
}
.attr-info__cta--ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.attr-info__cta--ghost:hover {
  background: var(--accent);
  color: #fff;
}
.attr-info.is-nature .attr-info__cta--ghost {
  color: var(--green-800);
  border-color: var(--green-800);
}
.attr-info.is-nature .attr-info__cta--ghost:hover {
  background: var(--green-800);
  color: #fff;
}

/* Responsive — collapse to single column, sidebar drops below content */
@media (max-width: 1024px) {
  .attr-grid--has-side {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .attr-grid__side {
    position: static;
  }
}
@media (min-width: 1025px) {
  /* When both nature + culture cards exist, let them sit side by side
     in the sidebar only if space allows — otherwise they stack (default). */
  .attr-grid__side {
    gap: 1.5rem;
  }
}

/* =================================================================
   LIGHTBOX (assets/js/lightbox.js)
   ================================================================= */
.do-lb {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 12, 0.94);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
  animation: do-lb-fade 0.25s ease;
}
.do-lb.is-open {
  display: flex;
}
body.do-lb-active {
  overflow: hidden;
}
@keyframes do-lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.do-lb__stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.do-lb__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s var(--eo);
  cursor: default;
}
.do-lb__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}
.do-lb__close,
.do-lb__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.do-lb__close:hover,
.do-lb__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.06);
}
.do-lb__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
}
.do-lb__close svg {
  width: 22px;
  height: 22px;
}
.do-lb__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
}
.do-lb__nav:hover {
  transform: translateY(-50%) scale(1.06);
}
.do-lb__nav--prev { left: 1.5rem; }
.do-lb__nav--next { right: 1.5rem; }
.do-lb__nav svg {
  width: 26px;
  height: 26px;
}
.do-lb__bar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--fb);
  max-width: calc(100% - 3rem);
  z-index: 2;
}
.do-lb__caption {
  opacity: 0.9;
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.do-lb__counter {
  font-weight: 700;
  font-family: var(--fd);
  letter-spacing: 0.06em;
  opacity: 0.7;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .do-lb { padding: 3vh 1rem; }
  .do-lb__close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
  .do-lb__nav { width: 44px; height: 44px; }
  .do-lb__nav--prev { left: 0.5rem; }
  .do-lb__nav--next { right: 0.5rem; }
  .do-lb__bar { bottom: 1rem; font-size: 0.78rem; padding: 0.5rem 1rem; gap: 1rem; }
  .do-lb__caption { display: none; }
}

/* Make gallery thumbs visually clickable */
[data-lightbox] {
  cursor: zoom-in;
  display: block;
}
[data-lightbox] img {
  transition: transform 0.4s var(--eo), filter 0.3s ease;
}
[data-lightbox]:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

/* SMALL — 480px (small phones) */
@media (max-width: 480px) {
  .hero__t,
  .hero__t--sm { font-size: 1.55rem !important; }
  .hero__d { font-size: 0.85rem; }
  .st { font-size: 1.2rem; }

  /* Stats: drop to single column on tiny screens */
  .stats { grid-template-columns: 1fr !important; }

  /* Amenities: single column */
  .amenities { grid-template-columns: 1fr !important; }

  /* Topic cards: smaller padding */
  .tpc__b { padding: 0.85rem 1rem 1rem !important; }

  /* Filter pills: small */
  .ft { padding: 0.45rem 0.75rem !important; font-size: 0.72rem !important; }

  /* Tile grid: 1 column on smallest */
  .do-tile-grid--3col,
  .do-tile-grid--4col,
  .do-tile-grid--6col { grid-template-columns: repeat(2, 1fr) !important; }

  /* Legend stories: drop-cap smaller */
  .do-lsl__content p:first-child::first-letter { font-size: 2.6rem; padding: 0.25rem 0.4rem 0 0; }
}

/* =================================================================
   ATRACTII LIST — split layout: cards left, category rail right
   (Natură + Cultură & Istorie panels)
   ================================================================= */
.atr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  align-items: start;
}
.atr__main {
  min-width: 0;
}
.atr__main .lgrid {
  grid-template-columns: repeat(2, 1fr);
}
.atr__side {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.atr__side-ey {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.atr__side-ey::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.acat {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  border-radius: var(--rxl);
  overflow: hidden;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.acat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.acat__m {
  position: absolute;
  inset: 0;
}
.acat__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.acat:hover .acat__m img {
  transform: scale(1.06);
}
.acat__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 46, 26, 0.92) 0%,
    rgba(26, 46, 26, 0.42) 55%,
    rgba(26, 46, 26, 0.08) 100%
  );
  transition: background 0.35s ease;
}
.acat__c {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
  color: #fff;
}
.acat__ic {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
.acat__ey {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.3rem;
}
.acat__t {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.acat__d {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}
.acat__lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}
.acat:hover .acat__lnk {
  color: var(--lime);
  border-color: var(--lime);
}
@media (max-width: 1024px) {
  .atr {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .atr__side {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .atr__side-ey {
    grid-column: 1 / -1;
  }
  .acat {
    min-height: 210px;
  }
}
@media (max-width: 768px) {
  .atr__main .lgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .atr__side {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   404 PAGE — ghost numeral hero + search
   ================================================================= */
.e404 {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.e404 .hero__c {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}
.e404 .hero__ey {
  justify-content: center;
}
.e404 .hero__acts {
  justify-content: center;
}
.e404__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: clamp(14rem, 38vw, 34rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.e404-search {
  display: flex;
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.e404-search__inp {
  flex: 1;
  min-width: 0;
  padding: 14px 22px;
  border: 1.5px solid var(--line-s);
  border-radius: var(--rp);
  background: var(--white);
  font-family: var(--fb);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.e404-search__inp::placeholder {
  color: var(--text-faint);
}
.e404-search__inp:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(107, 139, 74, 0.15);
}
.e404-search__btn {
  padding: 14px 30px;
  border: none;
  border-radius: var(--rp);
  background: var(--accent);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.e404-search__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .e404-search {
    flex-direction: column;
  }
  .e404-search__btn {
    width: 100%;
  }
  .e404__num {
    font-size: 11rem;
  }
}

/* =================================================================
   MEȘTERI POPULARI — craftsmen grid (blocks/mesteri-grid)
   ================================================================= */
.mst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mst {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rxl);
  overflow: hidden;
  transition:
    transform 0.35s var(--eo),
    box-shadow 0.35s var(--eo);
}
.mst:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.mst__photo {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--cream);
}
.mst__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--eo);
}
.mst:hover .mst__photo img {
  transform: scale(1.05);
}
.mst__photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--earth-100), var(--earth-400));
  color: var(--earth-800);
}
.mst__photo-ph svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}
.mst__craft {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--rp);
}
.mst__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.mst__name {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.mst__loc {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.mst__loc svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}
.mst__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.mst__lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.mst__lnk:hover {
  color: var(--green-800);
  border-color: var(--green-800);
}
@media (max-width: 1024px) {
  .mst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .mst-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   IMAGE FEATURE — big image with title + caption (blocks/image-feature)
   ================================================================= */
.imgf__fig {
  margin: 1.5rem 0 0;
}
.imgf__fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rxl);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}
.imgf__zoom {
  display: block;
  border-radius: var(--rxl);
  overflow: hidden;
}
.imgf__cap {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}
/* Full-bleed alignment: image escapes the container nicely */
.imgf.alignfull .ctn {
  max-width: none;
  padding: 0;
}
.imgf.alignfull .imgf__fig img,
.imgf.alignfull .imgf__zoom {
  border-radius: 0;
}
.imgf.alignfull .rv,
.imgf.alignfull .imgf__cap {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* =================================================================
   FOOTER SPONSORS + SUPPORT CTA (Features 1 & 2)
   ================================================================= */
/* Sponsors strip — sits under footer grid, above copyright bar */
.ftr-sponsors {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ftr-sponsors__ey {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-bottom: 1.5rem;
}
.ftr-sponsors__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.ftr-sponsors__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ftr-sponsors__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition:
    filter 0.35s var(--eo),
    opacity 0.35s var(--eo),
    transform 0.35s var(--eo);
}
.ftr-sponsors__item:hover .ftr-sponsors__logo {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* Support CTA — footer variant (larger, centered, above sponsors) */
.ftr-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ftr-support__slogan {
  max-width: 640px;
  margin: 0;
  text-align: center;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--stone);
}
.btn--support svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s var(--eo);
}
.btn--support:hover svg {
  transform: scale(1.15);
}
.ftr-support .btn--support {
  padding: 16px 38px;
  font-size: 0.9rem;
}

/* Support CTA — header variant (compact, next to lang switcher) */
.hdr-support {
  padding: 9px 18px;
  font-size: 0.72rem;
}
.hdr-support svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 600px) {
  /* On small screens keep only the heart icon to save space */
  .hdr-support {
    padding: 9px 12px;
  }
  .hdr-support__txt {
    display: none;
  }
}

/* =================================================================
   EVENT CALENDAR (blocks/event-calendar + archive)
   ================================================================= */
.do-cal-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.do-cal {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rxl);
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.do-cal--loading {
  opacity: 0.45;
  pointer-events: none;
}
.do-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--green-900);
  color: #fff;
}
.do-cal__title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
}
.do-cal__nav {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.do-cal__nav:hover {
  background: var(--lime);
  color: var(--green-900);
  transform: translateY(-1px);
}
.do-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.do-cal__wd {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.75rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.do-cal__cell {
  min-height: 92px;
  padding: 6px 6px 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.do-cal__cell:nth-child(7n) {
  border-right: none;
}
.do-cal__cell--empty {
  background: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(0,0,0,0.015) 6px, rgba(0,0,0,0.015) 12px);
}
.do-cal__num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}
.do-cal__cell--today .do-cal__num {
  background: var(--accent);
  color: #fff;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.do-cal__cell--has {
  background: var(--green-100);
}
.do-cal__events {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.do-cal__events a {
  display: block;
  font-size: 0.68rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
  background: var(--green-800);
  border-radius: 5px;
  padding: 3px 6px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    background 0.18s var(--eo),
    color 0.18s var(--eo),
    transform 0.18s var(--eo);
  transition: background 0.18s ease;
}
.do-cal__events a:hover,
.do-cal__events a:focus-visible {
  background: var(--lime);
  color: var(--green-900);
  transform: translateX(2px);
}
.do-cal-filter {
  justify-content: center;
}

/* List view (upcoming) */
.do-cal-list {
  max-width: 720px;
  margin: 0 auto;
}
.do-cal-list__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--rl);
  margin-top: 0.75rem;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.do-cal-list__item:hover {
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}
.do-cal-list__date {
  flex-shrink: 0;
  width: 58px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--r);
  padding: 0.5rem 0;
  line-height: 1.1;
}
.do-cal-list__day {
  display: block;
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
}
.do-cal-list__mon {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.do-cal-list__body {
  flex: 1;
  min-width: 0;
}
.do-cal-list__title {
  display: block;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}
.do-cal-list__loc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
}
.do-cal-list__arr {
  color: var(--accent);
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .do-cal__cell {
    min-height: 64px;
  }
  .do-cal__events a {
    font-size: 0;
    padding: 0;
    height: 6px;
    border-radius: 3px;
  }
  .do-cal__wd {
    font-size: 0.6rem;
  }
}

/* =================================================================
   GIS MAP EMBED (blocks/gis-map)
   ================================================================= */
.gis-map__fig {
  margin: 1.5rem 0 0;
}
.gis-map__frame {
  position: relative;
  width: 100%;
  height: var(--gis-h, 560px);
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  background: var(--cream);
}
.gis-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.gis-map__cap {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}
/* Full-bleed: map spans the viewport, texts stay aligned to container */
.gis-map.alignfull .ctn {
  max-width: none;
  padding: 0;
}
.gis-map.alignfull .gis-map__frame {
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.gis-map.alignfull .rv,
.gis-map.alignfull .gis-map__cap {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 600px) {
  .gis-map__frame {
    height: 70vh;
    min-height: 360px;
  }
}

/* =================================================================
   HOMEPAGE HERO — logo as focal point (replaces text title)
   ================================================================= */
.hero__logo-wrap {
  margin: 0 0 1.5rem;
  line-height: 0;
}
.hero__logo {
  width: clamp(230px, 32vw, 400px);
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.45));
}
@media (max-width: 600px) {
  .hero__logo {
    width: clamp(190px, 62vw, 280px);
  }
  .hero__logo-wrap {
    margin-bottom: 1rem;
  }
}

/* =================================================================
   PRESS ARCHIVE — collapsible year groups (archive-do_press_mention)
   ================================================================= */
.do-press-years {
  max-width: 1100px;
  margin: 0;
}
.do-press-year {
  border: 1px solid var(--line);
  border-radius: var(--rl);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
}
.do-press-year[open] {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}
.do-press-year__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  background: var(--cream);
  transition: background 0.18s ease;
}
.do-press-year__head::-webkit-details-marker {
  display: none;
}
.do-press-year__head:hover {
  background: var(--green-100);
}
.do-press-year__y {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.do-press-year__count {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-900);
  background: var(--lime);
  border-radius: var(--rp);
  padding: 4px 12px;
}
.do-press-year__chev {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--green-800);
  transition: transform 0.3s var(--eo);
}
.do-press-year[open] .do-press-year__chev {
  transform: rotate(180deg);
}
.do-press-year .do-press-list {
  padding: 0.5rem 1.5rem 1rem;
}
@media (max-width: 600px) {
  .do-press-year__head {
    padding: 0.9rem 1.1rem;
    gap: 0.6rem;
  }
  .do-press-year__y {
    font-size: 1.25rem;
  }
  .do-press-year__count {
    font-size: 0.7rem;
    padding: 3px 9px;
  }
}

/* =================================================================
   MEDIA + TEXT side-by-side (blocks/media-text)
   ================================================================= */
.do-mt {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.do-mt--3-1 { grid-template-columns: 3fr 1fr; }
.do-mt--2-1 { grid-template-columns: 2fr 1fr; }
.do-mt--1-1 { grid-template-columns: 1fr 1fr; }
.do-mt--imgright .do-mt__media { order: 2; }
.do-mt__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rxl);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}
.do-mt__zoom {
  display: block;
  border-radius: var(--rxl);
  overflow: hidden;
}
.do-mt__text .ey { margin-bottom: 0.75rem; }
.do-mt__text .st { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.do-mt__text .prose { max-width: none; }
@media (max-width: 900px) {
  .do-mt,
  .do-mt--3-1,
  .do-mt--2-1,
  .do-mt--1-1 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .do-mt--imgright .do-mt__media { order: 0; }
}

/* =================================================================
   ARTICLE CARDS — date + read-more button (blocks/articles-grid)
   ================================================================= */
.cd__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
}
.cd__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.cd__more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-900);
  background: var(--lime);
  border-radius: var(--rp);
  padding: 6px 14px;
  white-space: nowrap;
  transition: background 0.18s var(--eo), transform 0.18s var(--eo);
}
.cd:hover .cd__more {
  background: #fff;
  transform: translateX(2px);
}

/* =================================================================
   PARTNERS STRIP (blocks/partners-strip)
   ================================================================= */
.ptrs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2.5rem 0 1rem;
}
.ptrs-strip__item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
a.ptrs-strip__item:hover {
  transform: translateY(-2px);
}
.ptrs-strip__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.25s ease;
}
a.ptrs-strip__item:hover .ptrs-strip__logo {
  opacity: 1;
}
.ptrs-strip__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.25s ease;
}
a.ptrs-strip__item:hover .ptrs-strip__label {
  color: var(--green-800);
}
@media (max-width: 600px) {
  .ptrs-strip { gap: 1.75rem; }
  .ptrs-strip__logo { height: 38px; }
  .ptrs-strip__label { font-size: 0.72rem; }
}

/* Activity card short description */
.lcard__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Text section — wide single column (large layout) */
.prose--wide {
  max-width: 960px;
}

/* ===== SPEC TABLE (do/spec-table) ===== */
.do-spec-table {
  margin: 1.5rem 0;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.do-spec-table__title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0 0 1rem;
}
.do-spec-table__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.6rem;
  margin: 0;
}
.do-spec-table__row {
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.do-spec-table__lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.do-spec-table__val {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.15;
  margin: 0.15rem 0 0;
}
@media (max-width: 640px) {
  .do-spec-table { padding: 1rem 1.25rem; }
  .do-spec-table__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CLIMBING ZONES (do/climbing-zones) — foto sus + conținut jos ===== */
.do-climb-zones {
  display: grid;
  gap: 1.75rem;
}
.do-climb-zones--2 { grid-template-columns: repeat(2, 1fr); }
.do-climb-zones--3 { grid-template-columns: repeat(3, 1fr); }
.do-climb-zone {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.do-climb-zone:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.do-climb-zone__m {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.do-climb-zone__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.do-climb-zone:hover .do-climb-zone__m img { transform: scale(1.05); }
.do-climb-zone__c {
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.do-climb-zone__t {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 0;
  line-height: 1.15;
}
.do-climb-zone__desc {
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}
.do-climb-zone__stats {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.do-climb-zone__stats li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  color: var(--green-700, #3A5C28);
}
.do-climb-zone__stats li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--green-500, #6B8B4A);
  font-size: 0.75rem;
  top: 0.15em;
}
.do-climb-zone__btn {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 780px) {
  .do-climb-zones--2,
  .do-climb-zones--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   TEXT BLOCKS — lead-text, two-col-text, callout, key-points
   ============================================================ */

/* ---- 📖 Intro Editorial (do/lead-text) ---- */
.do-lead__in {
  max-width: 860px;
}
.do-lead__in--left   { margin: 0; text-align: left; }
.do-lead__in--center { margin: 0 auto; text-align: center; }
.do-lead__title {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.do-lead__text {
  font-family: var(--fa);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  margin: 0;
}
.do-lead__in--dropcap .do-lead__text::first-letter {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--accent);
  float: left;
  font-size: 3.6em;
  line-height: 0.82;
  padding: 0.05em 0.12em 0 0;
}
.do-lead__in--center.do-lead__in--dropcap .do-lead__text::first-letter {
  float: none;
  padding: 0;
}

/* ---- 🧾 Text pe Două Coloane (do/two-col-text) ---- */
.do-2col__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.do-2col__aside--sticky {
  position: sticky;
  top: 6rem;
}
.do-2col__title {
  margin-top: 0.35rem;
}
.do-2col__lead {
  font-family: var(--fa);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin-top: 0.9rem;
}
.do-2col__body p {
  margin-bottom: 1.1rem;
}
.do-2col__body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .do-2col__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .do-2col__aside--sticky { position: static; }
}

/* ---- 📌 Casetă Notă (do/callout) ---- */
.do-callout {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}
.do-callout__ic {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
}
.do-callout__ic svg { width: 26px; height: 26px; display: block; }
.do-callout__title {
  font-weight: 700;
  margin: 0;
  font-size: 0.98rem;
}
.do-callout__text {
  margin: 0.15rem 0 0;
  color: var(--text);
  line-height: 1.6;
}
.do-callout--info    { background: var(--sky-100);   border-left-color: var(--sky-500); }
.do-callout--info    .do-callout__ic, .do-callout--info .do-callout__title    { color: var(--sky-700); }
.do-callout--tip     { background: var(--green-100); border-left-color: var(--green-500); }
.do-callout--tip     .do-callout__ic, .do-callout--tip .do-callout__title     { color: var(--green-800); }
.do-callout--warning { background: #FFF3E0;          border-left-color: var(--earth-400); }
.do-callout--warning .do-callout__ic, .do-callout--warning .do-callout__title { color: var(--earth-600); }
.do-callout--success { background: #E8F5ED;          border-left-color: var(--green-600); }
.do-callout--success .do-callout__ic, .do-callout--success .do-callout__title { color: #2D5F3F; }

/* ---- ✅ Puncte Cheie (do/key-points) ---- */
.do-keypoints__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem 2.5rem;
}
.do-keypoints__list--1 { grid-template-columns: 1fr; }
.do-keypoints__list--2 { grid-template-columns: 1fr 1fr; }
.do-keypoints__item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.do-keypoints__ic {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--green-500);
  margin-top: 2px;
}
.do-keypoints__ic svg { width: 24px; height: 24px; display: block; }
.do-keypoints__tx {
  line-height: 1.6;
  color: var(--text);
}
@media (max-width: 680px) {
  .do-keypoints__list--2 { grid-template-columns: 1fr; }
}

/* ===== ICON CARDS (do/icon-cards) — icon + titlu + text + sponsori ===== */
.do-iconcards__grid {
  display: grid;
  gap: 1.1rem;
}
.do-iconcards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-iconcards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-iconcards__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-iconcard {
  background: var(--white, #fefcf9);
  border: 1px solid var(--card-line, rgba(26, 46, 26, 0.08));
  border-radius: var(--rxl, 24px);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.06), 0 10px 30px rgba(26, 46, 26, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.do-iconcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 46, 26, 0.12);
}
.do-iconcard__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft, rgba(58, 92, 40, 0.1));
  color: var(--accent, #3a5c28);
  margin-bottom: 1rem;
}
.do-iconcard__ic svg { width: 23px; height: 23px; display: block; }
.do-iconcard__title {
  font-family: var(--fd);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--green-900, #1a2e1a);
  line-height: 1.25;
  margin: 0 0 0.45rem;
}
.do-iconcard__text {
  font-size: 0.92rem;
  color: var(--text-light, #7a7a7a);
  line-height: 1.6;
  margin: 0;
}
.do-iconcard__sponsors {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--earth-600, #8a6d42);
}
@media (max-width: 900px) {
  .do-iconcards__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .do-iconcards__grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .do-iconcards__grid--2,
  .do-iconcards__grid--3,
  .do-iconcards__grid--4 { grid-template-columns: 1fr; }
}

/* ===== STATUS LIST (do/status-list) — rânduri cu indicator + etichetă ===== */
.do-statuslist__grid {
  display: grid;
  gap: 0.9rem;
}
.do-statuslist__grid--1 { grid-template-columns: 1fr; }
.do-statuslist__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-statusrow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  background: var(--white, #fefcf9);
  border: 1px solid var(--card-line, rgba(26, 46, 26, 0.08));
  border-radius: var(--rl, 16px);
  padding: 1.05rem 1.35rem;
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.06), 0 10px 30px rgba(26, 46, 26, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.do-statusrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 46, 26, 0.1);
}
.do-statusrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--lime, #bed431);
}
.do-statusrow__dot--active  { background: var(--lime, #bed431);      box-shadow: 0 0 0 4px rgba(190, 212, 49, 0.30); }
.do-statusrow__dot--planned { background: var(--earth-400, #bfa06a); box-shadow: 0 0 0 4px rgba(191, 160, 106, 0.30); }
.do-statusrow__dot--done    { background: var(--sky-500, #4e8ba0);   box-shadow: 0 0 0 4px rgba(78, 139, 160, 0.30); }
.do-statusrow__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900, #1a2e1a);
  margin: 0;
  line-height: 1.3;
}
.do-statusrow__text {
  font-size: 0.86rem;
  color: var(--text-light, #7a7a7a);
  margin: 0.15rem 0 0;
  line-height: 1.55;
}
.do-statusrow__chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent, #3a5c28);
  background: var(--accent-soft, rgba(58, 92, 40, 0.12));
  border-radius: var(--rp, 100px);
  padding: 0.28rem 0.7rem;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .do-statuslist__grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .do-statusrow { grid-template-columns: auto 1fr; }
  .do-statusrow__chip { grid-column: 2; justify-self: start; margin-top: 0.2rem; }
}

/* ===== CTA COVER (do/cta-cover) — panou rotunjit cu imagine de fundal ===== */
.do-ctacover {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--rxl, 24px);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  color: #f4f1e6;
  background: var(--green-900, #1a2e1a);
}
.do-ctacover__img { position: absolute; inset: 0; z-index: -2; }
.do-ctacover__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.do-ctacover__ov { position: absolute; inset: 0; z-index: -1; }
.do-ctacover--green .do-ctacover__ov {
  background: linear-gradient(150deg, rgba(38, 64, 31, 0.86), rgba(16, 28, 12, 0.92));
}
.do-ctacover--dark .do-ctacover__ov {
  background: linear-gradient(150deg, rgba(10, 14, 8, 0.62), rgba(10, 14, 8, 0.85));
}
.do-ctacover--center { text-align: center; }
.do-ctacover__ey {
  color: var(--lime, #bed431);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
.do-ctacover__t {
  color: #fff;
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  max-width: 20ch;
}
.do-ctacover--center .do-ctacover__t { margin-inline: auto; }
.do-ctacover__d {
  color: rgba(244, 241, 230, 0.85);
  font-family: var(--fa);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0.7rem 0 0;
  max-width: 52ch;
}
.do-ctacover--center .do-ctacover__d { margin-inline: auto; }
/* Carduri info opționale (ex: „Persoane fizice" / „Organizații") */
.do-ctacover__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.do-ctacover__card {
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.do-ctacover__card-t {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0.3rem;
}
.do-ctacover__card-d {
  font-family: var(--fb);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(244, 241, 230, 0.82);
  margin: 0;
}
.do-ctacover__card-d a { color: var(--lime, #bed431); text-decoration: underline; }
.do-ctacover__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.do-ctacover--center .do-ctacover__btns { justify-content: center; }
.do-ctacover__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.3rem;
  border-radius: var(--rp, 100px);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.do-ctacover__btn svg { width: 17px; height: 17px; }
.do-ctacover__btn--lime {
  background: var(--lime, #bed431);
  color: #16240f;
}
.do-ctacover__btn--lime:hover { background: #fff; transform: translateY(-1px); }
.do-ctacover__btn--white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.do-ctacover__btn--white:hover { background: #fff; color: #16240f; transform: translateY(-1px); }

/* ===== PROJECTS ACCORDION (do/projects-accordion) — listă cu detalii inline ===== */
.do-projacc__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.do-projacc__list { display: grid; gap: 0.7rem; }
.do-projacc__item {
  background: var(--white, #fefcf9);
  border: 1px solid var(--card-line, rgba(26, 46, 26, 0.08));
  border-radius: var(--rl, 16px);
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.do-projacc__item[open] { box-shadow: 0 12px 30px rgba(26, 46, 26, 0.1); }
.do-projacc__summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 1.35rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.do-projacc__summary::-webkit-details-marker { display: none; }
.do-projacc__summary:focus-visible {
  outline: 2px solid var(--accent, #3a5c28);
  outline-offset: -2px;
  border-radius: var(--rl, 16px);
}
.do-projacc__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900, #1a2e1a);
  line-height: 1.3;
}
.do-projacc__chev {
  width: 20px;
  height: 20px;
  color: var(--text-light, #7a7a7a);
  transition: transform 0.25s ease;
}
.do-projacc__item[open] .do-projacc__chev { transform: rotate(180deg); }
.do-projacc__panel {
  padding: 0 1.35rem 1.4rem;
  /* start below the summary; the dot column width keeps text aligned */
  padding-left: calc(1.35rem + 10px + 1.1rem);
  animation: doProjAccIn 0.28s ease;
}
@keyframes doProjAccIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.do-projacc__lead {
  font-family: var(--fa);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-mid, #555);
  margin: 0 0 0.5rem;
}
.do-projacc__text {
  color: var(--text, #2e2e2e);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.do-projacc__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1.5rem;
  margin: 0 0 1rem;
}
.do-projacc__meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line, rgba(0, 0, 0, 0.08));
}
.do-projacc__meta-row dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-500, #6b8b4a);
}
.do-projacc__meta-row dd {
  margin: 0;
  color: var(--text, #2e2e2e);
  font-weight: 600;
}
.do-projacc__partners { margin: 0 0 1rem; }
.do-projacc__partners-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-500, #6b8b4a);
  margin-bottom: 0.35rem;
}
.do-projacc__partners ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-mid, #555);
  line-height: 1.6;
}
.do-projacc__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent, #3a5c28);
  text-decoration: none;
}
.do-projacc__cta svg { width: 15px; height: 15px; }
.do-projacc__cta:hover { color: var(--green-900, #1a2e1a); }
@media (max-width: 560px) {
  .do-projacc__summary { grid-template-columns: auto 1fr auto; }
  .do-projacc__chev { grid-column: 3; }
  .do-projacc__summary .do-statusrow__chip { grid-column: 2; justify-self: start; margin-top: 0.2rem; }
  .do-projacc__panel { padding-left: 1.35rem; }
}

/* ===== NEWS ACCORDION (do/news-accordion) — reutilizează stilul do-projacc ===== */
.do-newsacc__ic {
  display: flex;
  align-items: center;
  color: var(--green-500, #6b8b4a);
  flex-shrink: 0;
}
.do-newsacc__ic svg { width: 20px; height: 20px; display: block; }
.do-newsacc__img {
  margin: 0 0 1.1rem;
  border-radius: var(--rl, 16px);
  overflow: hidden;
  max-width: 520px;
}
.do-newsacc__img img { width: 100%; height: auto; display: block; }
.do-newsacc__body { max-width: none; }
.do-newsacc__body > *:first-child { margin-top: 0; }
.do-newsacc__body > *:last-child { margin-bottom: 0; }

/* ===== EMERGENCY BAND (do/emergency) — bandă de urgențe/SOS ===== */
.do-sos {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  border-radius: var(--rxl, 24px);
  padding: 1.5rem 1.7rem 1.5rem 1.85rem;
  border: 1px solid;
  /* Clean inset accent bar that follows the rounded corners (instead of a
     thick left border that gets clipped oddly at the corner). */
  box-shadow: inset 5px 0 0 var(--sos-line);
}
.do-sos--warning {
  background: #fff3e0;
  border-color: rgba(191, 160, 106, .45);
  --sos-ink: #8a6d42;
  --sos-line: #bfa06a;
}
.do-sos--danger {
  background: #ffebee;
  border-color: rgba(229, 115, 115, .45);
  --sos-ink: #c62828;
  --sos-line: #e57373;
}
.do-sos__ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--sos-ink);
  background: color-mix(in srgb, var(--sos-ink) 15%, transparent);
  flex-shrink: 0;
}
.do-sos__ic svg { width: 30px; height: 30px; display: block; }
.do-sos__lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sos-ink); margin: 0;
}
.do-sos__title {
  font-family: var(--fd); font-size: 1.15rem; font-weight: 700;
  color: var(--green-900, #1a2e1a); margin: .15rem 0 .1rem;
}
.do-sos__text { color: var(--text-mid, #555); font-size: .92rem; margin: 0; }
.do-sos__nums { display: flex; gap: .6rem; flex-wrap: wrap; justify-self: end; }
.do-sos__num {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  font-family: var(--fb); font-weight: 700; letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  background: var(--green-900, #1a2e1a); color: #fff;
  padding: .7rem 1.3rem; border-radius: var(--rp, 100px); font-size: 1.02rem;
  transition: transform .18s ease, background .2s ease;
}
.do-sos__num:hover { transform: translateY(-1px); background: #000; }
.do-sos__num svg { width: 16px; height: 16px; }
.do-sos__num--out {
  background: transparent; color: var(--green-900, #1a2e1a);
  border: 2px solid currentColor; font-size: .95rem;
}
.do-sos--warning .do-sos__num--out { border-color: rgba(191, 160, 106, .8); }
.do-sos--danger .do-sos__num--out { border-color: rgba(229, 115, 115, .8); }
.do-sos__num--out:hover { transform: translateY(-1px); background: rgba(0, 0, 0, .04); }
@media (max-width: 720px) {
  .do-sos { grid-template-columns: auto 1fr; }
  .do-sos__nums { grid-column: 1 / -1; justify-self: start; }
}

/* ===== CONTACTS GRID (do/contacts-grid) — carduri de contact multiple ===== */
.do-cgrid__grid {
  display: grid;
  gap: 1.3rem;
}
.do-cgrid__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-cgrid__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-ccard {
  background: var(--white, #fefcf9);
  border: 1px solid var(--card-line, rgba(26, 46, 26, 0.08));
  border-radius: var(--rxl, 24px);
  padding: 1.7rem 1.8rem;
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.06), 0 10px 30px rgba(26, 46, 26, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.do-ccard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 46, 26, 0.12);
}
.do-ccard__ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--accent-soft, rgba(58, 92, 40, 0.12));
  color: var(--accent, #3a5c28);
  margin-bottom: 1.1rem;
}
.do-ccard__ic svg { width: 24px; height: 24px; display: block; }
.do-ccard__title {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900, #1a2e1a);
  line-height: 1.25;
  margin: 0 0 0.15rem;
}
.do-ccard__sub {
  font-size: 0.8rem;
  color: var(--text-light, #7a7a7a);
  margin: 0 0 1.1rem;
}
.do-ccard__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}
.do-ccard__row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--text, #2e2e2e);
}
.do-ccard__row svg { width: 18px; height: 18px; color: var(--green-500, #6b8b4a); flex-shrink: 0; margin-top: 0.15rem; }
.do-ccard__row a { color: var(--text, #2e2e2e); text-decoration: none; }
.do-ccard__row a:hover { color: var(--accent, #3a5c28); }
.do-ccard__row b { color: var(--green-900, #1a2e1a); font-weight: 600; font-variant-numeric: tabular-nums; }
.do-ccard__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent, #3a5c28);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.62rem 1.15rem;
  border-radius: var(--rp, 100px);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.do-ccard__cta:hover { background: var(--green-900, #1a2e1a); transform: translateY(-1px); }
.do-ccard__cta svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .do-cgrid__grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .do-cgrid__grid--2, .do-cgrid__grid--3 { grid-template-columns: 1fr; }
}

/* ===== RESOURCE LIST (do/resource-list) — publicații & rapoarte manuale ===== */
.do-reslist__group + .do-reslist__group { margin-top: 2rem; }
.do-reslist__heading {
  font-family: var(--fd);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-900, #1a2e1a);
  margin: 0 0 1rem;
}
.do-reslist__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.do-reslist__item {
  background: var(--white, #fefcf9);
  border: 1px solid var(--card-line, rgba(26, 46, 26, 0.08));
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  line-height: 1.6;
  color: var(--text, #2e2e2e);
  box-shadow: 0 1px 3px rgba(26, 46, 26, 0.05);
}

/* ===== Text links go green (per theme) across editorial content ===== */
.prose a,
.do-lead__text a,
.do-2col__body a,
.do-2col__lead a,
.do-callout__text a,
.do-keypoints__tx a,
.tl-content__desc a,
.do-reslist__item a,
.do-newsacc__body a,
.do-projacc__text a,
.do-2col__body a {
  color: var(--accent, #3a5c28);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent, #3a5c28) 35%, transparent);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.prose a:hover,
.do-lead__text a:hover,
.do-2col__body a:hover,
.do-2col__lead a:hover,
.do-callout__text a:hover,
.do-keypoints__tx a:hover,
.tl-content__desc a:hover,
.do-reslist__item a:hover,
.do-newsacc__body a:hover,
.do-projacc__text a:hover {
  color: var(--green-900, #1a2e1a);
  text-decoration-color: currentColor;
}

/* ===== VIDEO (do/video) — poster + play brandat, iframe la click ===== */
.do-video { margin: 0; }
.do-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--rxl, 24px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: var(--green-900, #1a2e1a);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.do-video__frame--plain {
  background-image: radial-gradient(120% 130% at 25% 15%, #3a5c28 0%, #22391b 50%, #0c150a 100%);
}
.do-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 12, 0.28);
  transition: background 0.2s ease;
}
.do-video__frame:hover::after { background: rgba(16, 28, 12, 0.16); }
.do-video__frame--playing { cursor: default; }
.do-video__frame--playing::after { display: none; }
.do-video__play {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: none;
  background: var(--lime, #bed431);
  color: #16240f;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.do-video__play:hover { transform: scale(1.06); background: #fff; }
.do-video__play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.do-video__play svg { width: 30px; height: 30px; margin-left: 4px; }
.do-video__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.do-video__cap {
  font-family: var(--fa);
  font-style: italic;
  color: var(--text-light, #7a7a7a);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* Icon card optional accent (bandă colorată sus + iconiță colorată) */
.do-iconcard--accent { border-top: 4px solid var(--card-accent); }
.do-iconcard--accent .do-iconcard__ic {
  background: color-mix(in srgb, var(--card-accent) 15%, transparent);
  color: var(--card-accent);
}

/* ===== GALLERY BLOCK (do/gallery) — 1 mare + mici; „+N" peste 5 =====
   .gal de bază = layout Visit Norway pentru 5 (folosit și pe single-uri).
   Aici doar layout-uri pentru sub 5, overlay-ul „+N" și pozele ascunse.
   Înălțimi fixe, compacte, ca galeria să nu ocupe prea mult din pagină. */
.gal--s1 { grid-template-columns: 1fr; grid-template-rows: auto; }
.gal--s1 .gal__i { height: 300px; }
.gal--s2 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: 230px; }
.gal--s3 { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; grid-auto-rows: 190px; }
.gal--s4 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-rows: 185px; }
.gal--s1 .gal__i:first-child,
.gal--s2 .gal__i:first-child,
.gal--s3 .gal__i:first-child,
.gal--s4 .gal__i:first-child { grid-row: auto; } /* anulează span-ul de la .gal de bază */

/* Layoutul „Visit Norway" (5 imagini, sau 5+): rânduri fixe = galerie compactă. */
.gal--s5 { grid-template-rows: 185px 185px; }
@media (max-width: 640px) {
  .gal--s5 { grid-template-rows: 130px 130px; }
  .gal--s1 .gal__i { height: 220px; }
  .gal--s2 { grid-auto-rows: 160px; }
  .gal--s3, .gal--s4 { grid-auto-rows: 140px; }
}

/* „+N" peste ultima poză vizibilă (deschide galeria completă la click) */
.gal__i--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 12, 0.6);
  z-index: 1;
}
.gal__i--more:hover::after { background: rgba(16, 28, 12, 0.48); }
.gal__more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  pointer-events: none;
}
.gal__hidden { display: none !important; }
@media (max-width: 640px) {
  .gal--s3, .gal--s4 { grid-template-columns: repeat(2, 1fr); }
  .gal--s1 { grid-template-columns: 1fr; }
}

/* ===== DUO CARDS (do/duo-cards) — 2 carduri mari, ex. Cazare / Masă ===== */
.do-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.do-duo__card {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transform: translateZ(0); /* clip corect al colțurilor de la început */
}
.do-duo__m {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(160deg, #5a7a4a, #243c1e);
}
.do-duo__m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--eo, ease);
}
.do-duo__card:hover .do-duo__m img { transform: scale(1.05); }
.do-duo__ov {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 25%, rgba(16, 26, 12, 0.55) 65%, rgba(16, 26, 12, 0.88));
}
.do-duo__c { padding: 1.8rem 2rem; width: 100%; }
.do-duo__tag {
  display: inline-block;
  background: var(--lime, #bed431);
  color: var(--green-900, #16240f);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.do-duo__t {
  font-family: "DoAmp", var(--fd);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: #fff;
}
.do-duo__d {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 40ch;
}
.do-duo__lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: var(--lime, #bed431);
  font-weight: 700;
  font-size: 0.9rem;
}
.do-duo__lnk svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.do-duo__card:hover .do-duo__lnk svg { transform: translateX(4px); }
@media (max-width: 760px) {
  .do-duo__grid { grid-template-columns: 1fr; }
  .do-duo__card { min-height: 240px; }
}

/* Buton(e) „vezi toate" sub listele (cazare, dining, atracții) */
.do-list-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

/* ===== NUMBERED CARDS (do/numbered-cards) ===== */
.do-nc--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-nc--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-nc--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-nc--dark .ey { color: var(--lime, #bed431); }
.do-nc--dark .st { color: #fbf8f1; }
.do-nc__intro { margin-bottom: 1.8rem; }
.do-nc__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.do-nc__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-nc__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-nc__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-nc__card {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 46, 26, 0.12);
  background: #fbfaf7;
}
.do-nc--dark .do-nc__card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.do-nc--cream .do-nc__card { background: #fff; }
.do-nc__num {
  flex: 0 0 auto;
  font-family: "DoAmp", var(--fd);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--green-500, #6b8b4a);
}
.do-nc--dark .do-nc__num { color: var(--green-600, #5a7a3a); }
.do-nc__body { flex: 1; min-width: 0; }
.do-nc__title {
  font-family: "DoAmp", var(--fd);
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  color: inherit;
}
.do-nc__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-mid, #555);
}
.do-nc--dark .do-nc__text { color: #a9b79c; }
.do-nc__note {
  margin-top: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 62ch;
}
.do-nc__note p { margin: 0 0 0.6rem; }
.do-nc__note p:last-child { margin-bottom: 0; }
.do-nc--dark .do-nc__note strong { color: #eaf0dd; }
@media (max-width: 900px) {
  .do-nc__grid--3, .do-nc__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .do-nc__grid, .do-nc__grid--2, .do-nc__grid--3, .do-nc__grid--4 { grid-template-columns: 1fr; }
}

/* ===== TEXT + DOWNLOADS (do/text-downloads) ===== */
.do-td--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-td--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-td--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-td__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.do-td__ey {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  color: var(--green-500, #6b8b4a);
}
.do-td--dark .do-td__ey { color: var(--lime, #bed431); }
.do-td__title {
  font-family: "DoAmp", var(--fd);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: inherit;
}
.do-td__text { font-size: 1rem; line-height: 1.75; }
.do-td__text p { margin: 0 0 0.9rem; }
.do-td__text p:last-child { margin-bottom: 0; }
.do-td--dark .do-td__text strong { color: #eaf0dd; }

.do-td__files { display: grid; gap: 0.7rem; }
.do-td__file {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(26, 46, 26, 0.12);
  background: #fbfaf7;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--eo, ease), border-color 0.25s ease, background 0.25s ease;
}
.do-td--dark .do-td__file {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.do-td--cream .do-td__file { background: #fff; }
a.do-td__file:hover {
  transform: translateY(-2px);
  border-color: var(--green-500, #6b8b4a);
}
.do-td--dark a.do-td__file:hover { border-color: var(--lime, #bed431); }
.do-td__file.is-empty { opacity: 0.75; }
.do-td__ic {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(58, 92, 40, 0.1);
  color: var(--green-800, #3a5c28);
}
.do-td--dark .do-td__ic {
  background: rgba(190, 212, 49, 0.14);
  color: var(--lime, #bed431);
}
.do-td__ic svg { width: 19px; height: 19px; }
/* Titlul și detaliul stau pe rânduri separate — nu se lipesc unul de altul. */
.do-td__fi { flex: 1; min-width: 0; display: block; }
.do-td__fname {
  display: block;
  font-family: "DoAmp", var(--fd);
  font-size: 1.05rem;
  line-height: 1.25;
}
.do-td__fmeta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--text-mid, #555);
}
.do-td--dark .do-td__fmeta { color: #a9b79c; }
.do-td__arrow {
  flex: 0 0 auto;
  color: var(--green-500, #6b8b4a);
  transition: transform 0.25s ease;
}
.do-td__arrow svg { width: 18px; height: 18px; display: block; }
a.do-td__file:hover .do-td__arrow { transform: translateY(3px); }
.do-td--dark .do-td__arrow { color: var(--lime, #bed431); }
@media (max-width: 860px) {
  .do-td__grid { grid-template-columns: 1fr; }
}

/* ===== PUBLICATION / REPORT CARDS (do/publication-cards) ===== */
.do-pub__grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.do-pub__grid--2 { grid-template-columns: repeat(2, 1fr); }
.do-pub__grid--3 { grid-template-columns: repeat(3, 1fr); }
.do-pub__grid--4 { grid-template-columns: repeat(4, 1fr); }
.do-pub__card {
  display: flex;
  flex-direction: column;
  background: var(--white, #fefcf9);
  border: 1px solid var(--line, rgba(26,46,26,.1));
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--eo, ease), box-shadow .25s ease;
}
a.do-pub__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,46,26,.14); }
.do-pub__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--green-100, #eaf2e0); }
.do-pub__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--eo, ease); }
a.do-pub__card:hover .do-pub__img img { transform: scale(1.05); }
.do-pub__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sage, #6b8b4a); }
.do-pub__ph svg { width: 46px; height: 46px; }
.do-pub__badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--green-800, #3a5c28); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  padding: .35rem .75rem; border-radius: 100px;
}
.do-pub__body { padding: 1.2rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.do-pub__title { font-family: "DoAmp", var(--fd); font-size: 1.15rem; line-height: 1.25; color: var(--green-900, #1a2e1a); margin: 0; }
.do-pub__desc { margin: 0; }
.do-pub__desc-t { font-size: .92rem; line-height: 1.55; color: var(--text-mid, #555); margin: 0; }
/* Butonul de read-more pe card alb → verde accent (nu lime). */
.do-pub .do-readmore__btn { color: var(--accent, #3a5c28); font-size: .8rem; }
/* Rând de linkuri (Vizualizează / Descarcă / custom) */
.do-pub__links {
  margin-top: auto; padding-top: .4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem;
}
.do-pub__link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--accent, #3a5c28); font-weight: 700; font-size: .85rem;
  transition: color .18s;
}
.do-pub__link:hover { color: var(--green-900, #1a2e1a); }
.do-pub__link svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .do-pub__grid, .do-pub__grid--3, .do-pub__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .do-pub__grid, .do-pub__grid--2, .do-pub__grid--3, .do-pub__grid--4 { grid-template-columns: 1fr; } }

/* ===== NEWSLETTER (do/newsletter) ===== */
.do-nl--dark  { background: var(--green-900, #1a2e1a); color: #f7f2eb; }
.do-nl--cream { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-nl--white { background: #fff; color: var(--green-900, #1a2e1a); }
.do-nl__in { display: grid; grid-template-columns: 1fr; gap: 1.6rem; max-width: 640px; text-align: center; }
.do-nl__ey { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 .5rem; color: var(--sage, #6b8b4a); }
.do-nl--dark .do-nl__ey { color: var(--lime, #bed431); }
.do-nl__title { font-family: "DoAmp", var(--fd); font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; margin: 0 auto .6rem; color: inherit; max-width: 20ch; }
.do-nl__text { font-size: 1rem; line-height: 1.6; margin: 0 auto; max-width: 46ch; color: inherit; opacity: .88; }
.do-nl__form { display: flex; gap: .5rem; max-width: 460px; margin: 0 auto; }
.do-nl__inp {
  flex: 1; min-width: 0; padding: .8rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(0,0,0,.15); background: #fff; color: #1a2e1a;
  font-family: var(--fb); font-size: .95rem; outline: none;
}
.do-nl--dark .do-nl__inp { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; }
.do-nl--dark .do-nl__inp::placeholder { color: rgba(255,255,255,.5); }
.do-nl__btn {
  flex: 0 0 auto; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime, #bed431); color: var(--green-900, #16240f);
  font-family: var(--fb); font-weight: 700; font-size: .9rem;
  padding: .8rem 1.6rem; border: none; border-radius: 100px; cursor: pointer;
  text-decoration: none; transition: transform .2s, filter .2s;
}
.do-nl__btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.do-nl__btn:disabled { opacity: .5; cursor: not-allowed; }
.do-nl__note { font-size: .78rem; opacity: .6; margin: .9rem 0 0; }
.do-nl__setup { font-size: .85rem; color: #f0c274; margin: 0 0 1rem; max-width: 52ch; margin-inline: auto; }
@media (max-width: 520px) { .do-nl__form { flex-direction: column; } .do-nl__btn { width: 100%; } }

/* ===== MANIFEST (do/manifest) ===== */
.do-mf__panel {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.4rem); isolation: isolate;
}
.do-mf--dark  .do-mf__panel { background: linear-gradient(150deg, #26401f, #101c0c); color: #f4f1e6; }
.do-mf--cream .do-mf__panel { background: #eaf2e0; color: var(--green-900, #1a2e1a); }
.do-mf--white .do-mf__panel { background: #fff; color: var(--green-900, #1a2e1a); border: 1px solid var(--line); }
.do-mf__ey { font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .7rem; color: var(--lime, #bed431); }
.do-mf--cream .do-mf__ey, .do-mf--white .do-mf__ey { color: var(--sage, #6b8b4a); }
.do-mf__title { font-family: "DoAmp", var(--fd); font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.06; margin: 0 0 .8rem; color: inherit; }
.do-mf__text { font-size: 1.05rem; line-height: 1.65; margin: 0; max-width: 56ch; opacity: .9; }
.do-mf__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .9rem; margin-top: 1.6rem; }
.do-mf__card { padding: 1.1rem 1.4rem; border-radius: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
.do-mf--cream .do-mf__card, .do-mf--white .do-mf__card { border-color: rgba(26,46,26,.12); background: rgba(26,46,26,.03); }
.do-mf__card-t { font-family: var(--fb); font-weight: 700; font-size: 1rem; margin: 0 0 .3rem; color: inherit; }
.do-mf__card-d { font-family: var(--fb); font-size: .9rem; line-height: 1.55; margin: 0; opacity: .82; }
.do-mf__card-d a { color: var(--lime, #bed431); text-decoration: underline; }
.do-mf--cream .do-mf__card-d a, .do-mf--white .do-mf__card-d a { color: var(--accent, #3a5c28); }
.do-mf__btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.do-mf__btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .92rem; padding: .85rem 1.6rem; border-radius: 100px; text-decoration: none; transition: transform .2s, filter .2s; }
.do-mf__btn--lime { background: var(--lime, #bed431); color: #16240f; }
.do-mf__btn--ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; }
.do-mf__btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.do-mf__embed { margin-top: 1.8rem; }
.do-mf__embed iframe { display: block; width: 100%; border: 0; border-radius: 14px; background: #fff; }
