/* ============================================================
   POČÚVAJTE PRÍBEH 2025 — Static WP styles (no JS required)
   ============================================================ */

:root {
  --teal: #234E40;
  --teal-deep: #173629;
  --teal-mid: #2D6553;
  --teal-soft: #E4ECE7;
  --gold: #E8B84A;
  --gold-deep: #C99A2A;
  --cream: #F4F0E6;
  --cream-deep: #ECE5D2;
  --paper: #FBFAF5;
  --ink: #1A2420;
  --ink-soft: #4A574F;
  --line: #D8D0BC;

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --script: "Caveat", "Kalam", cursive;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --back-strip-h: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
blockquote, figure { margin: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.h-serif {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.h-serif em { font-style: italic; font-weight: 400; color: var(--teal); }
.h-serif--light { color: var(--cream); }
.h-serif--light em { color: var(--gold); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--teal); display: inline-block; }
.kicker--light { color: var(--gold); }
.kicker--light::before { background: var(--gold); }

.script { font-family: var(--script); font-weight: 500; color: var(--teal); }
.script--sm { font-size: 22px; }
.script--md { font-size: 32px; line-height: 1.15; }
.script--lg { font-size: 54px; line-height: 1; }
.script--xl { font-size: clamp(48px, 7vw, 88px); line-height: 1; color: var(--gold); }
.script--hero { font-size: clamp(64px, 12vw, 168px); line-height: 0.95; color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 22px; border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(201,154,42,0.6), inset 0 -2px 0 rgba(0,0,0,0.06);
}
.btn--gold:hover { transform: translateY(-2px); background: var(--gold-deep); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--paper); }

.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.55; display: inline-block; }

.pill {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  padding: 3px 7px; border-radius: 999px;
  margin-left: 8px;
}

/* ============================================================
   BACK STRIP
   ============================================================ */
.back-strip {
  position: sticky; top: 0;
  height: var(--back-strip-h);
  background: var(--teal-deep);
  color: rgba(255,255,255,0.75);
  z-index: 60;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: color 180ms ease;
}
.back-strip:hover { color: var(--gold); }
.back-strip__inner { display: inline-flex; align-items: center; gap: 12px; padding: 0 var(--pad); }
.back-strip strong { color: var(--gold); font-weight: 600; }
.back-strip__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); display: inline-block; }
.back-strip__org { letter-spacing: 0.18em; text-transform: uppercase; font-size: 10px; opacity: 0.6; }

/* ============================================================
   NAV  (sticky, cream background — CSS-only)
   ============================================================ */
.nav {
  position: sticky;
  top: var(--back-strip-h);
  z-index: 50;
  padding: 12px var(--pad);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand-mark { color: var(--teal); display: grid; place-items: center; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-script { font-family: var(--script); font-size: 24px; }
.nav__brand-year { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; margin-top: 2px; opacity: 0.7; text-transform: uppercase; }

.nav__links { display: flex; gap: 22px; justify-content: center; align-items: center; }
.nav__link {
  position: relative;
  font-size: 13px; font-weight: 500;
  padding: 6px 2px;
  opacity: 0.85;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-family: var(--sans);
}
.nav__link::after {
  content: ""; position: absolute; inset: auto 50% 0 50%;
  height: 1.5px; background: var(--gold);
  transition: inset 220ms ease;
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { inset: auto 0 0 0; }
.nav__link svg { width: 11px; height: 11px; opacity: 0.65; }
.nav__ext { font-size: 11px; color: var(--gold-deep); margin-left: 2px; }

/* Dropdown — CSS hover only */
.nav__dropdown { position: relative; }
.nav__dropdown-panel {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper); color: var(--ink);
  border-radius: 8px;
  padding: 16px;
  min-width: 320px;
  box-shadow: 0 24px 50px -16px rgba(23,54,41,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line);
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft); padding: 6px 10px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.nav__dropdown-panel a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 6px;
  font-size: 14px; font-family: var(--serif); font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}
.nav__dropdown-panel a:hover { background: var(--cream); color: var(--teal); }
.nav__dropdown-panel a.is-active { background: var(--teal); color: var(--paper); }
.nav__dropdown-panel a.is-active:hover { background: var(--teal-deep); }

.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; color: inherit; cursor: pointer; }

/* Mobile menu — checkbox hack */
.nav-toggle { position: absolute; left: -9999px; }
.mm {
  position: fixed; inset: 0;
  background: var(--teal-deep); color: var(--paper);
  z-index: 100;
  overflow-y: auto;
  padding: 60px 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.nav-toggle:checked ~ .mm { opacity: 1; visibility: visible; }
.mm__close { position: absolute; top: 18px; right: var(--pad); color: var(--paper); cursor: pointer; }
.mm__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; padding-top: 20px; }
.mm__nav { display: flex; flex-direction: column; gap: 14px; }
.mm__nav > a { font-family: var(--serif); font-size: 24px; }
.mm__group { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.mm__sub { font-family: var(--serif); font-size: 16px; opacity: 0.8; }
.mm__back { font-size: 13px; opacity: 0.6; margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--back-strip-h));
  padding: 100px var(--pad) 120px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(45,101,83,0.55), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(23,54,41,0.7), transparent 60%),
    linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--paper);
  display: grid; align-items: center;
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,0.04) 0, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,0.03) 0, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  opacity: 0.6; pointer-events: none;
}
.hero__df { position: absolute; width: 38vw; max-width: 520px; min-width: 280px; pointer-events: none; }
.hero__df svg { width: 100%; height: auto; opacity: 0.45; }
.hero__df--l { top: 0; left: -60px; }
.hero__df--r { top: 0; right: -60px; }
.hero__leaf {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(140,180,160,0.18), transparent 70%);
  border-radius: 60% 40% 50% 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero__leaf--bl { left: -80px; bottom: -80px; transform: rotate(-20deg); }
.hero__leaf--tr { right: -80px; bottom: 20%; transform: rotate(40deg); }

.hero__inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 18px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero__title { position: relative; display: flex; flex-direction: column; align-items: center; margin: 4px 0; }
.hero__title-row2 { margin-top: -32px; margin-left: 40px; }
.hero__title .script--hero { letter-spacing: -0.01em; transform: rotate(-2deg); display: inline-block; }
.hero__title-row2.script--hero { transform: rotate(1.5deg); }

.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 26px); color: rgba(255,255,255,0.85); margin-top: -6px; }

.hero__meta {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  padding: 22px 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  gap: 0;
}
.hero__meta-item { display: flex; flex-direction: column; align-items: center; padding: 4px 28px; gap: 4px; }
.hero__meta-item svg { margin-bottom: 4px; }
.hero__meta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.hero__meta-value { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.hero__meta-sub { font-size: 12px; opacity: 0.7; }
.hero__meta-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 6px 0; }

.hero__theme {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 28px;
  border: 1.5px dashed rgba(232,184,74,0.4);
  border-radius: 10px;
  background: rgba(232,184,74,0.05);
}
.hero__theme-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.hero__theme-text { font-family: var(--serif); font-style: italic; font-size: 18px; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero__wave svg { width: 100%; height: 60px; display: block; }

/* ============================================================
   THEME
   ============================================================ */
.theme { padding: 140px var(--pad); background: var(--cream); }
.theme__inner { max-width: var(--maxw); margin: 0 auto; }
.theme__head { text-align: center; margin-bottom: 80px; }
.theme__head .kicker { justify-content: center; }
.theme__head .h-serif { max-width: 16ch; margin: 0 auto; }

.theme__body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.theme__lead > p { font-family: var(--serif); font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }

.theme__quote {
  border-left: 2px solid var(--gold);
  padding: 18px 0 18px 28px;
  position: relative;
  font-family: var(--serif);
}
.theme__quote > svg { position: absolute; top: 18px; left: -22px; background: var(--cream); padding: 0 4px; }
.theme__quote p { font-style: italic; font-size: 22px; color: var(--ink); line-height: 1.45; margin-bottom: 12px; }
.theme__quote footer { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.05em; }

.theme__side { display: flex; flex-direction: column; gap: 18px; }
.theme__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.theme__card:hover { transform: translateX(4px); border-color: var(--teal); box-shadow: 0 18px 36px -22px rgba(23,54,41,0.3); }
.theme__card-num { font-family: var(--serif); font-size: 12px; color: var(--gold-deep); letter-spacing: 0.2em; }
.theme__card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 4px 0 8px; }
.theme__card p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   GALLERY (static masonry grid)
   ============================================================ */
.gal { padding: 140px var(--pad); background: var(--paper); border-top: 1px solid var(--line); }
.gal__inner { max-width: var(--maxw); margin: 0 auto; }
.gal__head { text-align: center; margin-bottom: 56px; }
.gal__head .kicker { justify-content: center; }
.gal__sub { color: var(--ink-soft); max-width: 50ch; margin: 12px auto 0; font-family: var(--serif); font-style: italic; font-size: 18px; }

.gal__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gal__cell { position: relative; overflow: hidden; border-radius: 6px; }
.gal__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gal__cell:hover img { transform: scale(1.04); }
.gal__cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(23,54,41,0.7) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.gal__cell:hover::after { opacity: 1; }
.gal__cell figcaption {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--paper);
  opacity: 0; transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
  z-index: 1;
}
.gal__cell:hover figcaption { opacity: 1; transform: translateY(0); }
.gal__tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  padding: 4px 9px; border-radius: 999px;
}
.gal__cell figcaption > span:last-child { font-family: var(--serif); font-style: italic; font-size: 15px; }

.gal__cell--0 { grid-column: span 3; grid-row: span 2; }
.gal__cell--1 { grid-column: span 3; }
.gal__cell--2 { grid-column: span 2; }
.gal__cell--3 { grid-column: span 1; }
.gal__cell--4 { grid-column: span 3; }

/* ============================================================
   TESTIMONIALS (3-column static)
   ============================================================ */
.testi {
  position: relative;
  background: var(--teal-deep);
  color: var(--paper);
  padding: 140px var(--pad);
  overflow: hidden;
}
.testi::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(45,101,83,0.5), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(45,101,83,0.4), transparent 50%);
  pointer-events: none;
}
.testi__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.testi__head { text-align: center; margin-bottom: 60px; }
.testi__head .kicker { justify-content: center; }

.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi__card {
  display: flex; flex-direction: column;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
}
.testi__card:hover { transform: translateY(-6px); border-color: var(--gold); }
.testi__photo { aspect-ratio: 4/3; }
.testi__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) brightness(0.85); transition: filter 380ms ease; }
.testi__card:hover .testi__photo img { filter: grayscale(0) brightness(1); }
.testi__body { padding: 28px; position: relative; flex: 1; display: flex; flex-direction: column; }
.testi__qmark { margin-bottom: 16px; }
.testi__card blockquote p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 22px;
  flex: 1;
}
.testi__card blockquote footer {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.testi__author { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--gold); }
.testi__role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ============================================================
   ARTISTS (poster)
   ============================================================ */
.artists { background: var(--teal); color: var(--paper); padding: 140px var(--pad); position: relative; overflow: hidden; }
.artists::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232,184,74,0.04), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(45,101,83,0.3), transparent 40%);
  pointer-events: none;
}
.artists__inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.artists__head { margin-bottom: 64px; }
.artists__head .kicker { justify-content: center; }
.artists__sub { color: rgba(255,255,255,0.65); max-width: 56ch; margin: 14px auto 0; font-family: var(--serif); font-style: italic; font-size: 18px; }

.artists__poster {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px;
  font-family: var(--serif);
  text-align: center; line-height: 1; padding: 20px 0;
}
.artist {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 8px 6px;
  color: var(--paper);
  transition: color 220ms ease, transform 220ms ease;
}
.artist--xl .artist__name { font-size: clamp(38px, 5.6vw, 72px); }
.artist--lg .artist__name { font-size: clamp(28px, 4.2vw, 52px); }
.artist--md .artist__name { font-size: clamp(22px, 3vw, 38px); }
.artist__name { letter-spacing: -0.005em; white-space: nowrap; transition: color 200ms ease; }
.artist__meta {
  display: flex; gap: 8px;
  font-family: var(--sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0); margin-top: 8px;
  transition: color 220ms ease, max-height 220ms ease;
  max-height: 0; overflow: hidden;
}
.artist:hover { transform: translateY(-2px); }
.artist:hover .artist__name { color: var(--gold); }
.artist:hover .artist__meta { color: rgba(255,255,255,0.7); max-height: 30px; }

.artists__footnote {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.artists__footnote .script--md { color: var(--gold); font-size: 32px; line-height: 1.15; }
.artists__footnote-sub { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 60ch; text-align: center; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { padding: 140px var(--pad); background: var(--cream); }
.partners__inner { max-width: var(--maxw); margin: 0 auto; }
.partners__head { margin-bottom: 60px; max-width: 60ch; }
.partners__sub { color: var(--ink-soft); margin-top: 12px; }
.partners__main { margin-bottom: 48px; }
.partners__tier {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.partners__row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.partners__row--small { grid-template-columns: repeat(4, 1fr); }
.partner {
  padding: 28px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; align-items: center;
  min-height: 90px;
  transition: background 220ms ease;
}
.partner:hover { background: var(--paper); }
.partners__row .partner:nth-child(3n) { border-right: 0; }
.partners__row--small .partner:nth-child(4n) { border-right: 0; }
.partner__name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); }
.partner--main .partner__name { font-size: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--teal-deep); color: rgba(255,255,255,0.75); padding: 100px var(--pad) 40px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { color: var(--paper); }
.footer__logo { width: 88px; height: 88px; border-radius: 50%; background: var(--paper); padding: 10px; object-fit: contain; margin-bottom: 18px; }
.footer__org { font-size: 15px; line-height: 1.5; max-width: 32ch; color: rgba(255,255,255,0.85); }
.footer__org-sub { font-family: var(--serif); font-style: italic; color: rgba(255,255,255,0.55); margin-top: 8px; font-size: 15px; }
.footer__back-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; color: var(--gold); }
.footer__back-link:hover { color: var(--paper); }

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.footer__col a { font-size: 14px; transition: color 180ms ease; }
.footer__col a:hover { color: var(--paper); }
.footer__soc { display: flex; gap: 10px; margin-top: 8px; }
.footer__soc a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer__soc a:hover { background: var(--gold); color: var(--teal-deep); border-color: var(--gold); }

.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer__bottom .script { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .theme__body { grid-template-columns: 1fr; gap: 40px; }
  .testi__grid { grid-template-columns: 1fr; gap: 24px; }
  .gal__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .gal__cell--0 { grid-column: span 4; grid-row: span 2; }
  .gal__cell--1 { grid-column: span 4; }
  .gal__cell--2 { grid-column: span 2; }
  .gal__cell--3 { grid-column: span 2; }
  .gal__cell--4 { grid-column: span 4; }
  .partners__row { grid-template-columns: repeat(2, 1fr); }
  .partners__row--small { grid-template-columns: repeat(2, 1fr); }
  .partners__row .partner:nth-child(3n),
  .partners__row--small .partner:nth-child(4n) { border-right: 1px solid var(--line); }
  .partners__row .partner:nth-child(2n),
  .partners__row--small .partner:nth-child(2n) { border-right: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .back-strip__org, .back-strip__divider { display: none; }
  .hero__meta { flex-direction: column; gap: 16px; padding: 18px; }
  .hero__meta-divider { display: none; }
  .hero__title-row2 { margin-top: -18px; margin-left: 16px; }
  .gal__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gal__cell { grid-column: span 1 !important; grid-row: span 1 !important; }
  .partners__row, .partners__row--small { grid-template-columns: 1fr; }
  .partner { border-right: 0 !important; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}
