/* ===========================================================================
   Bucovina Heritage — shared design system
   Noto Serif + Plus Jakarta Sans · charcoal-on-sand · soft radii · tonal depth
   Used by all three landing-page versions.
   =========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* surfaces */
  --white: #ffffff;
  --surface: #f9f9f9;
  --sand: #f0ece8;          /* warm parchment — "cozy" background */
  --sand-2: #e6e2de;        /* secondary container */
  --sand-3: #d9d3cb;

  /* ink */
  --ink: #1a1c1c;           /* on-surface, body text */
  --ink-2: #44474a;         /* on-surface-variant */
  --slate: #383e42;         /* primary — headings accent, buttons */
  --slate-deep: #22282c;
  --on-dark: #f0f1f1;

  /* lines (use outlines, not shadows) */
  --outline: #74777a;
  --outline-soft: rgba(116,119,122,.5);
  --outline-variant: #c4c7ca;
  --line: #e3ded8;
  --line-2: #d6cfc6;

  /* type */
  --serif: 'Noto Serif', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* radius — soft, worn edges */
  --r-sm: 4px;
  --r: 6px;
  --r-lg: 8px;

  /* rhythm */
  --section-gap: 120px;
  --container: 1280px;
  --gutter: 24px;
  --margin: 40px;

  /* the one allowed soft ambient shadow (floating actions) */
  --float-shadow: 0 14px 40px -18px rgba(34,40,44,.34);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- type scale ---- */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--ink); }
.h-xl { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 48px); line-height: 1.2; font-weight: 400; }
.h-lg { font-family: var(--serif); font-size: clamp(27px, 3.4vw, 32px); line-height: 1.3; font-weight: 400; }
.h-md { font-family: var(--serif); font-size: clamp(21px, 2.4vw, 24px); line-height: 1.4; font-weight: 400; }
.body-lg { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.body-md { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--outline);
}

/* ---- layout helpers ---- */
.wrap { width: min(var(--container), 92vw); margin: 0 auto; }
.narrow { width: min(900px, 90vw); margin: 0 auto; }
.center { text-align: center; }
.rule-v { width: 1px; height: 48px; background: var(--outline-soft); margin: 0 auto; }
.rule-h { width: 48px; height: 1px; background: var(--outline-soft); }

/* ---- buttons ---- */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--r-sm); cursor: pointer;
  border: 1px solid var(--slate); background: var(--slate); color: #fff;
  display: inline-flex; align-items: center; gap: 9px; transition: background .25s, color .25s, border-color .25s;
}
.btn:hover { background: var(--slate-deep); border-color: var(--slate-deep); }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--slate); }
.btn-ghost:hover { background: var(--slate); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---- language toggle ---- */
.lang {
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .06em;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink);
  width: 42px; height: 34px; border-radius: var(--r-sm); cursor: pointer; transition: .25s;
}
.lang:hover { background: var(--slate); color: #fff; border-color: var(--slate); }

/* ---- booking form (underline-only, tactile) ---- */
.bk-form { display: grid; gap: 22px; }
.bk-form .r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bk-field { position: relative; }
.bk-field label {
  display: block; font-family: var(--sans); font-weight: 600; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--outline); margin-bottom: 8px;
}
.bk-field input, .bk-field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line-2); background: transparent;
  padding: 9px 0; font-family: var(--sans); font-size: 16px; color: var(--ink); transition: border-color .25s;
}
.bk-field input::placeholder, .bk-field textarea::placeholder { color: #a8a39c; }
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--slate); }
.bk-field input[type="date"] { color: var(--ink-2); }
.bk-field select { width: 100%; border: none; border-bottom: 1px solid var(--line-2); background: transparent; padding: 9px 0; font-family: var(--sans); font-size: 16px; color: var(--ink); cursor: pointer; }
.bk-field select:focus { outline: none; border-color: var(--slate); }
.bk-field input[readonly] { cursor: default; }

/* ---- calendar (booking picker + admin) ---- */
.cbc { width: 100%; }
.cbc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cbc-title { font-family: var(--serif); font-size: 18px; color: var(--ink); }
.cbc-nav { width: 36px; height: 36px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: transparent; color: var(--ink); cursor: pointer; font-size: 16px; transition: .2s; }
.cbc-nav:hover { background: var(--slate); color: #fff; border-color: var(--slate); }
.cbc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cbc-wd { margin-bottom: 4px; }
.cbc-w { text-align: center; font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--outline); padding: 4px 0; }
.cbc-day { aspect-ratio: 1; min-height: 38px; border: 1px solid transparent; border-radius: var(--r-sm); background: transparent; font-family: var(--sans); font-size: 14px; color: var(--ink); cursor: pointer; transition: background .15s, color .15s; display: flex; align-items: center; justify-content: center; }
.cbc-day:hover:not(:disabled):not(.cbc-start):not(.cbc-end) { background: var(--sand-2); }
.cbc-empty { visibility: hidden; cursor: default; }
.cbc-dis { color: var(--outline-variant); cursor: not-allowed; }
.cbc-today { font-weight: 700; box-shadow: inset 0 0 0 1px var(--line-2); }
.cbc-blk { color: #b3261e; background: #f6e7e5; text-decoration: line-through; cursor: not-allowed; }
.cbc-lock { color: #b3261e; background: repeating-linear-gradient(135deg, #f6e7e5 0 5px, #efd9d6 5px 10px); cursor: not-allowed; }
.cbc-partial { box-shadow: inset 0 0 0 1px #d8a; }
.cbc-start, .cbc-end { background: var(--slate); color: #fff; }
.cbc-in { background: var(--sand-2); border-radius: 0; }
.cbc-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-family: var(--sans); font-size: 12.5px; color: var(--ink-2); }
.cbc-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cbc-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.cbc-legend .i-free { background: var(--sand-2); }
.cbc-legend .i-busy { background: #f6e7e5; box-shadow: inset 0 0 0 1px #e3bdb8; }
.cbc-legend .i-sel { background: var(--slate); }

/* ---- accordion (tarife) ---- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; list-style: none; padding: 26px 4px; transition: color .2s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary .t { font-family: var(--serif); font-size: clamp(20px, 2.3vw, 24px); color: var(--slate); }
.acc summary .chev { color: var(--outline); transition: transform .3s; flex-shrink: 0; }
.acc details[open] summary .chev { transform: rotate(180deg); }
.acc .acc-body { padding: 0 4px 28px; color: var(--ink-2); }
.acc .acc-body .d { font-family: var(--serif); font-size: 17px; margin-bottom: 16px; }
.acc .acc-body ul { list-style: none; display: grid; gap: 10px; }
.acc .acc-body li { display: flex; align-items: baseline; gap: 12px; font-size: 15.5px; }
.acc .acc-body li::before { content: ""; width: 5px; height: 5px; background: var(--outline-soft); border-radius: 50%; flex-shrink: 0; transform: translateY(-3px); }

/* ---- map ---- */
.map-frame { position: relative; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.map-frame iframe { width: 100%; height: 520px; border: 0; display: block; filter: saturate(.92); }
.map-pill {
  position: absolute; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--slate); font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: .04em; padding: 13px 20px; border-radius: var(--r-sm); box-shadow: var(--float-shadow); transition: .22s;
}
.map-pill:hover { background: var(--slate); color: #fff; }

/* ---- footer ---- */
.ft { background: var(--slate-deep); color: var(--on-dark); padding: 80px 0 34px; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.ft .b2 { font-family: var(--serif); font-size: 26px; letter-spacing: .04em; color: #fff; }
.ft .tg { color: #b9bdc0; margin-top: 12px; font-size: 14.5px; line-height: 1.8; max-width: 34ch; }
.ft h4 { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #9aa0a4; margin-bottom: 16px; }
.ft a, .ft p.lk { display: block; font-size: 14.5px; line-height: 2.1; color: #cdd1d3; }
.ft a:hover { color: #fff; }
.ft-bottom { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: #8c9296; }
@media (max-width: 720px) { .ft-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===========================================================================
   Attractions carousel (Împrejurimi) + detail / gallery modal
   =========================================================================== */
.attr-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.attr-head .eyebrow { display: block; margin-bottom: 10px; }
.attr-head h2 { margin: 0; }
.attr-head .attr-lead { margin-top: 12px; max-width: 52ch; }
.attr-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; flex-shrink: 0; }
.attr-toggle { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); background: none; border: none; cursor: pointer; padding: 4px 0; border-bottom: 1px solid transparent; transition: border-color .2s; white-space: nowrap; }
.attr-toggle:hover { border-color: var(--slate); }
.attr-arrows { display: flex; gap: 10px; }
.attr-arrow { width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 18px; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; }
.attr-arrow:hover { background: var(--slate); color: #fff; border-color: var(--slate); }

.attr-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 22px; margin: 0 -4px; scrollbar-width: thin; }
.attr-track::-webkit-scrollbar { height: 8px; }
.attr-track::-webkit-scrollbar-thumb { background: var(--sand-3); border-radius: 100px; }
.attr-track.is-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); overflow: visible; scroll-snap-type: none; }

.acard2 { flex: 0 0 clamp(280px, 32%, 360px); scroll-snap-align: start; text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; padding: 0; font-family: inherit; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.attr-track.is-grid .acard2 { flex: auto; }
.acard2:hover { transform: translateY(-4px); box-shadow: var(--float-shadow); }
.acard2:focus-visible { outline: 2px solid var(--slate); outline-offset: 2px; }
.acard2-media { position: relative; height: 230px; overflow: hidden; }
.acard2-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.acard2:hover .acard2-media img { transform: scale(1.05); }
.acard2-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94); color: var(--slate); font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .04em; padding: 7px 12px; border-radius: 100px; backdrop-filter: blur(4px); max-width: calc(100% - 96px); }
.acard2-count { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; background: rgba(34,40,44,.62); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 12px; padding: 6px 10px; border-radius: 100px; backdrop-filter: blur(4px); }
.acard2-count svg { width: 14px; height: 14px; }
.acard2-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,22,.62) 0%, rgba(20,22,22,.12) 30%, transparent 52%); pointer-events: none; }
.acard2-meta { position: absolute; left: 14px; right: 14px; bottom: 13px; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #fff; }
.acard2-meta .ov { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-weight: 600; font-size: 13px; white-space: nowrap; }
.acard2-meta .ov svg { width: 15px; height: 15px; }
.acard2-meta .ov-price { background: rgba(255,255,255,.16); padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(4px); }
.acard2-foot { padding: 18px 20px 22px; }
.acard2-foot h3 { font-family: var(--serif); font-size: 23px; color: var(--ink); line-height: 1.25; }
.acard2-cat { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--outline); margin-top: 8px; }
@media (max-width: 640px) { .acard2 { flex-basis: 78vw; } }

/* ---- modal ---- */
.attr-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.attr-modal.open { display: block; }
.attr-scrim { position: absolute; inset: 0; background: rgba(20,22,22,.62); backdrop-filter: blur(3px); animation: attrFade .25s ease; }
@keyframes attrFade { from { opacity: 0; } }
.attr-dialog { position: absolute; inset: 0; margin: auto; width: min(1120px, 94vw); height: min(760px, 92vh); background: var(--white); border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: minmax(0, 1fr); box-shadow: 0 30px 90px -30px rgba(0,0,0,.6); animation: attrPop .3s cubic-bezier(.2,.8,.2,1); }
@keyframes attrPop { from { opacity: 0; transform: translateY(14px) scale(.985); } }
.attr-close { position: absolute; top: 16px; right: 16px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; }
.attr-close:hover { background: #fff; transform: rotate(90deg); }

.attr-gallery { position: relative; background: var(--slate-deep); display: flex; flex-direction: column; min-height: 0; min-width: 0; }
.attr-stage { flex: 1; min-height: 0; overflow: hidden; }
.attr-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.attr-gnav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--ink); font-size: 19px; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; }
.attr-gnav:hover { background: #fff; }
.attr-gnav.prev { left: 16px; } .attr-gnav.next { right: 16px; }
.attr-counter { position: absolute; top: 18px; left: 18px; background: rgba(34,40,44,.66); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.attr-thumbs { display: flex; gap: 8px; padding: 12px; background: rgba(0,0,0,.25); overflow-x: auto; flex-shrink: 0; }
.attr-thumb { flex: 0 0 64px; height: 48px; border: 2px solid transparent; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; padding: 0; background: none; opacity: .6; transition: .2s; }
.attr-thumb img { width: 100%; height: 100%; object-fit: cover; }
.attr-thumb:hover { opacity: 1; }
.attr-thumb.active { opacity: 1; border-color: #fff; }

.attr-info { padding: clamp(28px, 3.4vw, 48px); overflow-y: auto; min-height: 0; min-width: 0; }
.attr-info .eyebrow { display: block; margin-bottom: 12px; }
.attr-info h2 { margin: 0; }
.attr-place { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin-top: 14px; }
.attr-place svg { width: 16px; height: 16px; color: var(--slate); flex-shrink: 0; }
.attr-chip { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; background: var(--sand); color: var(--slate); font-family: var(--sans); font-weight: 600; font-size: 12.5px; padding: 8px 14px; border-radius: 100px; }
.attr-chip svg { width: 15px; height: 15px; }
.attr-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 22px 0 6px; }
.attr-facts .fact { background: var(--white); padding: 16px 18px; }
.attr-facts .fact:only-child { grid-column: 1 / -1; }
.attr-facts .fk { display: block; font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--outline); }
.attr-facts .fv { display: block; font-family: var(--serif); font-size: 17px; color: var(--slate); margin-top: 5px; }
.attr-h { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--outline); margin: 28px 0 14px; }
.attr-p { font-family: var(--serif); font-size: 16px; line-height: 1.8; color: var(--ink-2); margin-bottom: 14px; }
.attr-know { list-style: none; display: grid; gap: 11px; }
.attr-know li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.attr-know li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--slate); }

@media (max-width: 860px) {
  .attr-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .attr-controls { flex-direction: row; align-items: center; gap: 18px; }
  /* The whole dialog scrolls as one column — image on top, info flowing below —
     instead of a fixed split with a cramped inner-scroll info panel. */
  .attr-dialog { display: block; width: 94vw; height: auto; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .attr-gallery { height: 44vh; min-height: 240px; }
  .attr-info { overflow: visible; padding: 24px 22px 34px; }
  .attr-facts { grid-template-columns: 1fr; }
  /* Pin the close button so it stays reachable while the dialog scrolls. */
  .attr-close { position: fixed; top: 6vh; right: 6vw; z-index: 210; }
}
@media (max-width: 380px) {
  .attr-dialog { width: 96vw; max-height: 92vh; }
}
/* Desktop: the info column scrolls inside a fixed-height dialog. Make that
   obvious — always-visible styled scrollbar + a soft bottom fade — so long
   descriptions read as "scroll for more" instead of looking cut off. */
@media (min-width: 861px) {
  .attr-info { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
  .attr-info::-webkit-scrollbar { width: 9px; }
  .attr-info::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; border: 3px solid var(--white); }
  .attr-info::-webkit-scrollbar-track { background: transparent; }
  .attr-info::after { content: ""; position: sticky; bottom: 0; left: 0; display: block; height: 44px; margin-top: -44px; background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white)); pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) { .attr-scrim, .attr-dialog { animation: none; } .acard2:hover .acard2-media img { transform: none; } }

/* ---- language switcher dropdown ---- */
.lang-menu { position: fixed; z-index: 120; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--float-shadow); padding: 6px; min-width: 184px; display: none; }
.lang-menu.open { display: block; animation: attrFade .16s ease; }
.lang-menu button { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; background: none; border: none; padding: 10px 11px; border-radius: var(--r-sm); cursor: pointer; font-family: var(--sans); font-size: 14.5px; color: var(--ink); transition: background .15s; }
.lang-menu button:hover { background: var(--sand); }
.lang-menu button.active { color: var(--slate); font-weight: 600; }
.lang-menu .lc { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .08em; width: 24px; color: var(--outline); }
.lang-menu button.active .lc { color: var(--slate); }

/* ---- FAQ (editorial divider list) ---- */
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; padding: 22px 4px;
  font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); color: var(--ink);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--slate); }
.faq-mark { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--slate);
  transition: transform .25s ease, opacity .25s ease;
}
.faq-mark::before { top: 8px; left: 0; width: 18px; height: 2px; }   /* horizontal bar */
.faq-mark::after  { left: 8px; top: 0; width: 2px; height: 18px; }   /* vertical bar -> hidden when open */
.faq-item[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }   /* + becomes - */
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0; padding: 0 4px 24px; max-width: 64ch;
  font-family: var(--sans); color: var(--ink-2); line-height: 1.7; font-size: 15.5px;
}

/* ---- Info accordion (Detalii): circled +/- marker, prose / table / groups ---- */
.info { padding: clamp(70px,10vh,110px) 0; background: #fff; }
.acc-list { max-width: 860px; margin: 0 auto; }
.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 1px solid var(--line); }
.acc-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; padding: 26px 4px;
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 23px); color: var(--ink); transition: color .2s;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--slate); }
.acc-mark { position: relative; flex-shrink: 0; width: 34px; height: 34px; border: 1px solid var(--line-2); border-radius: 50%; transition: border-color .2s, background .2s; }
.acc-item summary:hover .acc-mark { border-color: var(--slate); }
.acc-mark::before, .acc-mark::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--slate);
  transition: transform .25s ease, opacity .25s ease;
}
.acc-mark::before { width: 13px; height: 1.5px; transform: translate(-50%, -50%); }      /* horizontal */
.acc-mark::after  { width: 1.5px; height: 13px; transform: translate(-50%, -50%); }       /* vertical -> hidden when open */
.acc-item[open] .acc-mark::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.acc-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.acc-item[open] .acc-a { grid-template-rows: 1fr; }
.acc-a-inner { overflow: hidden; }
.acc-a-inner > p, .acc-group p {
  margin: 0 0 16px; max-width: 70ch;
  font-family: var(--sans); color: var(--ink-2); line-height: 1.75; font-size: 15.5px;
}
.acc-a-inner { padding-bottom: 12px; }
.acc-group { margin-bottom: 18px; }
.acc-group h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); margin: 0 0 6px; }
.acc-group p { margin-bottom: 0; }

/* responsive table */
.acc-table-wrap { overflow-x: auto; margin: 4px 0 16px; }
.acc-table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 14.5px; }
.acc-table th, .acc-table td { text-align: left; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.acc-table th { font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--outline); }
.acc-table td { color: var(--ink-2); line-height: 1.55; }
.acc-table td:first-child { color: var(--ink); font-weight: 600; }
@media (max-width: 680px) {
  .acc-table, .acc-table tbody, .acc-table tr, .acc-table td { display: block; width: 100%; }
  .acc-table thead { display: none; }
  .acc-table tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .acc-table td { border: none; padding: 2px 0; }
  .acc-table td[data-label]::before { content: attr(data-label) " · "; font-weight: 600; color: var(--outline); }
  .acc-table td:first-child { font-size: 16px; margin-bottom: 4px; }
  .acc-table td:first-child[data-label]::before { content: ""; }
}
