:root {
      --logo-white: url('../images/logo-white.png');
      --logo-black: url('../images/logo-black.png');
      --logo-icon: url('../images/logo-icon.png');
      --ink: #111827;
      --muted: #6b7280;
      --soft: #f5f5f7;
      --line: rgba(17, 24, 39, 0.10);
      --white: #ffffff;
      --accent: #2563eb;
      --accent-soft: #dbeafe;
      --grace-blue: #2563eb;
      --grace-sky: #06b6d4;
      --grace-gold: #f59e0b;
      --grace-rose: #f43f5e;
      --grace-violet: #7c3aed;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: #ffffff;
      color: var(--ink);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    @keyframes unityRotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes iconGlow {
      0%, 100% {
        transform: translateY(0);
        box-shadow: 0 18px 45px rgba(37,99,235,.10);
      }
      50% {
        transform: translateY(-4px);
        box-shadow: 0 28px 65px rgba(37,99,235,.16);
      }
    }

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

    .container {
      width: min(1180px, 92%);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: saturate(180%) blur(22px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      width: 184px;
      height: 66px;
      background-image: var(--logo-black);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: left center;
      flex: 0 0 auto;
    }

    .links {
      display: flex;
      align-items: center;
      gap: 30px;
      color: #3f3f46;
      font-size: 14px;
      font-weight: 600;
    }

    .links a {
      opacity: 0.82;
      transition: opacity .2s ease, color .2s ease;
    }

    .links a:hover {
      opacity: 1;
      color: #000;
    }

    .lang-btn {
      border: 1px solid rgba(0,0,0,0.08);
      background:
        radial-gradient(circle at 18% 10%, rgba(6,182,212,.18), transparent 30%),
        radial-gradient(circle at 84% 14%, rgba(245,158,11,.16), transparent 28%),
        #111827;
      color: white;
      cursor: pointer;
      font-weight: 650;
      border-radius: 999px;
      padding: 10px 17px;
      transition: transform .2s ease, background .2s ease;
    }

    .lang-btn:hover {
      transform: translateY(-1px);
      background: #000;
    }

    .hero {
      min-height: calc(100vh - 78px);
      display: grid;
      place-items: center;
      padding: 92px 0 84px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 12%, rgba(245, 158, 11, 0.20), transparent 26%),
        radial-gradient(circle at 85% 8%, rgba(6, 182, 212, 0.18), transparent 28%),
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.13), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(17, 24, 39, 0.06), transparent 65%);
      bottom: -360px;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
    }

    .hero-logo {
      width: min(390px, 82vw);
      height: 255px;
      margin: 0 auto 12px;
      background-image: var(--logo-black);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      filter: drop-shadow(0 18px 32px rgba(0,0,0,0.08));
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #4b5563;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 14px;
      font-weight: 650;
      margin-bottom: 24px;
      box-shadow: 0 12px 38px rgba(0,0,0,0.04);
    }

    h1 {
      max-width: 980px;
      margin: 0 auto;
      font-size: clamp(50px, 8vw, 96px);
      line-height: .96;
      letter-spacing: -0.065em;
      font-weight: 800;
    }

    .hero-subtitle {
      max-width: 820px;
      margin: 28px auto 0;
      color: #4b5563;
      font-size: clamp(20px, 2.4vw, 28px);
      line-height: 1.34;
      letter-spacing: -0.02em;
    }

    .blessing {
      margin-top: 18px;
      color: #111827;
      font-weight: 700;
      font-size: 18px;
    }

    .actions {
      margin-top: 38px;
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 14px 22px;
      font-size: 16px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn-primary {
      background: #111827;
      color: white;
      box-shadow: 0 18px 42px rgba(17,24,39,.14);
    }

    .btn-secondary {
      color: #111827;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(0,0,0,.08);
    }

    .btn:hover {
      transform: translateY(-2px);
    }
    .color-line {
      width: min(420px, 70vw);
      height: 5px;
      margin: 30px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--grace-blue), var(--grace-sky), var(--grace-gold), var(--grace-rose));
      opacity: .9;
    }

    .quick-info {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .info-pill {
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 26px;
      padding: 22px;
      box-shadow: 0 20px 60px rgba(0,0,0,.045);
      position: relative;
      overflow: hidden;
    }

    .info-pill::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--grace-blue), var(--grace-sky));
    }

    .info-pill:nth-child(2)::before {
      background: linear-gradient(90deg, var(--grace-gold), var(--grace-rose));
    }

    .info-pill:nth-child(3)::before {
      background: linear-gradient(90deg, var(--grace-violet), var(--grace-blue));
    }

    .info-pill small {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 4px;
    }

    .info-pill strong {
      font-size: 18px;
      letter-spacing: -0.02em;
    }

    section {
      padding: 104px 0;
    }

    .section-header {
      text-align: center;
      max-width: 850px;
      margin: 0 auto 42px;
    }

    .label {
      color: var(--muted);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-weight: 750;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(38px, 5vw, 68px);
      line-height: 1.03;
      letter-spacing: -0.055em;
      font-weight: 800;
    }

    .section-text {
      margin-top: 22px;
      color: #52525b;
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
      letter-spacing: -0.02em;
    }

    .glass {
      background: #f5f5f7;
      border-radius: 42px;
      padding: clamp(34px, 6vw, 72px);
      border: 1px solid rgba(0,0,0,.06);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .card {
      min-height: 245px;
      background: white;
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 34px;
      padding: 34px;
      box-shadow: 0 22px 70px rgba(0,0,0,.045);
    }

    .card-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      color: var(--grace-blue);
      background: transparent;
      box-shadow: none;
      animation: none;
    }

    .card-icon svg {
      width: 36px;
      height: 36px;
      stroke: currentColor;
      stroke-width: 1.9;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card:nth-child(2) .card-icon {
      color: var(--grace-gold);
    }

    .card:nth-child(3) .card-icon {
      color: var(--grace-rose);
    }

    .card h3 {
      font-size: 25px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-bottom: 14px;
    }

    .card p {
      color: #5f6368;
      font-size: 16.5px;
    }

    .card .card-icon svg {
      transition: filter .25s ease, transform .25s ease;
    }

    .card:hover .card-icon svg {
      transform: translateY(-2px);
      filter: drop-shadow(0 10px 18px rgba(37,99,235,.18));
    }

    .card:nth-child(2):hover .card-icon svg {
      filter: drop-shadow(0 10px 18px rgba(245,158,11,.22));
    }

    .card:nth-child(3):hover .card-icon svg {
      filter: drop-shadow(0 10px 18px rgba(244,63,94,.20));
    }

    .dark {
      background: #111827;
      color: white;
      border-radius: 46px;
      padding: clamp(42px, 7vw, 82px);
      position: relative;
      overflow: hidden;
    }

    .dark::after {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      right: -160px;
      top: -160px;
    }

    .dark .section-text,
    .dark .label {
      color: rgba(255,255,255,.72);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .panel {
      border-radius: 42px;
      padding: clamp(34px, 5vw, 62px);
      background: #f5f5f7;
      border: 1px solid rgba(0,0,0,.06);
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .panel.white {
      background: white;
      box-shadow: 0 24px 70px rgba(0,0,0,.045);
    }

    .panel h2 {
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.03;
      letter-spacing: -0.05em;
      font-weight: 800;
      margin-bottom: 22px;
    }

    .panel p {
      color: #52525b;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .pastor-card {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 40px;
      align-items: center;
      background: #f5f5f7;
      border-radius: 46px;
      padding: clamp(34px, 5vw, 70px);
      border: 1px solid rgba(0,0,0,.06);
    }

    .pastor-logo {
      height: 280px;
      background-image: var(--logo-black);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      filter: drop-shadow(0 18px 32px rgba(0,0,0,.05));
    }




    .unity-icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 22px;
      animation: unityRotate 6s linear infinite;
      transform-origin: 50% 50%;
      filter: drop-shadow(0 14px 28px rgba(0,0,0,.08));
      transition: filter .28s ease, transform .28s ease;
      cursor: default;
    }

    .unity-icon:hover {
      filter:
        drop-shadow(0 0 10px rgba(37,99,235,.32))
        drop-shadow(0 0 18px rgba(6,182,212,.26))
        drop-shadow(0 0 24px rgba(245,158,11,.22));
    }

    .unity-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .soft-symbol {
      display: inline-grid;
      place-items: center;
      width: 26px;
      height: 26px;
      margin-right: 8px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
      color: var(--grace-blue);
      box-shadow: 0 14px 34px rgba(0,0,0,.06);
      vertical-align: middle;
    }

    .glass {
      position: relative;
      overflow: hidden;
    }

    .glass::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      left: -170px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(6,182,212,.13), transparent 68%);
    }

    .glass::after {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      right: -190px;
      bottom: -190px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,158,11,.14), transparent 68%);
    }

    .glass > * {
      position: relative;
      z-index: 1;
    }

    .who-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 18px;
    }

    .who-detail {
      background: white;
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 34px;
      padding: 34px;
      box-shadow: 0 22px 70px rgba(0,0,0,.04);
      position: relative;
      overflow: hidden;
    }

    .who-detail::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--grace-blue), var(--grace-sky));
    }

    .who-detail:nth-child(2)::before {
      background: linear-gradient(90deg, var(--grace-gold), var(--grace-rose));
    }

    .who-detail.full::before {
      background: linear-gradient(90deg, var(--grace-violet), var(--grace-blue), var(--grace-sky));
    }

    .who-detail.full {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: .55fr 1.45fr;
      gap: 30px;
      align-items: center;
    }

    .who-detail h3 {
      font-size: 28px;
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .who-detail p {
      color: #52525b;
      font-size: 17px;
      line-height: 1.58;
    }

    .who-pastor-logo {
      height: 190px;
      background-image: var(--logo-black);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }

    .give-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
      background: #111827;
      color: white;
      border-radius: 46px;
      padding: clamp(34px, 5vw, 70px);
      overflow: hidden;
      position: relative;
    }

    .give-card::after {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      right: -210px;
      top: -210px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }

    .give-content,
    .give-box {
      position: relative;
      z-index: 1;
    }

    .give-content .label,
    .give-content .section-text {
      color: rgba(255,255,255,.74);
    }

    .give-box {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 34px;
      padding: 30px;
      backdrop-filter: blur(18px);
    }

    .give-options {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .give-option {
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      padding: 18px;
    }

    .give-option strong {
      display: block;
      margin-bottom: 5px;
      font-size: 17px;
    }

    .give-option span {
      display: block;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.45;
    }

    .donate-placeholder {
      margin-top: 24px;
      display: inline-flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      border-radius: 999px;
      padding: 15px 20px;
      background: white;
      color: #111827;
      font-weight: 800;
      border: 0;
    }


    

    .give-note {
      margin-top: 16px;
      color: rgba(255,255,255,.62);
      font-size: 13px;
      line-height: 1.45;
    }


    .calendar-card {
      background: #f5f5f7;
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 46px;
      padding: clamp(34px, 5vw, 70px);
      overflow: hidden;
      position: relative;
    }

    .calendar-card::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      left: -220px;
      top: -220px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(37,99,235,.13), transparent 68%);
    }

    .calendar-card::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -220px;
      bottom: -220px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(245,158,11,.14), transparent 68%);
    }

    .calendar-card > * {
      position: relative;
      z-index: 1;
    }

    .calendar-list {
      display: grid;
      gap: 14px;
      margin-top: 36px;
    }

    .calendar-event {
      display: grid;
      grid-template-columns: 105px 1fr;
      gap: 18px;
      align-items: center;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 30px;
      padding: 18px;
      box-shadow: 0 18px 60px rgba(0,0,0,.045);
    }

    .calendar-date {
      min-height: 88px;
      border-radius: 22px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 36%),
        linear-gradient(135deg, var(--grace-blue), var(--grace-sky));
      color: white;
      display: grid;
      place-items: center;
      text-align: center;
      box-shadow: 0 18px 40px rgba(37,99,235,.16);
    }

    .calendar-date.gold {
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 36%),
        linear-gradient(135deg, var(--grace-gold), var(--grace-rose));
      box-shadow: 0 18px 40px rgba(245,158,11,.16);
    }

    .calendar-date.violet {
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 36%),
        linear-gradient(135deg, var(--grace-violet), var(--grace-blue));
      box-shadow: 0 18px 40px rgba(124,58,237,.16);
    }

    .calendar-month {
      display: block;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .9;
    }

    .calendar-day {
      display: block;
      margin-top: -2px;
      font-size: 34px;
      line-height: 1;
      font-weight: 850;
      letter-spacing: -0.04em;
    }

    .calendar-event h3 {
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-bottom: 8px;
    }

    .calendar-meta {
      color: #52525b;
      font-size: 15.5px;
      font-weight: 650;
      margin-bottom: 6px;
    }

    .calendar-event p {
      color: #62626b;
      font-size: 15.5px;
      line-height: 1.5;
    }

    .calendar-empty {
      margin-top: 28px;
      padding: 24px;
      border-radius: 26px;
      background: rgba(255,255,255,.72);
      border: 1px dashed rgba(0,0,0,.14);
      color: #62626b;
      text-align: center;
      font-weight: 650;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      max-width: 760px;
      margin: 40px auto 0;
    }

    .testimonial-card {
      background: white;
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 42px;
      padding: clamp(30px, 5vw, 52px);
      text-align: center;
      box-shadow: 0 24px 70px rgba(0,0,0,.045);
    }

    .testimonial-photo {
      width: 118px;
      height: 118px;
      border-radius: 999px;
      margin: 0 auto 26px;
      background:
        linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.02)),
        #f5f5f7;
      border: 1px solid rgba(0,0,0,.08);
      display: grid;
      place-items: center;
      color: #9ca3af;
      font-size: 38px;
      font-weight: 700;
    }

    .testimonial-quote {
      color: #3f3f46;
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
      letter-spacing: -0.02em;
    }

    .testimonial-name {
      margin-top: 24px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .testimonial-role {
      color: var(--muted);
      font-size: 15px;
      margin-top: 3px;
      font-weight: 600;
    }

    .visit-card {
      text-align: center;
      border-radius: 48px;
      padding: clamp(42px, 7vw, 86px);
      color: white;
      background:
        radial-gradient(circle at 20% 0%, rgba(37,99,235,.25), transparent 34%),
        radial-gradient(circle at 85% 8%, rgba(245,158,11,.20), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
        #111827;
      overflow: hidden;
      position: relative;
    }

    .visit-card::before {
      content: "";
      position: absolute;
      inset: auto -20% -50% -20%;
      height: 360px;
      background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%);
    }

    .visit-logo {
      width: min(300px, 72vw);
      height: 210px;
      margin: 0 auto 18px;
      background-image: var(--logo-white);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      position: relative;
      z-index: 1;
    }

    .visit-card h2,
    .visit-card p,
    .visit-grid {
      position: relative;
      z-index: 1;
    }

    .visit-card p {
      color: rgba(255,255,255,.74);
    }

    .visit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 36px;
    }

    .visit-item {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 26px;
      padding: 24px;
      backdrop-filter: blur(14px);
      font-weight: 700;
    }

    footer {
      padding: 34px 0;
      border-top: 1px solid rgba(0,0,0,.08);
      color: #71717a;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
    }

    [data-lang="es"] .en,
    [data-lang="en"] .es {
      display: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .unity-icon,
      .card-icon {
        animation: none;
      }
    }

    .mobile-quick-give {
      display: none;
    }

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

      header {
        position: sticky;
      }

      .nav {
        min-height: auto;
        padding: 10px 0 12px;
        gap: 10px;
        flex-wrap: wrap;
      }

      .brand {
        width: 132px;
        height: 50px;
      }

      .lang-btn {
        padding: 9px 14px;
        font-size: 13px;
      }

      .links {
        order: 3;
        width: 100%;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 4px 2px 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .links::-webkit-scrollbar {
        display: none;
      }

      .links a {
        flex: 0 0 auto;
        background: rgba(245,245,247,.92);
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 13px;
      }

      .hero {
        min-height: auto;
        padding: 44px 0 54px;
      }

      .hero-logo {
        width: min(270px, 78vw);
        height: 165px;
        margin-bottom: 4px;
      }

      h1 {
        font-size: clamp(42px, 13vw, 62px);
        letter-spacing: -0.055em;
      }

      .hero-subtitle {
        font-size: 19px;
        line-height: 1.42;
        margin-top: 20px;
      }

      .blessing {
        font-size: 16px;
      }

      .color-line {
        width: min(280px, 76vw);
        margin-top: 22px;
      }

      .actions {
        margin-top: 28px;
        gap: 10px;
      }

      .btn {
        width: 100%;
        padding: 14px 18px;
      }

      .quick-info,
      .cards,
      .split,
      .pastor-card,
      .who-details,
      .who-detail.full,
      .give-card,
      .calendar-event,
      .visit-grid {
        grid-template-columns: 1fr;
      }

      .quick-info {
        margin-top: 34px;
        gap: 10px;
      }

      .info-pill {
        padding: 18px;
        border-radius: 22px;
      }

      section {
        padding: 58px 0;
      }

      .glass,
      .calendar-card,
      .give-card,
      .visit-card {
        border-radius: 30px;
        padding: 28px 18px;
      }

      .cards {
        gap: 12px;
      }

      .card {
        min-height: auto;
        border-radius: 26px;
        padding: 24px;
      }

      .card-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 16px;
      }

      .card-icon svg {
        width: 32px;
        height: 32px;
      }

      .who-details {
        gap: 12px;
      }

      .who-detail {
        border-radius: 26px;
        padding: 26px 22px;
      }

      .who-pastor-logo {
        height: 130px;
      }

      .section-header {
        margin-bottom: 28px;
      }

      .section-title,
      .panel h2 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -0.045em;
      }

      .section-text,
      .panel p {
        font-size: 17px;
        line-height: 1.55;
      }

      .calendar-list {
        gap: 12px;
        margin-top: 26px;
      }

      .calendar-event {
        align-items: start;
        padding: 14px;
        border-radius: 24px;
      }

      .calendar-date {
        width: 100%;
        min-height: 74px;
        border-radius: 20px;
      }

      .calendar-day {
        font-size: 30px;
      }

      .calendar-event h3 {
        font-size: 21px;
      }

      .give-box {
        border-radius: 26px;
        padding: 20px;
      }

      .zelle-card {
        border-radius: 24px;
        padding: 18px;
      }

      .zelle-card img {
        width: min(235px, 92%);
        border-radius: 20px;
      }

      .zelle-email {
        font-size: 16px;
      }

      .give-option {
        border-radius: 20px;
        padding: 16px;
      }

      .testimonial-card {
        border-radius: 28px;
        padding: 26px 20px;
      }

      .testimonial-photo {
        width: 96px;
        height: 96px;
        margin-bottom: 20px;
      }

      .visit-logo {
        height: 155px;
      }

      footer {
        padding: 26px 18px;
        font-size: 13px;
      }
    }

    @media (max-width: 430px) {
      .container {
        width: min(100% - 22px, 1180px);
      }

      .brand {
        width: 122px;
        height: 46px;
      }

      h1 {
        font-size: 40px;
      }

      .hero-logo {
        height: 145px;
      }

      .section-title,
      .panel h2 {
        font-size: 32px;
      }

      .links a {
        font-size: 12.5px;
        padding: 7px 10px;
      }

      .calendar-event,
      .card,
      .who-detail,
      .give-box,
      .zelle-card {
        padding: 18px;
      }
    }

/* Google Calendar embed replacement */
.calendar-embed-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.12), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(245,158,11,.12), transparent 28%),
    #f5f5f7;
}

.calendar-embed-wrap {
  margin-top: 34px;
  width: 100%;
  height: 680px;
  border-radius: 34px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.075);
}

.calendar-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.calendar-admin-note {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  color: #62626b;
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .calendar-embed-wrap {
    height: 620px;
    border-radius: 26px;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .calendar-embed-wrap {
    height: 560px;
    border-radius: 22px;
  }

  .calendar-admin-note {
    font-size: 13px;
  }
}



/* Square Giving Integration */
.square-giving-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.square-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 24px;
  text-align: left;
}

.square-card-featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(96,165,250,.26), transparent 35%),
    rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
}

.square-card-missions {
  background:
    radial-gradient(circle at 12% 12%, rgba(245,158,11,.20), transparent 35%),
    rgba(255,255,255,.10);
}

.square-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.square-card h4 {
  font-size: 23px;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
  color: #fff;
}

.square-card p {
  color: rgba(255,255,255,.74);
  font-size: 14.5px;
  line-height: 1.5;
}

.square-button {
  margin-top: 20px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 15px 20px;
  background: white;
  color: #111827;
  font-weight: 850;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.square-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,255,255,.12);
}

.square-button-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.square-trust-note {
  margin: 14px auto 0;
  text-align: center;
  color: rgba(255,255,255,.58);
  font-size: 13.5px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .square-giving-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .square-card {
    border-radius: 24px;
    padding: 20px;
  }
}


/* Refined giving layout after removing Zelle */
.square-giving-grid {
  margin-top: 34px;
}

@media (min-width: 1101px) {
  .square-giving-grid {
    grid-template-columns: 1.2fr .9fr .9fr;
  }
}


/* Testimonials carousel */
.testimonials-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.10), transparent 30%),
    radial-gradient(circle at 88% 15%, rgba(244,63,94,.10), transparent 28%),
    #fff;
}
.carousel-shell { margin-top: 34px; position: relative; }
.testimonial-carousel {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 8px 4px 24px; scrollbar-width: thin;
}
.testimonial-slide {
  flex: 0 0 min(720px, 88vw); scroll-snap-align: center; background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.08); border-radius: 34px; padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.075); text-align: center;
}
.testimonial-photo {
  width: 138px; height: 138px; border-radius: 999px; margin: 0 auto 22px;
  overflow: hidden; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 18px 44px rgba(0,0,0,.12); background: #f5f5f7;
}
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-photo {
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.12)), #f5f5f7;
  color: #2563eb; font-size: 42px; font-weight: 800;
}
.quote-mark { color: #2563eb; font-size: 58px; line-height: .7; font-family: Georgia, serif; }
.testimonial-quote {
  max-width: 620px; margin: 8px auto 22px; color: #1f2937;
  font-size: clamp(20px, 2.3vw, 30px); line-height: 1.28; letter-spacing: -0.035em; font-weight: 720;
}
.testimonial-person strong, .testimonial-person span { display: block; }
.testimonial-person strong { color: #111827; font-size: 17px; }
.testimonial-person span { color: #6b7280; margin-top: 3px; font-size: 14px; font-weight: 650; }
.carousel-btn {
  position: absolute; top: 48%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border: 0; border-radius: 999px;
  background: rgba(17,24,39,.92); color: white; font-size: 34px; line-height: 1;
  cursor: pointer; box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.carousel-prev { left: -12px; } .carousel-next { right: -12px; }
.carousel-hint { text-align: center; color: #6b7280; font-size: 13.5px; font-weight: 650; }

/* Pastoral Reflection */
.reflection-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(37,99,235,.12), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(245,158,11,.10), transparent 32%),
    #f5f5f7;
}
.reflection-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: stretch; }
.reflection-intro, .reflection-card {
  background: rgba(255,255,255,.78); border: 1px solid rgba(0,0,0,.08);
  border-radius: 34px; box-shadow: 0 24px 70px rgba(0,0,0,.065);
}
.reflection-intro { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.reflection-card { padding: 34px; }
.reflection-card-top { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.reflection-date, .reflection-frequency, .reflection-admin-link {
  display: inline-flex; align-items: center; width: fit-content; border-radius: 999px;
  padding: 9px 14px; font-size: 13px; font-weight: 850;
}
.reflection-date { background: #111827; color: white; }
.reflection-frequency, .reflection-admin-link { background: rgba(37,99,235,.10); color: #2563eb; }
.reflection-admin-link { margin-top: 20px; text-decoration: none; }
.reflection-card h3 {
  color: #111827; font-size: clamp(28px, 4vw, 46px); line-height: .98;
  letter-spacing: -0.055em; margin-bottom: 16px;
}
.reflection-preview { color: #52525b; font-size: 18px; line-height: 1.55; }
.reflection-details { margin-top: 22px; }
.reflection-details summary {
  cursor: pointer; display: inline-flex; border-radius: 999px; padding: 13px 18px;
  background: #111827; color: white; font-weight: 850; list-style: none;
}
.reflection-details summary::-webkit-details-marker { display: none; }
.reflection-full { margin-top: 24px; color: #374151; font-size: 16.5px; line-height: 1.75; }
.reflection-full p + p { margin-top: 16px; }

@media (max-width: 980px) {
  .carousel-btn { display: none; }
  .testimonial-slide { flex-basis: 86vw; border-radius: 28px; padding: 26px; }
  .testimonial-photo { width: 116px; height: 116px; }
  .reflection-grid { grid-template-columns: 1fr; }
  .reflection-intro, .reflection-card { border-radius: 28px; padding: 26px; }
}


/* Visit address refinement */
.visit-address {
  line-height: 1.25;
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 720px) {
  .visit-address {
    font-size: 14px;
  }
}


/* Expanded testimonials refinement */
.testimonial-slide {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-photo {
  width: 154px;
  height: 154px;
}

@media (max-width: 980px) {
  .testimonial-slide {
    min-height: auto;
  }

  .testimonial-photo {
    width: 124px;
    height: 124px;
  }
}

/* Featured Events Highlight - Apple-inspired clean event cards */
.featured-events {
  margin-top: 42px;
  padding: clamp(14px, 2.4vw, 20px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72)),
    radial-gradient(circle at 12% 10%, rgba(37,99,235,.08), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(244,63,94,.07), transparent 26%),
    radial-gradient(circle at 50% 94%, rgba(245,158,11,.07), transparent 28%);
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 24px 70px rgba(15,23,42,.06);
  backdrop-filter: blur(18px);
}

.featured-events-heading {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.featured-events-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.featured-events-heading p {
  margin-top: 14px;
  color: #5f6675;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
}

.featured-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-event-card {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  min-height: 286px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 20px 55px rgba(15,23,42,.065);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.featured-event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 26px 70px rgba(15,23,42,.09);
}

.featured-event-card.primary-event {
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,.08), transparent 34%),
    rgba(255,255,255,.94);
}

.featured-event-icon {
  align-self: start;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 7px 15px rgba(15,23,42,.09);
}

.featured-event-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-blue {
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.62), transparent 35%),
    linear-gradient(145deg, #06b6d4 0%, #2563eb 72%);
  box-shadow: 0 8px 18px rgba(37,99,235,.13);
}

.event-gold {
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.62), transparent 35%),
    linear-gradient(145deg, #f59e0b 0%, #fb923c 72%);
  box-shadow: 0 8px 18px rgba(245,158,11,.13);
}

.event-rose {
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.62), transparent 35%),
    linear-gradient(145deg, #f43f5e 0%, #ec4899 72%);
  box-shadow: 0 8px 18px rgba(244,63,94,.13);
}

.featured-event-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.tag-blue { color: #2563eb; }
.tag-gold { color: #f59e0b; }
.tag-rose { color: #f43f5e; }

.featured-event-content h4 {
  margin-top: 14px;
  color: #0f172a;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.featured-event-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 760;
}

.meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #64748b;
  font-size: 13px;
  line-height: 1;
}

.event-accent {
  display: block;
  width: 42px;
  height: 2px;
  margin: 26px 0 18px;
  border-radius: 999px;
}

.event-accent-blue { background: #2563eb; }
.event-accent-gold { background: #f59e0b; }
.event-accent-rose { background: #f43f5e; }

.featured-event-content p:not(.featured-event-meta) {
  margin-top: 0;
  color: #5f6675;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .featured-events-grid {
    grid-template-columns: 1fr;
  }

  .featured-event-card {
    min-height: auto;
    grid-template-columns: 30px 1fr;
  }
}

@media (max-width: 560px) {
  .featured-events {
    margin-top: 28px;
    padding: 12px;
    border-radius: 26px;
  }

  .featured-events-heading {
    text-align: left;
    margin-bottom: 18px;
    padding: 0 4px;
  }

  .featured-events-heading h3 {
    font-size: 31px;
    letter-spacing: -0.055em;
  }

  .featured-events-heading p {
    font-size: 15px;
  }

  .featured-event-card {
    grid-template-columns: 24px 1fr;
    gap: 11px;
    padding: 18px;
    border-radius: 24px;
  }

  .featured-event-icon {
    width: 20px;
    height: 20px;
  }

  .featured-event-icon svg {
    width: 10px;
    height: 10px;
  }

  .featured-event-tag {
    font-size: 11px;
    line-height: 1.25;
  }

  .featured-event-content h4 {
    margin-top: 10px;
    font-size: 20px;
  }

  .featured-event-meta {
    margin-top: 10px;
    font-size: 14px;
  }

  .event-accent {
    margin: 18px 0 14px;
  }

  .featured-event-content p:not(.featured-event-meta) {
    font-size: 14.5px;
  }
}

/* Contact + First Visit restoration */
.contact-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(37,99,235,.09), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(6,182,212,.08), transparent 30%),
    #ffffff;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 44px;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 90px rgba(17,24,39,.08);
}

.contact-intro .section-title {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: 0 10px 28px rgba(17,24,39,.04);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10), 0 14px 34px rgba(17,24,39,.06);
}

.hidden-field {
  display: none;
}

.contact-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.first-visit-section {
  padding-top: 0;
}

.first-visit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  border-radius: 44px;
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 15% 10%, rgba(219,234,254,.85), transparent 32%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eff6ff 100%);
  border: 1px solid rgba(37,99,235,.10);
}

.first-visit-copy .section-title {
  margin-top: 12px;
}

.first-visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.expect-card {
  min-height: 190px;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 20px 50px rgba(17,24,39,.06);
}

.expect-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #1d4ed8;
  background: var(--accent-soft);
  font-weight: 900;
}

.expect-card h3 {
  font-size: 18px;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.expect-card p {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.visit-link {
  display: block;
  color: #ffffff;
  transition: transform .2s ease, background .2s ease;
}

.visit-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
}

.success-card {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,.12), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(6,182,212,.10), transparent 30%),
    #ffffff;
}

.success-panel {
  width: min(760px, 92%);
  text-align: center;
  border-radius: 44px;
  padding: clamp(34px, 7vw, 72px);
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 28px 90px rgba(17,24,39,.10);
}

.success-panel .brand-mark {
  width: 190px;
  height: 86px;
  margin: 0 auto 18px;
  background-image: var(--logo-black);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.success-panel h1 {
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 18px;
}

.success-panel p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .contact-card,
  .first-visit-card {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .form-grid,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .first-visit-card {
    border-radius: 30px;
    padding: 28px 18px;
  }

  .first-visit-actions .btn {
    width: 100%;
  }

  .expect-card {
    min-height: auto;
    border-radius: 24px;
    padding: 20px;
  }
}
