/* =====================
   TOKENS
   ===================== */
:root {
  --brand-900: #0f172a;
  --brand-800: #17233d;
  --brand-700: #243555;
  --accent-500: #d4a43a;
  --accent-400: #e8bf61;
  --accent-300: #f5d98a;
  --bg-100: #faf8f4;
  --bg-200: #f3f0e8;
  --surface: rgba(255, 252, 244, 0.88);
  --surface-strong: #fdf9f2;
  --text-900: #162134;
  --text-700: #41516f;
  --text-500: #637391;
  --border-200: rgba(18, 31, 51, 0.12);
  --border-100: rgba(18, 31, 51, 0.08);
  --shadow-layered: 0 0 0 1px rgba(18, 31, 51, 0.03), 0 8px 18px rgba(17, 31, 54, 0.08), 0 20px 40px rgba(17, 31, 54, 0.06);
  --shadow-raised:  0 0 0 1px rgba(18, 31, 51, 0.06), 0 14px 32px rgba(17, 31, 54, 0.14), 0 28px 52px rgba(17, 31, 54, 0.09);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }

/* =====================
   BASE
   ===================== */
body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, #fff5de 0%, transparent 42%),
    radial-gradient(circle at 90% 110%, #f8e8bf 0%, transparent 35%),
    linear-gradient(180deg, var(--bg-100) 0%, var(--bg-200) 100%);
  color: var(--text-900);
  min-height: 100vh;
}

h1, h2, h3, h4, .display-6, .display-5 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

main > .container > * {
  animation: reveal-up 260ms var(--ease-out) both;
}

/* =====================
   NAVBAR
   ===================== */
.site-navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(10, 15, 30, 0.18);
  transition: background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.site-navbar.nav-scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 14px 34px rgba(10, 15, 30, 0.34);
}

/* Logo da Igreja no navbar */
.navbar-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  background: #fff;
}

.navbar-brand-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Nav links */
.site-navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  transition: color 180ms var(--ease-out);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #fff;
}

/* Underline animado */
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 4px;
  height: 2px;
  border-radius: 10px;
  background: var(--accent-400);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-200);
  box-shadow: var(--shadow-raised);
  padding: var(--space-1);
}

.dropdown-item {
  border-radius: 6px;
  font-size: 0.88rem;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}

/* =====================
   HERO COM FOTO DE CAPA
   ===================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--brand-900) 0%, var(--brand-800) 58%, var(--brand-700) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hero com imagem de capa */
.page-hero--cover {
  background: var(--brand-900);
  min-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-cover-image {
  width: 100%;
  height: min(72vh, 640px);
  display: block;
  object-fit: cover;
  object-position: center 30%;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
  z-index: 3;
}

.hero-content > * {
  max-width: 760px;
}

/* Overlay escuro sobre a foto de capa */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 16, 34, 0.82) 0%,
    rgba(8, 16, 34, 0.62) 34%,
    rgba(8, 16, 34, 0.30) 62%,
    rgba(8, 16, 34, 0.12) 100%
  );
  z-index: 2;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: var(--space-3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Elementos do hero acima do overlay */
.page-hero .container {
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 164, 58, 0.18), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-400);
}

.hero-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(232, 191, 97, 0.7);
  flex-shrink: 0;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: var(--space-3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.btn-hero {
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =====================
   QUICK-NAV
   ===================== */
.quick-nav {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.quick-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-700);
  text-decoration: none;
  border: 1px solid var(--border-200);
  border-radius: 999px;
  padding: 6px 16px;
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(17, 31, 54, 0.06);
  transition:
    color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.quick-nav-link:hover {
  color: var(--brand-900);
  background: var(--bg-200);
  border-color: rgba(18, 31, 51, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 31, 54, 0.12);
}

.quick-nav-link i {
  color: var(--accent-500);
  font-size: 0.9em;
}

/* =====================
   CARDS
   ===================== */
.card-soft {
  background: var(--surface);
  border: 1px solid var(--border-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-layered);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.card-soft:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-raised);
  border-color: rgba(18, 31, 51, 0.1);
}

/* Scroll margin para navbar fixo */
section[id] {
  scroll-margin-top: 78px;
}

.section-title {
  color: var(--brand-900);
}

/* =====================
   SERVICE (CULTOS)
   ===================== */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4d5;
  color: #7e5a00;
  border: 1px solid #f0d88a;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-badge i { color: var(--accent-500); }

.service-badge-time {
  background: var(--accent-500);
  color: #fff;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-left: 4px;
}

.service-item {
  border-left: 3px solid var(--accent-500);
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    border-left-color 200ms var(--ease-out);
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-raised);
  border-left-color: var(--accent-400);
}

.service-day-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-day-badge {
  background: #fff4d5;
  color: #7e5a00;
  font-weight: 600;
}

.service-entry + .service-entry {
  border-top: 1px dashed rgba(18, 31, 51, 0.16);
  padding-top: 8px;
}

/* =====================
   MISSÃO / VISÃO / VALORES
   ===================== */
.value-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-100);
  box-shadow: var(--shadow-layered);
}

.value-card {
  background: var(--surface-strong);
  border: 1px solid var(--border-200);
  border-radius: var(--radius-md);
  color: var(--text-900);
  padding: var(--space-5);
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.value-card:hover {
  background: var(--surface-strong);
  border-color: rgba(18, 31, 51, 0.2);
  transform: translateY(-4px);
}

.value-card .opacity-90 {
  opacity: 1;
  color: var(--text-700);
}

/* Ícone circular destaque */
.value-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(212, 164, 58, 0.38);
}

/* =====================
   MINISTÉRIOS
   ===================== */
.ministry-card,
.news-card {
  overflow: hidden;
}

.news-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 380ms var(--ease-out);
}

.news-card:hover img {
  transform: scale(1.05);
}

.ministry-card img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: #f3f0e8;
  transition: none;
}

.ministry-card--hero {
  position: relative;
  border-radius: var(--radius-lg);
}

.ministry-card--hero img {
  width: 100%;
  height: 360px;
  max-height: none;
  object-fit: cover;
  object-position: center 35%;
  background: transparent;
}

.ministry-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, rgba(9, 17, 33, 0) 0%, rgba(9, 17, 33, 0.82) 72%, rgba(9, 17, 33, 0.92) 100%);
  z-index: 2;
}

.ministry-overlay h3 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Link "Ver ministério" */
.ministry-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent-500);
  text-decoration: none;
  gap: 6px;
  transition: color 160ms, gap 160ms;
}

.ministry-link:hover { color: var(--accent-400); gap: 10px; }

/* News: cursor só quando tem link */
.news-card--linked { cursor: pointer; }

/* =====================
   COMUNICAÇÃO / MÍDIA
   ===================== */

/* ─ Card de mídia ─ */
.media-card {
  overflow: hidden;
}

/* ─ YouTube click-to-play ─ */
.yt-preview {
  position: relative;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.yt-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms var(--ease-out), filter 320ms var(--ease-out);
}

.yt-preview:hover img {
  transform: scale(1.04);
  filter: brightness(0.78);
}

/* Botão play (não é um <button> interativo; pointer-events: none) */
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  pointer-events: none;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.yt-preview:hover .yt-play-btn {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

/* Badge "YouTube" no canto */
.yt-duration-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  pointer-events: none;
}

/* iframe após clique */
.yt-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* ─ Player de áudio ─ */
.media-file-wrap { padding: var(--space-4); }

.audio-player-wrap {
  background: linear-gradient(135deg, #1a2a44, #243555);
  border-radius: var(--radius-sm);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 164, 58, 0.2);
  border: 2px solid rgba(212, 164, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-400);
  margin-bottom: var(--space-3);
}

.media-video {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* ─ Placeholder sem mídia ─ */
.media-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #13203d, #273a59);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(248, 232, 195, 0.35);
}

/* ─ Chip de tipo ─ */
.media-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
}

.media-type--podcast   { background: #f0f0ff; color: #3730a3; }
.media-type--sermon    { background: #fef9ee; color: #92400e; }
.media-type--service   { background: #f0fdf4; color: #166534; }
.media-type--interview { background: #fff1f2; color: #9f1239; }

/* ─ Título ─ */
.media-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-900);
}

/* =====================
   PLACEHOLDER BLOCKS
   ===================== */
.placeholder-block {
  min-height: 180px;
  background: linear-gradient(145deg, #13203d, #273a59);
  color: rgba(248, 232, 195, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 220ms var(--ease-out);
}

.card-soft:hover .placeholder-block {
  background: linear-gradient(145deg, #1a2d4d, #2e4568);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  border-radius: 10px;
  transition:
    transform 150ms var(--ease-out),
    box-shadow 150ms var(--ease-out),
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    opacity 0.15s ease-in-out;
}

.btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 31, 54, 0.22);
}

.btn:not(:disabled):active {
  transform: translateY(0);
  box-shadow: none;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  border-top: 1px solid var(--border-200);
  background: var(--surface-strong);
}

/* ── Linha principal ── */
.footer-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Marca ── */
.footer-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-200);
  flex-shrink: 0;
  background: #fff;
}

.footer-brand-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-900);
  line-height: 1.2;
  white-space: nowrap;
}

.footer-brand-location {
  display: block;
  font-size: .72rem;
  color: var(--text-500);
  line-height: 1.2;
}

/* ── Navegação inline ── */
.footer-nav-mini {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.footer-nav-mini a {
  font-size: .8rem;
  color: var(--text-500);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms var(--ease-out);
  white-space: nowrap;
}

.footer-nav-mini a:hover { color: var(--text-900); }

/* ── Ícones sociais ── */
.footer-icons {
  display: flex;
  align-items: center;
  gap: .375rem;
}

.footer-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: background 150ms var(--ease-out), color 150ms var(--ease-out), transform 150ms var(--ease-out);
  flex-shrink: 0;
}

/* Cores em repouso */
.footer-icon-btn.icon-instagram { background: #fce4ec; color: #ad1457; }
.footer-icon-btn.icon-facebook  { background: #e3f2fd; color: #1565c0; }
.footer-icon-btn.icon-whatsapp  { background: #e8f5e9; color: #2e7d32; }
.footer-icon-btn.icon-youtube   { background: #ffebee; color: #c62828; }
.footer-icon-btn.icon-maps      { background: #e8f4fd; color: #1a73e8; }

/* Cores no hover */
.footer-icon-btn.icon-instagram:hover { background: #e91e8c; color: #fff; transform: scale(1.1); }
.footer-icon-btn.icon-facebook:hover  { background: #1877f2; color: #fff; transform: scale(1.1); }
.footer-icon-btn.icon-whatsapp:hover  { background: #25d366; color: #fff; transform: scale(1.1); }
.footer-icon-btn.icon-youtube:hover   { background: #ff0000; color: #fff; transform: scale(1.1); }
.footer-icon-btn.icon-maps:hover      { background: #1a73e8; color: #fff; transform: scale(1.1); }

.footer-divider {
  border-color: var(--border-200);
}

/* =====================
   TABELAS
   ===================== */
.table tbody td,
.table thead th { vertical-align: middle; }

.table thead th {
  color: var(--text-700);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================
   FILTROS / PILLS
   ===================== */
.filter-pill {
  border-radius: 999px;
  padding: 6px 14px;
  transition:
    background 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out);
}

.filter-pill.active {
  background: var(--brand-900);
  color: #fff;
  border-color: var(--brand-900);
}

/* =====================
   MEDIA / VÍDEOS
   ===================== */
.video-embed {
  width: 100%;
  min-height: 240px;
  border: 0;
}

/* =====================
   ALERTAS
   ===================== */
.reveal-block { animation: reveal-up 220ms var(--ease-out) both; }
.alert { border-radius: var(--radius-sm); }

/* =====================
   SCROLL REVEAL
   ===================== */

/* Desativa animação genérica em seções com reveal próprio */
main > .container > .reveal-section { animation: none; }

.reveal-section {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger nos cards filhos — cobre section > row > col e row.reveal-section > col */
.reveal-section .row > [class*="col-"],
.reveal-section.row > [class*="col-"] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}

.reveal-section.is-visible .row > [class*="col-"],
.reveal-section.row.is-visible > [class*="col-"] {
  opacity: 1;
  transform: none;
}

.reveal-section.is-visible .row > [class*="col-"]:nth-child(1),
.reveal-section.row.is-visible > [class*="col-"]:nth-child(1)  { transition-delay: 30ms;  }
.reveal-section.is-visible .row > [class*="col-"]:nth-child(2),
.reveal-section.row.is-visible > [class*="col-"]:nth-child(2)  { transition-delay: 100ms; }
.reveal-section.is-visible .row > [class*="col-"]:nth-child(3),
.reveal-section.row.is-visible > [class*="col-"]:nth-child(3)  { transition-delay: 170ms; }
.reveal-section.is-visible .row > [class*="col-"]:nth-child(n+4),
.reveal-section.row.is-visible > [class*="col-"]:nth-child(n+4){ transition-delay: 240ms; }

/* =====================
   ANIMAÇÕES
   ===================== */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   RESPONSIVO
   ===================== */
@media (max-width: 991.98px) {
  .site-navbar .navbar-nav {
    padding-top: var(--space-3);
    gap: var(--space-1);
  }

  .site-navbar .nav-link::after {
    left: 0;
    right: auto;
    width: 18px;
    transform-origin: left center;
  }

  .service-item:hover { transform: none; }

  .hero-content {
    justify-content: center;
    padding-bottom: 1.4rem;
  }

  .navbar-brand-text { font-size: 0.87rem; }
}

@media (max-width: 575.98px) {
  .hero-content {
    position: absolute;
    inset: 0;
    justify-content: flex-end;
    padding-bottom: 1rem;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 16, 34, 0.15) 0%,
      rgba(8, 16, 34, 0.45) 48%,
      rgba(8, 16, 34, 0.78) 100%
    );
  }
  .hero-cover-image { min-height: 260px; max-height: 420px; object-fit: cover; object-position: center 32%; }
  .footer-nav-mini { display: none; }
  .footer-strip { gap: 1rem; }
  .footer-icons { margin-left: auto; }
}
