:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8c6d28;
  --navy: #0d1b3e;
  --navy-light: #1a2f6b;
  --cream: #f9f4ea;
  --cream-dark: #ede4cc;
  --white: #ffffff;
  --text: #2a1f0e;
  --text-light: #6b5b3e;
  --red-accent: #8b1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', serif;
  background: var(--cream);
  color: var(--text);
  font-size: 18px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
  padding: 8px 20px;
}

/* ── HEADER ── */
header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a8a 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-emblem {
  width: 58px;
  height: 58px;
  background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 20px rgba(201,168,76,0.5);
  flex-shrink: 0;
}

.logo-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 1px;
  line-height: 1.3;
}

.logo-text span {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  color: #9db4d8;
  letter-spacing: 2px;
  font-style: italic;
}

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  color: #c8d8f0;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}

nav a:hover {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
}

nav a.cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 18px;
}

nav a.cta:hover {
  background: var(--gold-light);
}

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #000;
  transition: transform 8s ease-out;
}

.slide.active .slide-bg { transform: none; }

.slide-1 .slide-bg {
  background-image: linear-gradient(160deg, rgba(26,10,46,0.65) 0%, rgba(45,27,94,0.45) 40%, rgba(13,27,62,0.55) 70%, rgba(0,8,20,0.8) 100%), url('../images/eucaristia.jpg');
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.slide-2 .slide-bg {
  background-image: linear-gradient(160deg, rgba(26,0,0,0.65) 0%, rgba(61,0,0,0.45) 40%, rgba(26,10,10,0.55) 70%, rgba(0,0,0,0.8) 100%), url('../images/sacrificio.jpg');
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.slide-3 .slide-bg {
  background-image: linear-gradient(160deg, rgba(0,26,13,0.65) 0%, rgba(0,51,34,0.45) 40%, rgba(0,26,61,0.55) 70%, rgba(0,8,20,0.8) 100%), url('../images/virgen-del-carmen.png');
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.slide-symbol {
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  padding: 0 60px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.slide-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 62px);
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 20px;
  color: #c8d8f0;
  max-width: 520px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 36px;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.slide-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.5);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
  border-color: var(--gold);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: rgba(201,168,76,0.4); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* ── SACRED DIVIDER ── */
.divider {
  text-align: center;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 22px;
  opacity: 0.8;
}

/* ── LECTIO DIVINA BANNER ── */
.lectio-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.lectio-banner::before {
  content: '✝';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  right: -40px;
  top: -60px;
}

.lectio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.lectio-label {
  writing-mode: vertical-rl;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.8;
}

.lectio-content {
  text-align: center;
  padding: 30px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.03);
  position: relative;
}

.lectio-content::before {
  content: '❝';
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 20px;
  line-height: 1;
}

.lectio-date {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.lectio-verse {
  font-family: 'Crimson Pro', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 10px;
}

.lectio-ref {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.lectio-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.lectio-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.lectio-btn span { font-size: 26px; }

/* ── SECTION WRAPPER ── */
.section {
  padding: 80px 30px;
}

.section-alt { background: var(--cream-dark); }

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 10px;
}

.section-subtitle.alt {
  color: #9db4d8;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.news-grid.three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.news-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.news-card.featured .news-card-img { height: 280px; }

.news-card-img.bg1 { background: linear-gradient(135deg, #1a0d3d, #2d1b6b); }
.news-card-img.bg2 { background: linear-gradient(135deg, #1a0000, #3d1010); }
.news-card-img.bg3 { background: linear-gradient(135deg, #001a14, #003322); }

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 10px;
  font-weight: 700;
}

.news-body {
  padding: 22px;
  border-top: 3px solid var(--gold);
}

.news-meta {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.news-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card.featured .news-body h3 { font-size: 20px; }

.news-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.news-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--gold-dark);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
}

.eventos-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.evento-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}

.evento-date {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.evento-date .day {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.evento-date .month {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9db4d8;
}

.evento-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.evento-info p {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
}

.evento-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 10px;
  margin-top: 8px;
}

.eventos-sidebar {
  background: var(--navy);
  padding: 30px;
  color: var(--white);
}

.sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.sidebar-title.small {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}

.mini-cal-month {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 14px;
}

.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-align: center;
}

.mini-cal-grid .header { color: var(--gold); opacity: 0.7; padding: 4px 0; }
.mini-cal-grid .day-cell { padding: 5px 2px; color: #9db4d8; cursor: pointer; border-radius: 2px; }
.mini-cal-grid .day-cell:hover { background: rgba(201,168,76,0.2); color: var(--gold); }
.mini-cal-grid .has-event { color: var(--white); font-weight: 700; position: relative; }
.mini-cal-grid .has-event::after { content: '•'; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 8px; }
.mini-cal-grid .today { background: var(--gold); color: var(--navy); border-radius: 2px; }

.quienes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quienes-visual {
  position: relative;
  height: 500px;
}

.quienes-frame {
  position: absolute;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.quienes-frame.main {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
}

.quienes-frame.secondary {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  border-color: var(--navy);
  background: linear-gradient(135deg, #0a0a1a 0%, var(--navy) 100%);
  font-size: 60px;
}

.quienes-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--navy-light);
  line-height: 1.7;
}

.quienes-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.pillar {
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.pillar-icon { font-size: 28px; margin-bottom: 10px; }

.pillar h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.pillar p {
  font-size: 13px;
  color: #9db4d8;
  line-height: 1.5;
}

.colombia-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 30px;
}

.colombia-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.colombia-section .section-title { color: var(--white); }
.colombia-section .section-eyebrow { color: var(--gold); }
.colombia-section .section-eyebrow::before { background: var(--gold); }

.junta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.jurisdiccion-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.jurisdiccion-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.jurisdiccion-card.nacional {
  grid-column: span 4;
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
}

.jurisdiccion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.jurisdiccion-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.jurisdiccion-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 10px;
}

.miembro-list { list-style: none; }

.miembro-list li {
  font-size: 14px;
  color: #c8d8f0;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
}

.miembro-list li:last-child { border: none; }

.miembro-rol {
  font-size: 11px;
  color: var(--gold);
  font-style: italic;
}

.retiros-section { background: var(--cream-dark); }

.retiros-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.retiros-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.retiros-table thead {
  background: var(--navy);
  color: var(--white);
}

.retiros-table th {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 16px 20px;
  text-align: left;
  color: var(--gold);
}

.retiros-table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

.retiros-table tr:hover td { background: rgba(201,168,76,0.05); }

.retiro-status {
  display: inline-block;
  padding: 3px 12px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 1px;
  border-radius: 2px;
}

.status-open { background: #e6f4ea; color: #1a6b2d; }
.status-prox { background: #fff3cd; color: #856404; }
.status-full { background: #fde8e8; color: #8b1a1a; }

.contacto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-bottom: 2px solid var(--gold-dark);
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--navy);
}

.form-group textarea { height: 120px; resize: vertical; }

.btn-submit {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

.contact-info-block {
  padding: 40px;
  background: var(--navy);
  color: var(--white);
}

.contact-info-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 15px;
  color: #9db4d8;
  font-style: italic;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-row.compact { margin-top: 14px; }

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
  color: white;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

footer {
  background: #060d1f;
  color: #6b7fa3;
  padding: 60px 30px 30px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7fa3;
  margin-top: 14px;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #6b7fa3;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-brand-header {
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-brand-emblem {
  width:44px;
  height:44px;
  background:radial-gradient(circle, var(--gold-light), var(--gold-dark));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.footer-brand-title {
  font-family:'Cinzel',serif;
  font-size:13px;
  color:var(--gold-light);
  letter-spacing:1px;
}

.footer-brand-subtitle {
  font-size:11px;
  color:#4a5c7a;
  letter-spacing:2px;
}

.footer-bottom {
  max-width: 1300px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

.footer-bottom-copy { color:#3a4a6a; }
.footer-bottom-symbols { color:var(--gold); font-size:16px; letter-spacing:8px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.shown {
  opacity: 1;
  transform: none;
}

/* helpers */
.inline-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--gold-dark); font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; text-decoration: none; border-bottom: 1px solid var(--gold-dark); padding-bottom: 2px; }

.legend-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #9db4d8;
  margin-bottom: 8px;
}

.legend-dot {
  color: var(--gold);
  font-size: 16px;
}

.legend-swatch {
  background: var(--gold);
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 2px;
}
