/* Sentido de Vida — Iglesia Evangélica */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #f5efe6;
  --bg-warm: #ede3d4;
  --bg-deep: #2a1f17;
  --bg-card: #fbf7f0;
  --ink: #1f1612;
  --ink-soft: #4a3a2e;
  --ink-mute: #8a7866;
  --line: #d9cdb8;
  --line-soft: #e8dec9;
  --accent: #b8843a;       /* dorado mostaza */
  --accent-deep: #8a5a1f;  /* terracota oscuro */
  --accent-warm: #d4a865;
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-name em { font-style: italic; color: var(--accent-deep); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  background: var(--bg-deep);
  color: var(--bg);
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, top 0.25s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav.open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-deep);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--bg-deep);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 400;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bg-deep);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--bg-deep);
  background: var(--bg-card);
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 500;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--bg-deep);
}

/* Hero variant A — image collage */
.hero-visual {
  position: relative;
  height: 620px;
}
.hero-visual .ph {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}
.hero-visual .ph-1 {
  top: 0; right: 0;
  width: 78%; height: 65%;
}
.hero-visual .ph-2 {
  bottom: 0; left: 0;
  width: 60%; height: 48%;
  border: 6px solid var(--bg);
}
.hero-visual .quote-card {
  position: absolute;
  bottom: 60px; right: -20px;
  background: var(--bg-deep);
  color: var(--bg);
  padding: 24px 28px;
  max-width: 240px;
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.3);
}
.hero-visual .quote-card .src {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-top: 12px;
  display: block;
}

/* Hero variant B — typographic */
.hero[data-variant="typographic"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0;
}
.hero[data-variant="typographic"] .hero-eyebrow { justify-content: center; }
.hero[data-variant="typographic"] h1 {
  font-size: clamp(64px, 11vw, 160px);
  line-height: 0.95;
  margin-bottom: 36px;
}
.hero[data-variant="typographic"] .hero-lead {
  margin: 0 auto 40px;
}
.hero[data-variant="typographic"] .hero-actions { justify-content: center; }
.hero[data-variant="typographic"] .hero-visual { display: none; }
.hero[data-variant="typographic"] .hero-meta {
  margin: 80px auto 0;
  justify-content: center;
}
.hero[data-variant="typographic"] .hero-eyebrow::before { display: none; }
.hero[data-variant="typographic"] .hero-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  margin-bottom: 40px;
}

/* Hero variant C — full-bleed dark */
.hero[data-variant="immersive"] {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 120px 0 100px;
  min-height: 100vh;
}
.hero[data-variant="immersive"] h1 { color: var(--bg); }
.hero[data-variant="immersive"] h1 em { color: var(--accent-warm); }
.hero[data-variant="immersive"] .hero-eyebrow { color: var(--accent-warm); }
.hero[data-variant="immersive"] .hero-eyebrow::before { background: var(--accent-warm); }
.hero[data-variant="immersive"] .hero-lead { color: rgba(245,239,230,0.7); }
.hero[data-variant="immersive"] .btn-primary {
  background: var(--accent-warm); color: var(--bg-deep);
}
.hero[data-variant="immersive"] .btn-primary:hover { background: var(--bg); }
.hero[data-variant="immersive"] .btn-ghost {
  color: var(--bg); border-color: rgba(245,239,230,0.25);
}
.hero[data-variant="immersive"] .btn-ghost:hover { background: rgba(245,239,230,0.08); }
.hero[data-variant="immersive"] .hero-meta { border-top-color: rgba(245,239,230,0.15); }
.hero[data-variant="immersive"] .hero-meta-item .label { color: rgba(245,239,230,0.5); }
.hero[data-variant="immersive"] .hero-meta-item .value { color: var(--bg); }
.hero[data-variant="immersive"] .hero-visual .quote-card {
  background: var(--bg);
  color: var(--bg-deep);
}
.hero[data-variant="immersive"] .hero-visual .quote-card .src { color: var(--accent-deep); }
.hero[data-variant="immersive"] .hero-visual .ph-2 { border-color: var(--bg-deep); }

/* ========== PLACEHOLDERS ========== */
.ph {
  background:
    repeating-linear-gradient(
      135deg,
      #d4c4a8 0 12px,
      #c9b899 12px 24px
    );
  position: relative;
  display: grid;
  place-items: center;
  color: #5a4a36;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(90,74,54,0.4);
  border-radius: 2px;
  pointer-events: none;
}
.ph-label {
  position: relative;
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  z-index: 1;
}

/* ========== SECTION CHROME ========== */
section { padding: 120px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .left {
  display: flex; flex-direction: column; gap: 16px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent-deep);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bg-deep);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--accent-deep); }
.section-head .right {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  height: 540px;
  position: relative;
}
.about-image .ph { width: 100%; height: 100%; }
.about-image .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--bg);
  padding: 14px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.15);
}
.about-image .badge .small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--bg-deep);
  text-wrap: balance;
}
.about-text h2 em { font-style: italic; color: var(--accent-deep); }
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-value .num {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.about-value h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.about-value p {
  font-size: 14px;
  margin: 0;
}

/* ========== EVENTS ========== */
.events-list {
  border-top: 1px solid var(--line);
}
.event {
  display: grid;
  grid-template-columns: 120px 1.5fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s, padding 0.2s;
  cursor: pointer;
}
.event:hover {
  background: var(--bg-card);
  padding-left: 16px;
  padding-right: 16px;
}
.event-date {
  font-family: var(--serif);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-date .day {
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: var(--bg-deep);
  font-feature-settings: 'lnum';
}
.event-date .month {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 6px;
  font-weight: 500;
}
.event-info h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--bg-deep);
}
.event-info p {
  font-size: 14px;
  color: var(--ink-soft);
}
.event-meta {
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-meta .row {
  display: flex; align-items: center; gap: 8px;
}
.event-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  white-space: nowrap;
  font-weight: 500;
}
.event-tag.featured {
  background: var(--accent-deep);
  color: var(--bg);
  border-color: var(--accent-deep);
}

/* ========== MINISTRIES ========== */
.ministries {
  background: var(--bg-deep);
  color: var(--bg);
}
.ministries .section-title { color: var(--bg); }
.ministries .section-title em { color: var(--accent-warm); }
.ministries .section-eyebrow { color: var(--accent-warm); }
.ministries .section-eyebrow::before { background: var(--accent-warm); }
.ministries .section-head .right { color: rgba(245,239,230,0.7); }

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.ministry {
  padding: 40px 28px 36px;
  border-right: 1px solid rgba(245,239,230,0.15);
  border-bottom: 1px solid rgba(245,239,230,0.15);
  transition: background 0.3s;
  position: relative;
}
.ministry:last-child { border-right: none; }
.ministry:hover { background: rgba(245,239,230,0.04); }
.ministry .icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--accent-warm);
  color: var(--accent-warm);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 32px;
}
.ministry h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--bg);
}
.ministry p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,239,230,0.65);
  margin-bottom: 24px;
}
.ministry .meet {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== SCHEDULE ========== */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 48px 44px;
  border-radius: 6px;
}
.schedule-card.feature {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}
.schedule-day {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--accent-deep);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.schedule-card.feature .schedule-day { color: var(--accent-warm); }
.schedule-card h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--bg-deep);
}
.schedule-card.feature h3 { color: var(--bg); }
.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.schedule-time {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.schedule-card.feature .schedule-time { border-bottom-color: rgba(245,239,230,0.15); }
.schedule-time:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-time .hour {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--bg-deep);
  min-width: 100px;
  font-feature-settings: 'lnum';
}
.schedule-card.feature .schedule-time .hour { color: var(--bg); }
.schedule-time .desc {
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
}
.schedule-card.feature .schedule-time .desc { color: rgba(245,239,230,0.7); }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item .ph { width: 100%; height: 100%; }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,22,18,0.85) 0%, rgba(31,22,18,0) 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay-text {
  color: var(--bg);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 3; grid-row: span 2; }

/* ========== VIDEOS ========== */
.videos {
  background: var(--bg-warm);
}
.video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.video-card {
  background: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--line-soft);
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.15); }
.video-thumb {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.video-card.small .video-thumb { height: 180px; }
.video-thumb .ph { width: 100%; height: 100%; }
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,22,18,0.5), rgba(31,22,18,0));
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(245,239,230,0.95);
  color: var(--bg-deep);
  display: grid;
  place-items: center;
  z-index: 1;
  transition: transform 0.2s;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-card.small .play-btn { width: 52px; height: 52px; }
.video-info { padding: 24px 28px 28px; }
.video-card.small .video-info { padding: 18px 22px 22px; }
.video-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  font-weight: 500;
}
.video-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute); }
.video-info h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bg-deep);
  margin-bottom: 8px;
}
.video-card.small .video-info h3 { font-size: 19px; }
.video-info p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.video-side {
  display: flex; flex-direction: column; gap: 24px;
}

/* ========== LOCATION ========== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--bg-deep);
  line-height: 1.15;
}
.location-info h3 em { font-style: italic; color: var(--accent-deep); }
.location-info p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
}
.contact-row .k {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-row .v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--bg-deep);
}
.contact-row .v.small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}
.contact-row .v a:hover { color: var(--accent-deep); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: var(--ink-soft);
}
.social:hover {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}

.map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 480px;
  background: #e0d4be;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.map-pin .head {
  background: var(--accent-deep);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.3);
}
.map-pin .tail {
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--accent-deep);
}
.map-pin .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-deep);
  border: 3px solid var(--bg);
  margin-top: 4px;
  box-shadow: 0 0 0 6px rgba(184,132,58,0.25);
}
.map-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--bg);
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.15);
}
.map-overlay .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4a8c5a;
}
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, transparent 30%, rgba(0,0,0,0.04) 100%),
    repeating-linear-gradient(0deg, rgba(31,22,18,0.04) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(31,22,18,0.04) 0 1px, transparent 1px 60px);
}
.map-streets {
  position: absolute; inset: 0;
}
.map-streets svg { width: 100%; height: 100%; }

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--accent-deep);
  color: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(245,239,230,0.06);
}
.newsletter::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(245,239,230,0.04);
}
.newsletter-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter .section-eyebrow {
  color: var(--accent-warm);
  justify-content: center;
  margin-bottom: 24px;
}
.newsletter .section-eyebrow::before { background: var(--accent-warm); }
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
  text-wrap: balance;
}
.newsletter h2 em { font-style: italic; color: var(--accent-warm); }
.newsletter p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,239,230,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  padding: 8px;
  border-radius: 999px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  color: var(--bg-deep);
  outline: none;
  font-family: var(--sans);
}
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form button {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--ink); }
.newsletter-checks {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,239,230,0.75);
}
.newsletter-checks span {
  display: flex; align-items: center; gap: 8px;
}
.newsletter-checks svg { color: var(--accent-warm); }

.newsletter-success {
  display: none;
  background: var(--bg);
  color: var(--bg-deep);
  padding: 24px 32px;
  border-radius: 12px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-success.visible { display: block; animation: slideIn 0.4s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.newsletter-success h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}
.newsletter-success p { color: var(--ink-soft); margin: 0; font-size: 14px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-deep);
  color: rgba(245,239,230,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg);
  margin-bottom: 20px;
}
.footer-brand .brand-mark {
  background: var(--accent-warm);
  color: var(--bg-deep);
}
.footer-brand .brand-name { color: var(--bg); }
.footer-brand .brand-name em { color: var(--accent-warm); }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(245,239,230,0.85);
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.4;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--bg); }
.footer-bar {
  border-top: 1px solid rgba(245,239,230,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,239,230,0.5);
}
.footer-bar a { color: rgba(245,239,230,0.7); }
.footer-bar a:hover { color: var(--bg); }
.admin-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(245,239,230,0.15);
  border-radius: 999px;
  transition: all 0.2s;
}
.admin-link:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .schedule-grid, .video-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
  .ministry-grid .ministry:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 28px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 99;
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--line-soft); }
  .nav-links a {
    display: block;
    padding: 18px 4px;
    font-family: var(--serif);
    font-size: 22px;
  }
  .event { grid-template-columns: 80px 1fr; gap: 20px; }
  .event-meta, .event-tag { display: none; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .gallery-item:nth-child(n) { grid-column: span 3; grid-row: span 2; }
  .hero-visual { height: 380px; }
  section { padding: 80px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 0; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-meta { flex-wrap: wrap; gap: 18px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-visual { height: 320px; }
  .hero-visual .quote-card { right: 0; max-width: 220px; padding: 18px 20px; font-size: 14px; }
  .about-values { grid-template-columns: 1fr; gap: 22px; }
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-grid .ministry { border-right: none !important; border-bottom: 1px solid var(--line-soft); padding: 32px 0; }
  .schedule-grid { gap: 24px; }
  .schedule-card { padding: 28px 22px; }
  .schedule-card h3 { font-size: 28px; margin-bottom: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .newsletter-checks { gap: 12px 18px; }
  .video-grid { gap: 24px; }
  .video-side { display: grid; gap: 24px; }
  .location-info h3 { font-size: 34px; }
  .map { height: 320px; }
  section { padding: 60px 0; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 38px; }
  .hero-eyebrow { font-size: 11px; gap: 8px; }
  .hero-meta { gap: 14px 18px; }
  .hero-meta-item .value { font-size: 16px; }
  section { padding: 48px 0; }
  .section-title, .about-text h2 { font-size: clamp(32px, 9vw, 44px); }
  .schedule-card { padding: 24px 18px; }
  .schedule-card h3 { font-size: 24px; }
  .event { grid-template-columns: 60px 1fr; gap: 14px; }
  .event-date .day { font-size: 30px; }
  .ministry { padding: 26px 0; }
  .ministry h3 { font-size: 22px; }
  .video-card .video-info h3 { font-size: 20px; }
  .location-info h3 { font-size: 28px; }
  .newsletter h2 { font-size: clamp(28px, 8vw, 38px); }
  .footer-grid { gap: 28px; }
}
