/* =============================================
   SOLONOMAD.EU — Premium Dark Magazine
   ============================================= */

/* ── Local fonts ─────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black:      #0b0a08;
  --black-soft: #111008;
  --charcoal:   #1a1814;
  --charcoal-2: #232018;
  --charcoal-3: #2e2a22;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   #8a6e2f;
  --cream:      #f0e8d8;
  --cream-dim:  #c8bba1; /* Zmeneno z puvodniho #b8a88a pro lepsi citelnost */
  --warm-white: #faf6ef;
  --red-accent: #8b3a2a;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;

  --max-w: 1240px;
  --nav-h: 72px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── GRAIN ──────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainShift 0.8s steps(1) infinite;
}
@keyframes grainShift {
  0%  { transform: translate(0,0); }
  10% { transform: translate(-5%,-5%); }
  20% { transform: translate(-10%,5%); }
  30% { transform: translate(5%,-10%); }
  40% { transform: translate(-5%,15%); }
  50% { transform: translate(-10%,5%); }
  60% { transform: translate(15%,0); }
  70% { transform: translate(0,10%); }
  80% { transform: translate(-15%,0); }
  90% { transform: translate(10%,5%); }
}

/* ─── LOADER ─────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.loader-logo strong { font-weight: 700; color: var(--gold); }

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--charcoal-3);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.12;
  font-weight: 400;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 0.88rem 2.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--charcoal-3);
  color: var(--cream-dim);
  padding: 0.88rem 2.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.link-arrow .arrow { transition: transform 0.25s; }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11,10,8,0.96);
  border-color: rgba(201,168,76,0.12);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.logo strong { font-weight: 700; }
.logo span { color: var(--gold); font-size: 0.85em; }

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.65);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.lang-switcher { display: flex; align-items: center; gap: 0.5rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,232,216,0.4);
  padding: 0.2rem;
  transition: color 0.2s;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--gold-light); }
.lang-sep { color: rgba(201,168,76,0.3); font-size: 0.7rem; }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -15%;
  z-index: 0;
  will-change: transform;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11,10,8,0.6) 100%),
    linear-gradient(to bottom, rgba(11,10,8,0.3) 0%, transparent 30%, transparent 60%, rgba(11,10,8,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 900px;
  padding: 0 2rem;
}

.hero-issue {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,232,216,0.55);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.35s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line > span, .hero-line {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
}
.hero-line:nth-child(1) { animation-delay: 1.4s; }
.hero-line:nth-child(2) { animation-delay: 1.6s; }
.hero-line:nth-child(3) { animation-delay: 1.8s; }

.hero-line--italic { font-style: italic; color: var(--gold-light); }
.hero-line--light { font-weight: 300; font-size: 0.65em; color: var(--cream-dim); letter-spacing: 0.04em; }

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2s forwards;
}
.hero-divider span { display: block; width: 80px; height: 1px; background: rgba(201,168,76,0.4); }
.hero-diamond { color: var(--gold); font-size: 0.6rem; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 2.5s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-corner {
  position: absolute;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  opacity: 0;
  animation: fadeIn 1s ease 2.8s forwards;
}
.hero-corner--bl { bottom: 2.5rem; left: 3rem; }
.hero-corner--br { bottom: 2.5rem; right: 3rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── STATS ──────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-inf { font-size: 3.5rem; }
.stat-prefix {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.7;
}

.stat-divider {
  color: var(--gold-dim);
  font-size: 0.5rem;
  opacity: 0.5;
}

/* ─── SECTIONS ───────────────────────────── */
.section {
  padding: 7rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section--flush { max-width: 100%; padding-left: 0; padding-right: 0; }
.section--flush .section-header { padding: 0 2rem; max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section-rule {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.section-rule span {
  display: block;
  width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}
.section-rule--left { justify-content: flex-start; }
.section-rule--left span { background: linear-gradient(to right, rgba(201,168,76,0.4), transparent); }

.section-header h2 { color: var(--cream); }

.section-footer {
  text-align: center;
  margin-top: 4rem;
}

/* ─── FEATURED ARTICLE ───────────────────── */
.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  margin-bottom: 2px;
  transition: border-color 0.3s;
}
.featured-article:hover { border-color: rgba(201,168,76,0.3); }

.featured-img-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.featured-article:hover .featured-img { transform: scale(1.04); }
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(11,10,8,0.6) 100%);
}

.featured-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
}

.featured-body {
  background: var(--charcoal);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.article-region {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.featured-body h3 { color: var(--cream); }
.featured-body p { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.8; font-weight: 300; }

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.read-time {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184,168,138,0.5);
}

/* ─── ARTICLES GRID ──────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 0;
}

.article-card {
  background: var(--charcoal);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s;
}
.article-card:hover { border-color: rgba(201,168,76,0.25); }

.article-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.article-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.article-card:hover .article-img-wrap img { transform: scale(1.06); }
.article-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.5), transparent);
}

.article-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-card-body h4 { color: var(--cream); font-weight: 400; }

/* ─── PULLQUOTE ──────────────────────────── */
.pullquote {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 2rem;
}
.pullquote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pq-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold-dim);
  opacity: 0.3;
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
cite {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ─── GALLERY MASONRY ────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--tall { grid-row: 1 / 3; }
.gallery-item--wide { grid-column: 2 / 4; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  filter: brightness(0.88) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.gallery-caption-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,10,8,0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-caption-overlay { background: rgba(11,10,8,0.45); }

.gallery-caption-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-bg {
  position: absolute; inset: 0;
  background: rgba(8,7,6,0.97);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.lightbox-inner img {
  max-width: 88vw;
  max-height: 82vh;
  width: auto; height: auto;
  object-fit: contain;
}

.lightbox-caption {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream-dim);
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-close { top: 2rem; right: 2rem; font-size: 0.9rem; }
.lightbox-prev  { left: 2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.lightbox-next  { right: 2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; }

/* ─── MAP ────────────────────────────────── */
#travel-map {
  height: 520px;
  border: 1px solid rgba(201,168,76,0.15);
  filter: brightness(0.85) saturate(0.7) sepia(0.15);
  transition: filter 0.3s;
}
#travel-map:hover { filter: brightness(0.95) saturate(0.85) sepia(0.08); }

.map-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ─── ABOUT ──────────────────────────────── */
.about-section { max-width: 100%; padding: 7rem 0; background: var(--charcoal); }

.about-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: -1;
}
.about-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(0.15) brightness(0.92);
}

.about-img-label {
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
}

.about-text-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-text-side h2 { color: var(--cream); }
.about-text-side h2 em { font-style: italic; color: var(--gold-light); }
.about-text-side p { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.85; font-weight: 300; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 3rem 2.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}
.footer-logo strong { font-weight: 700; }
.footer-logo span { color: var(--gold); }

.footer-divider { color: var(--gold-dim); opacity: 0.5; font-size: 0.5rem; }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.5;
}

.footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 2rem;
}

.footer-links, .footer-social {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a, .footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,168,138,0.5);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }

.footer-bottom p {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(184,168,138,0.3);
  letter-spacing: 0.1em;
}

/* ─── REVEAL ANIMATIONS ──────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-img-wrap { height: 380px; }
  .featured-img-overlay { background: linear-gradient(to top, rgba(11,10,8,0.7), transparent); }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--wide { grid-column: auto; }

  .about-wrap { grid-template-columns: 1fr; gap: 3.5rem; padding: 0 2rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.5rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,10,8,0.98);
    padding: 2.5rem 2rem;
    gap: 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; color: var(--cream-dim); }
  .hamburger { display: flex; }

  .articles-grid { grid-template-columns: 1fr; gap: 2px; }

  .gallery-masonry { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 260px; }

  .stats-bar { flex-wrap: wrap; gap: 2rem; }
  .stat-divider { display: none; }

  .hero-corner { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-mid { flex-direction: column; align-items: center; text-align: center; }

  .about-wrap { padding: 0 1.5rem; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-privacy-link {
  font-size: 0.72rem;
  color: #555;
  text-decoration: none;
}
.footer-privacy-link:hover { color: #aaa; }

.privacy-strip {
  border-top: 1px solid #1e1e1e;
  padding: 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.privacy-strip-text {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.privacy-strip-text a { color: #666; text-decoration: underline; text-decoration-color: #333; }
.privacy-notrack-btn {
  font-size: 0.72rem;
  color: #666;
  background: none;
  border: 1px solid #2a2a2a;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.privacy-notrack-btn:hover { border-color: #555; color: #aaa; }
.privacy-notrack-btn:disabled { opacity: 0.5; cursor: default; }