/* ═══════════════════════════════════════════
   HARBOR LEGAL — CSS DESIGN SYSTEM
   Based on Brand Identity Book v5.2
   ═══════════════════════════════════════════ */

:root {
  /* ══ Core Palette — Harbor LEGAL v5.2 ══ */
  --bg: #F7F5F2;
  --bg-alt: #EDE9E3;
  --white: #FFFFFF;
  --warm-white: #F7F5F2;
  --cloud: #FFFFFF;
  --cloud-cool: #F5F5FA;
  --ink: #1A1A2E;
  --ink-soft: #3A3E50;
  --ink-muted: #8E8EA0;
  --ink-light: #555570;
  --indigo: #2D2B6B;
  --indigo-deep: #1E1C4E;
  --indigo-light: #4A47A0;
  --indigo-pale: #E8E7F5;
  --indigo-wash: #F4F3FA;
  --gold: #B8924A;
  --gold-light: #D4AC6A;
  --gold-pale: #E8D5B0;
  --gold-wash: #FBF6EE;
  --slate: #E5E5EB;
  --border: #DDD8D0;
  --border-light: #EAE6E0;

  /* ══ Typography System ══ */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Outfit', -apple-system, sans-serif;
  --f-logo-legal: 'Outfit', -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: rgba(45,43,107,.12); }
img { max-width: 100%; height: auto; }
a { color: var(--indigo); text-decoration: none; transition: color .3s; }
a:hover { color: var(--indigo-light); }

/* Container */
.container { max-width: 1140px; margin: 0 auto; padding: 0 36px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .4s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26,29,43,.06); }
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  min-height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 4px; }
.nav-logo { height: 52px; width: auto; display: block; }
.nav-logo-mobile { display: none; height: 34px; width: auto; }
.nav-name { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 12px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: .06em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--indigo);
  transition: width .3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px !important; font-weight: 600 !important;
  color: var(--white) !important; background: var(--indigo);
  padding: 12px 32px; border-radius: 8px;
  letter-spacing: .1em;
}
.nav-cta:hover { background: var(--indigo-light); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: .3s;
}

/* ─── HERO ─── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(45,43,107,.04), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184,146,74,.03), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-tag {
  font-family: var(--f-mono);
  font-size: 10px; color: var(--indigo);
  letter-spacing: .35em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; width: 28px; height: 1px; background: var(--indigo);
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 600; font-size: 48px;
  line-height: 1.15; margin-bottom: 24px;
  letter-spacing: .01em;
  color: var(--ink);
}
.hero h1 em {
  color: var(--indigo);
  font-style: normal;
}
.hero-desc {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--white); background: var(--indigo);
  padding: 14px 32px; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--indigo-light); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  color: var(--ink-muted); border: 1px solid var(--border);
  padding: 14px 32px; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 8px;
  background: none; cursor: pointer;
  transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-crest {
  width: 540px; height: auto;
  opacity: .08;
  filter: none;
}

/* ─── PILLARS ─── */
.pillars {
  padding: 0 0 100px;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.pillar {
  padding: 36px;
  border-right: 1px solid var(--border-light);
  transition: background .3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--indigo-wash); }
.pillar-title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 19px;
  margin-bottom: 8px;
}
.pillar-tags {
  font-family: var(--f-mono);
  font-size: 10px; color: var(--ink-light);
  letter-spacing: .06em;
}

/* ─── SECTION STYLES ─── */
.section { padding: 100px 0; }
.section-tag {
  font-family: var(--f-mono);
  font-size: 10px; color: var(--indigo);
  letter-spacing: .35em; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--indigo);
}
.section-title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 36px;
  line-height: 1.2; margin-bottom: 16px;
  color: var(--indigo);
}
.section-desc {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.8; max-width: 560px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo-pale), transparent);
}


/* ─── ABOUT PHOTO ─── */
.about-photo {
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(26,29,43,.1);
  margin-bottom: 32px;
}
/* ─── O MNIE ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; margin-top: 48px; align-items: start;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
.stat {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 600; font-size: 36px;
  color: var(--indigo);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px; color: var(--ink-muted);
  letter-spacing: .04em;
}
.about-text {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.85;
}
.about-text p + p { margin-top: 16px; }
.about-qualifications {
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.qual-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
}
.qual-icon {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.qual-text {
  font-size: 13px; color: var(--ink-soft);
}
.qual-text strong { color: var(--ink); font-weight: 500; }

/* ─── USŁUGI ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(45,43,107,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--f-mono);
  font-size: 12px; color: var(--indigo-pale);
  margin-bottom: 20px;
}
.service-name {
  font-family: var(--f-display);
  font-weight: 600; font-size: 20px;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px; color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-tags {
  font-family: var(--f-mono);
  font-size: 10px; color: var(--ink-light);
  letter-spacing: .04em;
}

/* ─── MODEL WSPÓŁPRACY ─── */
.model-section { background: var(--white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.model-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  text-align: center;
}
.model-icon {
  font-family: var(--f-display);
  font-size: 32px; color: var(--indigo);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 120px;
}
.model-name {
  font-family: var(--f-display);
  font-weight: 600; font-size: 18px;
  margin-bottom: 8px;
}
.model-desc {
  font-size: 13px; color: var(--ink-muted);
  line-height: 1.7;
}
.model-highlight {
  border-color: var(--indigo);
  background: var(--indigo-wash);
}
.model-badge {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .2em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── JURYSDYKCJE ─── */
.jurisdictions-wrap {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.juris-tag {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .06em;
  color: var(--ink-muted);
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: border-color .3s, color .3s;
}
.juris-tag:hover { border-color: var(--indigo); color: var(--indigo); }
.juris-tag.active { background: var(--indigo); color: var(--white); border-color: var(--indigo); }

/* ─── PROCES ─── */
.process-list {
  margin-top: 48px;
  max-width: 680px;
}
.process-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--f-mono);
  font-size: 13px; color: var(--indigo);
  min-width: 32px; padding-top: 2px;
}
.process-title {
  font-size: 16px; font-weight: 500;
  margin-bottom: 4px;
}
.process-desc {
  font-size: 13px; color: var(--ink-muted);
  line-height: 1.65;
}

/* ─── KONTAKT ─── */
.contact-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-section .section-tag { color: var(--gold); }
.contact-section .section-tag::before { background: var(--gold); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-desc { color: rgba(255,255,255,.6); }

.contact-info { margin-top: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-label {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  min-width: 80px; padding-top: 3px;
}
.contact-value {
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.contact-value a { color: var(--gold-light); }
.contact-value a:hover { color: var(--gold); }

.contact-form { margin-top: 36px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 14px; font-weight: 300;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color .3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-gold {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  color: var(--ink); background: var(--gold);
  padding: 14px 36px; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .3s;
  width: 100%;
}
.btn-gold:hover { background: var(--gold-light); }

/* ─── FOOTER ─── */
.footer {
  background: var(--indigo-deep);
  padding: 48px 0 36px;
  color: rgba(255,255,255,.4);
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 36px;
}
.footer-brand-name {
  display: none; /* Replaced by SVG logo */
}
.footer-brand-name span {
  display: none;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 12px; display: block; }
.footer-legal {
  font-size: 11px; line-height: 1.6;
  max-width: 400px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px; color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .15em;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
}


/* ─── BLOG / INSIGHTS ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 48px;
}
.blog-card {
  padding: 32px; border: 1px solid var(--border-light); border-radius: 10px;
  background: var(--bg); transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--indigo-pale); transform: translateY(-2px); color: inherit; cursor: pointer; }
.blog-card.pinned { border-left: 3px solid var(--gold); }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-tag {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--indigo); background: var(--indigo-wash);
  padding: 3px 10px; border-radius: 4px;
}
.blog-date { font-size: 12px; color: var(--ink-light); }
.blog-title {
  font-family: var(--f-display); font-weight: 600; font-size: 20px;
  line-height: 1.3; margin-bottom: 10px; color: var(--ink);
}
.blog-excerpt { font-size: 13px; color: var(--ink-muted); line-height: 1.7; flex: 1; }
.blog-link {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--indigo); margin-top: 16px; display: inline-flex;
  align-items: center; gap: 6px;
}


/* ─── ARTICLE OVERLAY ─── */
.article-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 2000;
  background: rgba(26,29,43,.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.article-overlay.open { opacity: 1; pointer-events: auto; }
.article-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 2001;
  width: 680px; max-width: 100%;
  background: var(--white);
  box-shadow: -8px 0 48px rgba(26,29,43,.12);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.68,0,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.article-overlay.open .article-panel { transform: translateX(0); }
.article-header {
  position: sticky; top: 0; z-index: 1;
  padding: 20px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
}
.article-close {
  background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--ink-muted);
  transition: border-color .3s, color .3s;
}
.article-close:hover { border-color: var(--indigo); color: var(--indigo); }
.article-back-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-light);
}
.article-body { padding: 48px; }
.article-body .blog-meta { margin-bottom: 20px; }
.article-body .blog-title {
  font-family: var(--f-display); font-weight: 600; font-size: 30px;
  line-height: 1.25; margin-bottom: 32px; color: var(--ink);
}
.article-body .article-content p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.85;
  margin-bottom: 20px;
}
.article-body .article-content h3 {
  font-family: var(--f-display); font-weight: 600; font-size: 20px;
  color: var(--ink); margin: 36px 0 14px; line-height: 1.3;
}
.article-body .article-content h3:first-child { margin-top: 0; }
.article-body .article-content ul {
  margin: 0 0 20px 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.85;
}
.article-body .article-content li { margin-bottom: 6px; }
.article-body .article-author {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 13px; color: var(--ink-muted);
}
.article-body .article-author strong {
  color: var(--ink); font-weight: 500;
}

@media (max-width: 768px) {
  .article-panel { width: 100%; }
  .article-body { padding: 28px 20px; }
  .article-header { padding: 16px 20px; }
  .article-body .blog-title { font-size: 24px; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .nav-cta { padding: 10px 22px; }
}

@media (max-width: 900px) {
  .nav-logo { display: none; }
  .nav-logo-mobile { display: block; height: 34px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 36px;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
  }
  .nav-links.open a { font-size: 12px; }
  .nav-links.open .nav-cta { padding: 12px 32px; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 14px 0; }
  .nav-links.open { padding: 20px 24px; }
  .hero { padding: 120px 0 72px; }
  .hero h1 { font-size: 34px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border-light); }
  .pillar:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  #oferta [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-logo { display: none; }
  .nav-logo-mobile { display: block; height: 32px; }
}


/* ─── LANGUAGE SWITCHER ─── */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 16px; padding-left: 16px;
  border-left: 1px solid var(--border-light);
}
.lang-switch a {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 3px;
  color: var(--ink-light); text-decoration: none; transition: all .3s;
}
.lang-switch a:hover { color: var(--ink); background: rgba(45,43,107,.05); }
.lang-switch a.active { color: var(--indigo); font-weight: 500; background: rgba(45,43,107,.06); }
.lang-switch a::after { display: none !important; }
@media (max-width: 900px) {
  .lang-switch { margin-left: 0; padding-left: 0; border-left: none; padding-top: 8px; border-top: 1px solid var(--border-light); }
}

/* ─── COOKIE / RODO NOTE ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 18px 36px;
  font-size: 12px; line-height: 1.6;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; z-index: 9999;
  transform: translateY(100%);
  transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-btn {
  font-size: 11px; font-weight: 600;
  color: var(--ink); background: var(--gold);
  padding: 8px 24px; border-radius: 8px;
  border: none; cursor: pointer;
  letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
}


/* --- PORTRAIT BANNER --- */
.portrait-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.portrait-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.portrait-img-col {
  position: relative;
  overflow: hidden;
}
.portrait-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-img-col::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, var(--ink), transparent);
  pointer-events: none;
}
.portrait-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 48px;
  color: var(--white);
}
.portrait-quote {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.portrait-attr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-left: 24px;
}
.portrait-attr span {
  display: block;
  margin-top: 6px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(255,255,255,.5);
}
@media (max-width: 1024px) {
  .portrait-inner { grid-template-columns: 1fr; min-height: auto; }
  .portrait-img-col { max-height: 400px; }
  .portrait-img-col::after { display: none; }
  .portrait-text-col { padding: 48px 36px; }
}
@media (max-width: 768px) {
  .portrait-img-col { max-height: 320px; }
  .portrait-quote { font-size: 22px; }
  .portrait-text-col { padding: 36px 20px; }
}

/* Picture elements */
picture { display: contents; }
picture img { display: block; }
