/* ═══════════════════════════════════════════════════════════════
   ISO — Institutul Superior de Osteopatie
   styles.css · shared across all pages
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #1B2A4A; --navy-dark: #141f38; --navy-deep: #0f1828;
  --gold: #C8A96E; --gold-light: #d9be8a; --gold-deep: #a88a52;
  --bordo: #8B3A3A; --sapienta: #3A5A3A;
  --parchment: #F5F0E8; --cream: #E8E0D4;
  --soft-black: #2C2C2C; --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1200px; --gutter: clamp(20px, 5vw, 48px);
  --shadow-soft: 0 10px 40px rgba(27, 42, 74, 0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--parchment); color: var(--soft-black); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
.display-hero { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 7vw, 3.8rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); }
.display-h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); }
.display-h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); }
.display-h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.3; color: var(--navy); }
.overline { font-family: var(--font-body); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.lede { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.65; color: var(--soft-black); }
em.accent { font-style: italic; color: var(--gold-deep); font-weight: 500; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.actions.center { justify-content: center; }

/* ─── Scroll progress ─── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--gold); z-index: 1000; transition: width 0.1s linear; }

/* ─── Nav ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; background: rgba(245, 240, 232, 0.92); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), transform 0.35s var(--ease), padding 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: rgba(200, 169, 110, 0.25); padding: 10px 0; }
.nav.hidden { transform: translateY(-100%); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-right { display: flex; align-items: center; gap: 24px; }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .row1 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--navy); line-height: 1.15; }
.logo-text .row2 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--gold-deep); line-height: 1.15; font-style: italic; }
.footer .logo-text .row1 { color: var(--parchment); }
.footer .logo-text .row2 { color: var(--gold); }

/* Nav links + dropdown */
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links > a, .has-dropdown > button { font-size: 0.9rem; color: var(--navy); position: relative; padding: 8px 0; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.nav-links > a:hover, .nav-links > a.active, .has-dropdown.active > button, .has-dropdown > button:hover { color: var(--gold-deep); }
.nav-links > a::after, .has-dropdown > button::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--gold); transition: width 0.25s var(--ease-out); }
.nav-links > a:hover::after, .nav-links > a.active::after, .has-dropdown.active > button::after, .has-dropdown > button:hover::after { width: 100%; }
.has-dropdown { position: relative; }
.has-dropdown .caret { transition: transform 0.2s; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: -12px; min-width: 240px; background: var(--white); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; padding: 8px; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.25s var(--ease-out); z-index: 50; }
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 12px 14px; font-size: 0.88rem; color: var(--navy); border-radius: 2px; transition: background 0.2s, color 0.2s; min-height: 44px; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--cream); color: var(--gold-deep); }
.dropdown-menu a .sub { font-size: 0.72rem; color: #888; font-weight: 400; }

.nav-cta { display: none; padding: 11px 22px; background: var(--navy); color: var(--parchment); font-size: 0.88rem; letter-spacing: 0.04em; border-radius: 2px; transition: background 0.25s, transform 0.15s; border: 1px solid var(--navy); min-height: 44px; align-items: center; }
.nav-cta:hover { background: var(--navy-dark); }
.nav-cta:active { transform: scale(0.98); }
.burger { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy); }
.burger svg { width: 24px; height: 24px; }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .burger { display: none; } }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; background: var(--parchment); z-index: 99; display: flex; flex-direction: column; padding: 80px var(--gutter) 40px; transform: translateX(100%); transition: transform 0.35s var(--ease-out); overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer .close-btn { position: absolute; top: 20px; right: var(--gutter); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav > a, .drawer-group > button { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy); padding: 14px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); min-height: 44px; display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; }
.drawer-group .submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out); }
.drawer-group.open .submenu { max-height: 220px; }
.drawer-group .submenu a { display: flex; flex-direction: column; padding: 12px 16px; font-family: var(--font-body); font-size: 0.98rem; color: #555; border-bottom: 1px solid rgba(200, 169, 110, 0.15); min-height: 44px; justify-content: center; }
.drawer-group .submenu a .sub { font-size: 0.72rem; color: #999; margin-top: 2px; }
.drawer-group .caret { transition: transform 0.25s; }
.drawer-group.open .caret { transform: rotate(180deg); }
.drawer-cta { margin-top: 32px; padding: 18px 24px; background: var(--navy); color: var(--parchment); text-align: center; border-radius: 2px; font-size: 0.95rem; letter-spacing: 0.05em; min-height: 56px; display: flex; align-items: center; justify-content: center; }
.drawer-contact { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(200, 169, 110, 0.25); color: var(--soft-black); font-size: 0.9rem; line-height: 2; }

/* ─── Sections ─── */
section { padding: 72px 0; }
@media (min-width: 900px) { section { padding: 96px 0; } }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--parchment); }
.bg-navy .display-h1, .bg-navy .display-h2, .bg-navy .display-h3 { color: var(--parchment); }
.bg-navy .overline { color: var(--gold); }
.bg-navy .section-header p { color: rgba(245, 240, 232, 0.75); }
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header .overline { margin-bottom: 18px; display: inline-block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: #555; }
.divider-ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 18px; max-width: 200px; }
.divider-ornament .line { height: 1px; background: var(--gold); flex: 1; opacity: 0.6; }
.divider-ornament .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* Page hero (inner pages) */
.page-hero { padding: 140px 0 64px; background: radial-gradient(1200px 600px at 85% 10%, rgba(200, 169, 110, 0.08), transparent 60%), var(--parchment); position: relative; overflow: hidden; }
@media (min-width: 900px) { .page-hero { padding: 180px 0 96px; } }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { opacity: 0.4; }
.page-hero h1 { margin-bottom: 24px; max-width: 900px; }
.page-hero .lede { max-width: 720px; }
.page-hero-stats { display: flex; flex-wrap: wrap; gap: 32px 48px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(200, 169, 110, 0.3); }
.page-hero-stats .label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.page-hero-stats .value { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.75rem); color: var(--navy); font-weight: 500; }
.page-hero-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 72px; } }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; font-size: 0.92rem; letter-spacing: 0.05em; min-height: 52px; border-radius: 2px; transition: all 0.25s var(--ease); cursor: pointer; font-weight: 500; border: 1px solid transparent; }
.btn:active { transform: scale(0.98); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: var(--parchment); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 8px 24px rgba(27, 42, 74, 0.25); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--parchment); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ─── Home hero ─── */
.hero { padding: 140px 0 80px; background: radial-gradient(1200px 600px at 85% 10%, rgba(200, 169, 110, 0.08), transparent 60%), var(--parchment); position: relative; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 180px 0 120px; } }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 72px; } }
.hero-overline { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-overline::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.hero-title { margin-bottom: 28px; }
.hero-lede { max-width: 520px; margin-bottom: 40px; color: #4a4a4a; }
.hero-actions { margin-bottom: 48px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(200, 169, 110, 0.3); }
.hero-meta .label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.hero-meta .value { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); font-weight: 500; }
.hero-visual { display: flex; justify-content: center; align-items: center; min-height: 300px; }
.hero-seal { width: min(100%, 360px); aspect-ratio: 1; animation: sealIn 1.2s var(--ease-out); }
@keyframes sealIn { from { opacity: 0; transform: scale(0.92) rotate(-3deg); } to { opacity: 1; transform: none; } }

/* ─── Declaration / positioning ─── */
.declaration-content, .positioning-content { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); position: relative; }
.declaration .quote-mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 0.7; margin-bottom: 16px; opacity: 0.5; }
.declaration p, .positioning p { font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 2rem); font-weight: 400; line-height: 1.4; color: var(--navy); font-style: italic; }
.positioning p { color: var(--parchment); }
.positioning p em { color: var(--gold); font-weight: 500; }
.positioning .overline { margin-bottom: 24px; display: inline-block; }
.attribution { margin-top: 28px; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-style: normal; }
.bg-navy .attribution { color: var(--gold); }

/* ─── Stats ─── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.stat { text-align: center; padding: 16px 8px; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); color: var(--gold); font-weight: 500; line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 240, 232, 0.7); line-height: 1.5; }

/* ─── Cards (generic) ─── */
.card { background: var(--white); border: 1px solid rgba(200, 169, 110, 0.25); border-radius: 2px; transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.card-left { background: var(--white); border-left: 3px solid var(--gold); border-radius: 2px; transition: transform 0.25s var(--ease); }
.card-left:hover { transform: translateX(4px); }

/* Pillars */
.pillars-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar { padding: 40px 28px; }
.pillar-numeral { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); line-height: 0.9; margin-bottom: 20px; font-weight: 500; opacity: 0.85; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* Why */
.why-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 20px; padding: 28px 8px; border-bottom: 1px solid rgba(200, 169, 110, 0.25); }
.icon-ring { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.icon-ring.lg { width: 56px; height: 56px; margin: 0 auto 20px; }
.why-item h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.why-item p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* Faculty preview */
.faculty-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .faculty-grid { grid-template-columns: repeat(4, 1fr); } }
.faculty-card { padding: 24px 20px; text-align: center; }
.faculty-portrait { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, var(--parchment), var(--cream)); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-display); font-size: 3rem; font-weight: 500; border: 1px solid rgba(200, 169, 110, 0.2); }
.faculty-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: 4px; }
.faculty-title { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }

/* Testimonials */
.testimonials-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { padding: 40px 32px; position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: 12px; left: 24px; font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1; opacity: 0.4; }
.testimonial p { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; color: var(--navy); font-style: italic; margin: 20px 0 24px; }
.testimonial-author { padding-top: 16px; border-top: 1px solid rgba(200, 169, 110, 0.3); }
.testimonial-author .name { font-weight: 500; color: var(--navy); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

/* Steps (small) */
.steps-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.step { text-align: center; padding: 16px; }
.step-number { width: 56px; height: 56px; margin: 0 auto 20px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); background: var(--white); font-weight: 500; }
.step h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; font-weight: 500; }
.step p { font-size: 0.92rem; color: #555; line-height: 1.6; }

/* ─── Program page ─── */
.year-block { padding: 56px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); }
.year-block:last-child { border-bottom: none; }
.year-block.alt { background: var(--cream); margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
@media (min-width: 900px) { .year-block { padding: 80px 0; } .year-block.alt { padding: 80px var(--gutter); } }
.year-header { display: grid; gap: 24px; margin-bottom: 48px; align-items: end; }
@media (min-width: 700px) { .year-header { grid-template-columns: auto 1fr; gap: 40px; } }
.year-roman { font-family: var(--font-display); font-size: clamp(5rem, 12vw, 8rem); color: var(--gold); line-height: 0.8; font-weight: 500; letter-spacing: -0.02em; }
.year-title .overline { margin-bottom: 10px; display: inline-block; }
.year-title h2 { margin-bottom: 12px; }
.year-title p { color: #555; max-width: 640px; font-size: 1.02rem; }
.year-content { display: grid; gap: 32px; }
@media (min-width: 900px) { .year-content { grid-template-columns: 1.5fr 1fr; gap: 56px; } }
.year-subjects h4 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; font-weight: 500; }
.subject-list { display: flex; flex-direction: column; gap: 2px; }
.subject-list li { padding: 14px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; font-size: 0.98rem; color: var(--navy); }
.subject-list li:last-child { border-bottom: none; }
.subject-list .hours { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold-deep); white-space: nowrap; font-weight: 500; }
.year-side-card { background: var(--white); padding: 28px; border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; margin-bottom: 24px; }
.year-block.alt .year-side-card { background: var(--parchment); }
.year-side-card .label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.year-side-card .big { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); font-weight: 500; line-height: 1.1; margin-bottom: 8px; }
.year-side-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }
.year-milestone { padding: 20px 28px; background: var(--navy); color: var(--parchment); border-radius: 2px; border-left: 3px solid var(--gold); }
.year-milestone .label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.year-milestone p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.4; font-style: italic; }
.grid-3 { display: grid; gap: 24px; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 24px; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-4 { display: grid; gap: 24px; }
@media (min-width: 700px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.dark-card { padding: 32px 28px; background: rgba(245, 240, 232, 0.04); border: 1px solid rgba(200, 169, 110, 0.25); border-radius: 2px; }
.dark-card .num { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); font-weight: 500; line-height: 1; margin-bottom: 16px; }
.dark-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--parchment); margin-bottom: 10px; font-weight: 500; }
.dark-card p { font-size: 0.92rem; color: rgba(245, 240, 232, 0.7); line-height: 1.65; }
.info-card { padding: 40px 32px; }
.info-card .overline { margin-bottom: 16px; display: inline-block; }
.info-card h3 { margin-bottom: 16px; }
.info-card .highlight { font-family: var(--font-display); font-size: 2rem; color: var(--navy); font-weight: 500; line-height: 1.2; margin-bottom: 12px; }
.info-card p { font-size: 0.95rem; color: #555; line-height: 1.65; margin-bottom: 12px; }
.info-card li { padding: 6px 0 6px 18px; position: relative; font-size: 0.92rem; color: #555; }
.info-card li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: bold; font-size: 1.3rem; line-height: 1; top: 8px; }
.equiv-card { padding: 32px; }
.equiv-card h4 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 12px; font-weight: 500; }
.equiv-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }
.tag { display: inline-block; padding: 4px 10px; background: rgba(200, 169, 110, 0.15); color: var(--gold-deep); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; border-radius: 2px; }
.badge-card { padding: 28px 20px; text-align: center; }
.badge-card .icon-ring { width: 48px; height: 48px; margin: 0 auto 16px; }
.badge-card h5 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; font-weight: 500; }
.badge-card p { font-size: 0.82rem; color: #666; line-height: 1.5; }

/* ─── Curicula ─── */
.year-tabs { position: sticky; top: 72px; z-index: 50; background: rgba(245, 240, 232, 0.95); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); padding: 12px 0; border-top: 1px solid rgba(200, 169, 110, 0.2); border-bottom: 1px solid rgba(200, 169, 110, 0.3); margin-bottom: 48px; }
.year-tabs-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.year-tabs-inner::-webkit-scrollbar { display: none; }
.year-tab { padding: 10px 20px; font-size: 0.88rem; letter-spacing: 0.06em; color: var(--navy); transition: all 0.25s var(--ease); border-radius: 2px; white-space: nowrap; min-height: 40px; display: flex; align-items: center; gap: 8px; }
.year-tab:hover { background: rgba(200, 169, 110, 0.15); }
.year-tab.active { background: var(--navy); color: var(--parchment); }
.year-tab .roman { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); font-weight: 500; }
.legend { display: flex; flex-wrap: wrap; gap: 20px 32px; justify-content: center; margin: 0 auto 56px; padding: 24px; background: var(--white); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; max-width: 900px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #555; }
.legend-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.teorie, .module-card[data-type="teorie"] .type-dot { background: var(--navy); }
.legend-dot.practica, .module-card[data-type="practica"] .type-dot { background: var(--gold); }
.legend-dot.clinica, .module-card[data-type="clinica"] .type-dot { background: var(--sapienta); }
.legend-dot.tehnici, .module-card[data-type="tehnici"] .type-dot { background: var(--bordo); }
.legend-dot.seminar, .module-card[data-type="seminar"] .type-dot { background: #8B7455; }
.year-block-c { scroll-margin-top: 150px; padding: 48px 0 72px; border-top: 1px solid rgba(200, 169, 110, 0.25); }
.year-block-c:first-of-type { border-top: none; padding-top: 0; }
.year-header-c { display: grid; gap: 16px; margin-bottom: 40px; align-items: end; }
@media (min-width: 700px) { .year-header-c { grid-template-columns: auto 1fr auto; gap: 32px; } }
.year-header-c .year-roman { font-size: clamp(4rem, 10vw, 6rem); }
.year-info .overline { margin-bottom: 10px; display: inline-block; }
.year-info h2 { margin-bottom: 10px; }
.year-info p { color: #555; max-width: 560px; font-size: 1rem; }
.year-stats { display: grid; gap: 14px; padding: 20px 24px; background: var(--cream); border-radius: 2px; min-width: 180px; }
.year-stats .row { display: flex; justify-content: space-between; gap: 20px; font-size: 0.85rem; }
.year-stats .label { color: #666; }
.year-stats .val { color: var(--navy); font-weight: 500; font-family: var(--font-display); font-size: 1.05rem; }
.modules-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .modules-grid { grid-template-columns: repeat(3, 1fr); } }
.module-card { padding: 24px; display: flex; flex-direction: column; }
.type-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(200, 169, 110, 0.12); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border-radius: 2px; margin-bottom: 14px; align-self: flex-start; color: var(--gold-deep); }
.type-dot { width: 8px; height: 8px; border-radius: 50%; }
.module-card[data-type="teorie"] .type-badge { color: var(--navy); background: rgba(27, 42, 74, 0.08); }
.module-card[data-type="clinica"] .type-badge { color: var(--sapienta); background: rgba(58, 90, 58, 0.1); }
.module-card[data-type="tehnici"] .type-badge { color: var(--bordo); background: rgba(139, 58, 58, 0.08); }
.module-card[data-type="seminar"] .type-badge { color: #6B5A40; background: rgba(139, 116, 85, 0.1); }
.module-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
.module-card .desc { font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.module-card .meta { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(200, 169, 110, 0.25); }
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-item .label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.meta-item .value { color: var(--navy); font-weight: 500; font-size: 0.92rem; }
.milestone-banner { margin: 32px 0; padding: 24px 28px; background: var(--navy); color: var(--parchment); border-radius: 2px; border-left: 3px solid var(--gold); display: grid; gap: 8px; }
@media (min-width: 600px) { .milestone-banner { grid-template-columns: auto 1fr; gap: 24px; align-items: center; } }
.milestone-banner .icon-ring { width: 48px; height: 48px; color: var(--gold); }
.milestone-banner .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 500; }
.milestone-banner p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.4; font-style: italic; }
.download-card { max-width: 800px; margin: 0 auto; padding: 48px 40px; background: var(--white); border: 1px solid var(--gold); border-radius: 2px; text-align: center; display: grid; gap: 20px; align-items: center; }
@media (min-width: 700px) { .download-card { grid-template-columns: auto 1fr auto; text-align: left; gap: 32px; } }
.download-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; font-weight: 500; }
.download-card p { color: #555; font-size: 0.95rem; }

/* ─── Profesori ─── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 auto 48px; padding: 8px; background: var(--white); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; max-width: fit-content; }
.filter-btn { padding: 10px 20px; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--navy); transition: all 0.25s var(--ease); border-radius: 2px; min-height: 40px; }
.filter-btn:hover { background: var(--cream); }
.filter-btn.active { background: var(--navy); color: var(--parchment); }
.faculty-full-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .faculty-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .faculty-full-grid { grid-template-columns: repeat(3, 1fr); } }
.faculty-full { overflow: hidden; display: flex; flex-direction: column; }
.faculty-full.hidden { display: none; }
.faculty-full-portrait { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--parchment), var(--cream)); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid rgba(200, 169, 110, 0.3); }
.faculty-full-portrait .initial { font-family: var(--font-display); font-size: 5rem; color: var(--gold); font-weight: 500; }
.country-tag { position: absolute; top: 16px; right: 16px; padding: 5px 11px; background: var(--navy); color: var(--gold); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-radius: 2px; }
.faculty-full-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.faculty-full-body h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; font-weight: 500; }
.faculty-cred { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; font-weight: 500; }
.faculty-bio { font-size: 0.92rem; color: #555; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.faculty-meta { padding-top: 16px; border-top: 1px solid rgba(200, 169, 110, 0.25); display: grid; gap: 10px; }
.faculty-meta .row { display: grid; grid-template-columns: 1fr auto; gap: 12px; font-size: 0.82rem; align-items: center; }
.faculty-meta .label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.faculty-meta .value { color: var(--navy); font-weight: 500; text-align: right; }
.invited-list { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .invited-list { grid-template-columns: 1fr 1fr; } }
.invited-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 20px 24px; }
.invited-initial { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 500; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--parchment); border-radius: 50%; }
.invited-item .name { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: 2px; }
.invited-item .detail { font-size: 0.78rem; color: #666; }
.invited-item .detail .sep { color: var(--gold); margin: 0 6px; }
.join-card { max-width: 800px; margin: 0 auto; padding: 48px 40px; background: var(--white); border: 1px solid var(--gold); border-radius: 2px; text-align: center; }
.join-card h3 { margin-bottom: 16px; }
.join-card p { color: #555; margin: 0 auto 24px; max-width: 560px; }

/* ─── Despre ─── */
.mission-card { padding: 48px 40px; }
.mission-card .big-letter { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 0.8; margin-bottom: 24px; font-weight: 500; }
.mission-card h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy); margin-bottom: 16px; font-weight: 500; }
.mission-card p { color: #555; line-height: 1.7; }
.timeline { position: relative; padding-left: 32px; max-width: 820px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 1px; background: rgba(200, 169, 110, 0.5); }
.tl-event { position: relative; padding: 0 0 48px 24px; }
.tl-event:last-child { padding-bottom: 0; }
.tl-event::before { content: ""; position: absolute; left: -24px; top: 8px; width: 11px; height: 11px; background: var(--gold); border-radius: 50%; border: 3px solid var(--parchment); box-shadow: 0 0 0 1px var(--gold); }
.bg-cream .tl-event::before { border-color: var(--cream); }
.tl-event.active::before { background: var(--navy); box-shadow: 0 0 0 1px var(--navy), 0 0 0 5px rgba(27, 42, 74, 0.15); }
.tl-event .date { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; font-weight: 500; }
.tl-event .year { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 500; line-height: 1; margin-bottom: 10px; }
.tl-event h4 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.tl-event p { font-size: 0.98rem; color: #555; line-height: 1.7; max-width: 640px; }
.clinic-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .clinic-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.clinic-visual { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); border: 1px solid rgba(200, 169, 110, 0.3); display: flex; align-items: center; justify-content: center; position: relative; }
.clinic-visual svg { width: 50%; max-width: 240px; opacity: 0.8; }
.clinic-visual::after { content: "Imagine clinică — placeholder"; position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 240, 232, 0.5); white-space: nowrap; }
.clinic-content .overline { margin-bottom: 16px; display: inline-block; }
.clinic-content h2 { margin-bottom: 20px; }
.clinic-content p { color: #555; margin-bottom: 16px; }
.clinic-features { margin: 24px 0; }
.clinic-features li { padding: 12px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.3); display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; font-size: 0.95rem; }
.clinic-features li:last-child { border-bottom: none; }
.icon-dot { width: 32px; height: 32px; background: rgba(200, 169, 110, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); flex-shrink: 0; }
.leader-card { padding: 40px 32px; text-align: center; }
.leader-portrait { width: 120px; height: 120px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--parchment), var(--cream)); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; }
.leader-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; font-weight: 500; }
.leader-role { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; font-weight: 500; }
.leader-bio { font-size: 0.92rem; color: #555; line-height: 1.65; }
.location-card { max-width: 800px; margin: 0 auto; padding: 48px 40px; background: var(--white); border: 1px solid rgba(200, 169, 110, 0.3); text-align: center; border-radius: 2px; }
.location-card h3 { margin-bottom: 16px; }
.location-card p { color: #555; margin-bottom: 20px; }
.location-card .address { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 28px; line-height: 1.4; }
.location-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding-top: 28px; border-top: 1px solid rgba(200, 169, 110, 0.3); }
.location-meta .label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.location-meta .value { color: var(--navy); font-weight: 500; font-size: 0.95rem; }

/* ─── Admitere ─── */
.status-card { background: var(--white); border: 1px solid var(--gold); border-radius: 2px; padding: 32px; }
@media (min-width: 900px) { .status-card { position: sticky; top: 100px; } }
.badge-live { display: inline-flex; align-items: center; gap: 8px; background: rgba(58, 90, 58, 0.1); color: var(--sapienta); padding: 6px 12px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; border-radius: 2px; }
.badge-live::before { content: ""; width: 6px; height: 6px; background: var(--sapienta); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.status-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; font-weight: 500; }
.status-card p { font-size: 0.92rem; color: #555; margin-bottom: 24px; line-height: 1.65; }
.deadlines li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); font-size: 0.9rem; }
.deadlines li:last-child { border-bottom: none; }
.deadlines .date { color: var(--navy); font-weight: 500; }
.deadlines .label-text { color: #666; }
.eligibility-card { padding: 32px; }
.eligibility-card h4 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin: 12px 0; font-weight: 500; }
.eligibility-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }
.process-grid { display: flex; flex-direction: column; gap: 32px; }
.process-step { display: grid; gap: 24px; padding: 40px 32px; }
@media (min-width: 700px) { .process-step { grid-template-columns: auto 1fr; gap: 40px; padding: 48px 40px; } }
.process-num { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5rem); color: var(--gold); line-height: 0.85; font-weight: 500; }
.process-content h3 { margin-bottom: 14px; }
.process-content p { color: #555; margin-bottom: 16px; font-size: 0.98rem; }
.details { padding: 20px 24px; background: var(--cream); border-radius: 2px; margin-top: 16px; }
.details h5 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; font-weight: 500; }
.details li { padding: 4px 0 4px 20px; position: relative; font-size: 0.92rem; color: #444; line-height: 1.6; }
.details li::before { content: "→"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 500; }
.time-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(27, 42, 74, 0.05); color: var(--navy); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; border-radius: 2px; margin-top: 12px; }
.docs-grid { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; }
.doc-item { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 20px 24px; background: rgba(245, 240, 232, 0.04); border: 1px solid rgba(200, 169, 110, 0.2); border-radius: 2px; transition: background 0.25s, border-color 0.25s; }
.doc-item:hover { background: rgba(245, 240, 232, 0.08); border-color: rgba(200, 169, 110, 0.4); }
.doc-item .icon { width: 40px; height: 40px; background: rgba(200, 169, 110, 0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.doc-item .doc-name { color: var(--parchment); font-size: 0.98rem; }
.doc-item .doc-note { font-size: 0.82rem; color: rgba(245, 240, 232, 0.55); margin-top: 2px; }
.doc-item .tag { white-space: nowrap; background: rgba(200, 169, 110, 0.2); color: var(--gold); }
.doc-item .tag.optional { background: rgba(245, 240, 232, 0.1); color: rgba(245, 240, 232, 0.6); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200, 169, 110, 0.3); }
.faq-question { width: 100%; padding: 24px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; text-align: left; font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); font-weight: 500; line-height: 1.4; transition: color 0.2s; min-height: 44px; }
.faq-question:hover { color: var(--gold-deep); }
.faq-question .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--gold-deep); transition: transform 0.3s var(--ease-out); margin-top: 4px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 24px; font-size: 0.98rem; color: #555; line-height: 1.7; max-width: 90%; }

/* ─── Forms ─── */
.form-wrapper { max-width: 700px; margin: 0 auto; padding: 48px 32px; background: var(--white); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; }
@media (min-width: 700px) { .form-wrapper { padding: 56px 48px; } }
.form-grid { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 600px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { font-family: var(--font-body); font-size: 1rem; padding: 14px 16px; background: var(--parchment); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; color: var(--soft-black); transition: border-color 0.25s, background 0.25s; min-height: 52px; width: 100%; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: var(--white); outline: none; }
.form-field ::placeholder { color: #999; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin: 8px 0 24px; }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.form-consent label { font-size: 0.85rem; color: #555; line-height: 1.6; }
.form-consent a { color: var(--navy); text-decoration: underline; }
.form-submit { width: 100%; padding: 18px 32px; background: var(--navy); color: var(--parchment); font-size: 0.95rem; letter-spacing: 0.05em; font-weight: 500; border-radius: 2px; transition: background 0.25s, transform 0.15s; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--navy-dark); }
.form-submit:active { transform: scale(0.99); }
.form-success { display: none; text-align: center; padding: 24px; background: rgba(58, 90, 58, 0.1); border: 1px solid var(--sapienta); color: var(--sapienta); border-radius: 2px; margin-top: 16px; font-size: 0.95rem; }
.form-success.visible { display: block; }

/* ─── Contact ─── */
.method-card { padding: 36px 28px; text-align: center; }
.method-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.method-card .detail { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); font-weight: 500; margin: 16px 0 12px; line-height: 1.3; word-break: break-word; }
.method-card .detail a:hover { color: var(--gold-deep); }
.method-card p { font-size: 0.9rem; color: #555; line-height: 1.65; }
.contact-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 64px; } }
.contact-grid .form-wrapper { max-width: none; margin: 0; }
.info-block { padding: 32px; margin-bottom: 20px; }
.info-block h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 16px; font-weight: 500; }
.info-block .item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 10px 0; border-bottom: 1px solid rgba(200, 169, 110, 0.2); font-size: 0.92rem; }
.info-block .item:last-child { border-bottom: none; }
.info-block .content { color: #555; line-height: 1.55; }
.info-block .content strong { color: var(--navy); font-weight: 500; }
.map-wrap { aspect-ratio: 16/9; max-height: 500px; background: var(--cream); border: 1px solid rgba(200, 169, 110, 0.3); border-radius: 2px; display: flex; align-items: center; justify-content: center; text-align: center; color: #888; padding: 24px; }
.map-wrap svg { margin: 0 auto 16px; color: var(--gold-deep); }
.map-wrap h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; font-weight: 500; }
.map-wrap p { font-size: 0.9rem; max-width: 320px; margin: 0 auto; }
.faq-card { padding: 32px 28px; }
.faq-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; font-weight: 500; line-height: 1.35; }
.faq-card p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 16px; }
.faq-card a { font-size: 0.85rem; color: var(--gold-deep); font-weight: 500; letter-spacing: 0.05em; }
.faq-card a:hover { color: var(--navy); }

/* ─── Final CTA ─── */
.final-cta { background: var(--navy); color: var(--parchment); position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 20% 20%, rgba(200, 169, 110, 0.1), transparent 60%), radial-gradient(600px 300px at 80% 80%, rgba(200, 169, 110, 0.06), transparent 60%); pointer-events: none; }
.final-cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta .overline { color: var(--gold); margin-bottom: 20px; display: inline-block; }
.final-cta h2 { color: var(--parchment); margin-bottom: 20px; }
.final-cta p { color: rgba(245, 240, 232, 0.75); margin-bottom: 40px; font-size: 1.05rem; }
.final-cta-meta { margin-top: 32px; font-size: 0.85rem; color: rgba(245, 240, 232, 0.55); letter-spacing: 0.08em; }

/* ─── Footer ─── */
.footer { background: var(--navy-deep); color: rgba(245, 240, 232, 0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand .logo-link { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; color: rgba(245, 240, 232, 0.55); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-size: 0.92rem; padding: 6px 0; color: rgba(245, 240, 232, 0.7); transition: color 0.2s; min-height: 32px; }
.footer-col a:hover, .footer-col a.gold { color: var(--gold); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(200, 169, 110, 0.18); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer-bottom .motto { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--gold); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.8rem; color: rgba(245, 240, 232, 0.5); }
.footer-bottom .legal a { transition: color 0.2s; min-height: 32px; display: inline-flex; align-items: center; }
.footer-bottom .legal a:hover { color: var(--gold); }
.copyright { margin-top: 24px; text-align: center; font-size: 0.78rem; color: rgba(245, 240, 232, 0.4); }

/* ─── Reveal ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ISO Master: direcții, calendar, lectori ─── */
.dir-card { padding: 36px 28px; }
.dir-card .count { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 0.9; margin-bottom: 14px; font-weight: 500; }
.dir-card h3 { margin-bottom: 10px; }
.dir-card p { font-size: 0.92rem; color: #555; line-height: 1.6; margin-bottom: 14px; }
.dir-card a.more { font-size: 0.82rem; color: var(--gold-deep); font-weight: 500; letter-spacing: 0.05em; }
.dir-card a.more:hover { color: var(--navy); }
.weekend { padding: 32px 28px; display: grid; gap: 20px; }
@media (min-width: 700px) { .weekend { grid-template-columns: 160px 1fr; gap: 36px; } }
.weekend .date { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); font-weight: 500; line-height: 1; }
.weekend .date small { display: block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; font-weight: 500; }
.weekend .num { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: #999; margin-bottom: 8px; font-weight: 500; }
.weekend h3 { margin-bottom: 6px; }
.weekend .dir { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-bottom: 16px; }
.weekend .mods { display: grid; gap: 10px; margin-bottom: 16px; }
.weekend .mods li { padding: 12px 16px; background: var(--cream); border-radius: 2px; font-size: 0.92rem; color: var(--navy); line-height: 1.5; }
.weekend .mods li strong { font-weight: 500; display: block; margin-bottom: 2px; }
.weekend .mods li span { color: #666; font-size: 0.85rem; }
.weekend .lector { font-size: 0.85rem; color: #666; display: flex; flex-wrap: wrap; gap: 6px 24px; padding-top: 14px; border-top: 1px solid rgba(200, 169, 110, 0.25); }
.weekend .lector strong { color: var(--navy); font-weight: 500; }
.mod-list { margin-bottom: 16px; display: grid; gap: 3px; flex: 1; }
.mod-list li { padding: 5px 0 5px 16px; position: relative; font-size: 0.88rem; color: #555; line-height: 1.5; }
.mod-list li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 1.2rem; line-height: 1; top: 6px; }
.mod-list li.sub { padding-left: 32px; font-size: 0.84rem; color: #777; }
.mod-list li.sub::before { content: "–"; left: 16px; font-size: 0.9rem; top: 5px; }
.lector-card { padding: 40px 32px; text-align: center; }
.lector-tag { display: inline-block; padding: 5px 12px; background: var(--navy); color: var(--gold); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; margin-bottom: 16px; font-weight: 500; }
.teaser { border: 1px dashed rgba(200, 169, 110, 0.5); padding: 40px 32px; border-radius: 2px; text-align: center; max-width: 800px; margin: 0 auto; }
.teaser .overline { margin-bottom: 14px; display: inline-block; }
.teaser h3 { margin-bottom: 12px; }
.teaser p { color: rgba(245, 240, 232, 0.75); max-width: 560px; margin: 0 auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-seal { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
