  :root {
    --ink: #0b1726;
    --ink-2: #1a2f4a;
    --navy: #1e3a5f;
    --navy-soft: #2d4a6e;
    --sky: #6b8caf;
    --sky-pale: #c8d6e5;
    --paper: #eef2f6;
    --paper-2: #f7f9fc;
    --gold: #d4a574;
    --gold-deep: #b88a52;
    --warm: #f0e5d3;
    --line: rgba(30,58,95,0.12);
    --shadow-1: 0 1px 2px rgba(11,23,38,0.04), 0 8px 24px rgba(11,23,38,0.06);
    --shadow-2: 0 20px 60px rgba(11,23,38,0.12), 0 4px 12px rgba(11,23,38,0.06);
    --shadow-3: 0 40px 120px rgba(11,23,38,0.18);
    --serif: "Cormorant Garamond", "Noto Serif TC", serif;
    --sans: "Noto Sans TC", "Helvetica Neue", "Helvetica", sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper-2);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  .mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
  .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }

  /* ─────────────────────────────────────────  NAV  ───────────────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
  }
  .nav.scrolled {
    background: rgba(247,249,252,0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 12px 48px;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; color: white; transition: color 0.4s; }
  .nav.scrolled .nav-brand { color: var(--ink); }
  .nav-mark {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .nav-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .nav-name { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-name b { font-weight: 600; font-size: 14.5px; letter-spacing: 0.02em; }
  .nav-name span { font-family: var(--serif); font-style: italic; font-size: 11.5px; opacity: 0.75; letter-spacing: 0.02em; }

  .nav-links { display: flex; gap: 4px; align-items: center; }
  .nav-links a {
    padding: 9px 16px; font-size: 13.5px; font-weight: 500; color: white;
    border-radius: 999px; transition: background 0.2s, color 0.4s;
  }
  .nav.scrolled .nav-links a { color: var(--ink); }
  .nav-links a:hover { background: rgba(255,255,255,0.12); }
  .nav.scrolled .nav-links a:hover { background: rgba(30,58,95,0.06); }
  .nav-cta {
    padding: 9px 18px !important;
    background: white; color: var(--navy) !important;
    border-radius: 999px; font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-cta:hover { background: var(--gold) !important; color: white !important; }
  .nav.scrolled .nav-cta { background: var(--navy); color: white !important; }
  .nav.scrolled .nav-cta:hover { background: var(--gold) !important; color: white !important; }

  /* ─────────────────────────────────────────  HERO  ───────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 70% 20%, rgba(212,165,116,0.38) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(107,140,175,0.45) 0%, transparent 55%),
      linear-gradient(180deg, #1e3a5f 0%, #0f2440 60%, #0b1c33 100%);
    z-index: -2;
  }
  .hero-photo {
    position: absolute; inset: 0; z-index: -1;
    background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=2400&auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: screen;
    will-change: transform;
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: -1;
    pointer-events: none; opacity: 0.4;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
    mix-blend-mode: overlay;
  }

  .hero-inner {
    position: relative; z-index: 2;
    padding: 180px 48px 100px;
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 80px; align-items: center;
  }
  .hero-text .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2.4s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

  .hero-title {
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 700; line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero-title .accent {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    color: var(--gold);
    letter-spacing: 0;
  }
  .hero-title .br { display: block; }
  .hero-lede {
    font-size: 17px; line-height: 1.75; max-width: 540px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px;
    font-size: 14px; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .btn-primary {
    background: white; color: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.22); background: var(--gold); color: white; }
  .btn-ghost {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.16); }
  .btn svg { width: 14px; height: 14px; }

  /* GLASS LIGHTHOUSE CARD */
  .hero-card {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .hero-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
  .hero-card .label { font-size: 11px; letter-spacing: 0.18em; opacity: 0.7; text-transform: uppercase; }
  .hero-card-week { font-family: var(--mono); font-size: 11px; opacity: 0.75; letter-spacing: 0.1em; }
  .hero-card .topic {
    font-family: var(--serif); font-size: 42px; font-weight: 500;
    line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 6px;
    color: var(--gold);
  }
  .hero-card .topic-en { font-family: var(--serif); font-style: italic; font-size: 18px; opacity: 0.7; margin-bottom: 22px; }
  .hero-card .verse {
    font-size: 14px; line-height: 1.75; opacity: 0.85;
    padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hero-card .verse-ref {
    display: block; margin-top: 10px;
    font-family: var(--mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.1em;
  }

  /* HERO METRICS STRIP */
  .hero-meta {
    position: absolute; bottom: 32px; left: 0; right: 0; z-index: 3;
    padding: 0 48px;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 40px; max-width: 1400px; margin: 0 auto;
  }
  .hero-meta-left {
    display: flex; align-items: flex-end; gap: 50px;
    color: rgba(255,255,255,0.85);
  }
  .meta-item { display: flex; flex-direction: column; gap: 4px; }
  .meta-item .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; opacity: 0.6; text-transform: uppercase; }
  .meta-item .v { font-size: 14.5px; font-weight: 500; }
  .scroll-hint { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
  .scroll-hint .line { width: 36px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6)); animation: scrollLine 2.2s ease-in-out infinite; }
  @keyframes scrollLine { 0%, 100% { transform: scaleX(0.4); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

  /* ─────────────────────────────────────────  SECTION CHROME  ───────────────────────────── */
  section { padding: 130px 48px; position: relative; }
  .container { max-width: 1400px; margin: 0 auto; }
  .sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; }
  .sec-head .left { max-width: 720px; }
  .sec-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--navy); opacity: 0.7;
    margin-bottom: 18px;
  }
  .sec-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
  .sec-title {
    font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; line-height: 1.08;
    letter-spacing: -0.02em; color: var(--ink);
  }
  .sec-title .accent { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--navy); }
  .sec-sub { margin-top: 18px; font-size: 16.5px; line-height: 1.7; color: rgba(11,23,38,0.7); max-width: 580px; }
  .sec-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 500; color: var(--navy);
    padding-bottom: 4px; border-bottom: 1px solid var(--navy);
    transition: gap 0.2s, color 0.2s;
  }
  .sec-link:hover { gap: 14px; color: var(--gold-deep); border-color: var(--gold-deep); }

  /* ─────────────────────────────────────────  GATHERING  ───────────────────────────────── */
  .gathering { background: var(--paper-2); }
  .gathering-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gather-card {
    position: relative; padding: 40px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
  }
  .gather-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
  .gather-card.feature {
    background: linear-gradient(140deg, var(--navy) 0%, var(--ink) 100%);
    color: white;
  }
  .gather-card.feature::before {
    content: ""; position: absolute; top: -100px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(212,165,116,0.4), transparent 70%);
    pointer-events: none;
  }
  .gather-time {
    font-family: var(--serif); font-size: 56px; font-weight: 500;
    line-height: 1; letter-spacing: -0.02em; margin: 18px 0 8px;
  }
  .gather-time .ampm { font-size: 22px; opacity: 0.7; margin-left: 4px; }
  .gather-card .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; }
  .gather-card .name { font-size: 18px; font-weight: 600; margin-bottom: 6px; margin-top: 24px; }
  .gather-card .place { font-size: 14px; opacity: 0.7; line-height: 1.6; }
  .gather-list { display: flex; flex-direction: column; gap: 6px; margin-top: 28px; }
  .gather-row {
    display: grid; grid-template-columns: 90px 1fr auto; gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    align-items: center;
  }
  .gather-card.feature .gather-row { border-top-color: rgba(255,255,255,0.12); }
  .gather-row .day { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; opacity: 0.7; }
  .gather-row .what { font-size: 14.5px; font-weight: 500; }
  .gather-row .when { font-family: var(--mono); font-size: 12px; opacity: 0.65; }

  .gather-map {
    margin-top: 36px;
    aspect-ratio: 16/7;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(30,58,95,0) 60%, rgba(30,58,95,0.85)),
      url("https://images.unsplash.com/photo-1577086664693-894d8405334a?w=1600&auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-1);
  }
  .gather-map .pin {
    position: absolute; bottom: 20px; left: 24px; right: 24px;
    color: white;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  }
  .gather-map .pin .addr { font-size: 14px; line-height: 1.55; }
  .gather-map .pin .addr b { display: block; font-size: 16.5px; margin-bottom: 4px; font-weight: 600; }

  /* ─────────────────────────────────────────  SERMONS  ───────────────────────────────── */
  .sermons { background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%); }
  .sermon-feature {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
  }
  .sermon-video {
    position: relative; aspect-ratio: 16/10; border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    cursor: pointer;
  }
  .sermon-video::before {
    /* Dark overlay so white text on top of the photo stays readable. */
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,23,38,0.35), rgba(11,23,38,0.65));
    z-index: 1;
  }
  .sermon-video .play-btn,
  .sermon-video .meta { position: absolute; z-index: 2; }
  .play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 84px; height: 84px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: grid; place-items: center;
    color: var(--navy);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    transition: transform 0.3s, background 0.3s;
  }
  .sermon-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); color: white; }
  .play-btn::after {
    content: ""; position: absolute; inset: -8px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    animation: pingRing 2.4s ease-out infinite;
  }
  @keyframes pingRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
  .play-btn svg { width: 26px; height: 26px; margin-left: 4px; }
  .sermon-video .meta {
    position: absolute; left: 24px; bottom: 24px; right: 24px;
    color: white; display: flex; justify-content: space-between; align-items: flex-end;
  }
  .sermon-video .meta .date { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; opacity: 0.85; padding: 6px 10px; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border-radius: 6px; }
  .sermon-video .duration { font-family: var(--mono); font-size: 11px; padding: 6px 10px; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border-radius: 6px; letter-spacing: 0.1em; }

  .sermon-text { padding: 8px 0; display: flex; flex-direction: column; justify-content: center; }
  .sermon-text .series-labels {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
  }
  .sermon-text .series-label {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
    background: rgba(212,165,116,0.15); color: var(--gold-deep);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    border-radius: 6px; text-transform: uppercase;
    width: max-content;
  }
  .sermon-text h3 {
    font-size: 38px; font-weight: 700; line-height: 1.15;
    letter-spacing: -0.01em; margin-bottom: 16px;
  }
  .sermon-text .verse {
    font-family: var(--serif); font-style: italic;
    font-size: 19px; line-height: 1.6; color: rgba(11,23,38,0.7);
    border-left: 2px solid var(--gold); padding-left: 18px;
    margin-bottom: 24px;
  }
  .sermon-text .speaker { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
  .sermon-text .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--navy));
    display: grid; place-items: center; color: white;
    font-weight: 600; font-size: 14px;
  }
  .sermon-text .speaker-info { font-size: 13.5px; line-height: 1.4; }
  .sermon-text .speaker-info b { font-weight: 600; }
  .sermon-text .speaker-info span { display: block; font-family: var(--mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.1em; margin-top: 2px; }

  .sermon-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sermon-item {
    background: white; border-radius: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: grid; grid-template-columns: 220px 1fr;
  }
  .sermon-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
  .sermon-item-img {
    aspect-ratio: auto; background-size: cover; background-position: center;
    position: relative; min-height: 100%;
  }
  .sermon-item-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  }
  .sermon-item-body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
  .sermon-item-body .date { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; opacity: 0.6; text-transform: uppercase; margin-bottom: 10px; }
  .sermon-item-body h4 { font-size: 22px; line-height: 1.3; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
  .sermon-item-body p { font-size: 13px; opacity: 0.65; line-height: 1.55; display: flex; align-items: flex-start; gap: 6px; }
  .sermon-item-body p svg { width: 13px; height: 13px; margin-top: 3px; flex-shrink: 0; opacity: 0.7; }

  /* ─────────────────────────────────────────  MINISTRIES  ───────────────────────────────── */
  .ministries { background: var(--ink); color: white; padding: 130px 48px; }
  .ministries .sec-title { color: white; }
  .ministries .sec-eyebrow { color: var(--gold); opacity: 1; }
  .ministries .sec-eyebrow::before { background: var(--gold); }
  .ministries .sec-sub { color: rgba(255,255,255,0.7); }

  .min-grid {
    display: grid; grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  .min-card {
    position: relative; overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    padding: 32px;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
    cursor: pointer;
  }
  .min-card:hover { transform: translateY(-4px); border-color: rgba(212,165,116,0.5); background: linear-gradient(160deg, rgba(212,165,116,0.08), rgba(255,255,255,0.02)); }
  .min-card .num { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; opacity: 0.5; }
  .min-card h3 {
    font-family: var(--serif); font-size: 38px; font-weight: 500;
    line-height: 1.05; letter-spacing: -0.01em; margin: 14px 0 8px;
  }
  .min-card .en { font-family: var(--serif); font-style: italic; font-size: 14px; opacity: 0.6; margin-bottom: 18px; }
  .min-card p { font-size: 13.5px; line-height: 1.7; opacity: 0.7; }
  .min-card .arrow {
    margin-top: 22px; width: 38px; height: 38px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
    display: grid; place-items: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .min-card:hover .arrow { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }
  .min-card .arrow svg { width: 14px; height: 14px; }

  .min-card.span-5 { grid-column: span 5; }
  .min-card.span-6 { grid-column: span 6; }
  .min-card.span-7 { grid-column: span 7; }
  .min-card.span-8 { grid-column: span 8; }
  .min-card.span-4 { grid-column: span 4; }
  .min-card.span-3 { grid-column: span 3; }

  .min-card.with-photo {
    background:
      linear-gradient(160deg, rgba(11,23,38,0.5), rgba(11,23,38,0.85)),
      var(--photo);
    background-size: cover; background-position: center;
  }

  /* ─────────────────────────────────────────  LEARN · 學習園地  ───────────────────────────────── */
  .learn { background: var(--ink); color: white; padding: 130px 48px; position: relative; overflow: hidden; }
  .learn::before {
    content: ""; position: absolute; top: -200px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,165,116,0.14), transparent 70%);
    pointer-events: none;
  }
  .learn::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,0.4), transparent 70%);
    pointer-events: none;
  }
  .learn .sec-head { position: relative; z-index: 2; }
  .learn .sec-title { color: white; }
  .learn .sec-eyebrow { color: var(--gold); opacity: 1; }
  .learn .sec-eyebrow::before { background: var(--gold); }
  .learn .sec-sub { color: rgba(255,255,255,0.7); }
  .learn .sec-link { color: white; }

  .learn-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .learn-card {
    position: relative;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 38px 36px 36px;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
    cursor: pointer;
    min-height: 420px;
  }
  .learn-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,165,116,0.4);
    background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  }
  .learn-card .num {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 28px;
  }
  .learn-card .icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: grid; place-items: center; color: white;
    margin-bottom: 26px;
    box-shadow: 0 12px 30px rgba(212,165,116,0.3);
  }
  .learn-card .icon svg { width: 26px; height: 26px; }
  .learn-card h3 {
    font-size: 26px; font-weight: 700; line-height: 1.25;
    letter-spacing: -0.01em; color: white;
    margin-bottom: 8px;
  }
  .learn-card .en {
    font-family: var(--serif); font-style: italic;
    font-size: 15px; opacity: 0.6; margin-bottom: 18px;
  }
  .learn-card p {
    font-size: 14.5px; line-height: 1.75; opacity: 0.78;
    margin-bottom: 24px;
  }
  .learn-card .topics {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 24px;
  }
  .learn-card .topic {
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.78); text-transform: uppercase;
  }
  .learn-card .meta-row {
    display: flex; gap: 18px; padding-top: 20px; margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .learn-card .meta-row .item .v {
    font-family: var(--serif); font-size: 22px; font-weight: 500;
    color: white; line-height: 1;
  }
  .learn-card .meta-row .item .k {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
    opacity: 0.55; text-transform: uppercase; margin-top: 4px;
  }
  .learn-card .cta-arrow {
    position: absolute; top: 36px; right: 36px;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: grid; place-items: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .learn-card:hover .cta-arrow {
    background: var(--gold); border-color: var(--gold);
    transform: rotate(-45deg);
  }
  .learn-card .cta-arrow svg { width: 14px; height: 14px; }

  /* ─────────────────────────────────────────  PULSE (教會動態)  ───────────────────────────────── */
  .pulse { background: var(--paper-2); padding-bottom: 130px; }
  .pulse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pulse-card {
    position: relative; overflow: hidden;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
    display: flex; flex-direction: column;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  .pulse-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
  .pulse-img {
    aspect-ratio: 16/10;
    background-size: cover; background-position: center;
    position: relative;
  }
  .pulse-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,23,38,0.55));
  }
  .pulse-tag {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--navy);
  }
  .pulse-tag.gold { background: var(--gold); color: white; }
  .pulse-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
  .pulse-body .meta {
    display: flex; gap: 14px; align-items: center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0.55; margin-bottom: 12px;
  }
  .pulse-body .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
  .pulse-body h3 {
    font-size: 22px; font-weight: 700; line-height: 1.3;
    letter-spacing: -0.01em; margin-bottom: 10px;
    color: var(--ink);
  }
  .pulse-body .en {
    font-family: var(--serif); font-style: italic;
    font-size: 14.5px; opacity: 0.55; margin-bottom: 16px;
  }
  .pulse-body p {
    font-size: 14px; line-height: 1.7; opacity: 0.7;
    margin-bottom: 22px;
  }
  .pulse-body .cta {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--navy);
    transition: gap 0.2s, color 0.2s;
  }
  .pulse-card:hover .cta { gap: 14px; color: var(--gold-deep); }
  .pulse-body .cta svg { width: 14px; height: 14px; }

  .pulse-card.feature .pulse-img { aspect-ratio: 16/9; }
  .events { background: var(--paper-2); }
  .events-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 48px; }
  .event-list { display: flex; flex-direction: column; }
  .event-item {
    display: grid; grid-template-columns: 110px 1fr auto; gap: 32px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    align-items: center;
    transition: padding 0.3s;
    cursor: pointer;
  }
  .event-item:hover { padding-left: 12px; }
  .event-item:last-child { border-bottom: 1px solid var(--line); }
  .event-date { display: flex; flex-direction: column; align-items: flex-start; }
  .event-date .day { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; color: var(--navy); }
  .event-date .month { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; opacity: 0.6; }
  .event-body h4 { font-size: 19px; font-weight: 600; line-height: 1.35; margin-bottom: 6px; }
  .event-body .info { font-size: 13.5px; opacity: 0.65; line-height: 1.5; }
  .event-tag {
    align-self: center;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
    padding: 6px 11px; border-radius: 6px;
    background: rgba(30,58,95,0.06); color: var(--navy);
    text-transform: uppercase;
  }
  .event-tag.gold { background: rgba(212,165,116,0.15); color: var(--gold-deep); }

  .events-side {
    background: linear-gradient(160deg, var(--navy), var(--ink-2));
    border-radius: 24px; padding: 40px;
    color: white; position: sticky;
    height: max-content;
    overflow: hidden; position: relative;
  }
  .events-side::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(212,165,116,0.35), transparent 70%);
  }
  .events-side .lh-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    display: grid; place-items: center; color: white;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(212,165,116,0.4);
    position: relative;
  }
  .events-side .lh-icon svg { width: 28px; height: 28px; }
  .events-side h3 { font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; position: relative; }
  .events-side .en { font-family: var(--serif); font-style: italic; opacity: 0.7; margin-bottom: 22px; font-size: 16px; position: relative; }
  .events-side p { font-size: 14.5px; line-height: 1.7; opacity: 0.8; margin-bottom: 28px; position: relative; }
  .events-side .stat-row { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); position: relative; }
  .events-side .stat .v { font-family: var(--serif); font-size: 32px; font-weight: 500; }
  .events-side .stat .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; opacity: 0.6; text-transform: uppercase; margin-top: 2px; }

  /* ─────────────────────────────────────────  WELCOME CTA  ───────────────────────────────── */
  .welcome {
    padding: 130px 48px;
    background:
      linear-gradient(135deg, rgba(11,23,38,0.6), rgba(30,58,95,0.6)),
      url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=2400&auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .welcome::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(11,23,38,0.6));
  }
  .welcome-inner { max-width: 820px; padding-left:24px; padding-right:24px; margin: 0 auto; position: relative; }
  .welcome .quote-mark {
    font-family: var(--serif); font-size: 100px;
    line-height: 1; color: var(--gold);
    margin-bottom: 0;
  }
  .welcome h2 {
    font-family: var(--serif); font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .welcome h2 em { font-style: italic; color: var(--gold); }
  .welcome p { font-size: 17px; line-height: 1.75; opacity: 0.85; max-width: 560px; margin: 0 auto 36px; }

  /* ─────────────────────────────────────────  FOOTER  ───────────────────────────────── */
  footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: 100px 48px 36px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1.3fr 1fr; gap: 64px; max-width: 1400px; margin: 0 auto 80px; }
  .footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 420px; }
  .footer-brand h3 { font-size: 20px; font-weight: 700; color: white; line-height: 1.3; }
  .footer-brand .en { font-family: var(--serif); font-style: italic; opacity: 0.65; font-size: 14.5px; }
  .footer-brand p { font-size: 13.5px; line-height: 1.85; opacity: 0.7; }
  .footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
  .footer-col a { font-size: 13.5px; opacity: 0.78; transition: opacity 0.2s, color 0.2s; }
  .footer-col a:hover { opacity: 1; color: var(--gold); }
  .footer-col p { font-size: 13.5px; line-height: 1.7; opacity: 0.78; }

  .footer-addr-list { display: flex; flex-direction: column; gap: 18px; }
  .footer-addr {
    padding-left: 14px; border-left: 1px solid rgba(212,165,116,0.4);
  }
  .footer-addr .lang {
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
  }
  .footer-addr .where { font-size: 13.5px; line-height: 1.55; opacity: 0.85; color: white; font-weight: 500; }

  .footer-meet {
    margin-top: 14px; padding: 14px 16px;
    background: rgba(212,165,116,0.1);
    border: 1px solid rgba(212,165,116,0.25);
    border-radius: 10px;
    display: flex; align-items: center; gap: 12px;
  }
  .footer-meet + .footer-meet { margin-top: 8px; }
  .footer-meet svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
  .footer-meet .t { font-size: 13px; line-height: 1.4; }
  .footer-meet .t b { color: white; font-weight: 600; }

  .footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
  .footer-contact {
    display: grid; grid-template-columns: 1fr auto;
    gap: 12px; align-items: baseline;
    padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-contact:last-child { border-bottom: none; }
  .footer-contact .name { font-size: 13.5px; color: white; font-weight: 500; }
  .footer-contact .name span { display: block; font-size: 11.5px; opacity: 0.6; font-weight: 400; margin-top: 2px; }
  .footer-contact .tel {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
    color: var(--gold); white-space: nowrap;
  }

  .footer-office {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; line-height: 1.7; opacity: 0.7;
  }
  .footer-office b { color: white; font-weight: 600; opacity: 1; }
  .footer-bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; opacity: 0.55; text-transform: uppercase;
  }

  /* ─────────────────────────────────────────  REVEAL  ───────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.d1 { transition-delay: 0.06s; }
  .reveal.d2 { transition-delay: 0.12s; }
  .reveal.d3 { transition-delay: 0.18s; }
  .reveal.d4 { transition-delay: 0.24s; }
  .reveal.d5 { transition-delay: 0.30s; }
  .reveal.d6 { transition-delay: 0.36s; }

  /* HERO STAGGER (active slide only) */
  .hero-slide.is-active .hero-text > * { animation: heroIn 1s cubic-bezier(.2,.7,.2,1) both; }
  .hero-slide.is-active .hero-text > *:nth-child(1) { animation-delay: 0.15s; }
  .hero-slide.is-active .hero-text > *:nth-child(2) { animation-delay: 0.3s; }
  .hero-slide.is-active .hero-text > *:nth-child(3) { animation-delay: 0.45s; }
  .hero-slide.is-active .hero-text > *:nth-child(4) { animation-delay: 0.6s; }
  .hero-slide.is-active .hero-card { animation: heroIn 1.2s cubic-bezier(.2,.7,.2,1) 0.7s both; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

  /* ─────────────────────────────────────────  HERO SLIDER  ───────────────────────────────── */
  .hero-stage {
    position: absolute; inset: 0; z-index: 1;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), visibility 0s linear 1.1s;
  }
  .hero-slide.is-active {
    opacity: 1; visibility: visible;
    transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), visibility 0s;
  }
  .hero-slide .hero-photo {
    background-image: var(--photo);
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    mix-blend-mode: screen;
  }
  .hero-slide .hero-bg-tint {
    position: absolute; inset: 0;
    background: var(--tint, transparent);
    pointer-events: none;
    z-index: 0;
  }
  .hero-slide .hero-inner { position: relative; z-index: 2; }

  /* slider chrome */
  .hero-controls {
    position: absolute; z-index: 4;
    bottom: 90px; right: 48px;
    display: flex; gap: 8px;
  }
  .hero-arrow {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    color: white;
    display: grid; place-items: center;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
  }
  .hero-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
  .hero-arrow svg { width: 16px; height: 16px; }

  .hero-pager {
    position: absolute; z-index: 4;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
  }
  .hero-pager button {
    position: relative;
    width: 36px; height: 4px; border-radius: 4px;
    background: rgba(255,255,255,0.22);
    overflow: hidden;
    transition: background 0.3s;
  }
  .hero-pager button.is-active { background: rgba(255,255,255,0.28); }
  .hero-pager button .fill {
    position: absolute; inset: 0; transform-origin: left;
    background: var(--gold);
    transform: scaleX(0);
  }
  .hero-pager button.is-active .fill { animation: pagerFill 7s linear forwards; }
  @keyframes pagerFill { to { transform: scaleX(1); } }

  .hero-counter {
    position: absolute; z-index: 4;
    top: 50%; right: 48px; transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
    color: rgba(255,255,255,0.55); text-transform: uppercase;
    white-space: nowrap;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-counter .now { color: white; font-size: 13px; }
  .hero-counter .bar { width: 80px; height: 1px; background: rgba(255,255,255,0.35); }

  /* ─────────────────────────────────────────  MOBILE NAV TOGGLE  ──────────────────────── */
  .nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.4s;
  }
  .nav.scrolled .nav-toggle { border-color: rgba(30,58,95,0.18); background: rgba(30,58,95,0.04); }
  .nav-toggle span {
    width: 18px; height: 1.6px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.4s;
  }
  .nav.scrolled .nav-toggle span { background: var(--ink); }
  .nav-toggle.is-open { background: white; border-color: white; }
  .nav-toggle.is-open span { background: var(--ink); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: linear-gradient(160deg, #0f2440 0%, #0b1c33 100%);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0s linear 0.35s;
    display: flex; flex-direction: column;
    padding: 130px 28px 130px;
    overflow-y: auto;
  }
  .mobile-menu.is-open {
    opacity: 1; visibility: visible;
    transition: opacity 0.35s;
  }
  .mobile-menu::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 80% 10%, rgba(212,165,116,0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 10% 90%, rgba(107,140,175,0.18) 0%, transparent 55%);
    pointer-events: none;
  }
  .mobile-menu-inner { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
  .mobile-menu a {
    font-size: 22px; font-weight: 500;
    color: white;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: space-between;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--gold); padding-left: 12px; }
  .mobile-menu a::after { content: "→"; font-size: 18px; opacity: 0.45; }
  .mobile-menu a.mm-cta {
    margin-top: 28px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 18px 28px;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
  }
  .mobile-menu a.mm-cta:hover { padding-left: 28px; }
  .mobile-menu a.mm-cta::after { content: ""; }
  .mobile-menu .mm-foot {
    margin-top: auto;
    padding-top: 36px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
  }
  .mobile-menu .mm-foot b { color: white; font-weight: 600; display: block; margin-bottom: 4px; }
  body.menu-open { overflow: hidden; }

  /* ─────────────────────────────────────────  RESPONSIVE · TABLET ≤ 1100px  ──────────── */
  @media (max-width: 1100px) {
    .nav { padding: 16px 28px; }
    .nav.scrolled { padding: 10px 28px; }
    section { padding: 100px 32px; }
    .sec-head { gap: 28px; margin-bottom: 48px; }
    .sec-title { font-size: clamp(32px, 5vw, 52px); }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 56px;
      padding: 160px 32px 120px;
      max-width: 760px;
    }
    .hero-meta { padding: 0 32px; }
    .hero-controls { right: 32px; bottom: 100px; }
    .hero-counter { right: 32px; }

    /* Tablet: same height fix as mobile — let active slide flow */
    .hero { min-height: 0; }
    .hero-stage { position: relative; }
    .hero-slide.is-active { position: relative; inset: auto; }

    .gathering-grid { grid-template-columns: 1fr; gap: 24px; }
    .sermon-feature { grid-template-columns: 1fr; gap: 36px; }
    .sermon-list { grid-template-columns: 1fr; gap: 20px; }

    .ministries, .learn { padding: 110px 32px; }
    .min-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .min-card.span-3, .min-card.span-4, .min-card.span-5,
    .min-card.span-6, .min-card.span-7, .min-card.span-8 {
      grid-column: span 1;
    }

    .learn-grid { grid-template-columns: 1fr; gap: 20px; }
    .learn-card { min-height: auto; padding: 36px 32px; }

    .pulse-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

    .events-grid { grid-template-columns: 1fr; gap: 40px; }
    .events-side { position: static; }

    .welcome { padding: 110px 32px; background-attachment: scroll; }
    footer { padding: 80px 32px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 60px; }
    .footer-brand { max-width: none; }
  }

  /* ─────────────────────────────────────────  RESPONSIVE · MOBILE ≤ 720px  ───────────── */
  @media (max-width: 720px) {
    .nav { padding: 12px 24px; }
    .nav.scrolled { padding: 10px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-name b { font-size: 13px; }
    .nav-name span { display: none; }
    .nav-mark { width: 38px; height: 38px; }

    /* Hero on mobile: let active slide flow so hero grows to fit content (no clipping) */
    .hero { min-height: 0; }
    .hero-stage { position: relative; }
    .hero-slide.is-active { position: relative; inset: auto; }

    section { padding: 72px 24px; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
    .sec-title { font-size: clamp(26px, 7.5vw, 36px); }
    .sec-sub { font-size: 14.5px; margin-top: 14px; }
    .sec-eyebrow { font-size: 10.5px; margin-bottom: 14px; }

    .hero { min-height: auto; }
    .hero-inner {
      padding: 120px 24px 140px;
      gap: 36px;
    }
    .hero-text .eyebrow { font-size: 10.5px; padding: 6px 12px; margin-bottom: 20px; }
    .hero-title { font-size: clamp(36px, 11vw, 52px); margin-bottom: 22px; }
    .hero-lede { font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
    .hero-actions { gap: 10px; }
    .btn { padding: 12px 24px; font-size: 13px; }

    .hero-card { padding: 22px 24px; border-radius: 18px; }
    .hero-card .topic { font-size: 32px; }
    .hero-card .topic-en { font-size: 15px; margin-bottom: 18px; }
    .hero-card .verse { font-size: 13.5px; padding-top: 18px; }

    .hero-controls { bottom: 80px; right: 20px; gap: 6px; }
    .hero-arrow { width: 38px; height: 38px; }
    .hero-arrow svg { width: 14px; height: 14px; }
    .hero-counter { display: none; }
    .hero-pager { bottom: 20px; padding: 6px 10px; }
    .hero-pager button { width: 22px; }
    .hero-meta { display: none; }

    .gather-card { padding: 28px 24px; border-radius: 18px; }
    .gather-time { font-size: 44px; }
    .gather-time .ampm { font-size: 18px; }
    .gather-card .name { font-size: 17px; margin-top: 20px; }
    .gather-row { grid-template-columns: 56px 1fr auto; gap: 10px; padding: 12px 0; }
    .gather-row .what { font-size: 13.5px; }
    .gather-map { aspect-ratio: 4/3; margin-top: 26px; }
    .gather-map .pin { flex-direction: column; align-items: flex-start; gap: 14px; left: 18px; right: 18px; bottom: 18px; }
    .gather-map .pin .addr { font-size: 13px; }
    .gather-map .pin .addr b { font-size: 15px; }

    .sermons { padding-bottom: 72px; }
    .sermon-text h3 { font-size: 26px; }
    .sermon-text .verse { font-size: 16px; }
    .sermon-text .series-labels { margin-bottom: 18px; }
    .play-btn { width: 64px; height: 64px; }
    .play-btn svg { width: 20px; height: 20px; }
    .sermon-item { grid-template-columns: 1fr; }
    .sermon-item-img { aspect-ratio: 16/9; min-height: 160px; }
    .sermon-item-body { padding: 22px 24px; }
    .sermon-item-body h4 { font-size: 19px; }

    .ministries, .learn { padding: 84px 24px; }
    .min-grid { grid-template-columns: 1fr; gap: 16px; }
    .min-card { padding: 28px 24px; min-height: 240px !important; border-radius: 18px; }
    .min-card h3 { font-size: 28px; }
    .min-card .en { font-size: 13px; }

    .learn-grid { gap: 16px; }
    .learn-card { padding: 30px 26px; border-radius: 18px; min-height: auto; }
    .learn-card .cta-arrow { top: 26px; right: 26px; width: 32px; height: 32px; }
    .learn-card h3 { font-size: 22px; }
    .learn-card .num { margin-bottom: 22px; }
    .learn-card .icon { margin-bottom: 20px; width: 50px; height: 50px; }

    .pulse-grid { grid-template-columns: 1fr; gap: 18px; }
    .pulse-body { padding: 22px 24px 24px; }
    .pulse-body h3 { font-size: 20px; }

    .events { padding: 84px 24px; }
    .event-item { grid-template-columns: 64px 1fr; gap: 16px; padding: 22px 0; }
    .event-item:hover { padding-left: 4px; }
    .event-date .day { font-size: 32px; }
    .event-date .month { font-size: 10px; }
    .event-body h4 { font-size: 16px; line-height: 1.4; }
    .event-body .info { font-size: 12.5px; }
    .event-tag {
      grid-column: 2 / -1;
      justify-self: start;
      margin-top: 8px;
    }

    .events-side { padding: 32px 24px; border-radius: 18px; }
    .events-side h3 { font-size: 22px; }
    .events-side p { font-size: 14px; margin-bottom: 22px; }
    .events-side .stat-row { gap: 18px; flex-wrap: wrap; }
    .events-side .stat .v { font-size: 24px; }
    .events-side .stat .k { font-size: 9.5px; }

    .welcome { padding: 84px 24px; }
    .welcome .quote-mark { font-size: 70px; }
    .welcome h2 { font-size: clamp(32px, 9vw, 46px); margin-bottom: 22px; }
    .welcome p { font-size: 15px; margin-bottom: 30px; }
    .welcome .hero-actions { flex-direction: column; align-items: stretch; }
    .welcome .btn { justify-content: center; }

    footer { padding: 64px 24px 28px; }
    .footer-grid { gap: 44px; margin-bottom: 48px; }
    .footer-brand h3 { font-size: 17px; }
    .footer-brand p { font-size: 13px; }
    .footer-contact { grid-template-columns: 1fr; gap: 4px; }
    .footer-contact .tel { font-size: 13px; }
    .footer-bottom { font-size: 10px; gap: 10px; letter-spacing: 0.12em; }
    .footer-bottom span { line-height: 1.6; }
  }

  /* ─────────────────────────────────────────  RESPONSIVE · SMALL MOBILE ≤ 380px  ─────── */
  @media (max-width: 380px) {
    .nav-name { display: none; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-actions { width: 100%; }
  }
