  :root {
    --navy: #0c1a2e;
    --navy-mid: #162540;
    --navy-light: #1e3355;
    --gold: #b89a5a;
    --gold-light: #d4b87a;
    --gold-pale: rgba(184,154,90,0.12);
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --text-dark: #1a1a2e;
    --text-muted: #5a6475;
    --border: rgba(184,154,90,0.2);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--warm-white);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(12,26,46,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,154,90,0.18);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    font-weight: 400;
    text-decoration: none;
  }
  .nav-logo span { font-style: italic; font-weight: 300; color: rgba(212,184,122,0.7); }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.65);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(184,154,90,0.5);
    color: var(--gold-light) !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-line {
    position: absolute;
    top: 0; left: 50%; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(184,154,90,0.15) 30%, rgba(184,154,90,0.15) 70%, transparent);
  }
  .hero-glow {
    position: absolute;
    top: -300px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(184,154,90,0.06) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute;
    bottom: -200px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(22,37,64,0.9) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 5rem 6rem 5rem;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }
  .hero-eyebrow span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }
  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.5vw, 5.5rem);
    line-height: 1.05;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 0.8rem;
  }
  .hero-name em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
  }
  .hero-title-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(245,240,232,0.45);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 2;
    color: rgba(245,240,232,0.6);
    max-width: 440px;
    margin-bottom: 3rem;
    border-left: 2px solid rgba(184,154,90,0.3);
    padding-left: 1.5rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 2.4rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.35s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(184,154,90,0.3); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 2.4rem;
    border: 1px solid rgba(184,154,90,0.4);
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.35s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }
  .hero-photo-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
  }
  .hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.88) contrast(1.05);
    display: block;
  }
  .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, rgba(12,26,46,0.15) 35%, transparent 60%),
                linear-gradient(to top, rgba(12,26,46,0.6) 0%, transparent 40%);
  }
  .hero-stats {
    position: absolute;
    bottom: 3.5rem;
    right: 3rem;
    display: flex;
    gap: 2.5rem;
    z-index: 3;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--gold-light);
    line-height: 1;
    font-weight: 300;
    display: block;
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    font-weight: 400;
    display: block;
    margin-top: 0.4rem;
  }
  .hero-badge {
    position: absolute;
    top: 3rem; right: 3rem;
    background: rgba(12,26,46,0.88);
    border: 1px solid rgba(184,154,90,0.35);
    padding: 1rem 1.6rem;
    backdrop-filter: blur(10px);
    z-index: 3;
    white-space: nowrap;
    min-width: max-content;
  }
  .hero-badge-line1 {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.35rem;
    white-space: nowrap;
  }
  .hero-badge-line2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    font-style: italic;
    white-space: nowrap;
    display: block;
  }

  /* ── SECTION SHARED ── */
  .section-pad { padding: 7rem 5rem; }
  .section-intro { margin-bottom: 4rem; }
  .section-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  .section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
  }
  .section-title.light { color: var(--cream); }

  /* ── MEDIA STRIP ── */
  .media-strip {
    background: var(--navy-mid);
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .media-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 380px;
  }
  .media-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .media-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s;
    filter: brightness(0.7) grayscale(0.2);
  }
  .media-thumb:hover img { transform: scale(1.06); filter: brightness(0.85) grayscale(0); }
  .media-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,26,46,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
  }
  .media-thumb-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
  }
  .media-divider { width: 1px; background: rgba(184,154,90,0.2); }

  /* ── ABOUT ── */
  .about {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .about-text p {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
  }
  .about-text p strong { color: var(--navy); font-weight: 500; }
  .about-text p:first-child::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 0.8;
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--gold);
    font-weight: 300;
  }
  .about-photo-col { display: flex; flex-direction: column; gap: 1.5rem; }
  .about-photo-main {
    position: relative;
    overflow: hidden;
  }
  .about-photo-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    filter: brightness(0.92);
  }
  .about-photo-main.tall img {
    height: auto;
    max-height: 340px;
    object-fit: cover;
    object-position: center 30%;
  }
  .about-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(12,26,46,0.85), transparent);
    padding: 1.5rem 1.5rem 1rem;
  }
  .about-photo-caption p {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 !important;
  }
  .about-cards { display: flex; flex-direction: column; gap: 0.8rem; }
  .about-card {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
    background: white;
    position: relative;
    transition: all 0.3s;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
  }
  .about-card-icon {
    width: 32px; height: 32px;
    background: var(--gold-pale);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .about-card:hover { border-color: rgba(184,154,90,0.45); box-shadow: 0 4px 20px rgba(184,154,90,0.08); }
  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.1rem;
  }
  .card-sub {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0.35rem;
  }
  .card-desc {
    font-size: 0.78rem;
    line-height: 1.65;
    color: var(--text-muted);
  }

  /* ── COMPETENTE ── */
  .competente {
    background: var(--navy);
    padding: 7rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .competente::before {
    content: 'CHIRURGIE';
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    font-weight: 300;
    color: rgba(184,154,90,0.04);
    letter-spacing: 0.3em;
    white-space: nowrap;
    pointer-events: none;
  }
  .comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,154,90,0.12);
    margin-top: 4rem;
    border: 1px solid rgba(184,154,90,0.12);
  }
  .comp-item {
    background: var(--navy-mid);
    padding: 2.2rem 2rem;
    transition: background 0.35s;
    position: relative;
    overflow: hidden;
  }
  .comp-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .comp-item:hover { background: rgba(184,154,90,0.05); }
  .comp-item:hover::after { transform: scaleX(1); }
  .comp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: rgba(184,154,90,0.15);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 300;
    display: block;
  }
  .comp-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .comp-desc {
    font-size: 0.78rem;
    line-height: 1.75;
    color: rgba(245,240,232,0.45);
  }

  /* ── QUOTE BANNER ── */
  .quote-banner {
    background: var(--gold);
    padding: 3.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .quote-banner::before, .quote-banner::after {
    content: '"';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15rem;
    font-weight: 300;
    color: rgba(12,26,46,0.08);
    line-height: 1;
    top: -1rem;
  }
  .quote-banner::before { left: 2rem; }
  .quote-banner::after { right: 2rem; content: '"'; }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  .quote-attr {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(12,26,46,0.5);
    margin-top: 1.2rem;
    font-weight: 400;
  }

  /* ── EXPERIENTA ── */
  .experienta {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 7rem 5rem;
    align-items: start;
  }
  .timeline { position: relative; padding-left: 0; }
  .timeline-line {
    position: absolute;
    left: 82px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(184,154,90,0.6) 0%, rgba(184,154,90,0.08) 100%);
    pointer-events: none;
  }
  .tl-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 2.5rem;
    margin-bottom: 2.8rem;
    position: relative;
    padding-left: 0;
  }
  .tl-item::before {
    content: '';
    position: absolute;
    left: 75px; top: 0.5rem;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 3px rgba(184,154,90,0.25);
    z-index: 2;
  }
  .tl-date {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 0.2rem;
    text-align: right;
    line-height: 1.6;
    font-weight: 400;
    padding-right: 0.5rem;
  }
  .tl-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }
  .tl-place {
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .tl-desc {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-muted);
  }
  .exp-photo-col { display: flex; flex-direction: column; gap: 1rem; }
  .exp-photo {
    position: relative;
    overflow: hidden;
  }
  .exp-photo img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }
  .exp-photo:hover img { transform: scale(1.03); }
  .exp-photo-label {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(12,26,46,0.75);
    border: 1px solid rgba(184,154,90,0.3);
    padding: 0.4rem 0.8rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    backdrop-filter: blur(8px);
  }

  /* ── CERTIFICATE ── */
  .certificate-section {
    background: white;
    padding: 7rem 5rem;
  }
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 4rem;
    border: 1px solid var(--border);
  }
  .cert-item {
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .cert-item:nth-child(even) { border-right: none; }
  .cert-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s;
  }
  .cert-item:hover { background: rgba(184,154,90,0.03); }
  .cert-item:hover::before { transform: scaleY(1); }
  .cert-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.45;
  }
  .cert-org {
    font-size: 0.7rem;
    color: var(--gold);
    font-style: italic;
  }

  /* ── ASOCIATII ── */
  .asociatii {
    background: var(--navy);
    padding: 7rem 5rem;
  }
  .assoc-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }
  .assoc-item {
    padding: 1.5rem 1.8rem;
    border: 1px solid rgba(184,154,90,0.15);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .assoc-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.35s;
  }
  .assoc-item:hover { border-color: rgba(184,154,90,0.35); background: rgba(184,154,90,0.04); }
  .assoc-item:hover::after { transform: scaleX(1); }
  .assoc-type {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
    font-weight: 400;
  }
  .assoc-name {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.75);
    line-height: 1.5;
    font-weight: 400;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--warm-white);
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-desc {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 3rem;
  }
  .contact-items { display: flex; flex-direction: column; gap: 1.8rem; }
  .contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
  .contact-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: white;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
  }
  .contact-info-title {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
    font-weight: 400;
  }
  .contact-info-val {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.65;
  }
  .contact-right {}
  .contact-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  .contact-right p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .contact-photo {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
  }
  .contact-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: brightness(0.88);
  }
  .contact-photo-overlay {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184,154,90,0.25);
    pointer-events: none;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(184,154,90,0.15);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
  }
  .footer-logo span { font-style: italic; font-weight: 300; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-copy {
    font-size: 0.68rem;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.1em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
  .hero-name    { animation: fadeUp 0.7s ease 0.25s both; }
  .hero-title-tag { animation: fadeUp 0.7s ease 0.4s both; }
  .hero-desc    { animation: fadeUp 0.7s ease 0.55s both; }
  .hero-btns    { animation: fadeUp 0.7s ease 0.7s both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1.1rem 2rem; }
    .nav-links { gap: 1.5rem; }
    .section-pad, .competente, .certificate-section, .asociatii { padding: 5rem 2.5rem; }
    .about, .experienta, .contact { padding: 5rem 2.5rem; gap: 3rem; }
    .hero-left { padding: 8rem 2.5rem 5rem; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 7rem 2rem 5rem; }
    .about, .experienta, .contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
    .media-strip-inner { grid-template-columns: 1fr; height: auto; }
    .comp-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .assoc-list { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

/* ── NAV SCROLLED ── */
nav.scrolled { padding: 0.8rem 4rem; }

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold-light);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(12,26,46,0.99);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(184,154,90,0.15);
    z-index: 199;
  }
}
