/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2744;
  --navy2:  #243058;
  --gold:   #c9a84c;
  --gold-light: #e0c070;
  --white:  #ffffff;
  --off-white: #f5f4f0;
  --text:   #2c2c2c;
  --text-muted: #666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.nav-logo {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: 'Arial', sans-serif;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy2);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.4rem 0.75rem; font-size: 1rem; }
  .nav-links a.active { background: rgba(201,168,76,0.18); }
}

/* ── Page wrapper ─────────────────────────────────── */
main { flex: 1; }

/* ── Hero (home page) ─────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 50%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-cross {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Arial', sans-serif;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .hero { min-height: 70vh; padding: 4rem 1.5rem; }
  .hero-line { width: 40px; }
}

/* ── Welcome section (home page) ───────────────────── */
.welcome-section {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--off-white);
}

.welcome-inner {
  max-width: 640px;
  margin: 0 auto;
}

.section-accent {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.premium-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.welcome-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.scripture {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 480px;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
}

.scripture cite {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Arial', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-youtube {
  background: #ff0000;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2.4rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover { background: rgba(201,168,76,0.12); }

/* ── Quick-info cards on home ─────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ── Join section (home page) ──────────────────────── */
.join-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.join-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.join-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .join-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .join-grid { grid-template-columns: 1fr; }
}

.join-card {
  display: block;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-decoration: none;
  text-align: left;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.join-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.join-card-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.join-card-value {
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.join-card-note {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.join-card-arrow {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.join-card:hover .join-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stream section (home page) ────────────────────── */
.stream-section {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.stream-inner {
  max-width: 560px;
  margin: 0 auto;
}

.stream-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stream-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.stream-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.stream-section p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ── Page Hero (inner pages) ──────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 50%),
    var(--navy);
  color: var(--white);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

/* ── Services page ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border-left: 3px solid var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.service-time {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.service-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-details li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.note-box {
  background: rgba(201,168,76,0.06);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── Location page ────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .location-layout { grid-template-columns: 1fr; }
}

.address-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  border-left: 3px solid var(--gold);
}

.address-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.address-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.address-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.address-schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.address-day {
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.address-time {
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.address-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ── Watch page ───────────────────────────────────── */
.watch-embed {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.watch-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.watch-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.watch-cta {
  text-align: center;
  padding: 1rem 0;
}

.watch-cta p {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(204,0,0,0.06);
  color: #cc0000;
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #cc0000;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Recent videos grid ───────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-card {
  display: block;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
  border-top: 3px solid var(--gold);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.video-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.75rem 1rem;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Ergaran page ─────────────────────────────────── */
.ergaran-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 45%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.ergaran-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.ergaran-hero .hero-ornament {
  margin-bottom: 2rem;
}

.ergaran-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.ergaran-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.ergaran-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
}

.ergaran-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.ergaran-rating-text {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.ergaran-hero-cta {
  margin-bottom: 1rem;
}

.ergaran-store-btn {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.ergaran-platforms {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.03em;
}

.ergaran-features-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.ergaran-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ergaran-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.ergaran-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .ergaran-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ergaran-features-grid { grid-template-columns: 1fr; }
}

.ergaran-feature-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ergaran-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.ergaran-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.ergaran-feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ergaran-feature-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ergaran-highlights {
  background: var(--off-white);
  padding: 3rem 1.5rem;
}

.ergaran-highlights-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.ergaran-highlight {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}

.ergaran-highlight-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.ergaran-highlight-label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.ergaran-highlight-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .ergaran-highlights-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ergaran-highlight-divider {
    width: 40px;
    height: 1px;
  }
}

.ergaran-modes-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.ergaran-modes-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ergaran-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .ergaran-modes-grid { grid-template-columns: 1fr; }
}

.ergaran-mode-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
  border-left: 3px solid var(--gold);
}

.ergaran-mode-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.ergaran-mode-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ergaran-mode-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ergaran-cta-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 45%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.ergaran-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ergaran-cta-section .hero-ornament {
  margin-bottom: 2rem;
}

.ergaran-cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.ergaran-cta-section p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ergaran-cta-note {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
  letter-spacing: 0.02em;
}

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.6rem;
  display: block;
}
footer strong { color: rgba(255,255,255,0.85); font-family: 'Playfair Display', Georgia, serif; }

/* ── Utilities ────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ── Divider ──────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0;
}

/* ── Language toggle ──────────────────────────────── */
.nav-lang-toggle {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.lang-pill {
  padding: 0.45rem 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.lang-pill:hover { color: rgba(255,255,255,0.70); }
.lang-pill--active { color: var(--gold); font-weight: 700; }
.lang-pill--active:hover { color: var(--gold-light); }
@media (max-width: 680px) {
  .nav-lang-toggle {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

/* ── Blog list ─────────────────────────────────────── */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-decoration: none;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.blog-card-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 60px;
  display: flex;
  flex-direction: column;
}

.blog-card-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.blog-card-month {
  font-size: 0.82rem;
  font-family: 'Arial', sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.blog-card-year {
  font-size: 0.78rem;
  font-family: 'Arial', sans-serif;
  color: var(--text-muted);
}

.blog-card-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.blog-empty {
  text-align: center;
  color: var(--text-muted);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  padding: 3rem 0;
}

@media (max-width: 480px) {
  .blog-card {
    gap: 1rem;
    padding: 1.25rem;
  }
  .blog-card-day { font-size: 1.4rem; }
}

/* ── Blog detail ───────────────────────────────────── */
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-post-content h1 { font-size: 1.8rem; }
.blog-post-content h2 { font-size: 1.45rem; }
.blog-post-content h3 { font-size: 1.2rem; }

.blog-post-content p {
  margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.4rem;
}

.blog-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

.blog-post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.blog-post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-content a:hover {
  color: var(--navy);
}

.blog-post-content pre {
  background: var(--navy);
  color: #e0e0e0;
  padding: 1.25rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-post-content code {
  font-family: monospace;
  font-size: 0.9em;
}

.blog-post-content :not(pre) > code {
  background: rgba(0,0,0,0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.blog-back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}

.blog-back-link:hover {
  color: var(--navy);
}

.blog-author {
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-author strong {
  color: var(--gold);
  font-weight: 600;
}

.blog-card .blog-author {
  display: block;
  margin-top: 0.5rem;
}

.blog-detail-meta {
  margin-bottom: 0;
}

.blog-detail-byline {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.page-hero .blog-detail-byline .blog-author {
  color: rgba(255,255,255,0.6);
}

.page-hero .blog-detail-byline .blog-author strong {
  color: var(--gold);
}

.blog-yt-link {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.35rem 0.9rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2744;
  background: var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}

.blog-yt-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
