/* ===================================================================
   CAR Sanitar Deva — Stylesheet principal
   Direcție: D — Institutional Premium / Community Foundation
   =================================================================== */

:root {
  /* Paletă inspirată de siglă — Light version */
  --midnight:   #2A3445;     /* charcoal cald (text primar) */
  --midnight-d: #1A2230;
  --midnight-l: #4A5466;
  --navy-soft:  #6B7384;
  --cream:      #FBF8F1;     /* paper cremos */
  --cream-2:    #F4EFDF;
  --cream-3:    #EBE2C9;
  --paper:      #FEFCF7;
  --paper-w:    #FFFFFF;
  --gold:       #E8B547;     /* mustard din siglă (înlocuiește auriul leaf) */
  --gold-d:     #C99826;
  --gold-l:     #F4D178;
  --burgundy:   #2A9D8F;     /* teal din siglă (înlocuiește burgundy) */
  --burgundy-l: #3DBBA8;
  --coral:      #E76F51;     /* coral din siglă — pentru CTA principale */
  --coral-d:    #C95A3F;
  --violet:     #7B5BA6;     /* violet din siglă — folosit rar */
  --green:      #4A8B5A;     /* verde din siglă */
  --ink:        #2A2F3A;     /* text — warm charcoal */
  --ink-2:      #4D5566;
  --ink-3:      #7B8395;
  --ink-4:      #A0A8B5;
  --line:       rgba(42,52,69,.12);
  --line-2:     rgba(42,52,69,.06);
  --line-gold:  rgba(232,181,71,.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'EB Garamond', 'Iowan Old Style', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ============ TYPOGRAPHY ============ */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -0.01em; }
.sans { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; letter-spacing: 0; }
.smcaps {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
}

/* ============ LAYOUT ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 800px) { .container { padding: 0 24px; } }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--midnight-d); color: var(--cream);
  padding: 11px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px; text-align: center;
  letter-spacing: .04em; font-weight: 500;
  border-bottom: 1px solid var(--gold);
}
.announce .seal {
  color: var(--gold); margin: 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
}

/* ============ HEADER ============ */
header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
header.site::after {
  content: ''; display: block; height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: .5;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand-monogram {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.brand-monogram img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 21px;
  color: var(--midnight); letter-spacing: -0.005em;
}
.brand-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-d);
  font-weight: 600; margin-top: 4px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2); padding: 9px 16px;
  position: relative; transition: color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--midnight); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: .02em;
  transition: all .2s ease; cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn-ghost { color: var(--midnight); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--midnight); }
.btn-midnight { background: var(--coral); color: var(--paper-w); border-color: var(--coral); }
.btn-midnight:hover { background: var(--coral-d); border-color: var(--coral-d); }
.btn-gold { background: var(--gold); color: var(--midnight-d); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-d); border-color: var(--gold-d); color: var(--paper-w); }
.btn-arrow::after { content: '→'; transition: transform .2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-lg { padding: 14px 26px; font-size: 14.5px; }

@media (max-width: 900px) { .nav-links { display: none; } }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  padding: 80px 0 64px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute;
  top: 50%; right: 5%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,153,104,.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero .breadcrumb {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-d); margin-bottom: 28px;
}
.page-hero .breadcrumb a { color: var(--ink-3); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--midnight); }
.page-hero .breadcrumb .sep { margin: 0 8px; opacity: .5; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--midnight);
  margin-bottom: 24px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--burgundy); }
.page-hero .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--ink-3);
  line-height: 1.4; max-width: 640px;
}
.page-hero .lead strong {
  font-style: normal; color: var(--midnight); font-weight: 600;
}

/* ============ HERO HOMEPAGE (centered, larger) ============ */
.hero {
  padding: 80px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,153,104,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 600; color: var(--gold-d);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--midnight);
  margin: 0 auto 28px;
  max-width: 980px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--burgundy); }
.hero h1 .members {
  font-style: italic; color: var(--gold-d); font-weight: 500;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--ink-3);
  margin-bottom: 44px;
  max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.4;
}
.hero-tagline strong { font-style: normal; color: var(--midnight); font-weight: 600; }
.hero-ctas {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
}

/* ============ ATTESTATION PANEL ============ */
.hero-attest {
  max-width: 920px; margin: 0 auto;
  background: var(--paper-w);
  border: 1px solid var(--line);
  padding: 36px 48px;
  position: relative;
}
.hero-attest::before, .hero-attest::after,
.hero-attest .attest-mid::before, .hero-attest .attest-mid::after {
  content: ''; position: absolute;
  width: 24px; height: 24px;
  border: 1.5px solid var(--gold);
}
.hero-attest::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-attest::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.hero-attest .attest-mid { position: relative; padding: 0; }
.hero-attest .attest-mid::before { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hero-attest .attest-mid::after  { bottom: -1px; left: -1px; border-right: none; border-top: none; }

.attest-label { text-align: center; margin-bottom: 24px; }
.attest-label .smcaps { color: var(--gold-d); }
.attest-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 24px; align-items: center;
}
.attest-cell { text-align: center; }
.attest-cell .num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 44px; line-height: 1;
  color: var(--midnight); letter-spacing: -0.025em; margin-bottom: 6px;
}
.attest-cell .num em { font-style: italic; color: var(--gold-d); font-size: 0.7em; }
.attest-cell .num .unit {
  font-style: italic; color: var(--ink-3);
  font-size: 0.55em; font-weight: 400;
}
.attest-cell .lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; color: var(--ink-3);
}
.attest-divider { background: var(--line-gold); align-self: stretch; }
@media (max-width: 900px) {
  .hero-attest { padding: 28px 24px; }
  .attest-grid { grid-template-columns: 1fr; gap: 18px; }
  .attest-divider { display: none; }
}

/* ============ SECTION BASE ============ */
.section { padding: 96px 0; position: relative; }
@media (max-width: 800px) { .section { padding: 64px 0; } }
.section-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-paper { background: var(--paper); }
.section-midnight { background: var(--midnight); color: var(--cream); }

.section-eyebrow-center { text-align: center; margin-bottom: 24px; }
.section-eyebrow-center .smcaps { color: var(--gold-d); }
.section-eyebrow-center::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold); margin: 14px auto 0;
}
.section-title-center {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05; color: var(--midnight);
  text-align: center; margin: 0 auto 18px;
  max-width: 880px; letter-spacing: -0.018em;
  text-wrap: balance;
}
.section-title-center em { font-style: italic; color: var(--burgundy); }
.section-sub-center {
  font-family: 'EB Garamond', serif;
  font-size: 19px; color: var(--ink-3);
  text-align: center; max-width: 680px;
  margin: 0 auto 56px; line-height: 1.55;
}

.section-eyebrow { margin-bottom: 18px; }
.section-eyebrow .smcaps { color: var(--gold-d); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05; color: var(--midnight);
  margin-bottom: 16px; letter-spacing: -0.015em;
  max-width: 720px; text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--burgundy); }

/* ============ PROSE / RICH TEXT ============ */
.prose {
  max-width: 720px;
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}
.prose > * + * { margin-top: 22px; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  color: var(--midnight);
  margin-top: 48px;
  letter-spacing: -0.015em;
}
.prose h2 em { font-style: italic; color: var(--burgundy); }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--midnight);
  margin-top: 36px;
  letter-spacing: -0.01em;
}
.prose h3 em { font-style: italic; color: var(--burgundy); }
.prose strong { color: var(--midnight); font-weight: 600; }
.prose em { color: var(--burgundy); }
.prose ul, .prose ol { padding-left: 24px; }
.prose ul li::marker { color: var(--gold); }
.prose ol li::marker { color: var(--gold-d); font-style: italic; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  font-style: italic;
  color: var(--ink-3);
  margin: 28px 0;
}
.prose a { color: var(--burgundy); border-bottom: 1px solid var(--line-gold); transition: border-color .2s; }
.prose a:hover { border-bottom-color: var(--burgundy); }

/* ============ CARDS / TILES ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.tile {
  background: var(--paper-w);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
}
.tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.tile-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--gold-d); line-height: 1;
  margin-bottom: 18px;
}
.tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 24px;
  color: var(--midnight); margin-bottom: 12px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.tile h3 em { font-style: italic; color: var(--burgundy); }
.tile p {
  font-size: 16px; color: var(--ink-3);
  line-height: 1.55;
}
.tile p strong { color: var(--midnight); font-weight: 600; }
.tile-link {
  margin-top: 18px; display: inline-flex; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--burgundy); letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px; transition: gap .2s, border-color .2s;
}
.tile-link:hover { gap: 10px; border-color: var(--burgundy); }
.tile-link::after { content: '→'; }
@media (max-width: 1024px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .tile-grid { grid-template-columns: 1fr; } }

/* ============ CATALOG ROW (Credite) ============ */
.catalog { max-width: 1080px; margin: 0 auto; }
.catalog-row {
  display: grid;
  grid-template-columns: 80px 1fr 280px 120px;
  align-items: center; gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .25s ease;
}
.catalog-row:first-child { border-top: 1px solid var(--line); }
.catalog-row:hover { padding-left: 8px; }
.catalog-row .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 38px; color: var(--gold-d); line-height: 1;
}
.catalog-row .info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 26px;
  color: var(--midnight); margin-bottom: 6px;
  line-height: 1.1; letter-spacing: -0.01em;
}
.catalog-row .info h3 em { font-style: italic; color: var(--burgundy); }
.catalog-row .info p {
  font-size: 16px; color: var(--ink-3); line-height: 1.5;
}
.catalog-row .limit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px; color: var(--ink-3); letter-spacing: .04em;
}
.catalog-row .limit .lbl {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  font-weight: 600; display: block; margin-bottom: 3px;
}
.catalog-row .dae { text-align: right; }
.catalog-row .dae .val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 32px;
  color: var(--midnight); line-height: 1; letter-spacing: -0.02em;
}
.catalog-row .dae .lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-d);
  font-weight: 600; margin-top: 4px;
}
@media (max-width: 900px) {
  .catalog-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .catalog-row .num { font-size: 28px; }
  .catalog-row .limit, .catalog-row .dae {
    grid-column: 2; text-align: left; padding-top: 10px;
    border-top: 1px solid var(--line-2); margin-top: 8px;
  }
  .catalog-row .dae .val { font-size: 22px; }
}

/* ============ COMMITS TABLE (Sprijin) ============ */
.commits {
  max-width: 1080px; margin: 0 auto;
  background: var(--paper-w);
  border: 1px solid var(--line);
  position: relative;
}
.commits::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid var(--line-gold); pointer-events: none;
}
.commits-head {
  text-align: center;
  padding: 36px 48px 28px;
  border-bottom: 1px solid var(--line-gold);
}
.commits-head .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-d);
  font-weight: 600; margin-bottom: 8px;
}
.commits-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 30px;
  color: var(--midnight); line-height: 1.15;
  letter-spacing: -0.01em;
}
.commits-head h3 em { font-style: italic; color: var(--burgundy); }
.commits-rows { padding: 18px 48px 36px; }
.commits-rows .row {
  display: grid;
  grid-template-columns: 36px 1fr 200px;
  align-items: center; gap: 28px;
  padding: 20px 0;
  border-bottom: 1px dotted var(--line);
}
.commits-rows .row:last-child { border-bottom: none; padding-bottom: 0; }
.commits-rows .row .n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--gold-d);
}
.commits-rows .row .label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 22px;
  color: var(--midnight); line-height: 1.2; letter-spacing: -0.01em;
}
.commits-rows .row .label em { font-style: italic; color: var(--burgundy); }
.commits-rows .row .am {
  text-align: right;
  font-family: 'EB Garamond', serif;
  font-style: italic; font-size: 16px; color: var(--ink-3);
}
.commits-rows .row .am strong {
  font-style: normal;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; color: var(--midnight); font-size: 22px;
}
.commits-foot {
  padding: 22px 48px 32px;
  border-top: 1px solid var(--line-gold);
  background: var(--cream); text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15.5px;
  color: var(--ink-3); line-height: 1.55;
}
@media (max-width: 800px) {
  .commits-head, .commits-rows, .commits-foot {
    padding-left: 24px; padding-right: 24px;
  }
  .commits-rows .row { grid-template-columns: 24px 1fr; gap: 12px; row-gap: 8px; }
  .commits-rows .row .am { grid-column: 2; text-align: left; }
}

/* ============ PILLARS / 4 PRINCIPII ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  transition: background .25s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper-w); }
.pillar .roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 34px; color: var(--gold-d); line-height: 1; margin-bottom: 16px;
}
.pillar .roman::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--gold); margin: 14px auto 0;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 24px;
  line-height: 1.15; color: var(--midnight);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.pillar h3 em { font-style: italic; color: var(--burgundy); }
.pillar p {
  font-size: 16px; color: var(--ink-3); line-height: 1.55;
}
.pillar p strong { color: var(--midnight); font-weight: 600; }
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; }
}

/* ============ ECHIPA — Portrete ============ */
.echipa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px; margin: 0 auto;
}
.portret { text-align: center; }
.portret-frame {
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.portret-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.portret-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,46,78,.1) 100%);
}
.portret .roman-mini {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 15px; color: var(--gold-d); margin-bottom: 4px;
}
.portret .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 24px;
  color: var(--midnight); margin-bottom: 4px;
  line-height: 1.1; letter-spacing: -0.01em;
}
.portret .role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-d); margin-bottom: 16px;
}
.portret .bio {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: var(--ink-3); margin-bottom: 14px; line-height: 1.5;
}
.portret .tel {
  font-family: 'EB Garamond', serif;
  font-size: 15px; color: var(--midnight);
  padding-top: 14px; border-top: 1px solid var(--line);
  display: inline-block; font-variant-numeric: tabular-nums;
}
.portret .tel:hover { color: var(--burgundy); }
@media (max-width: 1024px) { .echipa-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .echipa-grid { grid-template-columns: 1fr; max-width: 280px; } }

/* ============ FORMS ============ */
.form-card {
  max-width: 720px; margin: 0 auto;
  background: var(--paper-w);
  border: 1px solid var(--line);
  padding: 56px 64px;
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid var(--line-gold); pointer-events: none;
}
.form-row { margin-bottom: 24px; position: relative; z-index: 1; }
.form-row label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-d); margin-bottom: 10px;
}
.form-row label .req { color: var(--burgundy); margin-left: 3px; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--midnight);
  padding: 12px 16px;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  appearance: none;
  border-radius: 0;
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-row .help {
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px; color: var(--ink-3);
}
.form-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 5px; accent-color: var(--gold);
}
.form-checkbox a { color: var(--burgundy); text-decoration: underline; }
.form-actions {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; gap: 14px; align-items: center;
}
.form-disclaimer {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13.5px;
  color: var(--ink-3); line-height: 1.55;
}
@media (max-width: 800px) { .form-card { padding: 32px 24px; } }

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 96px 0;
  text-align: center;
  background: var(--cream-2);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.04;
  color: var(--midnight);
  margin-bottom: 22px;
  max-width: 760px; margin-left: auto; margin-right: auto;
  letter-spacing: -0.018em; text-wrap: balance;
}
.cta-final h2 em { font-style: italic; color: var(--burgundy); }
.cta-final h2 .gold-amount { color: var(--gold-d); font-style: italic; }
.cta-final p {
  font-family: 'EB Garamond', serif;
  font-size: 19px; color: var(--ink-3);
  max-width: 560px; margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-final .ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer.site {
  background: var(--midnight-d);
  color: rgba(247,242,231,.8);
  padding: 72px 0 28px;
}
footer.site .container {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
}
footer.site .brand-foot .brand { margin-bottom: 22px; }
footer.site .brand-foot .brand-name { color: var(--cream); }
footer.site .brand-foot .brand-sub { color: var(--gold); }
footer.site .brand-foot .brand-monogram {
  background: var(--midnight);
  box-shadow: 0 0 0 4px var(--midnight-d), 0 0 0 5px var(--gold);
  border-color: var(--gold);
}
footer.site .ft-desc {
  font-family: 'EB Garamond', serif;
  font-size: 16px; line-height: 1.6;
  margin-bottom: 22px;
  max-width: 360px;
}
footer.site .addr {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px; color: rgba(247,242,231,.6);
  line-height: 1.8;
}
footer.site .addr strong { color: var(--cream); font-weight: 600; }
footer.site h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
footer.site ul { list-style: none; display: grid; gap: 11px; }
footer.site ul a {
  font-family: 'EB Garamond', serif;
  font-size: 15.5px; color: rgba(247,242,231,.78);
  transition: color .2s ease;
}
footer.site ul a:hover { color: var(--gold); }
footer.site .bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(184,153,104,.2);
  margin-top: 36px; padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; color: rgba(247,242,231,.5);
  letter-spacing: .04em;
}
footer.site .bottom .cert { color: var(--gold); }
@media (max-width: 1024px) { footer.site .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { footer.site .container { grid-template-columns: 1fr; } }

/* ============ ANIMATIONS ============ */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero .breadcrumb,
.page-hero h1,
.page-hero .lead { animation: rise .8s ease-out both; }
.page-hero h1 { animation-delay: .1s; }
.page-hero .lead { animation-delay: .2s; }

.hero-eyebrow { animation: rise .9s ease-out .1s both; }
.hero h1      { animation: rise .9s ease-out .2s both; }
.hero-tagline { animation: rise .9s ease-out .35s both; }
.hero-ctas    { animation: rise .9s ease-out .5s both; }
.hero-attest  { animation: rise 1.1s ease-out .55s both; }

/* ============ UTILITIES ============ */
.placeholder-img {
  position: relative;
}
.placeholder-img::after {
  content: 'foto temporară';
  position: absolute; bottom: 8px; right: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(27,46,78,.85); color: var(--cream);
  padding: 3px 8px; font-weight: 600;
  z-index: 2;
}
