:root {
  --navy-950: #06111e;
  --navy-900: #081727;
  --navy-800: #10263c;
  --navy-700: #19344e;
  --gold-500: #c99f55;
  --gold-400: #d9b974;
  --gold-200: #f0dfba;
  --cream-100: #f8f5ee;
  --cream-200: #eee9df;
  --ink: #12202d;
  --muted: #5e6a74;
  --white: #ffffff;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(18, 32, 45, 0.14);
  --shadow: 0 28px 70px rgba(6, 17, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 34%, rgba(41, 91, 134, 0.46), transparent 28%),
    radial-gradient(circle at 8% 0%, rgba(201, 159, 85, 0.16), transparent 32%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 52%, #0a2034);
}

.hero::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -270px;
  width: 760px;
  height: 480px;
  border: 1px solid rgba(217, 185, 116, 0.48);
  border-radius: 50%;
  transform: rotate(-11deg);
  box-shadow:
    0 -8px 32px rgba(217, 185, 116, 0.11),
    inset 0 8px 32px rgba(217, 185, 116, 0.08);
}

.hero__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(54px);
  pointer-events: none;
}

.hero__light--one {
  top: 32px;
  right: 13%;
  width: 260px;
  height: 80px;
  background: rgba(82, 145, 195, 0.25);
  transform: rotate(-18deg);
}

.hero__light--two {
  bottom: 16%;
  left: -4%;
  width: 290px;
  height: 70px;
  background: rgba(201, 159, 85, 0.24);
  transform: rotate(8deg);
}

.hero__arc {
  position: absolute;
  top: -150px;
  left: -210px;
  width: 600px;
  height: 300px;
  border: 1px solid rgba(217, 185, 116, 0.28);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line-light);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wordmark__mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background-image: url("./assets/brand/logo-cci.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.topbar-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-400);
  color: var(--gold-200);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  border-bottom: 1px solid rgba(217, 185, 116, 0.24);
  background: rgba(6, 17, 30, 0.92);
  box-shadow: 0 16px 42px rgba(6, 17, 30, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.floating-header.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.floating-header__brand {
  color: rgba(255, 255, 255, 0.94);
}

.menu-toggle {
  position: relative;
  z-index: 81;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(217, 185, 116, 0.44);
  border-radius: 50%;
  background: rgba(217, 185, 116, 0.05);
  cursor: pointer;
  place-content: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-open {
  border-color: var(--gold-400);
  background: rgba(217, 185, 116, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 2.5px 0;
  background: var(--gold-400);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  visibility: hidden;
  background: rgba(3, 10, 17, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-menu {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  display: flex;
  width: min(420px, 100%);
  height: 100dvh;
  padding: 126px 54px 48px;
  flex-direction: column;
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 159, 85, 0.16), transparent 34%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  box-shadow: -30px 0 70px rgba(3, 10, 17, 0.32);
  color: var(--white);
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 280ms ease, visibility 0s linear 280ms;
}

.site-menu.is-open {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.site-menu__nav {
  display: grid;
}

.site-menu__nav a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  transition: color 180ms ease, padding-left 180ms ease;
}

.site-menu__nav a:hover,
.site-menu__nav a:focus-visible,
.site-menu__nav a.is-active {
  padding-left: 8px;
  color: var(--gold-200);
}

.site-menu__promise {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#inicio,
#horarios,
#instagram,
#aportes,
#contacto {
  scroll-margin-top: 100px;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 70px;
  padding-top: 62px;
  padding-bottom: 94px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #856426;
}

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

.hero h1,
.section-heading h2,
.welcome__message h2,
.verse-card p,
.giving__content h2,
.contact__content h2,
.footer__brand {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(64px, 8.3vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold-400);
  font-weight: inherit;
}

.hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: #cbd4dc;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--gold {
  background: linear-gradient(135deg, #efdba9, var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 32px rgba(201, 159, 85, 0.18);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.brand-arch {
  position: relative;
  width: min(100%, 410px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(217, 185, 116, 0.42);
  border-radius: 210px 210px 34px 34px;
  background: #0c1a2a;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.33);
}

.brand-arch::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 190px 190px 24px 24px;
  pointer-events: none;
}

.brand-arch img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.04);
}

.brand-arch__halo {
  position: absolute;
  z-index: 1;
  inset: 20% 8% auto;
  height: 35%;
  border-radius: 50%;
  background: rgba(217, 185, 116, 0.09);
  filter: blur(30px);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #b7c3cd;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.schedule,
.community {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.meeting-card {
  position: relative;
  min-height: 350px;
  padding: 36px 32px 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 120px 120px 24px 24px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.meeting-card:hover,
.meeting-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(133, 100, 38, 0.42);
  box-shadow: var(--shadow);
}

.meeting-card--sunday {
  border-color: rgba(201, 159, 85, 0.46);
  background: linear-gradient(155deg, #fffdf8, #eee3cc);
}

.meeting-card.meeting-card--sunday h3 {
  font-size: 28px;
}

.meeting-card__number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(133, 100, 38, 0.32);
  border-radius: 50%;
  color: #856426;
  font-family: "Newsreader", serif;
  font-size: 15px;
}

.meeting-card__group {
  margin: 76px 0 10px;
  color: #856426;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.meeting-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 38px;
  font-weight: 400;
}

.meeting-card__time {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.meeting-card__link {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.welcome {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 36%, rgba(39, 86, 126, 0.38), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.welcome__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: 84px;
}

.welcome__message h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.welcome__message > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #bcc9d3;
  font-size: 16px;
  line-height: 1.75;
}

.welcome__message > a {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold-400);
  color: var(--gold-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verse-card {
  position: relative;
  margin: 0;
  padding: 74px 64px 54px;
  border: 1px solid rgba(217, 185, 116, 0.34);
  border-radius: 220px 220px 32px 32px;
  background: rgba(5, 15, 27, 0.36);
  text-align: center;
}

.verse-card__spark {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-400);
}

.verse-card p {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-style: italic;
  line-height: 1.17;
}

.verse-card footer {
  margin-top: 30px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.community {
  background: #f1ede5;
}

.giving {
  padding: 112px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(217, 185, 116, 0.2), transparent 28%),
    var(--cream-100);
}

.giving__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 96px;
}

.giving__content h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.giving__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.giving__freedom {
  padding-left: 18px;
  border-left: 2px solid var(--gold-500);
  color: var(--ink) !important;
  font-weight: 650;
}

.giving-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(201, 159, 85, 0.46);
  border-radius: 180px 180px 30px 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 115, 154, 0.3), transparent 38%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: 0 32px 80px rgba(6, 17, 30, 0.18);
}

.giving-card__logo {
  display: block;
  width: 76px;
  height: 76px;
  margin: 36px auto 54px;
  background-image: url("./assets/brand/logo-cci.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.giving-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
  color: var(--gold-200);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.giving-card__status {
  color: #9eabb5;
  font-size: 8px;
}

.giving-card__label {
  margin: 34px 0 8px;
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.giving-card__key {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
}

.giving-card__key-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.giving-card__copy {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(217, 185, 116, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-200);
  cursor: pointer;
  transform: translateY(-3px);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.giving-card__copy:hover,
.giving-card__copy:focus-visible {
  background: var(--gold-400);
  color: var(--navy-950);
  transform: translateY(-4px);
}

.giving-card__copy.is-copied {
  background: var(--gold-400);
  color: var(--navy-950);
}

.giving-card__copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.giving-card__copy-status {
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  color: var(--gold-200);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.giving-card__note {
  margin: 24px 0 0;
  color: #b9c6d0;
  font-size: 13px;
  line-height: 1.65;
}

.giving-card__action {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #efdba9, var(--gold-500));
  color: var(--navy-950);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.giving-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 30px;
  background: var(--cream-100);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(3, 11, 20, 0.5);
}

.giving-dialog::backdrop {
  background: rgba(3, 11, 20, 0.78);
  backdrop-filter: blur(7px);
}

.giving-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 48px;
  padding: 48px;
}

.giving-dialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.giving-dialog__qr {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 159, 85, 0.42);
  border-radius: 110px 110px 24px 24px;
  background: var(--navy-950);
}

.giving-dialog__visual {
  display: grid;
  gap: 14px;
}

.giving-dialog__qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.78;
}

.giving-dialog__qr span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(6, 17, 30, 0.9);
  color: var(--gold-200);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.giving-dialog__qr-download {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(133, 100, 38, 0.34);
  border-radius: 999px;
  color: #76571f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.giving-dialog__qr-download:hover,
.giving-dialog__qr-download:focus-visible {
  background: var(--navy-900);
  color: var(--white);
}

.giving-dialog__content h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.giving-dialog__content > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.giving-dialog__content strong {
  color: var(--ink);
}

.giving-dialog__receipt {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold-500);
  background: #eee7da;
}

.giving-dialog__receipt span {
  color: var(--muted);
  font-size: 12px;
}

.giving-dialog__receipt a {
  overflow-wrap: anywhere;
  color: #76571f;
  font-size: 14px;
  font-weight: 750;
}

.button--dialog {
  margin-top: 24px;
  background: var(--navy-900);
  color: var(--white);
}

.community__heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.community-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.community-tabs__button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-tabs__button.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.social-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.social-card__frame {
  display: block;
  width: 100%;
  height: 520px;
  border: none;
  background: var(--white);
}

.contact {
  padding: 110px 0;
  color: var(--white);
  background: var(--navy-900);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.contact__image-wrap {
  position: relative;
}

.contact__image-wrap > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 185, 116, 0.44);
  border-radius: 240px 240px 30px 30px;
  object-fit: cover;
}

.contact__image-note {
  position: absolute;
  right: -30px;
  bottom: 32px;
  max-width: 190px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--cream-100);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  font-family: "Newsreader", serif;
  font-size: 20px;
  line-height: 1.15;
}

.contact__content h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5.1vw, 66px);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.contact__content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 0;
  color: #bfccd5;
  font-size: 16px;
  line-height: 1.75;
}

.contact__location {
  align-self: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-400);
  color: var(--gold-200);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer {
  padding: 76px 0 26px;
  color: var(--white);
  background: var(--navy-950);
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__brand {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.92;
}

.footer__promise {
  margin: 18px 0 0;
  color: var(--gold-400);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.footer__nav a,
.footer__bottom {
  color: #aebbc5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__giving {
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-400);
  color: var(--gold-200) !important;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer__social:hover,
.footer__social:focus-visible {
  border-color: var(--gold-400);
  color: var(--gold-200);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer__social path:not(.footer__social-dot),
.footer__social-dot {
  fill: currentColor;
  stroke: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero__layout,
  .welcome__layout,
  .giving__layout,
  .contact__layout {
    gap: 50px;
  }

  .hero__layout {
    grid-template-columns: 1fr 330px;
  }

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

  .meeting-card {
    min-height: 260px;
    border-radius: 80px 80px 22px 22px;
  }

  .meeting-card__group {
    margin-top: 34px;
  }

  .welcome__layout,
  .giving__layout,
  .contact__layout {
    grid-template-columns: 1fr 1fr;
  }

  .verse-card {
    padding: 64px 38px 44px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .hero {
    min-height: auto;
  }

  .hero__topbar {
    min-height: 72px;
  }

  .floating-header__inner {
    min-height: 68px;
  }

  .floating-header__brand {
    max-width: 205px;
    font-size: 9px;
  }

  .floating-header__brand .wordmark__mark {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-menu {
    padding: 106px 30px 36px;
  }

  .site-menu__nav a {
    font-size: 31px;
  }

  #inicio,
  #horarios,
  #instagram,
  #aportes,
  #contacto {
    scroll-margin-top: 84px;
  }

  .wordmark {
    max-width: 180px;
    font-size: 9px;
  }

  .topbar-link {
    display: none;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 78px;
    text-align: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 84px);
  }

  .hero__lead {
    max-width: 480px;
    margin-top: 24px;
    font-size: 15px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .brand-arch {
    width: min(68vw, 270px);
    grid-row: 1;
  }

  .hero__scroll {
    right: 18px;
    bottom: 18px;
  }

  .schedule,
  .community,
  .welcome,
  .giving,
  .contact {
    padding: 78px 0;
  }

  .section-heading,
  .community__heading,
  .welcome__layout,
  .giving__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .giving__layout {
    gap: 48px;
  }

  .giving__content h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .giving-card {
    padding: 26px;
    border-radius: 150px 150px 26px 26px;
  }

  .giving-card__logo {
    margin: 30px auto 42px;
  }

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

  .meeting-card:not(.meeting-card--sunday) {
    grid-column: 1 / -1;
  }

  .meeting-card--sunday {
    min-height: 242px;
    padding: 22px 16px 20px;
    border-radius: 68px 68px 18px 18px;
  }

  .meeting-card--sunday .meeting-card__number {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .meeting-card--sunday .meeting-card__group {
    margin-top: 28px;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .meeting-card.meeting-card--sunday h3 {
    font-size: 24px;
    line-height: 1.02;
  }

  .meeting-card--sunday h3 span {
    display: block;
    margin-top: 4px;
  }

  .meeting-card--sunday .meeting-card__link {
    right: 16px;
    bottom: 20px;
    left: 16px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .giving-dialog__panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 54px 22px 26px;
  }

  .giving-dialog__qr {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .welcome__message h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .meeting-card {
    min-height: 248px;
    padding: 28px 26px 26px;
  }

  .meeting-card__group {
    margin-top: 24px;
  }

  .meeting-card__link {
    right: 26px;
    bottom: 24px;
    left: 26px;
  }

  .verse-card {
    padding: 62px 28px 42px;
    border-radius: 150px 150px 28px 28px;
  }

  .community-tabs {
    justify-self: start;
  }

  .social-card__frame {
    height: 450px;
  }

  .contact__image-wrap {
    width: calc(100% - 18px);
  }

  .contact__image-note {
    right: -18px;
  }

  .contact__content h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact__actions,
  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact__actions .button {
    width: 100%;
  }

  .footer__nav {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
