/* =====================================================================
   Birou Notarial Ionuț-Bogdan Manoliu — site promoțional
   Identitate: tipăritură de act notarial. Hârtie, cerneală, alamă,
   guilloche gravat. Fără fotografii — totul desenat.
   ===================================================================== */

:root {
  --paper:      #f4efe5;
  --paper-deep: #ebe3d1;
  --card:       #fbf8f1;
  --white:      #fffdf8;
  --navy:       #1b2634;
  --navy-deep:  #131c27;
  --navy-soft:  #33404f;
  --brass:      #a8834b;
  --brass-lt:   #c9a668;
  --brass-dk:   #8a6a39;
  --ink:        #2b3038;
  --ink-soft:   #4c5158;
  --muted:      #6f6a5e;
  --rule:       #d8cfba;
  --oxblood:    #8a4a42;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Instrument Sans', -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.33, 0.1, 0.2, 1);
  --gutter: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--gutter); }
a { color: inherit; }
::selection { background: var(--brass); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--paper);
  padding: 12px 20px; font-size: 14px; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------------- tipografie ---------------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.012em;
  font-variation-settings: 'opsz' 96;
}
h2 { font-size: clamp(31px, 4.1vw, 46px); }
h3 { font-size: 21px; }

.kicker {
  display: flex; align-items: center; gap: 13px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-dk);
  margin-bottom: 16px;
  font-weight: 500;
}
.kicker::before {
  content: ''; width: 28px; height: 1px;
  background: var(--brass); flex-shrink: 0;
}
.kicker-light { color: var(--brass-lt); }
.kicker-light::before { background: var(--brass-lt); }

.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 64px;
  margin-bottom: 52px;
}
.section-aside {
  max-width: 36ch; font-size: 14.5px;
  color: var(--muted); text-align: right; padding-bottom: 6px;
}

/* ---------------- butoane ---------------- */
.btn {
  display: inline-block; position: relative;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn-brass { background: var(--brass); color: #fff; border-color: var(--brass); }
.btn-brass:hover { background: var(--brass-lt); border-color: var(--brass-lt); }
.btn-navy { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-navy:hover { background: var(--brass-dk); border-color: var(--brass-dk); color: #fff; }
.btn-ghost-light {
  background: transparent; color: #e6dcc6;
  border-color: rgba(201, 166, 104, 0.45);
}
.btn-ghost-light:hover { border-color: var(--brass-lt); color: #fff; background: rgba(201,166,104,.1); }

/* ---------------- linia de sus ---------------- */
.topline {
  background: var(--navy-deep);
  color: #9aa5b2;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.topline-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 18px;
  padding-top: 9px; padding-bottom: 9px;
}
.topline-right { display: flex; align-items: center; gap: 26px; }
.topline-tel {
  color: var(--brass-lt); text-decoration: none;
  font-weight: 600; letter-spacing: 0.08em;
}
.topline-tel:hover { color: #eddfc2; }

/* ---------------- masthead ---------------- */
.masthead {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244, 239, 229, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy);
  transition: box-shadow .3s var(--ease);
}
.masthead.is-stuck { box-shadow: 0 10px 30px -18px rgba(27,38,52,.5); }
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 15px; padding-bottom: 15px;
}
.brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand-seal {
  width: 52px; height: 52px; flex-shrink: 0; color: var(--navy);
  transition: transform .8s var(--ease);
}
.brand:hover .brand-seal { transform: rotate(180deg); }
.brand-name {
  display: block; font-family: var(--serif);
  font-size: 22px; font-weight: 500; color: var(--navy);
  line-height: 1.1; font-variation-settings: 'opsz' 72;
}
.brand-role {
  display: block; margin-top: 3px;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative; text-decoration: none;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink); padding: 5px 0;
}
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform .32s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a:not(.nav-cta):hover { color: var(--brass-dk); }
.nav-cta {
  border: 1px solid var(--navy); padding: 9px 17px !important;
  color: var(--navy); white-space: nowrap;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.nav-cta:hover { background: var(--navy); color: var(--paper); }

.nav-toggle {
  display: none; width: 42px; height: 38px;
  background: none; border: 1px solid var(--rule);
  cursor: pointer; padding: 10px 9px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: var(--navy); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: 8px var(--gutter) 20px;
}
.mobile-nav a {
  padding: 14px 0; text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-tel {
  margin-top: 14px; text-align: center;
  background: var(--navy); color: var(--paper) !important;
  font-weight: 600 !important; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 12.5px !important;
}
.mobile-nav.is-open { display: flex; }

/* ================= HERO ================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: #d5dae1;
  padding: clamp(72px, 11vw, 128px) 0 0;
  isolation: isolate;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 78% 30%, rgba(50,66,86,.55) 0%, transparent 62%);
  pointer-events: none;
}
.guilloche {
  position: absolute; z-index: -1; pointer-events: none;
  top: 50%; right: -14%;
  width: min(940px, 88vw); aspect-ratio: 1;
  transform: translateY(-56%);
  opacity: .5;
}
.guilloche svg { width: 100%; height: 100%; display: block; }

.hero-inner { position: relative; }
.hero-title {
  font-size: clamp(40px, 6.6vw, 78px);
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.022em;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 30px;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic; color: var(--brass-lt);
  font-weight: 400;
}

/* Motto — trei cuvinte, așezate monumental. Punctele în alamă,
   ca sigiliile de la capătul unui rând dintr-un act. */
.hero-motto {
  font-size: clamp(44px, 7.6vw, 92px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 34px;
}
.hero-motto .pt { color: var(--brass-lt); }
.hero-lead {
  max-width: 53ch; font-size: 17px;
  color: #b3bcc7; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-strip {
  margin-top: clamp(64px, 9vw, 108px);
  border-top: 1px solid rgba(201, 166, 104, 0.28);
  background: rgba(0,0,0,.14);
}
.hero-strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero-strip-inner > div {
  padding: 22px 30px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-strip-inner > div + div { border-left: 1px solid rgba(201,166,104,.18); }
.hs-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass-lt);
}
.hs-value { font-size: 13.5px; color: #c2cad4; }
.hs-value a { color: #e3cf9f; text-decoration: none; font-weight: 600; letter-spacing: .05em; }

/* ================= SEDIUL — galerie de planșe ================= */
section { padding: clamp(70px, 9vw, 112px) 0; }
.sediu { background: var(--paper); }

.galerie {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
}

.plate { display: flex; flex-direction: column; margin: 0; }
.p-fatada   { grid-column: span 7; }
.p-cabinet  { grid-column: span 5; grid-row: span 2; }
.p-receptie { grid-column: span 4; }
.p-cladire  { grid-column: span 3; }

.plate-frame {
  position: relative;
  flex: 1;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--rule);
  cursor: zoom-in;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.p-fatada   .plate-frame { aspect-ratio: 16 / 9; }
.p-receptie .plate-frame,
.p-cladire  .plate-frame { aspect-ratio: 3 / 2; }

/* rama interioară gravată, ca pe plăcuța de alamă */
.plate-frame::after {
  content: ''; position: absolute; inset: 11px; z-index: 2;
  border: 1px solid rgba(250, 247, 241, 0.35);
  opacity: 0; transform: scale(1.015);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.plate-frame:hover { border-color: var(--brass); box-shadow: 0 20px 40px -24px rgba(27,38,52,.55); }
.plate-frame:hover::after { opacity: 1; transform: scale(1); }

.plate img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1.4s var(--ease), filter .5s var(--ease);
  filter: saturate(0.92);
}
.plate-frame:hover img { transform: scale(1.045); filter: saturate(1); }

.plate figcaption {
  display: flex; align-items: baseline; gap: 11px;
  padding-top: 13px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.plate-num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; letter-spacing: 0.06em;
  color: var(--brass-dk); text-transform: none;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19, 28, 39, 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 56px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lb-figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lb-figure img {
  max-width: 100%; max-height: calc(100vh - 150px);
  display: block; margin: 0 auto;
  border: 1px solid rgba(201, 166, 104, 0.4);
  transform: scale(.985); transition: transform .35s var(--ease);
}
.lightbox.is-open .lb-figure img { transform: scale(1); }
.lb-figure figcaption {
  margin-top: 18px;
  font-size: 11.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass-lt);
}
.lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px;
  background: none; border: 1px solid rgba(201,166,104,.45);
  color: #e6dcc6; font-size: 26px; line-height: 1;
  cursor: pointer; transition: all .22s var(--ease);
}
.lb-close:hover { background: var(--brass); border-color: var(--brass); color: #fff; }

/* ================= SERVICII ================= */
.servicii {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.svc-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 34px;
}
.svc-filter {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: all .22s var(--ease);
}
.svc-filter:hover { border-color: var(--brass); color: var(--brass-dk); }
.svc-filter.is-active {
  background: var(--navy); border-color: var(--navy); color: var(--paper);
}

.svc-list { border-top: 1px solid var(--navy); }

.svc {
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: background .3s var(--ease);
}
.svc.is-open { background: var(--card); }
.svc.is-hidden { display: none; }

.svc > summary {
  display: grid;
  grid-template-columns: 52px 1fr auto 34px;
  align-items: center;
  gap: 16px;
  padding: 22px 18px 22px 4px;
  cursor: pointer;
  list-style: none;
  transition: padding .3s var(--ease);
}
.svc > summary::-webkit-details-marker { display: none; }
.svc > summary:hover .svc-name { color: var(--brass-dk); }

.svc-idx {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--brass-dk);
  font-variant-numeric: tabular-nums;
}
.svc-name {
  font-family: var(--serif);
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 500; color: var(--navy);
  font-variation-settings: 'opsz' 48;
  transition: color .22s var(--ease);
  line-height: 1.25;
}
.svc-fam {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--rule);
  padding: 4px 11px; white-space: nowrap;
}
.svc-sign {
  position: relative; width: 16px; height: 16px;
  justify-self: end;
}
.svc-sign::before, .svc-sign::after {
  content: ''; position: absolute;
  background: var(--brass-dk);
  transition: transform .38s var(--ease), opacity .3s;
}
.svc-sign::before { top: 50%; left: 0; width: 100%; height: 1.5px; margin-top: -.75px; }
.svc-sign::after  { left: 50%; top: 0; height: 100%; width: 1.5px; margin-left: -.75px; }
.svc.is-open .svc-sign::after { transform: rotate(90deg); opacity: 0; }
.svc.is-open .svc-sign::before { transform: rotate(180deg); }

/* Pliere animată — activă doar cu JS. Fără JS, <details> funcționează nativ. */
.js-anim .svc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .48s var(--ease);
}
.js-anim .svc.is-open .svc-body { grid-template-rows: 1fr; }
.js-anim .svc-body-inner { overflow: hidden; }
.js-anim .svc-body-inner > * {
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}
.js-anim .svc.is-open .svc-body-inner > * { opacity: 1; transform: none; }

.svc-body-inner {
  padding-left: 68px; padding-right: 60px;
}
.svc.is-open .svc-body-inner { padding-bottom: 34px; }

.svc-intro {
  font-size: 15px; color: var(--ink-soft);
  max-width: 68ch; margin-bottom: 26px;
  padding-left: 16px; border-left: 2px solid var(--brass);
}
.doc-title {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass-dk);
  margin-bottom: 14px; font-weight: 600;
}
.doc-list { list-style: none; max-width: 74ch; }
.doc-list li {
  position: relative; padding: 9px 0 9px 30px;
  font-size: 14.8px; color: var(--ink);
  border-bottom: 1px dotted var(--rule);
}
.doc-list li:last-child { border-bottom: none; }
.doc-list li::before {
  content: ''; position: absolute;
  left: 6px; top: 19px;
  width: 6px; height: 6px;
  border: 1px solid var(--brass); background: transparent;
  transform: rotate(45deg);
}
.doc-note {
  margin-top: 22px; padding: 15px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brass);
  font-size: 14px; color: var(--ink-soft);
  max-width: 74ch;
}
.doc-note strong { color: var(--navy); font-weight: 600; }
/* notă esențială, așezată înaintea listei de acte */
.doc-note-key {
  margin-top: 0; margin-bottom: 26px;
  background: var(--white);
  border-left-width: 4px;
}

/* trimitere la telefon, când lista de acte se stabilește de la caz la caz */
.doc-ask {
  margin-top: 22px;
  font-size: 14px; color: var(--muted); font-style: italic;
  max-width: 74ch;
}
.doc-ask a { color: var(--brass-dk); font-weight: 600; font-style: normal; text-decoration: none; }
.doc-ask a:hover { text-decoration: underline; }

.doc-print {
  margin-top: 22px; padding: 10px 20px;
  background: none; border: 1px solid var(--navy);
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
  cursor: pointer; transition: all .22s var(--ease);
}
.doc-print:hover { background: var(--navy); color: var(--paper); }

.svc-disclaimer {
  margin-top: 34px; font-size: 13.5px;
  color: var(--muted); font-style: italic;
  max-width: 82ch;
}
.svc-disclaimer a { color: var(--brass-dk); font-weight: 600; text-decoration: none; }

/* ================= PAȘI ================= */
.pasi {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.pas {
  background: var(--paper);
  padding: 32px 26px 34px;
  position: relative;
  transition: background .3s var(--ease);
}
.pas:hover { background: var(--card); }
.pas-num {
  display: block;
  font-family: var(--serif);
  font-size: 34px; font-weight: 500;
  color: var(--rule);
  font-variation-settings: 'opsz' 96;
  line-height: 1; margin-bottom: 18px;
  transition: color .3s var(--ease);
}
.pas:hover .pas-num { color: var(--brass); }
.pas h3 { font-size: 19px; margin-bottom: 10px; font-variation-settings: 'opsz' 40; }
.pas p { font-size: 14px; color: var(--ink-soft); }

/* ================= FAQ ================= */
.faq {
  background: var(--navy);
  color: #c8d0d9;
}
.faq-grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 72px; align-items: start;
}
.faq h2 { color: var(--white); }
.faq-aside { font-size: 14.5px; color: #96a1ae; margin: 20px 0 26px; }

.faq-list { border-top: 1px solid rgba(201,166,104,.3); }
.qa { border-bottom: 1px solid rgba(255,255,255,.1); }
.qa > summary {
  list-style: none; cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 19px; font-weight: 500;
  color: #e8eaed;
  font-variation-settings: 'opsz' 40;
  transition: color .22s var(--ease);
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--brass-lt); }
.qa > summary::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--brass-lt);
  border-bottom: 1.5px solid var(--brass-lt);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .38s var(--ease);
}
.qa.is-open > summary::after { transform: translateY(-20%) rotate(-135deg); }
.qa.is-open > summary { color: var(--brass-lt); }
.js-anim .qa-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.js-anim .qa.is-open .qa-body { grid-template-rows: 1fr; }
.js-anim .qa-body-inner { overflow: hidden; }
.qa-body-inner p {
  font-size: 14.8px; color: #a8b2be;
  max-width: 70ch; padding-bottom: 22px;
}

/* ================= CONTACT ================= */
.contact-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 84px; align-items: start;
}
.contact h2 { margin-bottom: 32px; }
.contact-list div { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.contact-list div:first-child { border-top: 1px solid var(--navy); }
.contact-list dt {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass-dk);
  margin-bottom: 7px;
}
.contact-list dd { font-size: 15.5px; color: var(--ink); }
.addr-landmark {
  display: inline-block; margin-top: 9px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--brass-dk);
  border: 1px solid var(--rule);
  padding: 5px 12px; background: var(--card);
}
.contact-list a {
  color: var(--navy); font-weight: 600;
  text-decoration: none; letter-spacing: .04em;
}
.contact-list a:hover { color: var(--brass-dk); }
.hours { border-collapse: collapse; width: 100%; max-width: 340px; }
.hours td { padding: 5px 0; font-size: 14.5px; }
.hours td:last-child { text-align: right; font-weight: 500; }
.hours .closed { color: var(--muted); font-style: italic; font-weight: 400; }
.map-link {
  display: inline-block; margin-top: 24px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--brass-dk); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 4px;
}
.map-link:hover { border-bottom-color: var(--brass); }

.plaque {
  background: var(--navy); color: #cfd6df;
  padding: 40px 36px 36px; position: relative;
  text-align: center;
  box-shadow: 0 30px 56px -26px rgba(27,38,52,.5);
}
.plaque::before {
  content: ''; position: absolute; inset: 9px;
  border: 1px solid rgba(168,131,75,.5); pointer-events: none;
}
.plaque-seal { width: 96px; height: 96px; color: var(--brass-lt); margin: 0 auto 22px; display: block; }
.plaque-name {
  font-family: var(--serif); font-size: 25px;
  color: var(--white); line-height: 1.25;
  font-variation-settings: 'opsz' 72;
}
.plaque-rule {
  width: 54px; height: 1px; background: var(--brass);
  margin: 18px auto;
}
.plaque-sub { font-size: 13.5px; line-height: 1.7; }
.plaque-muted { color: #8e99a6; font-size: 12px; margin-top: 14px; }

/* ================= FOOTER ================= */
.site-footer {
  background: var(--navy-deep); color: #8d98a6;
  border-top: 3px double var(--brass);
  padding: 50px 0; font-size: 13px; line-height: 1.9;
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-name {
  font-family: var(--serif); font-size: 19px;
  color: var(--paper); margin-bottom: 8px;
  font-variation-settings: 'opsz' 60;
}
.site-footer a { color: #c4b083; text-decoration: none; }
.site-footer a:hover { color: #e6d7b4; }
.footer-col { padding-top: 5px; }
.footer-copy { margin-top: 10px; color: #6d7885; }

/* date de identificare profesională */
.footer-ident {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(196, 176, 131, 0.22);
  font-size: 12px; line-height: 1.5;
}
.footer-ident > div { display: flex; gap: 8px; flex-wrap: wrap; padding: 3px 0; }
.footer-ident dt { color: #6d7885; }
.footer-ident dt::after { content: ':'; }
.footer-ident dd { color: #a9b3bf; font-variant-numeric: tabular-nums; }

/* ================= REVEAL ================= */
/* Ascunderea inițială se aplică doar cu JS activ, ca să nu existe
   niciodată riscul de conținut invizibil dacă scriptul nu rulează. */
.js-anim .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-anim .reveal.is-in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .pasi { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-aside { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }

  /* galeria: fațada lată sus, apoi două pe rând */
  .galerie { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .p-fatada   { grid-column: 1 / -1; }
  .p-cabinet  { grid-column: span 1; grid-row: auto; }
  .p-receptie { grid-column: span 1; }
  .p-cladire  { grid-column: 1 / -1; }
  .p-cabinet .plate-frame { aspect-ratio: 3 / 4; }
  .p-receptie .plate-frame { aspect-ratio: 3 / 4; }
  .p-cladire .plate-frame { aspect-ratio: 16 / 9; }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-strip-inner { grid-template-columns: 1fr; }
  .hero-strip-inner > div + div {
    border-left: none; border-top: 1px solid rgba(201,166,104,.18);
  }
  .guilloche { right: -40%; opacity: .3; width: 130vw; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .topline-addr, .topline-hours { display: none; }
  .topline-inner { justify-content: center; }
  .pasi { grid-template-columns: 1fr; }
  .svc > summary {
    grid-template-columns: 34px 1fr 24px;
    gap: 12px; padding: 18px 4px;
  }
  .svc-fam { display: none; }
  .svc-body-inner { padding-left: 46px; padding-right: 4px; }
  .brand-seal { width: 44px; height: 44px; }
  .brand-name { font-size: 19px; }
  .hero-actions .btn { flex: 1; text-align: center; padding: 15px 20px; }

  /* galeria: câte una pe rând, pe telefon */
  .galerie { grid-template-columns: 1fr; gap: 22px; }
  .p-cabinet, .p-receptie, .p-cladire, .p-fatada { grid-column: 1 / -1; }
  .p-cabinet .plate-frame { aspect-ratio: 4 / 5; }
  .p-receptie .plate-frame { aspect-ratio: 3 / 2; }
  .lb-close { top: 12px; right: 14px; width: 40px; height: 40px; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================= TIPĂRIRE ================= */
@media print {
  .topline, .masthead, .hero, .principii, .vizita, .faq,
  .contact, .site-footer, .svc-filters, .svc-disclaimer,
  .section-head, .doc-print, .skip-link, .mobile-nav { display: none !important; }

  body { background: #fff; font-size: 11.5pt; color: #000; }
  section { padding: 0; }
  .servicii { border: none; background: #fff; }

  /* la tipărire se afișează doar serviciul cerut */
  body.is-printing .svc { display: none !important; }
  body.is-printing .svc.is-print-target { display: block !important; }
  body.is-printing .svc.is-print-target .svc-body { grid-template-rows: 1fr !important; }
  body.is-printing .svc.is-print-target .svc-body-inner > * { opacity: 1 !important; transform: none !important; }

  .svc { border: none; background: #fff !important; }
  .svc > summary { padding: 0 0 10px; grid-template-columns: 1fr; }
  .svc-idx, .svc-fam, .svc-sign { display: none; }
  .svc-name { font-size: 20pt; }
  .svc-body-inner { padding: 0 !important; }
  .doc-list li { break-inside: avoid; }
  .doc-note { border: 1px solid #999; background: #fff; }

  .print-head { display: block !important; margin-bottom: 14pt; }
}

.print-head { display: none; }
.print-head .ph-name { font-family: var(--serif); font-size: 15pt; }
.print-head .ph-meta { font-size: 9pt; color: #444; }
.print-head hr { border: none; border-top: 1px solid #000; margin-top: 8pt; }
