:root {
  --navy-950: #08172b;
  --navy-900: #10243f;
  --navy-800: #173456;
  --navy-700: #225078;
  --gold-500: #dc852f;
  --gold-400: #efa24f;
  --gold-200: #f7d7ad;
  --cream-100: #fffaf3;
  --cream-200: #f7efe3;
  --gray-50: #f8fafc;
  --gray-100: #eef2f5;
  --gray-400: #8893a1;
  --gray-600: #596575;
  --white: #ffffff;
  --ink: #182332;
  --shadow-sm: 0 14px 35px rgba(16, 36, 63, 0.08);
  --shadow-lg: 0 30px 80px rgba(8, 23, 43, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.42rem;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

#icon-facebook,
#icon-youtube {
  fill: currentColor;
  stroke: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-400);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading-wide {
  max-width: 900px;
}

.section-heading > p:last-child {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 36, 63, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, height 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(8, 23, 43, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  line-height: 1.05;
}

.brand img {
  width: 60px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:not(.nav-visit)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-visit {
  padding: 11px 18px;
  color: var(--white) !important;
  background: var(--navy-900);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid rgba(16, 36, 63, 0.15);
  border-radius: 50%;
  cursor: pointer;
}

.menu-close {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 80px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 162, 79, 0.18), transparent 27%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 58%, #1a3d62 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(239, 162, 79, 0.22);
  border-radius: 50%;
}

.hero-orb-one {
  top: 130px;
  right: -120px;
  width: 500px;
  height: 500px;
}

.hero-orb-two {
  top: 205px;
  right: -45px;
  width: 350px;
  height: 350px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 110px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6rem);
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: var(--gold-400);
  font-size: 0.58em;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-gold {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 12px 30px rgba(239, 162, 79, 0.18);
}

.button-primary:hover,
.button-gold:hover {
  background: #f7b66c;
  box-shadow: 0 16px 34px rgba(239, 162, 79, 0.25);
}

.button-secondary,
.button-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary:hover,
.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-signature {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 38px;
}

.hero-signature p {
  display: grid;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-signature strong {
  color: var(--white);
}

.signature-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: 655px;
}

.hero-image-wrap {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 0;
  height: 620px;
}

.hero-image-wrap::before {
  position: absolute;
  right: 5px;
  bottom: 0;
  left: 5px;
  height: 520px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 250px 250px 30px 30px;
  content: "";
}

.hero-image-wrap img {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 0;
  width: auto;
  height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 25px 38px rgba(0, 0, 0, 0.32));
}

.hero-image-glow {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: -90px;
  width: 420px;
  height: 330px;
  background: rgba(239, 162, 79, 0.2);
  border-radius: 50%;
  filter: blur(70px);
}

.floating-card {
  position: absolute;
  z-index: 4;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.floating-card-year {
  top: 105px;
  right: -30px;
  display: grid;
  width: 126px;
  padding: 17px 20px;
  text-align: center;
}

.floating-card-year span,
.floating-card-year small {
  color: var(--gray-600);
  font-size: 0.7rem;
  font-weight: 700;
}

.floating-card-year strong {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.floating-card-message {
  bottom: 75px;
  left: -72px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 19px;
  font-size: 0.77rem;
  line-height: 1.4;
}

.floating-card-message .icon {
  color: var(--gold-500);
  font-size: 1.5rem;
}

.hero-pillars {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--container));
  padding: 25px 32px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -10px 45px rgba(8, 23, 43, 0.14);
}

.hero-pillars article {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--gray-100);
}

.hero-pillars article:first-child {
  padding-left: 0;
}

.hero-pillars article:last-child {
  border-right: 0;
}

.hero-pillars article > span {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.hero-pillars article div {
  display: grid;
}

.hero-pillars strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.hero-pillars small {
  color: var(--gray-600);
}

.about {
  background:
    radial-gradient(circle at 7% 15%, rgba(239, 162, 79, 0.08), transparent 20%),
    var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.story-copy h3 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.story-copy p:not(.section-kicker) {
  color: var(--gray-600);
}

.timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 40px;
  width: 1px;
  background: var(--gold-200);
  content: "";
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  padding: 19px 0;
}

.timeline-year {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 42px;
  color: var(--gold-500);
  background: var(--cream-100);
  border: 1px solid var(--gold-200);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.timeline h3 {
  margin: 2px 0 7px;
  font-size: 1.15rem;
}

.timeline p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

.timeline-now .timeline-year {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.directives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 31px;
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card:hover {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 33px;
  color: var(--gold-500);
  background: var(--cream-200);
  border-radius: 16px;
  font-size: 1.3rem;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(16, 36, 63, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card > p:last-child {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.94rem;
}

.leadership {
  background: var(--gray-50);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 400px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.leadership-photo {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-200), #e8edf3);
}

.leadership-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25%;
  background: linear-gradient(transparent, rgba(8, 23, 43, 0.12));
  content: "";
}

.leadership-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.leadership-photo-jonas img {
  object-position: center top;
}

.leadership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.leadership-copy .role {
  margin-bottom: 13px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leadership-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.leadership-copy > p:last-of-type {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.93rem;
}

.leadership-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 37% 63%;
  min-height: 490px;
}

.leadership-card-wide .leadership-photo {
  min-height: 490px;
}

.leadership-card-wide .leadership-copy {
  padding: 50px 70px;
}

.leadership-card-wide blockquote {
  margin: 30px 0 0;
  padding: 19px 0 19px 24px;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.cells {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.cells-pattern {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 650px;
  height: 650px;
  opacity: 0.12;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(239, 162, 79, 0.2),
    0 0 0 160px rgba(239, 162, 79, 0.12);
}

.cells-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.cells h2 {
  color: var(--white);
}

.cells-intro > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.cells-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.cell-card {
  min-height: 215px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.cell-card > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
  color: var(--gold-400);
  background: rgba(239, 162, 79, 0.12);
  border-radius: 14px;
}

.cell-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.3rem;
}

.cell-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 70px;
  max-width: none;
  align-items: end;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > p {
  margin-bottom: 7px !important;
}

.schedule {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.schedule-card {
  position: relative;
  min-height: 310px;
  padding: 31px;
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
}

.schedule-card h3 {
  margin: 32px 0 12px;
}

.schedule-card > p:last-of-type {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.schedule-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(239, 162, 79, 0.22), transparent 35%),
    var(--navy-900);
  border-color: var(--navy-900);
}

.schedule-featured h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: 1.75rem;
}

.schedule-featured > p:last-of-type {
  color: rgba(255, 255, 255, 0.67);
}

.schedule-day {
  margin-bottom: 20px;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.schedule-featured .schedule-day {
  color: var(--gold-400);
}

.schedule-time {
  display: flex;
  gap: 10px;
  align-items: center;
}

.schedule-time .icon {
  color: var(--gold-400);
  font-size: 1.45rem;
}

.schedule-time strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.schedule-symbol {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold-500);
  background: var(--cream-200);
  border-radius: 17px;
  font-size: 1.45rem;
}

.schedule-tag {
  position: absolute;
  right: 25px;
  bottom: 22px;
  padding: 6px 11px;
  color: var(--gold-400);
  background: rgba(239, 162, 79, 0.11);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
}

.ministries-heading {
  margin: 80px 0 32px;
}

.ministries-heading h3 {
  font-size: 2rem;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ministry-card {
  display: flex;
  gap: 19px;
  align-items: center;
  min-height: 135px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ministry-card:hover {
  border-color: var(--gold-200);
  transform: translateY(-3px);
}

.ministry-card > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--navy-800);
  background: var(--cream-200);
  border-radius: 16px;
}

.ministry-card h3 {
  margin: 0 0 7px;
  font-size: 1.17rem;
}

.ministry-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
}

.ministry-card-wide {
  grid-column: 1 / -1;
}

.prevap {
  overflow: hidden;
  background: var(--cream-100);
}

.prevap::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 430px;
  height: 430px;
  background: rgba(239, 162, 79, 0.11);
  border-radius: 50%;
  content: "";
}

.prevap-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.prevap-seal {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  color: var(--gold-500);
  background: var(--white);
  border: 1px solid var(--gold-200);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 1.65rem;
}

.prevap-intro > p:last-child {
  margin-bottom: 0;
  color: var(--gray-600);
}

.prevap-points {
  display: grid;
  gap: 15px;
}

.prevap-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 133, 47, 0.14);
  border-radius: 18px;
}

.prevap-point > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--gold-500);
  background: var(--cream-200);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.prevap-point h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
}

.prevap-point p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
}

.prevap-quote {
  margin: 80px 0 0;
  padding: 28px 40px;
  color: var(--navy-900);
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 18px 18px 0;
  box-shadow: var(--shadow-sm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-style: italic;
  text-align: center;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  padding: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(239, 162, 79, 0.2), transparent 27%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  max-width: 650px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-card address {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 30px 0;
  font-style: normal;
}

.contact-card address > span:last-child {
  display: grid;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.contact-card address strong {
  color: var(--white);
  font-size: 1rem;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 1.2rem;
}

.contact-side {
  display: grid;
  gap: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.contact-logo {
  display: grid;
  place-items: center;
  min-height: 185px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
}

.contact-logo img {
  width: 175px;
  height: auto;
}

.contact-label {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  gap: 8px;
}

.social-links a {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.social-links a:last-child {
  border-bottom: 0;
}

.social-links a:hover {
  color: var(--gold-400);
}

.site-footer {
  padding: 75px 0 25px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;
}

.brand-footer {
  margin-bottom: 20px;
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand > p {
  max-width: 300px;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.footer-motto {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.footer-grid a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 25px;
  bottom: 25px;
  max-width: 360px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 19px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-visual {
    height: 600px;
  }

  .hero-image-wrap {
    height: 580px;
  }

  .hero-image-wrap img {
    right: 30px;
    height: 555px;
  }

  .floating-card-year {
    right: -5px;
  }

  .floating-card-message {
    left: -30px;
  }

  .story-grid,
  .cells-grid,
  .prevap-grid {
    gap: 55px;
  }

  .leadership-card {
    grid-template-columns: 42% 58%;
  }

  .leadership-copy {
    padding: 28px;
  }

  .contact-card {
    gap: 45px;
    padding: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 88px 0;
  }

  .brand img {
    width: 52px;
    height: 46px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    padding: 25px 20px;
    visibility: hidden;
    background: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 14px;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-visit {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 15px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-copy .button-row,
  .hero-signature {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 550px);
    height: 590px;
    margin-inline: auto;
  }

  .hero-image-wrap img {
    right: 50%;
    height: 560px;
    transform: translateX(50%);
  }

  .hero-pillars {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
    width: min(calc(100% - 40px), var(--container));
    margin-top: 20px;
  }

  .story-grid,
  .cells-grid,
  .prevap-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .directives {
    gap: 15px;
  }

  .feature-card {
    padding: 25px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-card-wide {
    grid-column: auto;
  }

  .leadership-card,
  .leadership-card-wide {
    grid-template-columns: 42% 58%;
    min-height: 420px;
  }

  .leadership-photo,
  .leadership-card-wide .leadership-photo {
    min-height: 420px;
  }

  .leadership-card-wide .leadership-copy {
    padding: 35px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .schedule {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-featured {
    grid-column: 1 / -1;
  }

  .contact-card {
    gap: 50px;
  }

  .contact-side {
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero h1 span {
    font-size: 0.43em;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-signature {
    text-align: left;
  }

  .hero-visual {
    height: 500px;
    margin-top: 15px;
  }

  .hero-image-wrap {
    height: 500px;
  }

  .hero-image-wrap::before {
    height: 400px;
  }

  .hero-image-wrap img {
    height: 470px;
  }

  .floating-card-year {
    top: 80px;
    right: -4px;
    width: 105px;
    padding: 12px;
  }

  .floating-card-message {
    bottom: 30px;
    left: 0;
    padding: 12px 14px;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 22px;
    border-radius: 18px 18px 0 0;
  }

  .hero-pillars article,
  .hero-pillars article:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero-pillars article:last-child {
    border-bottom: 0;
  }

  .story-grid {
    gap: 40px;
  }

  .timeline article {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .timeline-year {
    width: 68px;
  }

  .timeline::before {
    left: 34px;
  }

  .directives,
  .cells-cards,
  .schedule,
  .ministries-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 245px;
  }

  .leadership-card,
  .leadership-card-wide {
    grid-template-columns: 1fr;
  }

  .leadership-photo,
  .leadership-card-wide .leadership-photo {
    min-height: 420px;
  }

  .leadership-copy,
  .leadership-card-wide .leadership-copy {
    padding: 29px;
  }

  .cells-grid {
    gap: 48px;
  }

  .schedule-featured,
  .ministry-card-wide {
    grid-column: auto;
  }

  .schedule-card {
    min-height: 285px;
  }

  .ministries-heading {
    margin-top: 60px;
  }

  .ministry-card {
    align-items: flex-start;
  }

  .prevap-grid {
    gap: 48px;
  }

  .prevap-point {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 19px;
  }

  .prevap-quote {
    margin-top: 55px;
    padding: 24px;
    text-align: left;
  }

  .contact {
    padding: 0;
    background: var(--navy-900);
  }

  .contact .container {
    width: 100%;
  }

  .contact-card {
    gap: 45px;
    padding: 70px 20px;
    border-radius: 0;
  }

  .contact-side {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   VISÃO CELULAR — SEÇÕES EXPANDIDAS
   ============================================= */

/* Base Bíblica */
.cells-bible {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 80px;
  padding: 48px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}

.bible-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold-500);
  border-radius: 50%;
  color: var(--white);
}

.bible-badge .icon {
  width: 1.8em;
  height: 1.8em;
}

.bible-content {
  flex: 1;
}

.bible-content > p {
  color: var(--gold-200);
  margin-bottom: 24px;
}

.bible-verses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bible-verse {
  margin: 0;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bible-verse p {
  color: var(--cream-100);
  font-style: italic;
  margin-bottom: 10px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.bible-verse cite {
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* Escada do Sucesso */
.cells-ladder {
  margin-top: 80px;
}

.cells-ladder .section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.ladder-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ladder-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: background 250ms ease, transform 200ms ease;
}

.ladder-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.ladder-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gold-500);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ladder-step h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.05rem;
  font-family: Georgia, "Times New Roman", serif;
}

.ladder-step p {
  margin: 0;
  color: var(--gold-200);
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* Líder e Anfitrião */
.cells-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 72px;
}

.cells-role-card {
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
}

.cells-role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold-500);
  border-radius: 14px;
  color: var(--white);
  margin-bottom: 20px;
}

.cells-role-icon .icon {
  width: 1.6em;
  height: 1.6em;
}

.cells-role-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.cells-role-card > p {
  color: var(--gold-200);
  margin-bottom: 20px;
  opacity: 0.9;
}

.cells-role-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cells-role-list li {
  padding-left: 18px;
  position: relative;
  color: var(--cream-200);
  font-size: 0.93rem;
  line-height: 1.55;
}

.cells-role-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-400);
}

.cells-role-list strong {
  color: var(--white);
}

/* Lista de Células */
.cells-list-section {
  margin-top: 80px;
}

.cells-list-section .section-heading {
  margin-bottom: 48px;
}

.cells-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cell-item {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: background 250ms ease, transform 200ms ease;
}

.cell-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.cell-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cell-item-header .icon {
  width: 1em;
  height: 1em;
}

.cell-item h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
}

.cell-item p {
  margin: 0 0 6px;
  color: var(--cream-200);
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}

.cell-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-200) !important;
  opacity: 1 !important;
  font-size: 0.84rem !important;
}

.cell-meta .icon {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.cells-cta {
  margin-top: 48px;
  text-align: center;
}

/* =============================================
   ATIVIDADES — SEÇÕES EXPANDIDAS
   ============================================= */

/* Junta Diaconal */
.diaconal-section {
  margin-top: 72px;
  padding: 48px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--gold-500);
}

.diaconal-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.icon-badge-gold {
  background: var(--gold-500) !important;
  color: var(--white) !important;
  flex-shrink: 0;
}

.diaconal-content .section-kicker {
  margin-bottom: 6px;
}

.diaconal-content h3 {
  margin-bottom: 10px;
}

.diaconal-content > div > p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.diaconal-quote {
  margin: 0;
  padding: 18px 20px;
  background: var(--white);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--gray-600);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Obra Social */
.social-work-section {
  margin-top: 56px;
}

.social-work-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 48px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  color: var(--white);
}

.social-work-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--gold-500);
  border-radius: 50%;
  color: var(--white);
}

.social-work-icon .icon {
  width: 2em;
  height: 2em;
}

.social-work-content .eyebrow {
  color: var(--gold-400);
  margin-bottom: 8px;
}

.social-work-content h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.social-work-content p {
  color: var(--gold-200);
  margin-bottom: 24px;
  opacity: 0.9;
  max-width: 600px;
}

.social-work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Canal YouTube */
.youtube-section {
  margin-top: 56px;
}

.youtube-card {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 48px;
  background: linear-gradient(135deg, #1a0000 0%, #3a0000 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,0,0,0.2);
}

.youtube-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #ff0000;
  border-radius: 50%;
}

.youtube-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Versículo final */
.activities-verse {
  margin-top: 72px;
  text-align: center;
  padding: 48px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
}

.activities-verse blockquote {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-900);
  line-height: 1.5;
}

.activities-verse cite {
  color: var(--gold-500);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}

/* =============================================
   RESPONSIVIDADE — NOVAS SEÇÕES
   ============================================= */
@media (max-width: 900px) {
  .cells-bible {
    flex-direction: column;
    padding: 32px 20px;
  }

  .bible-verses {
    grid-template-columns: 1fr;
  }

  .ladder-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cells-roles {
    grid-template-columns: 1fr;
  }

  .cells-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diaconal-content {
    flex-direction: column;
  }

  .social-work-card,
  .youtube-card {
    flex-direction: column;
    padding: 32px 20px;
  }

  .youtube-links {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ladder-steps {
    grid-template-columns: 1fr;
  }

  .cells-list-grid {
    grid-template-columns: 1fr;
  }

  .cells-role-card {
    padding: 24px;
  }

  .activities-verse {
    padding: 32px 20px;
  }
}

/* =============================================
   GALERIA FUNDADORES & PLACEHOLDERS DE FOTOS
   ============================================= */

.founders-gallery {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
}

.founders-gallery .section-kicker {
  margin-bottom: 24px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 700px;
}

.founder-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 220px;
  background: var(--cream-200);
  border: 2px dashed var(--gold-500);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-figure figcaption strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}

.founder-figure figcaption span {
  color: var(--gray-600);
  font-size: 0.82rem;
}

.founders-note {
  margin-top: 18px;
  color: var(--gray-400);
  font-size: 0.82rem;
  font-style: italic;
}

/* Placeholder de foto nas células */
.cell-item-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 130px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(220,133,47,0.4);
  border-radius: 10px;
  color: rgba(247,215,173,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Placeholder de foto nos ministérios */
.ministry-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100px;
  margin-bottom: 12px;
  background: var(--cream-200);
  border: 1px dashed var(--gold-500);
  border-radius: 10px;
  color: var(--gray-400);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* =============================================
   FOTOS REAIS — CÉLULAS E MINISTÉRIOS
   ============================================= */

/* Foto na intro da seção célula */
.cells-intro-photo {
  width: 100%;
  max-width: 520px;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 2px solid rgba(220,133,47,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Foto nos cards de célula */
.cell-item-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Foto nos cards de ministério */
.ministry-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Foto real dos fundadores */
.founder-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-sm);
  display: block;
  border: 2px solid var(--gold-200);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
