:root {
  --paper: #f5f0e7;
  --paper-deep: #ebe2d4;
  --ink: #25231f;
  --muted: #6f6a61;
  --line: rgba(62, 53, 42, 0.18);
  --rust: #b65734;
  --rust-deep: #8f3e25;
  --ochre: #c48a43;
  --moss: #687460;
  --navy: #1c2b35;
  --white: #fffdf9;
  --shadow: 0 18px 45px rgba(56, 40, 24, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1320px, calc(100% - 80px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image: radial-gradient(rgba(95, 67, 37, 0.1) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 8px 12px; background: var(--ink); color: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(245, 240, 231, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 5px 20px rgba(52, 39, 24, 0.05); }
.header-inner { display: grid; grid-template-columns: minmax(215px, 1fr) auto minmax(215px, 1fr); align-items: center; min-height: 92px; gap: 28px; }
.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand-name { display: block; color: var(--rust); font-family: var(--serif); font-size: clamp(24px, 2.3vw, 34px); letter-spacing: 0.12em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.brand-signature { display: flex; flex-direction: column; align-items: flex-end; justify-self: end; line-height: 1; }
.signature-name { color: #6c7059; font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive; font-size: clamp(22px, 2vw, 31px); font-style: italic; letter-spacing: 0.01em; white-space: nowrap; }
.signature-subtitle { margin-top: 8px; color: var(--rust); font-family: var(--sans); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; }
.nav-link { position: relative; padding: 10px 0; color: var(--muted); font-size: 13px; letter-spacing: 0.05em; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--rust); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link-accent { padding: 10px 18px; border: 1px solid var(--rust); color: var(--rust); }
.nav-link-accent::after { display: none; }
.nav-link-accent:hover, .nav-link-accent:focus-visible { background: var(--rust); color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); }

.hero { display: grid; grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr); align-items: center; gap: clamp(42px, 7vw, 110px); min-height: 690px; padding-block: 75px 92px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--rust-deep); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { max-width: 570px; margin-bottom: 25px; font-size: clamp(52px, 5.3vw, 84px); line-height: 0.98; letter-spacing: -0.04em; }
.hero-intro { max-width: 470px; margin-bottom: 34px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 49px; padding: 13px 21px; border: 1px solid transparent; font-size: 12px; letter-spacing: 0.04em; transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button span { font-size: 18px; line-height: 0; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--rust); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: var(--rust-deep); }
.button-secondary { background: var(--navy); color: var(--white); }
.button-secondary:hover, .button-secondary:focus-visible { background: #263e4c; }
.button-outline-light { border-color: rgba(255, 253, 249, 0.5); color: var(--white); }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.button-wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 12px; letter-spacing: 0.05em; }
.text-link span { color: var(--rust); font-size: 17px; transition: transform 180ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, -2px); }
.hero-facts { display: flex; gap: 24px; margin: 64px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.hero-facts div { flex: 1; }
.hero-facts dt { margin-bottom: 5px; color: var(--rust); font-family: var(--serif); font-size: 20px; }
.hero-facts dd { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.35; }
.hero-gallery { position: relative; min-height: 540px; }
.hero-main-image { position: absolute; z-index: 2; top: 0; right: 10%; width: 76%; margin: 0; box-shadow: var(--shadow); }
.hero-main-image::before { position: absolute; z-index: -1; top: 22px; left: -18px; width: 100%; height: 100%; border: 1px solid var(--ochre); content: ""; }
.hero-main-image img { width: 100%; height: 480px; object-fit: cover; object-position: center; }
.hero-main-image figcaption { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; background: var(--white); font-size: 11px; }
.hero-main-image figcaption span { color: var(--muted); }
.hero-main-image figcaption strong { color: var(--rust); font-family: var(--serif); font-size: 16px; font-weight: 400; }
.hero-side-image { position: absolute; z-index: 1; width: 30%; margin: 0; box-shadow: 0 12px 26px rgba(56, 40, 24, 0.12); }
.hero-side-image img { width: 100%; height: 175px; object-fit: cover; }
.hero-side-top { top: 54px; right: 0; transform: rotate(3deg); }
.hero-side-bottom { bottom: 16px; left: 0; transform: rotate(-4deg); }
.image-note { display: block; padding: 8px 10px; background: var(--white); color: var(--muted); font-size: 10px; text-align: center; }

.collage-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr); align-items: center; gap: clamp(45px, 7vw, 110px); min-height: 760px; padding-block: 70px 105px; }
.collage-hero > .art-details { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.collage-hero > .collage-artboard, .collage-hero > .collage-copy { position: relative; z-index: 1; }
.collage-artboard { position: relative; min-height: 610px; }
.collage-piece { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(73, 61, 43, 0.28); background: var(--paper-deep); box-shadow: 0 12px 25px rgba(56, 40, 24, 0.18); }
.collage-piece img { width: 100%; height: 100%; object-fit: cover; }
.collage-piece-large { z-index: 2; top: 78px; left: 22%; width: 66%; height: 425px; }
.collage-piece-top { z-index: 3; top: 18px; left: 3%; width: 28%; height: 245px; transform: rotate(-2deg); }
.collage-piece-bottom { z-index: 3; bottom: 14px; left: 7%; width: 38%; height: 210px; transform: rotate(1.5deg); }
.collage-piece-vertical { z-index: 4; right: 1%; bottom: 5px; width: 19%; height: 325px; transform: rotate(1deg); }
.collage-fabric { position: absolute; z-index: 1; display: block; opacity: 0.6; background: repeating-linear-gradient(0deg, rgba(134, 107, 74, 0.12) 0 1px, transparent 1px 5px), repeating-linear-gradient(90deg, rgba(134, 107, 74, 0.09) 0 1px, transparent 1px 6px); }
.collage-fabric-one { top: 0; left: 0; width: 41%; height: 300px; }
.collage-fabric-two { right: 11%; bottom: 0; width: 48%; height: 145px; }
.collage-copy { max-width: 510px; }
.collage-copy h1 { max-width: 440px; margin-bottom: 24px; font-size: clamp(58px, 6.2vw, 92px); line-height: 0.91; }
.collage-lede { max-width: 430px; margin-bottom: 17px; color: var(--rust-deep); font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }
.collage-body { max-width: 420px; margin-bottom: 33px; color: var(--muted); font-size: 15px; }

.intro-strip { border-block: 1px solid var(--line); background: var(--paper-deep); }
.intro-strip-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; min-height: 105px; }
.intro-strip p { max-width: 550px; margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.ornament { color: var(--rust); font-size: 26px; }

.collection-section { padding-block: 125px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.section-heading h2, .about-copy h2, .cv-intro h2, .contact-grid h2 { margin-bottom: 0; font-size: clamp(43px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.04em; }
.section-lede { max-width: 340px; margin: 0 0 5px; color: var(--muted); font-size: 14px; }
.collection-controls { display: grid; grid-template-columns: 270px minmax(0, 1fr) 220px; gap: 13px; align-items: center; margin-bottom: 29px; }
.search-box, .select-box { display: flex; align-items: center; min-height: 46px; border: 1px solid var(--line); background: rgba(255, 253, 249, 0.58); }
.search-box { gap: 10px; padding: 0 13px; }
.search-box svg { width: 17px; height: 17px; fill: none; stroke: var(--muted); stroke-linecap: round; stroke-width: 1.6; }
.search-box input, .select-box select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.search-box input::placeholder { color: var(--muted); }
.select-box { position: relative; padding: 0 14px; }
.select-box::after { position: absolute; right: 14px; pointer-events: none; content: "⌄"; color: var(--rust); }
.select-box select { appearance: none; padding-right: 22px; }
.filter-list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 11px; transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.filter-button:hover, .filter-button:focus-visible, .filter-button.is-active { border-color: var(--rust); background: var(--rust); color: var(--white); }
.collection-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 29px; align-items: start; }
.collection-meta { display: flex; gap: 8px; margin: 0 0 17px; color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.work-card { position: relative; display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); background: rgba(255, 253, 249, 0.7); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.work-card:hover, .work-card:focus-within { z-index: 1; border-color: var(--ochre); box-shadow: 0 14px 28px rgba(56, 40, 24, 0.12); transform: translateY(-3px); }
.work-card.is-selected { border-color: var(--rust); box-shadow: inset 0 0 0 1px var(--rust); }
.work-card-image-trigger { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; }
.work-card-image { display: block; position: relative; aspect-ratio: 1 / 0.86; overflow: hidden; background: #202a2e; }
.work-card-image.is-album-work { background: #202a2e; }
.work-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.work-card:hover .work-card-image img { transform: scale(1.035); }
.work-card-badge { position: absolute; top: 10px; right: 10px; padding: 4px 7px; background: rgba(255, 253, 249, 0.9); color: var(--moss); font-size: 9px; letter-spacing: 0.05em; }
.work-card-body { display: flex; flex: 1; flex-direction: column; padding: 14px 15px 16px; }
.work-card-title-row { display: block; margin-top: 12px; color: inherit; }
.work-card-title-row > span { display: block; }
.work-card-title-row strong { display: block; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.05; }
.work-card h3 { margin-bottom: 4px; font-size: 21px; line-height: 1.05; }
.work-card-category { margin: 0 0 12px; color: var(--muted); font-size: 10px; }
.work-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); color: var(--rust); font-size: 10px; }
.work-card-page-link { color: var(--muted); }
.work-card-page-link:hover, .work-card-page-link:focus-visible, .work-card-title-row:hover strong, .work-card-title-row:focus-visible strong { color: var(--rust); }
.empty-state { padding: 35px 0; color: var(--muted); }
.selected-work { position: sticky; top: 115px; padding: 17px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.selected-label { display: flex; align-items: center; gap: 7px; margin-bottom: 13px; color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); }
.selected-image-wrap { position: relative; margin-bottom: 18px; background: var(--paper-deep); }
.selected-image-wrap img { width: 100%; height: 220px; object-fit: cover; }
.selected-image-wrap span { position: absolute; bottom: 9px; left: 10px; padding: 3px 6px; background: rgba(37, 35, 31, 0.75); color: var(--white); font-size: 10px; }
.selected-category { margin-bottom: 4px; color: var(--rust); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.selected-work h3 { margin-bottom: 12px; font-size: 34px; line-height: 1; }
.selected-description { min-height: 68px; margin-bottom: 15px; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.3; }
.selected-meta { margin: 0 0 17px; border-top: 1px solid var(--line); }
.selected-meta div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.selected-meta dt { color: var(--muted); }
.selected-meta dd { margin: 0; color: var(--ink); text-align: right; }

.about-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(50px, 8vw, 120px); align-items: center; padding-bottom: 140px; }
.about-image { position: relative; padding: 0 30px 30px 0; }
.about-image::after { position: absolute; z-index: -1; right: 0; bottom: 0; width: 88%; height: 85%; border: 1px solid var(--ochre); content: ""; }
.about-image img { width: 100%; max-height: 545px; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.vertical-note { position: absolute; right: -5px; bottom: 130px; color: var(--rust-deep); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.about-copy { max-width: 520px; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 15px; }
.about-copy .text-link { margin-top: 14px; }

.critical-section { display: grid; grid-template-columns: auto minmax(210px, 0.65fr) minmax(0, 1.35fr); gap: clamp(25px, 5vw, 78px); align-items: start; margin-bottom: 120px; padding-block: 58px; border-block: 1px solid var(--line); }
.critical-section-mark { color: var(--rust); font-size: 22px; line-height: 1; }
.critical-section h2 { max-width: 340px; margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.1vw, 47px); font-weight: 400; line-height: 1.02; letter-spacing: -0.03em; }
.critical-quote { margin: 0; padding-left: clamp(20px, 4vw, 58px); border-left: 1px solid var(--ochre); }
.critical-quote blockquote { max-width: 700px; margin: 0 0 19px; color: var(--muted); font-family: var(--serif); font-size: clamp(18px, 1.8vw, 25px); line-height: 1.32; }
.critical-quote figcaption { color: var(--rust); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }

.exhibitions-section { position: relative; overflow: hidden; padding-block: 110px 130px; background: var(--navy); color: var(--white); }
.exhibitions-section::before { position: absolute; top: -200px; right: -130px; width: 500px; height: 500px; border: 1px solid rgba(196, 138, 67, 0.33); border-radius: 50%; content: ""; }
.exhibitions-section::after { position: absolute; bottom: -280px; left: -140px; width: 520px; height: 520px; border: 1px solid rgba(196, 138, 67, 0.21); border-radius: 50%; content: ""; }
.exhibitions-section .section-heading { position: relative; z-index: 1; }
.eyebrow-light { color: var(--ochre); }
.exhibitions-section h2 { font-size: clamp(44px, 5vw, 72px); }
.exhibitions-intro { position: relative; z-index: 1; max-width: 460px; margin: -15px 0 43px; color: rgba(255, 253, 249, 0.7); font-family: var(--serif); font-size: 20px; line-height: 1.25; }
.video-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.video-card { overflow: hidden; border: 1px solid rgba(255, 253, 249, 0.17); background: #253640; transition: transform 180ms ease, border-color 180ms ease; }
.video-card:hover, .video-card:focus-visible { border-color: var(--ochre); transform: translateY(-4px); }
.video-image { position: relative; display: block; aspect-ratio: 1.32 / 1; overflow: hidden; }
.video-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19, 27, 31, 0.05), rgba(19, 27, 31, 0.55)); content: ""; }
.video-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.video-card:hover .video-image img { transform: scale(1.04); }
.play-button { position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255, 253, 249, 0.75); border-radius: 50%; background: var(--rust); color: var(--white); font-size: 16px; transform: translate(-50%, -50%); }
.video-source { position: absolute; z-index: 1; top: 13px; left: 13px; padding: 4px 8px; background: rgba(28, 43, 53, 0.78); color: var(--white); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.video-card-copy { display: block; padding: 18px 18px 20px; }
.video-card-copy small { display: block; margin-bottom: 8px; color: var(--ochre); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; }
.video-card-copy strong { display: block; min-height: 54px; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.05; }
.video-card-copy > span { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255, 253, 249, 0.16); color: rgba(255, 253, 249, 0.72); font-size: 11px; }
.video-card-copy b { color: var(--ochre); font-size: 16px; font-weight: 400; }
.video-card-actions { align-items: flex-start; gap: 12px; }
.video-site-button { padding: 0; border: 0; background: transparent; color: var(--white); font-size: 11px; text-align: left; }
.video-site-button:hover, .video-site-button:focus-visible { color: var(--ochre); }
.video-card-actions a { color: var(--white); }
.video-card-actions a:hover, .video-card-actions a:focus-visible { color: var(--ochre); }
.video-pending { color: rgba(255, 253, 249, 0.46); font-size: 9px; line-height: 1.3; text-align: right; }

.video-modal { position: fixed; z-index: 90; inset: 0; display: grid; place-items: center; padding: 24px; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(13, 20, 24, 0.88); backdrop-filter: blur(7px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(1050px, 100%); overflow: hidden; border: 1px solid rgba(255, 253, 249, 0.2); background: var(--paper); box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4); }
.video-frame-wrap { aspect-ratio: 16 / 9; background: #11191d; }
.video-frame-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-modal-copy { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 26px 20px; }
.video-modal-copy > span { color: var(--rust); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.video-modal-copy h2 { margin: 0; font-size: 25px; line-height: 1; }
.video-modal-copy a { color: var(--rust-deep); font-size: 12px; }
.video-modal-copy a:hover, .video-modal-copy a:focus-visible { color: var(--ink); }
.video-modal-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255, 253, 249, 0.7); border-radius: 50%; background: rgba(28, 43, 53, 0.82); color: var(--white); font-size: 26px; line-height: 1; }
.video-modal-close:hover, .video-modal-close:focus-visible { background: var(--rust); }

/* Media socială: canalele artistei rămân separate de textele critice și de colecție. */
.social-media-page { background: var(--paper); }
.social-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .7fr); gap: clamp(45px, 9vw, 130px); align-items: center; min-height: 610px; padding-block: 105px 115px; }
.social-hero-copy { max-width: 650px; }
.social-hero h1 { max-width: 640px; margin-bottom: 25px; font-size: clamp(62px, 8vw, 116px); line-height: .88; letter-spacing: -.065em; }
.social-hero-lede { max-width: 560px; color: var(--muted); font-family: var(--serif); font-size: clamp(21px, 2vw, 28px); line-height: 1.2; }
.social-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.social-hero-mark { position: relative; display: grid; width: min(100%, 400px); aspect-ratio: 1; place-items: center; justify-self: end; border: 1px solid var(--line); background: radial-gradient(circle at 48% 43%, rgba(179, 82, 43, .18), transparent 35%), var(--paper-deep); transform: rotate(3deg); }
.social-mark-orbit { position: absolute; width: 68%; aspect-ratio: 1; border: 1px solid var(--ochre); border-radius: 50%; }
.social-mark-orbit::before, .social-mark-orbit::after { position: absolute; width: 11px; height: 11px; border: 1px solid var(--rust); border-radius: 50%; background: var(--paper-deep); content: ""; }
.social-mark-orbit::before { top: 8%; left: 15%; }
.social-mark-orbit::after { right: 5%; bottom: 22%; }
.social-mark-play { position: relative; z-index: 1; display: grid; width: 88px; height: 88px; place-items: center; border-radius: 50%; background: var(--rust); color: var(--white); font-size: 24px; transform: rotate(-3deg); }
.social-mark-note { position: absolute; right: 12%; bottom: 13%; color: var(--rust-deep); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; transform: rotate(-3deg); }
.social-video-section { padding-block: 108px 125px; background: var(--navy); color: var(--white); }
.social-heading { position: relative; z-index: 1; }
.social-heading .section-lede { max-width: 390px; color: rgba(255, 253, 249, .7); }
.social-video-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.social-video-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255, 253, 249, .17); background: #253640; }
.social-video-trigger { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: var(--white); text-align: left; }
.social-video-image { position: relative; display: block; aspect-ratio: 1.3 / 1; overflow: hidden; }
.social-video-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19, 27, 31, .02), rgba(19, 27, 31, .65)); content: ""; }
.social-video-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.social-video-trigger:hover .social-video-image img, .social-video-trigger:focus-visible .social-video-image img { transform: scale(1.045); }
.social-video-play { position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; width: 55px; height: 55px; place-items: center; border: 1px solid rgba(255, 253, 249, .7); border-radius: 50%; background: var(--rust); color: var(--white); transform: translate(-50%, -50%); }
.social-video-copy { display: block; padding: 15px 15px 11px; }
.social-video-copy small { display: block; margin-bottom: 8px; color: var(--ochre); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.social-video-copy strong { display: block; min-height: 39px; font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.05; }
.social-video-copy > span { display: flex; justify-content: space-between; margin-top: 13px; padding-top: 10px; border-top: 1px solid rgba(255, 253, 249, .16); color: rgba(255, 253, 249, .72); font-size: 10px; }
.social-video-copy b { color: var(--ochre); font-size: 15px; font-weight: 400; }
.social-video-external { display: block; padding: 0 15px 15px; color: var(--ochre); font-size: 10px; letter-spacing: .04em; }
.social-video-external:hover, .social-video-external:focus-visible { color: var(--white); }
.social-links-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-block: 105px 125px; }
.social-link-card { display: flex; min-height: 320px; flex-direction: column; justify-content: space-between; padding: clamp(25px, 4vw, 48px); border: 1px solid var(--line); background: var(--paper-deep); }
.social-link-card h2 { max-width: 390px; margin: 17px 0 15px; font-size: clamp(38px, 4vw, 58px); line-height: .95; }
.social-link-card p:not(.eyebrow) { max-width: 420px; color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.28; }
.social-link-card .button { align-self: flex-start; margin-top: 30px; }
.social-link-facebook { background: linear-gradient(145deg, rgba(255, 253, 249, .82), rgba(235, 223, 207, .9)); }
.social-link-critical { background: var(--navy); color: var(--white); }
.social-link-critical p:not(.eyebrow) { color: rgba(255, 253, 249, .7); }
.social-link-critical .eyebrow { color: var(--ochre); }

@media (max-width: 1120px) {
  .social-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .social-hero { display: flex; min-height: 0; flex-direction: column; align-items: stretch; padding-block: 75px 80px; }
  .social-hero h1 { font-size: clamp(58px, 16vw, 86px); }
  .social-hero-mark { width: min(100%, 330px); margin: 24px auto 0; align-self: center; }
  .social-video-section { padding-block: 78px 90px; }
  .social-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .social-video-copy { padding: 12px 12px 10px; }
  .social-video-copy strong { min-height: auto; font-size: 18px; }
  .social-video-external { padding: 0 12px 12px; }
  .social-links-section { grid-template-columns: 1fr; padding-block: 75px 90px; }
}

@media (max-width: 480px) {
  .social-video-grid { grid-template-columns: 1fr; }
  .social-video-image { aspect-ratio: 1.55 / 1; }
}

/* Texte critice: transcriere lizibilă + pagina scanată ca sursă vizuală. */
.critical-texts-section { padding-block: 105px 125px; }
.critical-texts-section .section-lede { max-width: 430px; }
.critical-text-grid { display: grid; gap: 22px; }
.critical-text-card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr); gap: clamp(25px, 5vw, 75px); padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); background: rgba(255, 253, 249, .62); }
.critical-text-copy { max-width: 700px; }
.critical-text-copy h3 { max-width: 620px; margin: 15px 0 20px; font-family: var(--serif); font-size: clamp(31px, 3.3vw, 52px); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.critical-text-copy > p:not(.eyebrow) { color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.42; }
.critical-text-copy > small { display: block; margin-top: 22px; color: var(--rust); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.critical-text-source { align-self: start; margin: 0; padding: 9px 9px 0 0; }
.critical-text-source::before { position: absolute; z-index: -1; inset: 0 0 22px 16px; border: 1px solid var(--ochre); content: ""; }
.critical-text-source { position: relative; }
.critical-text-source img { display: block; width: 100%; max-height: 440px; object-fit: contain; object-position: top center; box-shadow: var(--shadow); }
.critical-text-source figcaption { padding-top: 10px; color: var(--muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

@media (max-width: 760px) {
  .critical-texts-section { padding-block: 78px 90px; }
  .critical-text-card { grid-template-columns: 1fr; gap: 30px; padding: 22px; }
  .critical-text-copy > p:not(.eyebrow) { font-size: 17px; }
  .critical-text-source { width: min(100%, 420px); }
}

.cv-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 120px); padding-block: 135px; }
.cv-intro { max-width: 390px; }
.cv-intro h2 { margin-bottom: 24px; }
.cv-intro > p:not(.eyebrow) { margin-bottom: 30px; color: var(--muted); font-size: 15px; }
.timeline { position: relative; padding-left: 35px; }
.timeline::before { position: absolute; top: 9px; bottom: 9px; left: 5px; width: 1px; background: var(--line); content: ""; }
.timeline-item { position: relative; display: grid; grid-template-columns: 108px 1fr; gap: 22px; padding-bottom: 28px; }
.timeline-item::before { position: absolute; top: 7px; left: -34px; width: 9px; height: 9px; border: 2px solid var(--paper); border-radius: 50%; background: var(--rust); box-shadow: 0 0 0 1px var(--rust); content: ""; }
.timeline-item > span { color: var(--rust); font-family: var(--serif); font-size: 20px; }
.timeline-item h3 { margin-bottom: 4px; font-size: 23px; line-height: 1; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 13px; }

.cv-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr); align-items: center; gap: clamp(50px, 10vw, 150px); padding-block: 105px 115px; }
.cv-hero h1 { margin-bottom: 17px; }
.cv-hero-lede { margin-bottom: 10px; color: var(--rust); font-family: var(--serif); font-size: 28px; }
.cv-hero-copy { max-width: 470px; color: var(--muted); font-size: 16px; }
.cv-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 23px; margin-top: 31px; }
.cv-hero-image { position: relative; margin: 0; padding: 20px 20px 0 0; }
.cv-hero-image::before { position: absolute; z-index: -1; top: 0; right: 0; bottom: 20px; left: 20px; border: 1px solid var(--ochre); content: ""; }
.cv-hero-image img { width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow); }
.cv-hero-image figcaption { padding-top: 11px; color: var(--muted); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.cv-facts-section { border-block: 1px solid var(--line); background: var(--paper-deep); }
.cv-facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; padding-block: 55px; }
.cv-facts-grid article { padding-right: 30px; border-right: 1px solid var(--line); }
.cv-facts-grid article:last-child { border-right: 0; }
.cv-facts-grid article > span { color: var(--rust); font-family: var(--serif); font-size: 20px; }
.cv-facts-grid h2 { margin: 17px 0 9px; font-size: 28px; line-height: 1; }
.cv-facts-grid p { max-width: 290px; margin: 0; color: var(--muted); font-size: 13px; }
.cv-document { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: clamp(55px, 9vw, 135px); padding-block: 120px 140px; }
.cv-document-aside { max-width: 390px; }
.cv-document-aside h2 { margin-bottom: 23px; font-size: clamp(42px, 4.4vw, 63px); line-height: 0.98; letter-spacing: -0.04em; }
.cv-document-aside > p:not(.eyebrow) { color: var(--muted); font-size: 15px; }
.cv-document-body { max-width: 720px; }
.cv-block { padding-bottom: 43px; }
.cv-block + .cv-block { padding-top: 42px; border-top: 1px solid var(--line); }
.cv-block-last { padding-bottom: 0; }
.cv-block h3 { margin-bottom: 22px; color: var(--rust-deep); font-size: 27px; }
.cv-list { display: grid; gap: 17px; margin: 0; padding: 0; list-style: none; }
.cv-list li { display: grid; grid-template-columns: 105px 1fr; gap: 20px; font-size: 13px; }
.cv-list strong { color: var(--rust); font-family: var(--serif); font-size: 18px; font-weight: 400; }
.cv-list span, .cv-block-last p { color: var(--muted); }
.cv-list.compact { gap: 14px; }
.cv-year-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cv-year-grid span { padding: 13px 14px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.cv-exhibition-list { display: grid; border-top: 1px solid var(--line); }
.cv-exhibition-entry { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cv-exhibition-entry strong { color: var(--rust); font-family: var(--serif); font-size: 17px; font-weight: 400; }
.cv-exhibition-entry span { color: var(--muted); font-size: 12px; line-height: 1.55; }
.cv-section-note { margin: -8px 0 20px; color: var(--muted); font-size: 12px; }
.cv-block-last p { font-size: 14px; }
.cv-block-last p:last-child { margin-bottom: 0; }
.critical-opinions { padding: 28px 30px; border: 1px solid var(--line); background: rgba(255, 253, 249, 0.58); }
.critical-opinions blockquote { margin: 0 0 17px; color: var(--ink); font-family: var(--serif); font-size: clamp(22px, 2.2vw, 31px); line-height: 1.18; }
.critical-opinions cite { color: var(--rust); font-size: 11px; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; }

[hidden] { display: none !important; }

.lightbox { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 30px; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(19, 24, 26, 0.86); backdrop-filter: blur(7px); }
.lightbox-dialog { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr); width: min(1180px, 100%); max-height: min(820px, calc(100vh - 60px)); overflow: auto; background: var(--paper); box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35); }
.lightbox-image-panel { position: relative; display: grid; height: min(820px, calc(100vh - 60px)); min-height: 0; place-items: center; padding: 28px 60px; background: #202a2e; }
.lightbox-image-panel img { width: auto; height: auto; max-width: 100%; max-height: calc(100vh - 116px); object-fit: contain; }
.lightbox-image-panel > span { position: absolute; right: 22px; bottom: 18px; color: rgba(255, 253, 249, 0.65); font-size: 11px; letter-spacing: 0.1em; }
.lightbox-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 58px); }
.lightbox-copy .eyebrow { margin-bottom: 18px; font-size: 9px; }
.lightbox-category { margin-bottom: 10px; color: var(--rust); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.lightbox-copy h2 { margin-bottom: 20px; font-size: clamp(42px, 4vw, 66px); line-height: 0.95; letter-spacing: -0.04em; }
.lightbox-copy > p:not(.eyebrow):not(.lightbox-category) { color: var(--muted); font-size: 14px; }
.lightbox-meta { margin: 24px 0 28px; border-top: 1px solid var(--line); }
.lightbox-meta div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.lightbox-meta dt { color: var(--muted); }
.lightbox-meta dd { margin: 0; text-align: right; }
.lightbox-close, .lightbox-arrow { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255, 253, 249, 0.58); border-radius: 50%; background: rgba(28, 43, 53, 0.75); color: var(--white); transition: background 180ms ease, transform 180ms ease; }
.lightbox-close { top: 16px; right: 16px; width: 38px; height: 38px; font-size: 27px; line-height: 1; }
.lightbox-arrow { top: 50%; width: 40px; height: 40px; font-size: 20px; transform: translateY(-50%); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: calc(32.6% + 16px); }
.lightbox-close:hover, .lightbox-arrow:hover, .lightbox-close:focus-visible, .lightbox-arrow:focus-visible { background: var(--rust); transform: translateY(-2px); }
.lightbox-arrow:focus-visible { transform: translateY(calc(-50% - 2px)); }
body.lightbox-open { overflow: hidden; }

.contact-section { padding-block: 105px; background: var(--paper-deep); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(50px, 10vw, 145px); }
.contact-grid h2 { max-width: 520px; margin-bottom: 23px; }
.contact-lede { max-width: 400px; color: var(--muted); font-size: 15px; }
.contact-details { display: flex; flex-direction: column; gap: 4px; margin-top: 35px; color: var(--rust-deep); font-family: var(--serif); font-size: 21px; }
.contact-details a:hover, .contact-details a:focus-visible { color: var(--ink); }
.social-links { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 17px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; }
.social-links a { color: var(--muted); }
.social-links a span { color: var(--rust); font-size: 14px; }
.inquiry-form { padding: 28px; border: 1px solid var(--line); background: rgba(255, 253, 249, 0.7); box-shadow: var(--shadow); }
.inquiry-form label { display: block; margin-bottom: 17px; color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; color: var(--ink); font-size: 14px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--rust); }
.inquiry-form select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 10px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.inquiry-form button[disabled] { cursor: wait; opacity: .62; }
.form-note.is-success { color: var(--moss); }
.form-note.is-error { color: var(--rust-deep); }

.site-footer { background: var(--ink); color: rgba(255, 253, 249, 0.62); font-size: 11px; }
.footer-inner { display: flex; justify-content: space-between; gap: 25px; padding-block: 26px; }
.footer-inner > div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-brand, .footer-inner a { color: var(--ochre); }
.footer-inner a:hover, .footer-inner a:focus-visible { color: var(--white); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 920px); }
  .header-inner { min-height: 78px; }
  .brand { min-width: 0; }
  .signature-name { font-size: 23px; }
  .signature-subtitle { font-size: 8px; }
  .site-nav { gap: 18px; }
  .hero { gap: 45px; min-height: 620px; }
  .hero-gallery { min-height: 460px; }
  .hero-main-image img { height: 405px; }
  .collage-hero { gap: 45px; min-height: 650px; }
  .collage-artboard { min-height: 515px; }
  .collage-piece-large { height: 360px; }
  .collage-piece-top { height: 205px; }
  .collage-piece-bottom { height: 175px; }
  .collage-piece-vertical { height: 270px; }
  .collection-controls { grid-template-columns: 230px 1fr; }
  .select-box { grid-column: 1 / -1; max-width: 300px; }
  .collection-layout { grid-template-columns: minmax(0, 1fr) 285px; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 34px); }
  .header-inner { display: flex; position: relative; min-height: 70px; gap: 14px; }
  .brand-name { font-size: 24px; }
  .brand-signature { max-width: 185px; padding-right: 38px; }
  .signature-name { font-size: 17px; }
  .signature-subtitle { margin-top: 5px; font-size: 7px; letter-spacing: 0.17em; }
  .menu-toggle { position: absolute; top: 50%; right: 0; display: grid; gap: 5px; width: 34px; padding: 8px 0; transform: translateY(-50%); }
  .menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: absolute; top: 69px; right: 17px; left: 17px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-link:last-child { border-bottom: 0; }
  .nav-link-accent { margin-top: 8px; text-align: center; }
  .hero { display: flex; flex-direction: column; align-items: stretch; gap: 40px; min-height: 0; padding-block: 70px 80px; }
  .collage-hero { display: flex; flex-direction: column; align-items: stretch; gap: 38px; min-height: 0; padding-block: 60px 80px; }
  .collage-artboard { min-height: 410px; }
  .collage-piece-large { top: 50px; left: 19%; width: 67%; height: 285px; }
  .collage-piece-top { top: 8px; left: 0; width: 28%; height: 170px; }
  .collage-piece-bottom { bottom: 0; left: 4%; width: 39%; height: 145px; }
  .collage-piece-vertical { right: 0; bottom: 0; width: 19%; height: 215px; }
  .collage-fabric-one { height: 215px; }
  .collage-fabric-two { height: 105px; }
  .collage-copy h1 { font-size: clamp(55px, 15vw, 76px); }
  .collage-lede { font-size: 24px; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-intro { font-size: 16px; }
  .hero-facts { gap: 13px; margin-top: 45px; }
  .hero-facts dd { font-size: 9px; }
  .hero-gallery { min-height: 405px; }
  .hero-main-image { right: 5%; width: 81%; }
  .hero-main-image img { height: 330px; }
  .hero-side-image { width: 29%; }
  .hero-side-image img { height: 132px; }
  .intro-strip-inner { grid-template-columns: 1fr auto; gap: 20px; padding-block: 24px; }
  .intro-strip p { grid-column: 1 / -1; font-size: 20px; }
  .collection-section { padding-block: 88px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-lede { margin-top: 20px; }
  .collection-controls { display: flex; flex-direction: column; align-items: stretch; }
  .search-box, .select-box { width: 100%; max-width: none; }
  .filter-list { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-button { flex: 0 0 auto; }
  .collection-layout { display: flex; flex-direction: column-reverse; }
  .selected-work { position: relative; top: auto; width: 100%; }
  .selected-image-wrap img { height: 260px; }
  .work-grid { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .work-card-body { padding: 11px; }
  .work-card h3 { font-size: 18px; }
  .work-card-title-row strong { font-size: 18px; }
  .work-card-category { font-size: 9px; }
  .work-card-footer { display: block; font-size: 9px; }
  .work-card-footer span { display: block; }
  .work-card-page-link { display: block; margin-top: 4px; }
  .about-section, .cv-section, .contact-grid { display: block; }
  .about-section { padding-bottom: 90px; }
  .about-image { margin-bottom: 65px; padding-right: 17px; }
  .about-copy h2 { margin-bottom: 24px; font-size: 50px; }
  .vertical-note { right: -10px; bottom: 95px; font-size: 8px; }
  .critical-section { grid-template-columns: auto 1fr; gap: 20px 24px; margin-bottom: 90px; padding-block: 45px; }
  .critical-quote { grid-column: 2; }
  .exhibitions-section { padding-block: 85px 95px; }
  .exhibitions-section .section-heading { display: flex; align-items: start; }
  .exhibitions-section .section-heading .button { margin-top: 22px; }
  .exhibitions-intro { margin-top: 0; font-size: 18px; }
  .video-grid { grid-template-columns: 1fr; gap: 14px; }
  .video-card-copy strong { min-height: auto; margin-bottom: 17px; }
  .cv-section { padding-block: 90px; }
  .cv-intro { margin-bottom: 55px; }
  .timeline { padding-left: 29px; }
  .timeline-item { grid-template-columns: 95px 1fr; gap: 10px; }
  .timeline-item::before { left: -28px; }
  .timeline-item h3 { font-size: 20px; }
  .timeline-item p { font-size: 12px; }
  .contact-section { padding-block: 85px; }
  .contact-grid h2 { margin-bottom: 22px; font-size: 50px; }
  .inquiry-form { margin-top: 55px; padding: 20px; }
  .form-row { display: block; }
  .footer-inner { display: block; }
  .footer-inner > div + div { margin-top: 12px; }
  .cv-hero { display: block; padding-block: 72px 85px; }
  .cv-hero-image { max-width: 610px; margin-top: 60px; }
  .cv-facts-grid { grid-template-columns: 1fr; gap: 28px; }
  .cv-facts-grid article { padding: 0 0 27px; border-right: 0; border-bottom: 1px solid var(--line); }
  .cv-facts-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
  .cv-document { display: block; padding-block: 90px 105px; }
  .cv-document-aside { margin-bottom: 60px; }
  .cv-document-body { max-width: none; }
  .lightbox { padding: 15px; }
  .lightbox-dialog { display: block; max-height: calc(100vh - 30px); overflow: auto; }
  .lightbox-image-panel { height: auto; min-height: 0; padding: 48px 20px 28px; }
  .lightbox-image-panel img { max-height: 42vh; }
  .lightbox-image-panel > span { right: 18px; bottom: 10px; }
  .lightbox-copy { padding: 28px 22px 25px; }
  .lightbox-copy h2 { font-size: 48px; }
  .lightbox-meta { margin-block: 18px 22px; }
  .lightbox-next { right: 16px; }
  .lightbox-prev { left: 16px; }
  .video-modal { padding: 15px; }
  .video-modal-copy { display: block; padding: 17px 20px 20px; }
  .video-modal-copy h2 { margin: 7px 0 15px; font-size: 25px; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 20px; letter-spacing: 0.1em; }
  .brand-signature { max-width: 175px; }
  .signature-name { font-size: 15px; }
  .signature-subtitle { font-size: 6px; letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  @page { margin: 16mm; }
  body { background: #fff; }
  body::before, .site-header, .site-footer, .skip-link, .cv-actions { display: none !important; }
  .cv-hero, .cv-document { display: block; padding-block: 0 28px; }
  .cv-hero-image { display: none; }
  .cv-hero h1 { margin-bottom: 8px; font-size: 42px; }
  .cv-hero-lede { font-size: 22px; }
  .cv-facts-section { background: transparent; }
  .cv-facts-grid { padding-block: 22px; }
  .cv-document-aside { max-width: none; margin-bottom: 25px; }
  .cv-document-aside h2 { font-size: 31px; }
  .cv-block, .cv-block + .cv-block { padding-block: 20px; break-inside: avoid; }
  .cv-year-grid { gap: 7px; }
  .cv-year-grid span { padding: 8px 10px; }
}

.exhibitions-section { isolation: isolate; }

/* Galerie muzeală — un site întunecat, cu lucrarea tratată ca obiect de expoziție. */
body.museum-page {
  --paper: #111315;
  --paper-deep: #1b1e20;
  --ink: #f0e8db;
  --muted: #aaa59d;
  --line: rgba(240, 232, 219, 0.18);
  --rust: #c46a42;
  --rust-deep: #df8b5d;
  --ochre: #d7a261;
  --moss: #8b9983;
  --navy: #080a0b;
  --white: #f7f0e4;
  --shadow: 0 26px 65px rgba(0, 0, 0, 0.38);
  background: var(--paper);
}
.museum-page::before { opacity: 0.14; background-image: radial-gradient(rgba(215, 162, 97, 0.15) 0.6px, transparent 0.7px); mix-blend-mode: screen; }
.museum-page .site-header { position: absolute; width: 100%; background: linear-gradient(180deg, rgba(7, 8, 9, 0.96), rgba(7, 8, 9, 0.44), transparent); border-bottom-color: rgba(240, 232, 219, 0.12); backdrop-filter: none; }
.museum-page .site-header.is-scrolled { background: rgba(10, 12, 13, 0.94); border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); }
.museum-page .header-inner { grid-template-columns: auto 1fr auto; min-height: 102px; }
.museum-page .brand-name { color: var(--white); letter-spacing: 0.2em; }
.museum-page .site-nav { justify-self: end; }
.museum-page .nav-link { color: rgba(247, 240, 228, 0.7); }
.museum-page .nav-link:hover, .museum-page .nav-link:focus-visible, .museum-page .nav-link.is-active { color: var(--white); }
.museum-page .brand-signature { grid-column: 2; grid-row: 1; justify-self: center; align-items: center; }
.museum-page .signature-name { color: var(--ochre); font-family: var(--serif); font-size: 18px; font-style: normal; letter-spacing: 0.12em; }
.museum-page .signature-subtitle { color: rgba(247, 240, 228, 0.55); }
.museum-page .hero { max-width: none; }
.museum-page .museum-hero { display: block; min-height: 910px; padding: 156px clamp(28px, 5vw, 80px) 58px; }
.museum-page .museum-hero .hero-copy { position: relative; z-index: 5; max-width: 700px; margin: 0 auto; text-align: center; }
.museum-page .museum-hero .eyebrow { justify-content: center; color: var(--ochre); }
.museum-page .museum-hero h1 { max-width: none; margin-bottom: 19px; color: var(--white); font-size: clamp(48px, 5.8vw, 86px); }
.museum-page .museum-hero .hero-intro { max-width: 610px; margin-inline: auto; color: rgba(247, 240, 228, 0.64); }
.museum-page .museum-hero .hero-actions { justify-content: center; }
.museum-page .museum-hero .hero-facts { max-width: 630px; margin-inline: auto; border-top-color: rgba(240, 232, 219, 0.2); }
.museum-page .museum-gallery { max-width: 1450px; min-height: 650px; margin: -21px auto 0; }
.museum-page .hero-main-image { top: 0; right: 11%; width: 78%; padding: 13px 13px 0; background: #0b0d0e; box-shadow: 0 32px 58px rgba(0, 0, 0, 0.54); transform: rotate(-0.5deg); }
.museum-page .hero-main-image::before { top: 17px; left: -22px; width: calc(100% + 7px); height: calc(100% - 1px); border-color: rgba(215, 162, 97, 0.62); }
.museum-page .hero-main-image img { height: 535px; object-fit: contain; background: #0f1112; }
.museum-page .hero-main-image figcaption { background: #0b0d0e; color: var(--white); }
.museum-page .hero-main-image figcaption span { color: rgba(247, 240, 228, 0.58); }
.museum-page .hero-main-image figcaption strong { color: var(--ochre); }
.museum-page .hero-side-image { z-index: 6; top: auto; bottom: 13px; width: 14%; border: 1px solid rgba(215, 162, 97, 0.56); box-shadow: 0 13px 26px rgba(0, 0, 0, 0.45); transform: none; }
.museum-page .hero-side-image img { height: 124px; object-fit: cover; }
.museum-page .hero-side-top { right: auto; left: 2%; }
.museum-page .hero-side-bottom { right: 2%; left: auto; }
.museum-page .image-note { background: #0b0d0e; color: rgba(247, 240, 228, 0.65); }
.museum-page .intro-strip { background: #0b0d0e; border-color: rgba(240, 232, 219, 0.15); }
.museum-page .intro-strip p { color: var(--white); }
.museum-page .collection-section { padding-block: 142px; }
.museum-page .collection-heading h2, .museum-page .about-copy h2, .museum-page .cv-intro h2, .museum-page .contact-grid h2 { color: var(--white); }
.museum-page .collection-layout { display: block; }
.museum-page .selected-work { display: grid; grid-template-columns: 265px minmax(0, 1fr) 260px; gap: 0 30px; position: relative; top: auto; margin-bottom: 33px; padding: 20px; border-color: rgba(215, 162, 97, 0.45); background: #1a1d1f; box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25); }
.museum-page .selected-label { grid-column: 1 / -1; grid-row: 1; }
.museum-page .selected-image-wrap { grid-column: 1; grid-row: 2 / span 5; margin: 0; background: #0e1011; }
.museum-page .selected-image-wrap img { height: 260px; object-fit: contain; }
.museum-page .selected-category { grid-column: 2; grid-row: 2; align-self: end; }
.museum-page .selected-work h3 { grid-column: 2; grid-row: 3; align-self: start; margin-bottom: 12px; color: var(--white); }
.museum-page .selected-description { grid-column: 2; grid-row: 4; align-self: start; }
.museum-page .selected-meta { grid-column: 3; grid-row: 2 / span 3; align-self: start; }
.museum-page .selected-work .button { grid-column: 3; grid-row: 5; align-self: end; }
.museum-page .work-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.museum-page .work-card { border-color: rgba(240, 232, 219, 0.18); background: #191c1e; }
.museum-page .work-card-image { aspect-ratio: 1 / 1.12; background: #0e1011; }
.museum-page .work-card-image img { object-fit: contain; }
.museum-page .work-card:hover, .museum-page .work-card:focus-within { border-color: var(--ochre); box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32); }
.museum-page .about-section { padding-bottom: 145px; }
.museum-page .about-image::after { border-color: var(--ochre); }
.museum-page .exhibitions-section { border-block: 1px solid rgba(215, 162, 97, 0.19); background: #090b0c; }
.museum-page .cv-section { border-top: 1px solid var(--line); }
.museum-page .contact-section { background: #1a1d1f; }
.museum-page .inquiry-form { border-color: rgba(215, 162, 97, 0.35); background: rgba(9, 11, 12, 0.54); }
.museum-page .site-footer { background: #070809; }

/* Atelier viu — o ton cald și layout-ul tactil pun procesul înaintea arhivei. */
body.atelier-page {
  --paper: #efe5d7;
  --paper-deep: #dfcdb5;
  --ink: #352e27;
  --muted: #776b5d;
  --line: rgba(88, 66, 44, 0.2);
  --rust: #a85032;
  --rust-deep: #843c26;
  --ochre: #b78345;
  --moss: #6e775e;
  --navy: #46372e;
  --white: #fffaf2;
  --shadow: 0 18px 45px rgba(78, 51, 29, 0.16);
  background: var(--paper);
}
.atelier-page .site-header { background: rgba(239, 229, 215, 0.9); }
.atelier-page .site-header.is-scrolled { background: rgba(239, 229, 215, 0.97); }
.atelier-page .header-inner { min-height: 88px; }
.atelier-page .brand-name { color: var(--rust); letter-spacing: 0.16em; }
.atelier-page .signature-name { color: var(--moss); }
.atelier-page .atelier-hero { position: relative; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); align-items: stretch; min-height: 785px; padding-block: 105px 90px; }
.atelier-page .atelier-hero::before { position: absolute; z-index: -1; top: 40px; right: -8vw; width: 44vw; height: 690px; border: 1px solid rgba(168, 80, 50, 0.18); background: repeating-linear-gradient(0deg, rgba(155, 113, 65, 0.1) 0 1px, transparent 1px 7px), repeating-linear-gradient(90deg, rgba(155, 113, 65, 0.08) 0 1px, transparent 1px 8px); content: ""; transform: rotate(-3deg); }
.atelier-page .atelier-hero .hero-copy { align-self: center; padding-bottom: 30px; }
.atelier-page .atelier-hero h1 { max-width: 500px; color: var(--ink); font-size: clamp(58px, 6vw, 92px); }
.atelier-page .atelier-hero .hero-intro { max-width: 480px; font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.atelier-page .atelier-gallery { min-height: 595px; margin-right: -3vw; }
.atelier-page .atelier-gallery::before { position: absolute; z-index: 0; top: 3%; right: 0; bottom: 4%; left: 9%; border: 1px solid rgba(168, 80, 50, 0.35); content: ""; transform: rotate(2deg); }
.atelier-page .hero-main-image { z-index: 2; top: 18px; right: 11%; width: 76%; padding: 8px; background: #f8f0e4; transform: rotate(1.5deg); }
.atelier-page .hero-main-image::before { top: 17px; left: -17px; border-style: dashed; border-color: rgba(168, 80, 50, 0.54); }
.atelier-page .hero-main-image img { height: 475px; object-position: center; }
.atelier-page .hero-main-image figcaption { padding: 10px 14px; background: #f8f0e4; }
.atelier-page .hero-side-image { z-index: 4; width: 31%; box-shadow: 0 12px 26px rgba(78, 51, 29, 0.2); }
.atelier-page .hero-side-image img { height: 168px; }
.atelier-page .hero-side-top { top: 58px; right: 0; transform: rotate(4deg); }
.atelier-page .hero-side-bottom { bottom: 18px; left: 1%; transform: rotate(-4deg); }
.atelier-page .intro-strip { background: #dfcdb5; }
.atelier-page .intro-strip p { color: var(--rust-deep); }
.atelier-page .collection-section { padding-block: 122px; }
.atelier-page .collection-heading h2 { color: var(--ink); }
.atelier-page .collection-layout { grid-template-columns: 315px minmax(0, 1fr); }
.atelier-page .collection-layout > div { grid-column: 2; grid-row: 1; }
.atelier-page .selected-work { grid-column: 1; grid-row: 1; background: #fff9f0; border: 2px solid rgba(168, 80, 50, 0.38); }
.atelier-page .selected-work::after { position: absolute; top: 11px; right: 11px; width: 13px; height: 13px; border: 1px solid var(--rust); border-radius: 50%; content: ""; }
.atelier-page .selected-image-wrap { border: 1px solid rgba(88, 66, 44, 0.16); }
.atelier-page .selected-image-wrap img { object-fit: contain; }
.atelier-page .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.atelier-page .work-card { background: rgba(255, 250, 242, 0.62); }
.atelier-page .work-card-image { aspect-ratio: 1 / 1.04; background: #202a2e; }
.atelier-page .work-card-image img { object-fit: cover; padding: 0; }
.atelier-page .work-card:hover, .atelier-page .work-card:focus-within { border-color: var(--rust); box-shadow: 0 18px 30px rgba(78, 51, 29, 0.14); }
.atelier-page .about-section { padding-bottom: 145px; }
.atelier-page .about-image { padding: 18px 45px 45px 0; }
.atelier-page .about-image::after { right: 15px; bottom: 18px; border-style: dashed; border-color: var(--rust); }
.atelier-page .about-image img { object-fit: contain; background: #dfcdb5; }
.atelier-page .about-copy h2 { color: var(--rust-deep); }
.atelier-page .exhibitions-section { background: #46372e; }
.atelier-page .video-card { border-color: rgba(255, 250, 242, 0.2); background: #574238; }
.atelier-page .cv-section { border-top: 1px solid var(--line); }
.atelier-page .contact-section { background: #dfcdb5; }
.atelier-page .inquiry-form { background: rgba(255, 250, 242, 0.68); }

@media (max-width: 1120px) {
  .museum-page .museum-hero { min-height: 820px; }
  .museum-page .museum-gallery { min-height: 560px; }
  .museum-page .hero-main-image img { height: 455px; }
  .museum-page .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .atelier-page .atelier-hero { min-height: 700px; }
  .atelier-page .atelier-gallery { min-height: 520px; }
  .atelier-page .hero-main-image img { height: 405px; }
}

@media (max-width: 760px) {
  .museum-page .site-header { position: sticky; background: rgba(10, 12, 13, 0.93); }
  .museum-page .header-inner { min-height: 70px; }
  .museum-page .brand-signature { grid-column: auto; grid-row: auto; }
  .museum-page .signature-name { font-size: 14px; }
  .museum-page .signature-subtitle { color: var(--ochre); }
  .museum-page .museum-hero { min-height: 0; padding: 64px 17px 54px; }
  .museum-page .museum-hero .hero-copy { text-align: left; }
  .museum-page .museum-hero .eyebrow { justify-content: flex-start; }
  .museum-page .museum-hero .hero-actions { justify-content: flex-start; }
  .museum-page .museum-hero .hero-facts { margin-inline: 0; }
  .museum-page .museum-gallery { min-height: 435px; margin-top: 20px; }
  .museum-page .hero-main-image { right: 7%; width: 86%; padding: 6px 6px 0; }
  .museum-page .hero-main-image img { height: 285px; }
  .museum-page .hero-side-image { width: 27%; bottom: 0; }
  .museum-page .hero-side-image img { height: 106px; }
  .museum-page .hero-side-top { left: 0; }
  .museum-page .hero-side-bottom { right: 0; }
  .museum-page .collection-layout { display: flex; flex-direction: column; }
  .museum-page .selected-work { display: block; }
  .museum-page .selected-image-wrap { margin-bottom: 18px; }
  .museum-page .selected-work .button { width: 100%; }
  .museum-page .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .atelier-page .atelier-hero { display: flex; min-height: 0; padding-block: 67px 72px; }
  .atelier-page .atelier-hero::before { top: 360px; right: -17px; width: 88vw; height: 380px; }
  .atelier-page .atelier-gallery { min-height: 430px; margin: 0; }
  .atelier-page .hero-main-image { right: 9%; width: 80%; }
  .atelier-page .hero-main-image img { height: 300px; }
  .atelier-page .hero-side-image { width: 30%; }
  .atelier-page .hero-side-image img { height: 125px; }
  .atelier-page .hero-side-top { top: 42px; }
  .atelier-page .hero-side-bottom { bottom: 0; }
  .atelier-page .collection-layout { display: flex; flex-direction: column; }
  .atelier-page .collection-layout > div { order: 2; }
  .atelier-page .selected-work { order: 1; position: relative; top: auto; }
  .atelier-page .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .atelier-page .about-image { padding-right: 25px; }
}

@media (max-width: 480px) {
  .museum-page .signature-name { font-size: 12px; }
  .museum-page .signature-subtitle { font-size: 6px; }
  .atelier-page .atelier-hero h1 { font-size: 58px; }
}

/* Decorațiuni originale generate pentru primul index — nu sunt decupaje din lucrările artistei. */
.generated-details-page .hero,
.generated-details-page .about-section,
.generated-details-page .exhibitions-section,
.generated-details-page .cv-section { position: relative; }
.generated-details-page .generated-ornaments { position: absolute; z-index: 0; inset: 0; overflow: visible; pointer-events: none; }
.generated-details-page .generated-ornament { position: absolute; display: block; height: auto; max-width: none; object-fit: contain; }
.generated-details-page .hero-copy,
.generated-details-page .hero-gallery,
.generated-details-page .about-image,
.generated-details-page .about-copy,
.generated-details-page .exhibitions-section > .shell,
.generated-details-page .cv-section > *:not(.generated-ornaments) { position: relative; z-index: 1; }
.generated-details-page .generated-hero-ornaments { overflow: hidden; }
.generated-details-page .generated-botanical-side { top: -18px; left: -48px; width: 165px; opacity: 0.67; }
.generated-details-page .generated-sea-wave { top: -18px; right: -44px; width: 315px; opacity: 0.6; }
.generated-details-page .about-section { isolation: isolate; overflow: hidden; }
.generated-details-page .generated-about-wave { top: -29px; right: -24px; width: 325px; opacity: 0.38; transform: rotate(2deg); }
.generated-details-page .generated-about-seasons { right: -40px; bottom: -72px; width: 650px; opacity: 0.31; transform: rotate(-2deg); }
.generated-details-page .generated-exhibitions-ornaments { overflow: hidden; }
.generated-details-page .generated-exhibitions-wave { top: -42px; right: -74px; width: 390px; opacity: 0.2; transform: rotate(3deg); }
.generated-details-page .generated-cv-ornaments { overflow: hidden; }
.generated-details-page .generated-cv-seasons { right: 9%; bottom: -74px; width: 650px; opacity: 0.25; transform: rotate(-1deg); }
.generated-details-page .intro-strip { position: relative; overflow: hidden; }
.generated-details-page .intro-strip::after { background-image: url("public/images/generated-sea-wave.png"); background-position: 55% 52%; opacity: 0.26; }

@media (max-width: 760px) {
  .generated-details-page .generated-botanical-side { top: -9px; left: -70px; width: 112px; opacity: 0.34; }
  .generated-details-page .generated-sea-wave { top: -10px; right: -74px; width: 205px; opacity: 0.32; }
  .generated-details-page .generated-about-wave { right: -100px; width: 245px; opacity: 0.22; }
  .generated-details-page .generated-about-seasons { right: -190px; bottom: -38px; width: 500px; opacity: 0.24; }
  .generated-details-page .generated-exhibitions-wave { right: -105px; width: 270px; opacity: 0.15; }
  .generated-details-page .generated-cv-seasons { right: -170px; bottom: -35px; width: 500px; opacity: 0.18; }
}

/* Zoom full-screen: imaginea se mărește cât permite ecranul, fără crop și fără deformare. */
.lightbox { padding: 0; }
.lightbox-dialog { --lightbox-copy-width: clamp(410px, 32vw, 560px); width: 100vw; height: 100vh; max-width: none; max-height: none; grid-template-columns: minmax(0, 1fr) var(--lightbox-copy-width); overflow: hidden; }
.lightbox-image-panel { width: 100%; height: 100vh; min-height: 0; padding: 46px 68px; overflow: auto; overscroll-behavior: contain; background: #202a2e; }
.lightbox-image-panel img { display: block; width: 100%; height: 100%; max-width: none; max-height: none; min-width: 0; min-height: 0; object-fit: contain; }
.lightbox-copy { min-width: 0; overflow-y: auto; }
.lightbox-copy h2 { max-width: 100%; overflow-wrap: normal; word-break: normal; hyphens: none; font-size: clamp(40px, 3.8vw, 64px); }
.lightbox-next { right: calc(var(--lightbox-copy-width) + 16px); }

@media (max-width: 760px) {
  .lightbox { padding: 0; }
  .lightbox-dialog { display: flex; width: 100vw; height: 100vh; max-height: none; flex-direction: column; overflow: hidden; }
  .lightbox-image-panel { width: 100%; height: 64vh; flex: 0 0 64vh; padding: 48px 18px 25px; }
  .lightbox-image-panel img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
  .lightbox-copy { min-height: 0; overflow-y: auto; padding: 24px 22px 25px; }
  .lightbox-next { right: 16px; }
}

/* Orice imagine de lucrare care poate fi mărită indică vizual acțiunea. */
[data-open-work], .selected-image-wrap { cursor: zoom-in; }
[data-open-work]:focus-visible, .selected-image-wrap:focus-visible { outline: 2px solid var(--rust); outline-offset: 5px; }
.video-image.is-video-trigger { cursor: pointer; }
.video-image.is-video-trigger:focus-visible { outline: 2px solid var(--rust); outline-offset: -4px; }

/* Selector discret de limbă, disponibil pe toate variantele site-ului. */
.header-inner { position: relative; }
.language-switcher { position: absolute; z-index: 4; top: 9px; right: 0; display: flex; align-items: center; gap: 7px; color: var(--muted); font-family: var(--sans); font-size: 10px; letter-spacing: .14em; line-height: 1; }
.language-switcher a { color: inherit; text-decoration: none; transition: color .2s ease; }
.language-switcher a:hover, .language-switcher a:focus-visible, .language-switcher a.is-active { color: var(--rust); }
.language-switcher-separator { color: var(--line); }

@media (max-width: 760px) {
  .language-switcher { top: 14px; right: 48px; font-size: 9px; }
}

/* Colajul rămâne o compoziție în două coloane și nu împinge textul sub pliul paginii. */
@media (min-width: 1121px) {
  .collage-page .collage-hero { grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); gap: clamp(42px, 5vw, 86px); min-height: 700px; padding-block: 46px 70px; }
  .collage-page .collage-artboard { min-height: 570px; }
  .collage-page .collage-copy { align-self: center; }
}

/* Arhiva albumului — o zonă documentară distinctă, cu lucrările separate de paginile-sursă. */
.archive-page { background: var(--paper); }
.archive-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr); align-items: center; gap: clamp(50px, 10vw, 140px); min-height: 690px; padding-block: 105px 115px; }
.archive-hero-copy { max-width: 620px; }
.archive-hero h1 { max-width: 600px; margin-bottom: 24px; font-size: clamp(56px, 6.6vw, 96px); line-height: .93; letter-spacing: -.055em; }
.archive-hero-lede { max-width: 550px; color: var(--muted); font-family: var(--serif); font-size: clamp(20px, 2vw, 27px); line-height: 1.24; }
.archive-stats { display: flex; flex-wrap: wrap; gap: 10px 27px; margin-top: 35px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.archive-stats span { display: flex; align-items: baseline; gap: 6px; }
.archive-stats strong { color: var(--rust); font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0; }
.archive-original-note { max-width: 460px; margin-top: 30px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.archive-cover { position: relative; margin: 0; padding: 18px 18px 0 0; }
.archive-cover::before { position: absolute; z-index: -1; top: 0; right: 0; bottom: 24px; left: 24px; border: 1px solid var(--ochre); content: ""; }
.archive-cover img { display: block; width: 100%; aspect-ratio: 1.8 / 1; object-fit: cover; box-shadow: var(--shadow); }
.archive-cover figcaption { padding-top: 12px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.archive-section { padding-block: 110px 125px; }
.archive-section-soft { background: var(--paper-deep); }
.archive-heading { margin-bottom: 42px; }
.archive-heading .section-lede { max-width: 430px; }
.archive-work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.archive-work-card, .archive-page-card { min-width: 0; padding: 0; border: 1px solid var(--line); background: rgba(255, 253, 249, .68); color: var(--ink); text-align: left; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.archive-work-card:hover, .archive-work-card:focus-visible, .archive-page-card:hover, .archive-page-card:focus-visible { z-index: 1; border-color: var(--rust); box-shadow: 0 15px 30px rgba(56, 40, 24, .13); transform: translateY(-4px); }
.archive-card-image { display: block; aspect-ratio: 1 / 1.06; overflow: hidden; background: #e3d6c4; }
.archive-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 400ms ease; }
.archive-work-card:hover .archive-card-image img { transform: scale(1.025); }
.archive-card-copy { display: block; padding: 15px 16px 17px; }
.archive-card-copy small, .archive-page-copy small { display: block; margin-bottom: 8px; color: var(--rust); font-size: 9px; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.archive-card-copy strong, .archive-page-copy strong { display: block; min-height: 42px; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.02; }
.archive-card-copy > span, .archive-page-copy > span { display: flex; justify-content: space-between; gap: 10px; margin-top: 15px; padding-top: 11px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.archive-card-copy b, .archive-page-copy b { color: var(--rust); font-size: 15px; font-weight: 400; }
.archive-filter-list { display: flex; flex-wrap: wrap; gap: 9px; margin: -8px 0 30px; }
.archive-filter { padding: 9px 14px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.archive-filter:hover, .archive-filter:focus-visible, .archive-filter.is-active { border-color: var(--rust); background: var(--rust); color: var(--white); }
.archive-page-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.archive-page-card { background: rgba(255, 253, 249, .45); }
.archive-page-image { display: block; aspect-ratio: 1 / 1.05; overflow: hidden; background: #ece5da; }
.archive-page-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.archive-page-copy { display: block; padding: 11px 11px 13px; }
.archive-page-copy small { min-height: 24px; margin-bottom: 5px; font-size: 8px; }
.archive-page-copy strong { min-height: 25px; font-family: var(--sans); font-size: 11px; line-height: 1.15; }
.archive-page-copy > span { margin-top: 9px; padding-top: 8px; font-size: 9px; }
.archive-lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 26px; }
.archive-lightbox-backdrop { position: absolute; inset: 0; background: rgba(19, 24, 26, .9); backdrop-filter: blur(7px); }
.archive-lightbox-dialog { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr); width: min(1400px, 100%); height: min(900px, calc(100vh - 52px)); overflow: hidden; background: var(--paper); box-shadow: 0 28px 85px rgba(0, 0, 0, .4); }
.archive-lightbox-image-panel { position: relative; display: grid; min-height: 0; place-items: center; padding: 54px 62px; overflow: auto; background: #202a2e; }
.archive-lightbox-image-panel img { display: block; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
.archive-lightbox-image-panel > span { position: absolute; right: 22px; bottom: 18px; color: rgba(255, 253, 249, .62); font-size: 10px; letter-spacing: .1em; }
.archive-lightbox-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 65px); overflow-y: auto; }
.archive-lightbox-copy .eyebrow { margin-bottom: 19px; font-size: 9px; }
.archive-lightbox-copy h2 { margin-bottom: 20px; font-size: clamp(39px, 4vw, 68px); line-height: .95; letter-spacing: -.045em; overflow-wrap: anywhere; }
.archive-lightbox-copy > p:not(.eyebrow) { color: var(--muted); font-family: var(--serif); font-size: 17px; line-height: 1.35; }
.archive-lightbox-meta { margin: 29px 0 30px; border-top: 1px solid var(--line); }
.archive-lightbox-meta div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.archive-lightbox-meta dt { color: var(--muted); }
.archive-lightbox-meta dd { margin: 0; color: var(--ink); text-align: right; }
.archive-lightbox-close, .archive-lightbox-arrow { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255, 253, 249, .66); border-radius: 50%; background: rgba(28, 43, 53, .78); color: var(--white); transition: background 180ms ease, transform 180ms ease; }
.archive-lightbox-close { top: 15px; right: 15px; width: 39px; height: 39px; font-size: 27px; line-height: 1; }
.archive-lightbox-arrow { top: 50%; width: 42px; height: 42px; font-size: 20px; transform: translateY(-50%); }
.archive-lightbox-prev { left: 16px; }
.archive-lightbox-next { right: calc(32.4% + 16px); }
.archive-lightbox-close:hover, .archive-lightbox-close:focus-visible, .archive-lightbox-arrow:hover, .archive-lightbox-arrow:focus-visible { background: var(--rust); }
.archive-lightbox-arrow:hover, .archive-lightbox-arrow:focus-visible { transform: translateY(calc(-50% - 2px)); }
body.archive-lightbox-open { overflow: hidden; }

@media (max-width: 1120px) {
  .archive-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); gap: 50px; }
  .archive-work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .archive-page-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .archive-hero { display: flex; min-height: 0; flex-direction: column; align-items: stretch; padding-block: 70px 82px; }
  .archive-hero h1 { font-size: clamp(53px, 15vw, 77px); }
  .archive-hero-lede { font-size: 21px; }
  .archive-cover { width: min(100%, 520px); margin-inline: auto; }
  .archive-section { padding-block: 76px 85px; }
  .archive-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .archive-card-copy { padding: 11px 12px 13px; }
  .archive-card-copy strong { min-height: 35px; font-size: 18px; }
  .archive-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .archive-page-copy { padding: 8px 8px 10px; }
  .archive-page-copy strong { font-size: 10px; }
  .archive-lightbox { padding: 0; }
  .archive-lightbox-dialog { display: flex; width: 100vw; height: 100vh; flex-direction: column; }
  .archive-lightbox-image-panel { flex: 0 0 58vh; height: 58vh; padding: 48px 25px 27px; }
  .archive-lightbox-image-panel img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
  .archive-lightbox-copy { flex: 1 1 auto; justify-content: flex-start; padding: 25px 22px 30px; }
  .archive-lightbox-copy h2 { font-size: 42px; }
  .archive-lightbox-copy > p:not(.eyebrow) { font-size: 16px; }
  .archive-lightbox-meta { margin-block: 20px; }
  .archive-lightbox-next { right: 16px; }
}

@media (max-width: 480px) {
  .archive-stats { gap: 8px 15px; }
  .archive-stats strong { font-size: 18px; }
  .archive-filter-list { gap: 6px; }
  .archive-filter { padding: 8px 10px; font-size: 9px; }
  .archive-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Legătura discretă dintre portofoliul actual și arhiva documentară. */
.album-teaser-section { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 9vw, 130px); align-items: center; padding-block: 105px 125px; border-top: 1px solid var(--line); }
.album-teaser-copy { max-width: 410px; }
.album-teaser-copy h2 { margin-bottom: 22px; font-size: clamp(42px, 4.5vw, 64px); line-height: .96; }
.album-teaser-copy p:not(.eyebrow) { margin-bottom: 24px; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.28; }
.album-teaser-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, minmax(115px, 1fr)); gap: 12px; }
.album-teaser-card { position: relative; min-height: 150px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-deep); }
.album-teaser-card:first-child { grid-row: 1 / span 2; }
.album-teaser-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.album-teaser-card:first-child img { object-position: center; }
.album-teaser-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18, 21, 22, .76)); content: ""; }
.album-teaser-card span { position: absolute; z-index: 1; right: 13px; bottom: 12px; left: 13px; color: var(--white); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.album-teaser-card:hover img, .album-teaser-card:focus-visible img { transform: scale(1.045); }

@media (max-width: 760px) {
  .album-teaser-section { display: flex; flex-direction: column; align-items: stretch; padding-block: 76px 85px; }
  .album-teaser-copy { max-width: 520px; }
  .album-teaser-grid { min-height: 360px; }
}

/* Fișa individuală a unei lucrări — pagină distribuibilă, cu datele separate de zoom. */
.work-page { background: var(--paper); }
.work-detail-hero { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr); align-items: center; gap: clamp(50px, 7vw, 110px); min-height: 720px; padding-block: 86px 110px; }
.work-detail-image-panel { position: relative; display: grid; min-height: 560px; place-items: center; padding: 28px; background: #202a2e; box-shadow: var(--shadow); cursor: zoom-in; }
.work-detail-image-panel::before { position: absolute; inset: 18px; border: 1px solid rgba(255, 253, 249, .18); content: ""; pointer-events: none; }
.work-detail-image-panel img { display: block; width: 100%; height: auto; max-width: none; max-height: 610px; object-fit: contain; }
.work-detail-image-note { position: absolute; right: 20px; bottom: 16px; color: rgba(255, 253, 249, .62); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.work-detail-copy { min-width: 0; max-width: 510px; }
.work-detail-category { margin-bottom: 14px; color: var(--rust); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.work-detail-copy h1 { max-width: none; margin-bottom: 25px; font-size: clamp(55px, 6vw, 92px); line-height: .91; overflow-wrap: anywhere; }
.work-detail-description { max-width: 470px; margin-bottom: 32px; color: var(--muted); font-family: var(--serif); font-size: 21px; line-height: 1.25; }
.work-detail-meta { margin: 0 0 28px; border-top: 1px solid var(--line); }
.work-detail-meta div { display: grid; grid-template-columns: minmax(110px, .8fr) minmax(0, 1.2fr); gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.work-detail-meta dt { color: var(--muted); }
.work-detail-meta dd { margin: 0; color: var(--ink); text-align: right; overflow-wrap: anywhere; }
.work-detail-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.work-detail-source { max-width: 470px; margin-top: 25px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.work-detail-note-section { border-block: 1px solid var(--line); background: var(--paper-deep); }
.work-detail-note-grid { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr); gap: 35px; align-items: center; min-height: 135px; }
.work-detail-note-grid .eyebrow { margin: 0; }
.work-detail-note-grid > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: 20px; line-height: 1.25; }
.work-detail-image-panel:focus-visible { outline: 2px solid var(--rust); outline-offset: 5px; }
.work-page .lightbox-dialog { grid-template-columns: minmax(0, 1fr) minmax(360px, .45fr); }
.work-page .lightbox-image-panel { background: #202a2e; }

/* Reguli mobile comune: header compact, fără overflow orizontal și imagini întregi. */
html { overflow-x: hidden; }
body { min-width: 0; }

@media (max-width: 760px) {
  .site-header { overflow: visible; }
  .header-inner { padding-block: 9px; }
  .brand { min-width: 0; }
  .brand-name { white-space: nowrap; }
  .brand-signature { min-width: 0; max-width: min(47vw, 190px); padding-right: 40px; overflow: hidden; }
  .signature-name { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .signature-subtitle { white-space: nowrap; }
  .language-switcher { top: 8px; right: 48px; }
  .site-nav { z-index: 30; max-height: calc(100svh - 85px); overflow-y: auto; }
  .hero, .collage-hero, .atelier-hero, .museum-hero { width: 100%; }
  .hero-gallery, .collage-artboard, .atelier-gallery, .museum-gallery { width: 100%; max-width: 100%; overflow: visible; }
  .hero-main-image img, .hero-side-image img { height: auto; aspect-ratio: 1 / 1.1; object-fit: contain; }
  .hero-main-image img { max-height: 390px; }
  .hero-side-image img { max-height: 150px; }
  .section-heading h2, .about-copy h2, .cv-intro h2, .contact-grid h2 { overflow-wrap: anywhere; }
  .work-card-title-row strong, .work-card h3 { overflow-wrap: anywhere; }
  .selected-work { overflow: hidden; }
  .selected-work h3 { overflow-wrap: anywhere; }
  .selected-page-link { margin: 0 0 17px; }
  .selected-work .button { width: 100%; }
  .video-modal { padding: 10px; }
  .video-modal-dialog { max-height: calc(100svh - 20px); overflow-y: auto; }
  .video-frame-wrap { min-height: 0; }
  .lightbox-dialog { width: 100vw; height: 100svh; }
  .lightbox-image-panel { flex-basis: 58svh; height: 58svh; padding: 45px 16px 25px; }
  .lightbox-image-panel img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; }
  .lightbox-copy { padding: 22px 18px 28px; }
  .lightbox-copy h2 { max-width: 100%; font-size: clamp(38px, 12vw, 58px); overflow-wrap: anywhere; }
  .lightbox-page-link { margin-bottom: 16px; }
  .work-detail-hero { display: flex; min-height: 0; flex-direction: column; align-items: stretch; gap: 44px; padding-block: 64px 75px; }
  .work-detail-image-panel { min-height: 0; padding: 18px; }
  .work-detail-image-panel img { width: 100%; height: auto; max-width: none; max-height: 64svh; object-fit: contain; }
  .work-detail-image-note { position: static; display: block; margin-top: 13px; text-align: center; }
  .work-detail-copy { max-width: none; }
  .work-detail-copy h1 { font-size: clamp(53px, 15vw, 78px); }
  .work-detail-description { font-size: 19px; }
  .work-detail-meta div { grid-template-columns: minmax(95px, .75fr) minmax(0, 1.25fr); }
  .work-detail-actions { align-items: stretch; flex-direction: column; }
  .work-detail-actions .button { width: 100%; }
  .work-detail-note-grid { display: block; padding-block: 32px 40px; }
  .work-detail-note-grid .eyebrow { margin-bottom: 18px; }
  .work-detail-note-grid > p:last-child { font-size: 18px; }
  .work-page .lightbox-dialog { display: flex; height: 100svh; flex-direction: column; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 26px); }
  .brand-signature { max-width: 42vw; }
  .signature-name { font-size: 14px; }
  .signature-subtitle { font-size: 5px; }
  .work-detail-meta div { gap: 10px; font-size: 11px; }
}

/* Pe telefoane înguste, identitatea trece pe rândul doi ca numele artistei să nu fie tăiat. */
@media (max-width: 760px) {
  .header-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; min-height: 96px; gap: 4px 14px; padding-block: 11px 9px; }
  .brand { grid-column: 1; grid-row: 1; }
  .brand-name { font-size: clamp(20px, 6vw, 25px); }
  .brand-signature { grid-column: 1 / -1; grid-row: 2; align-items: flex-start; justify-self: start; max-width: none; padding: 0; }
  .signature-name { overflow: visible; font-size: clamp(17px, 5vw, 21px); white-space: nowrap; }
  .signature-subtitle { margin-top: 5px; font-size: 7px; }
  .menu-toggle { top: 15px; right: 0; transform: none; }
  .language-switcher { top: 11px; right: 48px; }
  .site-nav { top: 95px; right: 13px; left: 13px; }
  .hero { padding-top: 56px; }
  .collage-hero, .atelier-hero, .museum-hero { padding-top: 52px; }
  .museum-page .header-inner { min-height: 96px; }
  .museum-page .brand-signature { grid-column: 1 / -1; grid-row: 2; align-items: flex-start; justify-self: start; max-width: none; padding: 0; }
  .museum-page .signature-name { font-size: clamp(17px, 5vw, 21px); white-space: nowrap; }
  .museum-page .signature-subtitle { margin-top: 5px; font-size: 7px; }
}

@media (max-width: 380px) {
  .header-inner { min-height: 92px; }
  .signature-name { font-size: 16px; }
  .signature-subtitle { font-size: 6px; }
  .site-nav { top: 91px; }
}

/* Pagini de informare: aceeași atmosferă editorială, cu text confortabil pe mobil. */
.legal-page { background: var(--paper); }
.legal-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); gap: clamp(50px, 9vw, 145px); align-items: start; padding-block: 112px 130px; }
.legal-hero-copy { min-width: 0; max-width: 760px; }
.legal-hero-copy h1 { max-width: 720px; margin: 24px 0 26px; font-size: clamp(58px, 8vw, 118px); line-height: .9; letter-spacing: -.04em; overflow-wrap: anywhere; }
.legal-intro { max-width: 620px; margin: 0 0 45px; color: var(--muted); font-family: var(--serif); font-size: clamp(21px, 2.2vw, 29px); line-height: 1.24; }
.legal-sections { border-top: 1px solid var(--line); }
.legal-sections section { padding: 25px 0 28px; border-bottom: 1px solid var(--line); }
.legal-sections h2 { margin: 0 0 10px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.legal-sections p { max-width: 680px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-aside { position: sticky; top: 130px; padding: 31px; border: 1px solid var(--line); background: var(--paper-deep); }
.legal-aside h2 { margin: 24px 0 30px; font-family: var(--serif); font-size: clamp(34px, 3.3vw, 52px); line-height: .98; }
.legal-nav { display: grid; margin-bottom: 32px; border-top: 1px solid var(--line); }
.legal-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; line-height: 1.3; }
.legal-nav a:hover, .legal-nav a:focus-visible, .legal-nav a.is-current { color: var(--rust); }
.legal-nav a.is-current { font-weight: 600; }
.legal-aside > .text-link { font-size: 11px; }

@media (max-width: 760px) {
  .legal-hero { display: flex; flex-direction: column; gap: 46px; padding-block: 70px 82px; }
  .legal-hero-copy h1 { margin-top: 20px; font-size: clamp(52px, 16vw, 78px); }
  .legal-intro { margin-bottom: 34px; font-size: 21px; }
  .legal-sections section { padding-block: 22px 24px; }
  .legal-sections p { font-size: 14px; line-height: 1.65; }
  .legal-aside { position: static; width: 100%; padding: 24px 20px 26px; }
  .legal-aside h2 { max-width: 420px; margin: 21px 0 24px; font-size: 39px; }
}
