 :root {
      --gold: #c9952a;
      --gold-light: #e8b84b;
      --deep: #1a1a2e;
      --midnight: #0f0f1a;
      --cream: #f5f0e8;
      --warm-white: #faf8f4;
      --crimson: #8b1a1a;
      --text-muted: #6b6560;
      --border: rgba(201,149,42,0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Crimson Pro', Georgia, serif;
      background: var(--warm-white);
      color: #2c2520;
      overflow-x: hidden;
    }

    /* ─── LANGUAGE TOGGLE ─── */
    .lang-bar {
      background: var(--midnight);
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
      padding: 8px 40px;
      font-family: 'Crimson Pro', serif;
      font-size: 13px;
      letter-spacing: 0.08em;
    }
    .lang-btn {
      background: none;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.6);
      padding: 4px 14px;
      cursor: pointer;
      border-radius: 2px;
      font-family: inherit;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.2s;
    }
    .lang-btn.active, .lang-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--midnight);
    }

    /* ─── NAVIGATION ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(26,26,46,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 36px;
      height: 36px;
      position: relative;
    }
    .nav-logo-icon svg { width: 100%; height: 100%; }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text .church {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
    }
    .nav-logo-text .location {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-family: 'Crimson Pro', serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--gold);
      color: var(--midnight) !important;
      padding: 8px 22px;
      border-radius: 2px;
      font-weight: 600 !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: #fff;
      transition: all 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 90vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--midnight);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,149,42,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139,26,26,0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0d0d18 100%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(201,149,42,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,149,42,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.6;
    }
    .hero-cross {
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.06;
    }
    .hero-cross svg { width: 400px; height: 500px; }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 8%;
      max-width: 800px;
      animation: heroFade 1.2s ease both;
    }
    @keyframes heroFade {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(52px, 7vw, 88px);
      font-weight: 900;
      line-height: 1.0;
      color: #fff;
      margin-bottom: 8px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-sub {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      margin-bottom: 32px;
      font-style: italic;
    }
    .hero-desc {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 44px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--midnight);
      padding: 14px 36px;
      font-family: 'Crimson Pro', serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      border-radius: 2px;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 13px 36px;
      font-family: 'Crimson Pro', serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.35);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      border-radius: 2px;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.3);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollBounce 2s infinite;
    }
    .hero-scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── SERVICE TIMES STRIP ─── */
    .service-strip {
      background: var(--gold);
      padding: 0;
      overflow: hidden;
    }
    .service-strip-inner {
      display: flex;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
    }
    .service-item {
      flex: 1;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 18px;
      border-right: 1px solid rgba(26,26,46,0.15);
    }
    .service-item:last-child { border-right: none; }
    .service-icon {
      font-size: 28px;
      opacity: 0.8;
    }
    .service-label {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--midnight);
    }
    .service-time {
      font-size: 14px;
      color: rgba(26,26,46,0.65);
      font-weight: 300;
    }

    /* ─── SECTION HEADERS ─── */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 700;
      color: var(--deep);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--crimson); }
    .section-divider {
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
      margin: 0 auto 20px;
    }
    .section-desc {
      font-size: 18px;
      font-weight: 300;
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ─── WELCOME SECTION ─── */
    .welcome {
      padding: 120px 8%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }
    .welcome-text .section-header { text-align: left; }
    .welcome-text .section-divider { margin: 0 0 20px; }
    .welcome-body {
      font-size: 19px;
      font-weight: 300;
      line-height: 1.8;
      color: #3a3530;
      margin-bottom: 16px;
    }
    .welcome-verse {
      border-left: 3px solid var(--gold);
      padding: 20px 24px;
      margin: 32px 0;
      background: var(--cream);
      border-radius: 0 4px 4px 0;
    }
    .welcome-verse p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 20px;
      color: var(--deep);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .welcome-verse cite {
      font-size: 13px;
      letter-spacing: 0.15em;
      color: var(--gold);
      text-transform: uppercase;
    }
    .welcome-image {
      position: relative;
    }
    .welcome-image-frame {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--deep);
    }
    .welcome-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
    }
    .welcome-image-frame .img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .welcome-image-frame .img-placeholder svg {
      opacity: 0.3;
    }
    .welcome-image-frame .img-placeholder span {
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      letter-spacing: 0.2em;
    }
    .welcome-image-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 140px;
      height: 140px;
      border: 2px solid var(--gold);
      border-radius: 4px;
      z-index: -1;
      opacity: 0.5;
    }
    .welcome-image-tag {
      position: absolute;
      bottom: 24px;
      left: -24px;
      background: var(--gold);
      color: var(--midnight);
      padding: 16px 20px;
      border-radius: 3px;
    }
    .welcome-image-tag .number {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      display: block;
    }
    .welcome-image-tag .label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      display: block;
    }

    /* ─── BANNER SLIDESHOW ─── */
    .slideshow-section {
      background: var(--deep);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .slides-wrapper {
      display: flex;
      transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
    }
    .slide {
      min-width: 100%;
      position: relative;
    }
    .slide img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      opacity: 0.75;
    }
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.3) 60%, transparent 100%);
      display: flex;
      align-items: center;
      padding: 0 8%;
    }
    .slide-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 52px);
      color: #fff;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .slide-content p {
      font-size: 17px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 28px;
      max-width: 400px;
    }
    .slide-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }
    .slide-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      padding: 0;
    }
    .slide-dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 3px;
    }
    .slide-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 50%;
      transition: all 0.2s;
      font-size: 18px;
      z-index: 10;
    }
    .slide-nav-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--midnight); }
    .slide-prev { left: 24px; }
    .slide-next { right: 24px; }

    /* ─── MINISTRY CARDS ─── */
    .ministries {
      padding: 120px 8%;
      background: var(--cream);
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .card {
      background: var(--warm-white);
      border: 1px solid rgba(201,149,42,0.15);
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      text-decoration: none;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .card-image {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: var(--deep);
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .card:hover .card-image img { transform: scale(1.05); }
    .card-image-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .card-body {
      padding: 28px;
    }
    .card-tag {
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: block;
    }
    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--deep);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .card-desc {
      font-size: 16px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .card-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── VALUES PANEL ─── */
    .values-panel {
      max-width: 1200px;
      margin: 0 auto;
      animation: fadeUp 0.4s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .values-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 48px;
      gap: 24px;
    }
    .values-close {
      background: none;
      border: 1px solid var(--border);
      color: var(--gold);
      font-family: 'Crimson Pro', serif;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 22px;
      cursor: pointer;
      border-radius: 2px;
      white-space: nowrap;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .values-close:hover {
      background: var(--gold);
      color: var(--midnight);
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .value-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 24px;
      background: #fff;
      border: 1px solid rgba(201,149,42,0.14);
      border-radius: 4px;
      transition: all 0.2s;
    }
    .value-item:hover {
      border-color: var(--gold);
      box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }
    .value-icon {
      font-size: 26px;
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
    }
    .value-item h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--deep);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .value-item p {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.65;
    }
    @media (max-width: 768px) {
      .values-grid { grid-template-columns: 1fr; }
      .values-header { flex-direction: column-reverse; }
    }

    /* ─── SERMONS ─── */
    .sermons {
      padding: 120px 8%;
      background: var(--warm-white);
    }
    .sermons-featured {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 48px;
    }
    .sermon-main {
      background: var(--deep);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .sermon-video-placeholder {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
    }
    .sermon-video-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,149,42,0.15) 0%, transparent 65%);
    }
    .sermon-main-info {
      padding: 24px;
    }
    .sermon-main-info .badge {
      background: var(--gold);
      color: var(--midnight);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 12px;
    }
    .sermon-main-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: #fff;
      margin-bottom: 8px;
    }
    .sermon-main-info p {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
    }
    .sermon-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .sermon-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: var(--cream);
      border-radius: 4px;
      border: 1px solid transparent;
      transition: all 0.2s;
      text-decoration: none;
      cursor: pointer;
    }
    .sermon-item:hover {
      border-color: var(--gold);
      background: #fff;
    }
    .sermon-thumb {
      width: 80px;
      height: 55px;
      border-radius: 3px;
      background: var(--deep);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .sermon-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .sermon-thumb-placeholder {
      font-size: 20px;
    }
    .sermon-item-info { flex: 1; }
    .sermon-item-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 4px;
      line-height: 1.3;
    }
    .sermon-item-title a{
      color: var(--text-muted);
      text-decoration:none;
    }
    .sermon-item-meta {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ─── STATS ─── */
    .stats {
      background: var(--deep);
      padding: 80px 8%;
      position: relative;
      overflow: hidden;
    }
    .stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 0% 50%, rgba(201,149,42,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139,26,26,0.1) 0%, transparent 50%);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .stat-item {
      text-align: center;
      padding: 40px 20px;
      border: 1px solid rgba(201,149,42,0.2);
      border-radius: 4px;
      background: rgba(255,255,255,0.02);
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      display: block;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* ─── CALENDAR ─── */
    .calendar-section {
      padding: 120px 8%;
      background: var(--cream);
    }
    .calendar-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
    }
    .upcoming-events h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--deep);
      margin-bottom: 28px;
    }
    .event-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(201,149,42,0.2);
    }
    .event-date-badge {
      background: var(--deep);
      color: #fff;
      padding: 12px 16px;
      text-align: center;
      border-radius: 3px;
      flex-shrink: 0;
      min-width: 58px;
    }
    .event-date-badge .month {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
    }
    .event-date-badge .day {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      display: block;
    }
    .event-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--deep);
      margin-bottom: 4px;
    }
    .event-info p {
      font-size: 14px;
      color: var(--text-muted);
    }
    .calendar-embed {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid rgba(201,149,42,0.2);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }
    .calendar-embed iframe {
      width: 100%;
      height: 500px;
      border: none;
      display: block;
    }
    .calendar-embed-placeholder {
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      color: var(--text-muted);
      font-size: 16px;
    }
    .calendar-embed-placeholder .cal-icon { font-size: 48px; opacity: 0.4; }

    /* ─── CONTACT ─── */
    .contact {
      padding: 120px 8%;
      background: var(--warm-white);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--deep);
      margin-bottom: 16px;
    }
    .contact-info p {
      font-size: 17px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .contact-detail {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-detail-icon {
      width: 44px;
      height: 44px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      border: 1px solid var(--border);
    }
    .contact-detail-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      color: var(--deep);
      margin-bottom: 2px;
    }
    .contact-detail-text span {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
    }
    .contact-form {
      background: var(--cream);
      padding: 48px;
      border-radius: 4px;
      border: 1px solid rgba(201,149,42,0.15);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }
    .form-group label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--deep);
      font-weight: 600;
    }
    .form-group input, .form-group textarea, .form-group select {
      font-family: 'Crimson Pro', serif;
      font-size: 16px;
      padding: 14px 16px;
      border: 1px solid rgba(201,149,42,0.25);
      border-radius: 3px;
      background: #fff;
      color: var(--deep);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,149,42,0.1);
    }
    .form-group textarea { height: 140px; resize: vertical; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--midnight);
      padding: 80px 8% 40px;
      border-top: 1px solid var(--border);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto 60px;
    }
    .footer-brand .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      display: block;
    }
    .footer-brand .brand-location {
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }
    .footer-brand p {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ─── MOBILE NAV OVERLAY ─── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15,15,26,0.97);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
    }


        .beliefs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);  /* 2 columns, matches values grid */
      gap: 20px;
      max-width: 1200px;                       /* matches .sermons-featured, .contact-grid etc */
      margin: 0 auto;
    }

    /* Make last item full width if odd number of items */
    .belief-item:last-child:nth-child(odd) {
      grid-column: 1 / -1;
    }

    .belief-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px;
      background: #fff;
      border: 1px solid rgba(201,149,42,0.14);
      border-radius: 4px;
      transition: all 0.2s;
    }
    .belief-item:hover {
      border-color: var(--gold);
      box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }
    .belief-icon {
      font-size: 24px;
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
    }
    .belief-content h4 {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--deep);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .belief-content p {
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.75;
    }
    @media (max-width: 768px) {
      .beliefs-grid { grid-template-columns: 1fr; }
      .belief-item:last-child:nth-child(odd) { grid-column: auto; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .welcome { grid-template-columns: 1fr; gap: 48px; }
      .welcome-image { order: -1; }
      .welcome-image-frame { aspect-ratio: 16/9; }
      .sermons-featured { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .calendar-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-content { padding: 0 5%; }
      .service-strip-inner { flex-direction: column; }
      .service-item { border-right: none; border-bottom: 1px solid rgba(26,26,46,0.15); }
      .welcome, .ministries, .sermons, .stats, .calendar-section, .contact { padding: 80px 5%; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .contact-form { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .lang-bar { padding: 8px 20px; }
    }