/* DI vizijos — site styles */

:root {
  --page-gutter: clamp(32px, 6vw, 96px);
  --paper: #ece8df;
  --paper-warm: #e3dccd;
  --ink: #141414;
  --ink-soft: #2a2926;
  --muted: #807b72;
  --rule: #c8c0b0;
  --accent: #ca6022;
  --accent-deep: #a64a17;
  --fog: #d4cdbe;

  --serif: "Cormorant Garamond", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(900px 600px at 110% 30%, rgba(202,96,34,.05), transparent 60%),
    radial-gradient(1000px 800px at -10% 110%, rgba(20,20,20,.05), transparent 60%),
    var(--paper);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
img { display: block; max-width: 100%; height: auto; }

/* Paper grain overlay */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(237, 231, 222, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .01em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-brand > span { white-space: nowrap; }
.nav-brand .dot {
  color: var(--accent);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover { border-color: var(--ink); }
.nav-links a.active { color: var(--accent); border-color: var(--accent); }

/* ---------- TYPE ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.rule {
  height: 1px;
  background: var(--rule);
  margin: 0;
  border: 0;
}

/* ---------- HERO ---------- */
.hero {
  padding: 60px var(--page-gutter) 30px;
  position: relative;
  z-index: 2;
}
.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.hero-meta .l { color: var(--muted); }
.hero-title {
  padding: 20px 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.hero-title h1 {
  margin: 0;
  font-size: clamp(72px, 4vw, 200px);
}
.hero-title h1 .accent { color: var(--accent); font-style: italic; }
.hero-title h1 .small-line {
  color: var(--ink-soft);
  padding-top: 8px;
}
.hero-side {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-left: 1px solid var(--rule);
  padding-left: 20px;
}
.hero-figure {
  position: relative;
  aspect-ratio: 2.8/1;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* ---------- SECTION ---------- */
.section {
  padding: 80px var(--page-gutter);
  position: relative;
  z-index: 2;
}
.section.tour,
.section#autoriai {
  padding-left: calc(var(--page-gutter) + 40px);
  padding-right: calc(var(--page-gutter) + 40px);
}
/* Home-page footer sits inset to match Tour/Autoriai above it */
main > .footer {
  padding-left: calc(var(--page-gutter) + 40px);
  padding-right: calc(var(--page-gutter) + 40px);
}
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 30px;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 40px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head-center {
  display: block;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 12px;
}
.section-head-center h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.01em;
  line-height: 1;
  margin: 0;
}
.section-head-center h2 em { color: var(--accent); font-style: italic; }
.section-head-center .tour-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- TOUR SCHEDULE ---------- */
.tour-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.tour-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.6fr;
  gap: 40px;
  padding: 36px 8px;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background .25s;
}
.tour-row:hover { background: rgba(202,96,34,0.03); }
.tour-n {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .12em;
  padding-top: 6px;
}
.tour-when .k {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tour-when .v {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}
.tour-when .v em { color: var(--accent); font-style: italic; display: block; margin-bottom: 2px; }
.tour-when .v em::after { content: " –"; color: var(--ink); opacity: .4; }
.tour-where .venue {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 10px;
  display: block;
}
.tour-where .addr {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* ---------- AUTHORS INDEX ---------- */
.authors-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.author-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr auto;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
  position: relative;
}
.author-row:hover {
  transform: translateX(10px);
  background: rgba(217,106,42,0.04);
}
.author-row .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}
.author-row .portrait-thumb {
  width: 90px;
  height: 120px;
  overflow: hidden;
  position: relative;
  background: var(--fog);
  filter: grayscale(1) contrast(1.05);
  transition: filter .3s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 10px 30px -20px rgba(0,0,0,.5);
}
.author-row:hover .portrait-thumb {
  filter: grayscale(0) contrast(1.05);
}
.author-row .portrait-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.author-row .name {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 400;
}
.author-row .name .role-sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.3;
}
.author-row:hover .name em { color: var(--accent); }
.author-row .name em { font-style: italic; transition: color .25s; }
.author-row .tag {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
}
.author-row .tag .cycle {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.author-row .chev {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s, transform .25s;
  white-space: nowrap;
}
.author-row:hover .chev {
  color: var(--accent);
  transform: translateX(6px);
}

/* ---------- AUTHOR PAGE ---------- */
.a-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 60px var(--page-gutter) 40px;
  align-items: end;
}
.a-hero .left .kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 30px;
}
.a-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: end;
}
.a-hero-portrait {
  width: 200px;
  height: 270px;
  position: relative;
  background: var(--fog);
  filter: grayscale(1) contrast(1.04);
  box-shadow: 0 2px 0 rgba(0,0,0,.05), 0 24px 40px -24px rgba(0,0,0,.45);
}
.a-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.a-hero-portrait .tape {
  position: absolute;
  width: 60px;
  height: 16px;
  background: rgba(217,106,42,0.35);
  border: 1px solid rgba(217,106,42,0.25);
}
.a-hero-portrait .tape-tl { top: -6px; left: -14px; transform: rotate(-8deg); }
.a-hero-portrait .tape-br { bottom: -6px; right: -14px; transform: rotate(-8deg); }
.a-hero .left h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: .92;
}
.a-hero .left h1 .last { font-style: italic; color: var(--accent); }
.a-hero .left .role {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .02em;
  margin-bottom: 0;
}
.a-hero .right .cycle-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.a-hero .right .cycle-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  margin: 0 0 20px;
}
.a-hero .right .tagline {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
}

.a-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 60px var(--page-gutter);
  border-top: 1px solid var(--rule);
}
.a-body .essay p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: pretty;
}
.a-body .side .block {
  margin-bottom: 40px;
}
.a-body .side h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.a-body .side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.a-body .side ul li {
  padding: 6px 0;
  border-bottom: 1px dotted var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.a-body .side ul li::before {
  content: "–";
  color: var(--accent);
  font-family: var(--serif);
  margin-right: 10px;
}

.a-gallery-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: baseline;
  padding: 40px var(--page-gutter) 24px;
  border-top: 1px solid var(--rule);
}
.a-gallery-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
}
.a-gallery-head .count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* Gallery layouts */
.gal-controls {
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gal-controls button {
  padding: 6px 12px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 2px;
}
.gal-controls button.active {
  color: var(--ink);
  border-color: var(--rule);
  background: rgba(255,255,255,0.4);
}

.gal-grid {
  padding: 20px var(--page-gutter) 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.gal-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gal-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.gal-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: zoom-in;
}
.gal-item .img-wrap {
  background: var(--fog);
  overflow: hidden;
  aspect-ratio: 1/1.414; /* A2 proportion */
  position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 20px 40px -30px rgba(0,0,0,0.35);
}
.gal-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.1,1);
}
.gal-item:hover .img-wrap img { transform: scale(1.03); }
.gal-item .cap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}
.gal-item .cap .t {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.gal-item .cap .n {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* Filmstrip */
.gal-strip {
  padding: 20px 0 60px var(--page-gutter);
  overflow-x: auto;
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gal-strip .gal-item {
  flex: 0 0 auto;
  width: 360px;
  scroll-snap-align: start;
}
.gal-strip .gal-item .img-wrap {
  aspect-ratio: 1/1.414;
}

/* Gallery — mosaic */
.gal-mosaic {
  padding: 20px var(--page-gutter) 80px;
  columns: 3;
  column-gap: 30px;
}
.gal-mosaic .gal-item {
  break-inside: avoid;
  margin-bottom: 30px;
  display: block;
}
.gal-mosaic .gal-item .img-wrap {
  aspect-ratio: auto;
  height: auto;
}
.gal-mosaic .gal-item .img-wrap img {
  height: auto;
  aspect-ratio: auto;
}

/* ---------- NEXT AUTHOR ---------- */
.next-author {
  padding: 60px var(--page-gutter);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  cursor: pointer;
  transition: background .25s;
}
.next-author:hover { background: rgba(217,106,42,0.04); }
.next-portrait {
  width: 110px;
  height: 150px;
  overflow: hidden;
  background: var(--fog);
  filter: grayscale(1) contrast(1.04);
  transition: filter .3s;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.4);
}
.next-author:hover .next-portrait { filter: grayscale(0) contrast(1.04); }
.next-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.next-author .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.next-author .name {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
}
.next-author .name em { font-style: italic; color: var(--accent); }
.next-author .arrow {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--muted);
  transition: transform .3s, color .3s;
}
.next-author:hover .arrow { color: var(--accent); transform: translateX(10px); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px var(--page-gutter) 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.footer .org {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}
.footer .org em { color: var(--accent); font-style: italic; }
.footer .small {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
  grid-column: 1/-1;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,15,14,0.93);
  z-index: 100;
  display: flex;
  flex-direction: column;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox .close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #e5ddcf;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(229,221,207,0.3);
  z-index: 3;
}
.lightbox .close:hover { border-color: var(--accent); color: var(--accent); }
.lightbox .stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 100px 40px;
  overflow: hidden;
}
.lightbox .stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #e5ddcf;
  font-family: var(--serif);
  font-size: 56px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.lightbox .nav-btn:hover { background: rgba(202,96,34,0.2); color: var(--accent); }
.lightbox .nav-btn.prev { left: 24px; }
.lightbox .nav-btn.next { right: 24px; }
.lightbox .meta {
  padding: 24px 40px 32px;
  display: flex;
  justify-content: space-between;
  color: #e5ddcf;
  border-top: 1px solid rgba(229,221,207,0.15);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  align-items: baseline;
}
.lightbox .meta .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- ABOUT / INFO on home ---------- */
.about {
  padding: 80px var(--page-gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-top: 1px solid var(--rule);
}
.about .lead {
    margin: 0 50px 0 0;
}
.about .lead p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  margin: 0 0 20px;
  text-wrap: pretty;
}
.about .lead p .accent { color: var(--accent); font-style: italic; }
.about .meta-stack {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 50px;
}
.about .meta-stack .item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.about .meta-stack .item .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
}
.about .meta-stack .item .v {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}
.about .meta-stack .item .v em { color: var(--accent); font-style: italic; }

/* Floating orange figure — echoes poster */
.cape-figure {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  pointer-events: none;
  opacity: .9;
  transition: opacity .3s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 14px; font-size: 10px; }
  .hero { padding: 30px 20px 20px; }
  .hero-meta { grid-template-columns: 1fr; gap: 12px; }
  .hero-title { grid-template-columns: 1fr; padding: 40px 0 24px; }
  .hero-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 16px; }
  .section { padding: 40px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .author-row { grid-template-columns: 70px 1fr auto; gap: 14px; padding: 18px 0; }
  .author-row .tag { grid-column: 1 / -1; grid-row: 2; }
  .author-row .name { font-size: 26px; }
  .author-row .portrait-thumb { width: 70px; height: 90px; }
  .a-hero { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
  .a-hero-inner { grid-template-columns: auto 1fr; gap: 20px; }
  .a-hero-portrait { width: 120px; height: 160px; }
  .a-body { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
  .a-gallery-head { grid-template-columns: 1fr; padding: 24px 20px; gap: 10px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); padding: 10px 20px 40px; gap: 20px; }
  .gal-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gal-mosaic { columns: 2; padding: 10px 20px 40px; }
  .next-author { padding: 30px 20px; grid-template-columns: auto 1fr auto; gap: 20px; }
  .next-portrait { width: 70px; height: 90px; }
  .footer { grid-template-columns: 1fr; padding: 30px 20px; gap: 20px; }
  .lightbox .stage { padding: 40px 12px 20px; }
  .lightbox .nav-btn.prev { left: 4px; }
  .lightbox .nav-btn.next { right: 4px; }
  .cape-figure { display: none; }
  .about { padding: 40px 20px; grid-template-columns: 1fr; gap: 30px; }
}
