/* =========================================================================
   GOROLE — expediční skupina
   Design system: tmavý cinematický "expedition" vzhled
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* warm near-black palette */
  --bg:        #0c0a09;
  --bg-2:      #141010;
  --bg-3:      #1d1712;
  --panel:     #171210;
  --ink:       #f5ede2;
  --ink-soft:  #d8ccbd;
  --muted:     #a2917f;
  --muted-2:   #6f6154;
  --line:      rgba(245, 237, 226, .09);
  --line-2:    rgba(245, 237, 226, .16);

  /* warm amber accents (echo original #E1AA53 / #BC6D1F) */
  --accent:    #e3a949;
  --accent-2:  #c9741e;
  --accent-3:  #f2c579;
  --accent-ink:#1a1206;

  --maxw: 1240px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow: 0 20px 60px -20px rgba(0,0,0,.7);
  --shadow-soft: 0 10px 40px -18px rgba(0,0,0,.65);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .6s;

  --ff-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, .95rem + .3vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* subtle film grain over whole page */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 1.5rem + 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before {
  content: ''; width: 2.4em; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.lead { font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 8rem) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin: .5rem 0 1rem; }
.section-head .lead { color: var(--muted); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,10,9,.82);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: .55rem; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .02em; }
.brand .dot { color: var(--accent); }
.brand small { font-family: var(--ff-body); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); font-weight: 600; align-self: center; }
/* sponsor logo in the header bar (desktop) */
.nav-partner { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; margin-left: clamp(1rem, 3vw, 2.4rem); }
.nav-partner .np-label { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.nav-partner img { height: 30px; width: auto; background: #fff; padding: .28rem .5rem; border-radius: 6px; opacity: .82; filter: saturate(.9); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.nav-partner:hover img { opacity: 1; filter: none; transform: translateY(-1px); }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color .25s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: .6rem 1.2rem; border: 1px solid var(--line-2); border-radius: 100px;
  color: var(--ink) !important; font-weight: 600; transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink) !important; }
.nav-cta::after { display: none; }
/* dim scrim behind the mobile menu (only active on mobile) */
.nav-scrim { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(6,4,3,.62); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); }
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; z-index: 101; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 100px; font-weight: 600; font-size: .95rem;
  transition: all .3s var(--ease); border: 1px solid transparent; letter-spacing: .01em;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform .3s var(--ease); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-3); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(227,169,73,.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 20s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,10,9,.55) 0%, rgba(12,10,9,.15) 30%, rgba(12,10,9,.75) 78%, var(--bg) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(201,116,30,.22), transparent 60%);
}
.hero-inner { padding-bottom: clamp(3rem, 8vh, 7rem); padding-top: 8rem; max-width: 900px; }
.hero h1 { margin: 1.2rem 0; }
.hero .lead { max-width: 620px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-meta { display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-meta .stat b { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 500; display: block; line-height: 1; }
.hero-meta .stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.scroll-hint .line { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); animation: scrollLine 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* ---------- Feature / about split ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split .media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media::after { content:''; position:absolute; inset:0; background: linear-gradient(200deg, transparent 55%, rgba(201,116,30,.25)); }
/* sponsor mention above the "Kdo jsme" text block */
.split-partner { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.8rem; }
.split-partner .sp-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-2); font-weight: 600; }
.split-partner img { height: 34px; width: auto; background: #fff; padding: .3rem .55rem; border-radius: 6px; opacity: .82; filter: saturate(.9); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.split-partner:hover img { opacity: 1; filter: none; transform: translateY(-1px); }
.prose p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.prose p:first-of-type::first-letter { font-family: var(--ff-display); font-size: 3.2em; line-height: .8; float: left; padding: .05em .12em 0 0; color: var(--accent); font-weight: 500; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stats-band .cell { background: var(--bg-2); padding: clamp(1.6rem, 3vw, 2.6rem); text-align: center; }
.stats-band b { font-family: var(--ff-display); font-size: clamp(2.2rem, 1.5rem + 2vw, 3.4rem); font-weight: 500; color: var(--accent-3); display: block; }
.stats-band span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }

/* ---------- Expedition cards ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.exp-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  background: var(--bg-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  isolation: isolate;
}
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.exp-card::after { content:''; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(12,10,9,.05) 0%, rgba(12,10,9,.35) 45%, rgba(12,10,9,.92) 100%); transition: background .5s; }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.exp-card:hover img { transform: scale(1.08); }
.exp-card .body { padding: 1.4rem; position: relative; z-index: 1; width: 100%; }
.exp-card .year { font-family: var(--ff-body); font-size: .74rem; font-weight: 600; letter-spacing: .18em; color: var(--accent); text-transform: uppercase; }
.exp-card h3 { font-size: 1.5rem; margin: .35rem 0 .5rem; }
.exp-card p { font-size: .86rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.exp-card .go { margin-top: .9rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .4rem; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.exp-card:hover .go { opacity: 1; transform: none; color: var(--accent-3); }

/* featured (larger) card */
.exp-card.feat { aspect-ratio: auto; grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px){ .exp-card.feat { grid-column: span 1; } }

/* archive card (older expeditions without photo gallery) */
.exp-card.archive { background: radial-gradient(120% 90% at 50% -10%, var(--bg-3), var(--bg-2) 68%); }
.exp-card.archive::after { display: none; }
.exp-card.archive .ridge { position: absolute; left: 0; right: 0; bottom: 34%; z-index: -1; width: 100%; color: var(--accent-2); opacity: .38; }
.exp-card.archive .ridge2 { position: absolute; left: 0; right: 0; bottom: 30%; z-index: -1; width: 100%; color: var(--accent); opacity: .14; }
.exp-card.archive .body { border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(12,10,9,.4)); }
.exp-card.archive:hover { border-color: var(--accent-2); }
.exp-card .tag { display: inline-block; margin-bottom: .7rem; padding: .2rem .65rem; border: 1px solid var(--line-2); border-radius: 100px; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery grid (galleries index) ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.2rem; }
.gal-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gal-tile::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(12,10,9,.9)); }
.gal-tile:hover img { transform: scale(1.07); }
.gal-tile .cap { position: absolute; left: 1.1rem; bottom: 1rem; z-index:1; }
.gal-tile .cap h3 { font-size: 1.2rem; }
.gal-tile .cap span { font-size: .76rem; color: var(--accent-3); font-weight: 600; letter-spacing: .05em; }
.gal-tile .count { position:absolute; top:1rem; right:1rem; z-index:1; background: rgba(12,10,9,.6); backdrop-filter: blur(6px); border:1px solid var(--line-2); padding:.25rem .7rem; border-radius:100px; font-size:.72rem; font-weight:600; color: var(--ink-soft); }

/* ---------- Photo grid (single gallery) + lightbox ---------- */
.photo-grid { columns: 4 240px; column-gap: 12px; }
.photo-grid a { display: block; margin-bottom: 12px; border-radius: 10px; overflow: hidden; break-inside: avoid; position: relative; background: var(--bg-2); }
.photo-grid img { width: 100%; transition: transform .6s var(--ease), filter .4s; filter: saturate(.92); }
.photo-grid a:hover img { transform: scale(1.05); filter: saturate(1.05); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(7,5,4,.94); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow); }
.lb-btn { position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--line-2); color: var(--ink); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; transition: .25s; }
.lb-btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .85rem; letter-spacing: .1em; }

/* ---------- Projekce / list cards ---------- */
.proj-list { display: grid; gap: 1.4rem; }
.proj-card { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: start; padding: clamp(1.4rem,3vw,2.2rem); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .4s, transform .4s var(--ease); }
.proj-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.proj-card .num { font-family: var(--ff-display); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.proj-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.proj-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Links (odkazy) ---------- */
.link-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.6rem; }
.link-cat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.link-cat h3 { color: var(--accent-3); font-size: 1.3rem; margin-bottom: 1rem; }
.link-cat li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.link-cat li:last-child { border-bottom: 0; }
.link-cat a { color: var(--ink-soft); font-size: .92rem; display: flex; justify-content: space-between; gap: 1rem; transition: color .25s; }
.link-cat a:hover { color: var(--accent); }
.link-cat a span { color: var(--muted-2); font-size: .84rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.contact-info dl { display: grid; gap: 1.3rem; }
.contact-info dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin-bottom: .2rem; }
.contact-info dd { font-size: 1.05rem; color: var(--ink-soft); }
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--accent); }

/* ---------- Detail page ---------- */
.detail-hero { position: relative; height: 62svh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.detail-hero::after { content:''; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(12,10,9,.4), rgba(12,10,9,.2) 40%, var(--bg)); }
.detail-hero .inner { padding-bottom: 2.5rem; }
.detail-hero .year { color: var(--accent-3); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .85rem; }
.detail-hero h1 { font-size: clamp(2.4rem, 1.5rem + 4vw, 4.5rem); margin-top: .5rem; }
.article { max-width: 760px; margin-inline: auto; }
.article p { margin-bottom: 1.25rem; color: var(--ink-soft); }
.back-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; font-weight: 500; margin-bottom: 2rem; transition: color .25s; }
.back-link:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3rem,6vw,5rem) 0 2rem; background: var(--bg-2); }
/* partners strip (subtle — not an ad) */
.partners { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; padding-bottom: 2.4rem; margin-bottom: 2.6rem; border-bottom: 1px solid var(--line); }
.partners-label { font-family: var(--ff-body); text-transform: uppercase; letter-spacing: .22em; font-size: .68rem; font-weight: 600; color: var(--muted-2); }
.partner-logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.partner { display: inline-flex; }
.partner img { height: 42px; width: auto; background: #fff; padding: .45rem .7rem; border-radius: 8px; opacity: .7; filter: saturate(.9); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.partner:hover img { opacity: 1; filter: none; transform: translateY(-2px); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-grid h4 { font-family: var(--ff-body); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; color: var(--muted); margin-bottom: 1.1rem; }
.footer-grid a { color: var(--ink-soft); font-size: .92rem; display: block; padding: .3rem 0; transition: color .25s; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand .display { font-size: 2.2rem; }
.footer-brand p { color: var(--muted); max-width: 340px; margin-top: 1rem; font-size: .92rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .82rem; }

/* ---------- Reveal animation --------------------------------------------------
   Robust model: everything is visible by default. JS hides ONLY elements below
   the fold (adds .pre) before first paint, then removes .pre when scrolled into
   view. If JS never runs (or can't measure the viewport), all content stays
   visible — content never depends on async timing. */
[data-reveal] { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].pre { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .split .media { aspect-ratio: 16/10; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .nav-partner { display: none; }             /* sponsor not in the mobile header bar */
  .nav-scrim { display: block; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 95; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem 2.4rem; background: var(--bg-3); border-left: 1px solid var(--line-2); box-shadow: -34px 0 90px rgba(0,0,0,.75); transform: translateX(105%); transition: transform .4s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .photo-grid { columns: 2 140px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.6rem; }
}
