/* WealthEquityPro - Estilo similar a la web original */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-dark: #0f1f3d;
  --navy: #1a3a6c;
  --navy-light: #2d5599;
  --gold: #c9a449;
  --gold-light: #e6c878;
  --gold-dark: #9a7b2e;
  --cream: #f8f5ee;
  --cream-light: #fdfbf5;
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --text-mute: #7a7a7a;
  --border: #e2dcc9;
  --bg: #ffffff;
  --bg-alt: #f8f5ee;
  --success: #1e7f4a;
  --warn: #b8492f;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --max: 1200px;
  --read: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

/* === TOP TICKER === */
.ticker {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}
.ticker-track {
  display: inline-flex;
  gap: 36px;
  animation: ticker 60s linear infinite;
  padding-left: 100%;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-item .label { color: var(--gold-light); font-weight: 500; }
.ticker-item .val { color: var(--cream); font-weight: 600; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HEADER === */
.header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 24px 0;
  border-bottom: 3px solid var(--gold);
  color: var(--cream);
}
.header .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(201, 164, 73, 0.3);
}
.brand-text { color: var(--cream); }
.brand-text h1 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}
.brand-text h1 .accent { color: var(--gold-light); }
.brand-text .sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

/* === NAV === */
.nav {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201, 164, 73, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
  flex-wrap: wrap;
}
.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.nav a:hover, .nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  background: rgba(201, 164, 73, 0.05);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 164, 73, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(201, 164, 73, 0.1) 0%, transparent 50%);
}
.hero .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(201, 164, 73, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 20px;
  border-radius: 4px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: white;
  max-width: 900px;
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero .lead {
  font-size: 20px;
  color: var(--cream);
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 720px;
}
.hero .meta { color: var(--gold-light); font-size: 13px; letter-spacing: 0.05em; }
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(201, 164, 73, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 73, 0.5);
  color: var(--navy-dark);
}

/* === SECTIONS === */
.section {
  padding: 72px 0;
}
.section.alt { background: var(--cream); }
.section .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto;
}
.section-header p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* === ARTICLE CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 31, 61, 0.12);
  border-color: var(--gold);
}
.article-card .image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 64px;
}
.article-card .image.cat-strategy { background: linear-gradient(135deg, #1a3a6c 0%, #2d5599 100%); }
.article-card .image.cat-analysis { background: linear-gradient(135deg, #0f3a4a 0%, #2d6677 100%); }
.article-card .image.cat-reits { background: linear-gradient(135deg, #4a2d6c 0%, #6c4a99 100%); }
.article-card .image.cat-financing { background: linear-gradient(135deg, #2c5530 0%, #4a7c50 100%); }
.article-card .image.cat-taxes { background: linear-gradient(135deg, #6c2d2d 0%, #994a4a 100%); }
.article-card .image.cat-default { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }

.article-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card .cat-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.article-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.article-card .dek {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.article-card .meta {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-card .meta .read-more {
  margin-left: auto;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}

/* === FEATURE BOXES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.feature-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  display: block;
}
.feature-box:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 31, 61, 0.1);
}
.feature-box .icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.feature-box h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-box p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.feature-box .arrow {
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === ARTICLE PAGE === */
.article-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.article-hero .wrap { max-width: var(--read); margin: 0 auto; padding: 0 24px; }
.article-hero .cat-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 18px;
  color: white;
}
.article-hero .standfirst {
  font-size: 19px;
  color: var(--cream);
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 28px;
}
.article-hero .meta {
  display: inline-block;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 164, 73, 0.4);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.article-body {
  max-width: var(--read);
  margin: 56px auto;
  padding: 0 24px;
}
.article-body p {
  font-size: 17.5px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--text);
}
.article-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--gold-dark);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 28px;
  font-size: 17px;
  line-height: 1.7;
}
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--gold-dark); }
.article-body blockquote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--navy-dark);
  line-height: 1.4;
  border-radius: 0 6px 6px 0;
}
.article-body .callout {
  background: linear-gradient(135deg, #fffdf5 0%, #fdf6e3 100%);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0;
  font-size: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(201, 164, 73, 0.1);
}
.article-body .callout strong {
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 31, 61, 0.08);
}
.article-body th {
  background: var(--navy-dark);
  color: var(--gold-light);
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-body td {
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
}
.article-body tr:nth-child(even) td { background: var(--cream-light); }

/* === AUTHOR BOX === */
.author-box {
  max-width: var(--read);
  margin: 56px auto;
  padding: 32px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.author-box .label {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.author-box h4 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 12px;
  color: white;
}
.author-box p { font-size: 15px; line-height: 1.6; opacity: 0.9; }

.related-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* === STATIC PAGES === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero p.lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  line-height: 1.5;
}
.page-content {
  max-width: var(--read);
  margin: 56px auto;
  padding: 0 24px;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.page-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.page-content p, .page-content li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.page-content ul { padding-left: 28px; margin-bottom: 22px; }
.page-content li::marker { color: var(--gold-dark); }
.page-content .updated {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 32px;
}

/* === STATS ROW (for About page) === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 24px 16px;
  text-align: center;
  border-radius: 6px;
  border-top: 3px solid var(--gold);
}
.stat-box .num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-box .lbl {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.9;
}

/* === CALCULATORS === */
.calc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin: 28px 0;
  box-shadow: 0 4px 14px rgba(15, 31, 61, 0.06);
}
.calc h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 6px;
  font-weight: 700;
}
.calc .desc { color: var(--text-soft); margin-bottom: 20px; font-size: 15px; }
.calc-row { margin-bottom: 14px; }
.calc-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.calc-row input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.calc-row input:focus { outline: none; border-color: var(--gold); background: white; }
.calc-btn {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  border: none;
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.calc-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26, 58, 108, 0.3); }
.calc-result {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #fffdf5 0%, #fdf6e3 100%);
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: none;
}
.calc-result.active { display: block; }
.calc-result .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.calc-result .value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 4px 0 8px;
  line-height: 1;
}

/* === GLOSSARY === */
.glossary-item {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 14px;
  border-radius: 4px;
  transition: box-shadow 0.2s;
}
.glossary-item:hover { box-shadow: 0 4px 14px rgba(15, 31, 61, 0.08); }
.glossary-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.glossary-item p { color: var(--text-soft); font-size: 15px; line-height: 1.6; }

/* === FAQ === */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 12px;
  border-radius: 4px;
}
.faq-item h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.faq-item p { color: var(--text-soft); font-size: 15px; line-height: 1.6; }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1530 100%);
  color: var(--cream);
  padding: 64px 0 28px;
  margin-top: 80px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.footer-brand h3 .accent { color: var(--gold-light); }
.footer-brand p { font-size: 14px; color: var(--cream); opacity: 0.8; line-height: 1.6; }
.footer-col h5 {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 164, 73, 0.2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--cream);
  opacity: 0.85;
  font-size: 14px;
  transition: color 0.2s, opacity 0.2s;
}
.footer-col a:hover { color: var(--gold-light); opacity: 1; }
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid rgba(201, 164, 73, 0.15);
  text-align: center;
  font-size: 12px;
  color: var(--gold-light);
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white;
  padding: 18px 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner button {
  border: none;
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}
.cookie-banner button.accept { background: var(--gold); color: var(--navy-dark); }
.cookie-banner button.accept:hover { background: var(--gold-light); }
.cookie-banner button.decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-banner button.decline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.cookie-banner.hidden { display: none; }
