/* ============================================
   Andrew Makarov — personal site
   Light theme, clean style, Montserrat
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-card: #ffffff;
  --text: #0f1115;
  --text-soft: #5a6068;
  --text-muted: #8a8f97;
  --border: #e8eaee;
  --border-soft: #f0f1f4;
  --accent: #0f1115;
  --accent-soft: #1a73e8;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 4px 24px rgba(15, 17, 21, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 17, 21, 0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1200px;
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .7; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.nav a:hover { color: var(--text); opacity: 1; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lang-switcher a {
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--text-muted);
}
.lang-switcher a.active {
  background: var(--text);
  color: #fff;
}
.lang-switcher a:hover { color: var(--text); opacity: 1; }
.lang-switcher a.active:hover { color: #fff; }

.burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00c853;
  box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.15);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
}
.hero-role {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.hero-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-bio p + p { margin-top: 12px; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--text);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}
.btn-ghost {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { opacity: 1; background: #ededf0; }

.hero-photo {
  position: relative;
}
.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.hero-photo-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transform: rotate(4deg);
}

/* ============================================
   SECTION GENERIC
   ============================================ */
section {
  padding: 90px 0;
  position: relative;
}
.section-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 60px;
  background: var(--border);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-soft);
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============================================
   EXPERTISE
   ============================================ */
.expertise {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.expertise-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.expertise-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.expertise-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============================================
   ARTICLES
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.article-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.article-card:hover .article-thumb img { transform: scale(1.04); }
.article-source {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.article-meta::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--text-muted);
}
.article-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  flex: 1;
}
.article-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.article-link::after {
  content: '→';
  transition: transform .25s ease;
}
.article-card:hover .article-link::after { transform: translateX(4px); }

/* Synthetic thumbnail (no real image) */
.thumb-synth {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.thumb-synth::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3), transparent 50%);
}
.thumb-synth-label {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 0 24px;
  font-size: 22px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
/* Color palette for synthetic thumbnails */
.tone-1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.tone-2 { background: linear-gradient(135deg, #2d3561, #c05c7e); }
.tone-3 { background: linear-gradient(135deg, #0f3460, #533483); }
.tone-4 { background: linear-gradient(135deg, #1f4068, #1b1b2f); }
.tone-5 { background: linear-gradient(135deg, #232946, #b8c1ec); }
.tone-6 { background: linear-gradient(135deg, #16161a, #7f5af0); }
.tone-7 { background: linear-gradient(135deg, #2a2a72, #009ffd); }

/* ============================================
   YOUTUBE
   ============================================ */
.youtube {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yt-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}
.yt-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}
.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}
.yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.yt-card:hover img { transform: scale(1.05); }
.yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.yt-card:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); }
.yt-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 16px solid #0f1115;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.yt-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.yt-card.feature .yt-title { font-size: 22px; }
.yt-date {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ============================================
   REELS / VERTICAL VIDEO
   ============================================ */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.reel-card {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}
.reel-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  opacity: 1;
  z-index: 2;
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: #fff;
}
.reel-top {
  display: flex;
  justify-content: flex-end;
}
.reel-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-icon svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.95); }
.reel-bottom {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.reel-card:hover .reel-play { transform: translate(-50%, -50%) scale(1.12); }
.reel-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 12px solid #0f1115;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.reels-cta {
  margin-top: 40px;
  text-align: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  margin: 60px auto 100px;
  max-width: calc(var(--max-w) - 0px);
  padding: 0;
}
.contact-inner {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.contact h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.contact-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease;
}
.contact-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
  opacity: 1;
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: #fff; }
.contact-item-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0 30px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer a { color: var(--text-soft); }
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner.show {
  display: flex;
  animation: slideUp .4s ease forwards;
}
.cookie-banner p {
  flex: 1;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  min-width: 220px;
}
.cookie-banner p a {
  color: #fff;
  text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex;
  gap: 8px;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
}
.cookie-accept {
  background: #fff;
  color: var(--text);
}
.cookie-accept:hover { transform: translateY(-1px); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy {
  max-width: 820px;
  margin: 80px auto;
  padding: 0 24px;
}
.policy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.policy .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.policy h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.policy h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
}
.policy p, .policy li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.policy ul { padding-left: 22px; margin-bottom: 12px; }
.policy a { color: var(--accent-soft); text-decoration: underline; }
.policy a:hover { opacity: 0.7; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--text); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; max-width: 640px; margin: 0 auto; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
  .yt-card.feature { grid-column: span 2; grid-row: span 1; }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  section { padding: 70px 0; }
  .header-inner { height: 64px; }
  .nav { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .lang-switcher { font-size: 12px; padding: 5px 8px; }
  .hero { padding: 50px 0 70px; }
  .hero-photo-badge { display: none; }
  .expertise-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .yt-card.feature { grid-column: span 1; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact { margin: 30px 18px 60px; border-radius: var(--radius); }
  .contact-inner { padding: 50px 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cookie-banner { left: 12px; right: 12px; padding: 16px; }
  .cookie-banner-buttons { width: 100%; }
  .cookie-banner button { flex: 1; }
}

/* Fade-in animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
