      :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);
        --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;
      }

      /* ─────  NAV (synced)  ───── */
      .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;
        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);
      }
      .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        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: var(--ink);
        border-radius: 999px;
        transition:
          background 0.2s,
          color 0.4s;
      }
      .nav-links a:hover {
        background: rgba(30, 58, 95, 0.06);
      }
      .nav-links a.active {
        color: var(--gold-deep);
      }
      .nav-cta {
        padding: 9px 18px !important;
        background: var(--navy);
        color: white !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;
      }

      /* ─────  PAGE HERO  ───── */
      .page-hero {
        position: relative;
        padding: 180px 48px 100px;
        background:
          radial-gradient(
            1200px 520px at 75% -10%,
            rgba(212, 165, 116, 0.2),
            transparent 60%
          ),
          radial-gradient(
            900px 460px at 5% 110%,
            rgba(107, 140, 175, 0.18),
            transparent 60%
          ),
          linear-gradient(
            160deg,
            var(--ink) 0%,
            var(--ink-2) 60%,
            var(--navy) 100%
          );
        color: white;
        overflow: hidden;
      }
      .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 80px 80px;
        mask: radial-gradient(
          ellipse at 80% 30%,
          rgba(0, 0, 0, 0.5),
          transparent 65%
        );
      }
      .page-hero-inner {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: end;
		padding-left: 24px;
		padding-right: 24px;
      }
      .crumb {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 22px;
      }
      .crumb a {
        opacity: 0.7;
        transition: opacity 0.2s;
      }
      .crumb a:hover {
        opacity: 1;
      }
      .crumb .sep {
        opacity: 0.4;
      }
      .page-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(--gold);
        margin-bottom: 22px;
      }
      .page-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .page-title {
        font-size: clamp(48px, 6.4vw, 92px);
        font-weight: 700;
        line-height: 1.04;
        letter-spacing: -0.02em;
        margin-bottom: 28px;
      }
      .page-title .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .page-lede {
        font-size: 17px;
        line-height: 1.75;
        opacity: 0.78;
        max-width: 540px;
      }
      .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 22px;
        border-left: 1px solid rgba(212, 165, 116, 0.3);
        padding-left: 36px;
      }
      .hero-stat .v {
        font-family: var(--serif);
        font-size: 56px;
        font-weight: 500;
        line-height: 1;
        color: var(--gold);
      }
      .hero-stat .v sup {
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 500;
        color: white;
        opacity: 0.65;
        margin-left: 6px;
        vertical-align: super;
      }
      .hero-stat .k {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.6;
        margin-top: 6px;
      }
      .hero-stat + .hero-stat {
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* ─────  INDEX BAND — 12 ministries quick jump  ───── */
      .index-band {
        background: white;
        border-bottom: 1px solid var(--line);
        padding: 30px 48px;
      }
      .index-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;
		padding-left: 24px;
		padding-right: 24px;
      }
      .index-label {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--navy);
        opacity: 0.6;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .index-label::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--gold);
      }
      .index-list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 6px;
      }
      .index-list a {
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12.5px;
        font-weight: 500;
        color: var(--ink-2);
        border: 1px solid var(--line);
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }
      .index-list a::before {
        content: attr(data-num);
        font-family: var(--mono);
        font-size: 9.5px;
        opacity: 0.55;
        letter-spacing: 0.1em;
      }
      .index-list a:hover {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
      }

      /* ─────  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;
        flex-wrap: wrap;
      }
      .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;
        color: var(--navy);
        opacity: 0.85;
        text-transform: uppercase;
        margin-bottom: 18px;
      }
      .sec-eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .sec-title {
        font-size: clamp(34px, 4.2vw, 56px);
        font-weight: 700;
        line-height: 1.1;
        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 {
        font-size: 15.5px;
        line-height: 1.75;
        color: rgba(11, 23, 38, 0.65);
        margin-top: 18px;
        max-width: 580px;
      }
      .sec-rule {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.22em;
        color: var(--navy);
        opacity: 0.5;
        text-transform: uppercase;
        align-self: flex-end;
        padding-bottom: 6px;
      }

      /* ─────  1. SUNDAY — featured editorial  ───── */
      .sunday {
        background: var(--paper-2);
        padding: 130px 48px 130px;
      }
      .sunday-card {
        position: relative;
        background: white;
        border-radius: 28px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-2);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        max-width: 1400px;
        margin: auto;
      }
      .sunday-cover {
        position: relative;
        padding: 64px 56px;
        background:
          linear-gradient(
            160deg,
            rgba(11, 23, 38, 0.55),
            rgba(11, 23, 38, 0.78)
          ),
          url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1600&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        min-height: 580px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .sunday-cover-top {
        position: relative;
        z-index: 2;
      }
      .sunday-cover-top .label {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.22em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .sunday-cover-top .label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .sunday-cover-top h3 {
        font-family: var(--serif);
        font-size: 56px;
        font-weight: 500;
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: white;
        margin-bottom: 8px;
      }
      .sunday-cover-top h3 em {
        font-style: italic;
        color: var(--gold);
      }
      .sunday-cover-top .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 18px;
        opacity: 0.7;
        margin-bottom: 28px;
      }
      .sunday-services {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
        z-index: 2;
      }
      .sun-svc {
        display: grid;
        grid-template-columns: 80px 1fr auto;
        gap: 18px;
        align-items: center;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
      }
      .sun-svc .when {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 500;
        color: var(--gold);
        line-height: 1;
      }
      .sun-svc .when small {
        font-family: var(--mono);
        font-size: 10px;
        opacity: 0.7;
        display: block;
        margin-top: 4px;
        letter-spacing: 0.14em;
      }
      .sun-svc .lang {
        font-size: 15px;
        font-weight: 600;
        color: white;
      }
      .sun-svc .lang span {
        display: block;
        font-family: var(--serif);
        font-style: italic;
        font-size: 12.5px;
        opacity: 0.65;
        font-weight: 400;
        margin-top: 2px;
      }
      .sun-svc .tag {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: var(--gold);
        opacity: 0.85;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        padding-left: 14px;
      }

      .sunday-body {
        padding: 64px 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: white;
      }
      .sunday-body .num {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .sunday-body h4 {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: var(--ink);
        margin-bottom: 18px;
      }
      .sunday-body h4 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .sunday-body p {
        font-size: 15px;
        line-height: 1.78;
        color: rgba(11, 23, 38, 0.72);
        margin-bottom: 24px;
      }
      .sunday-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        margin-bottom: 28px;
      }
      .sunday-flow .item {
        padding: 16px 0;
        border-right: 1px solid var(--line);
        padding-right: 18px;
      }
      .sunday-flow .item:nth-child(2n) {
        border-right: none;
        padding-left: 18px;
        padding-right: 0;
      }
      .sunday-flow .item:nth-child(n + 3) {
        border-top: 1px dashed var(--line);
      }
      .sunday-flow .k {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold-deep);
        margin-bottom: 4px;
      }
      .sunday-flow .v {
        font-size: 14.5px;
        color: var(--ink-2);
        font-weight: 500;
      }
      .sunday-add-ons {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .sunday-addon {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: var(--paper-2);
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .sunday-addon:hover {
        border-color: rgba(212, 165, 116, 0.45);
        background: white;
      }
      .sunday-addon .ico {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        display: grid;
        place-items: center;
        color: white;
      }
      .sunday-addon .ico svg {
        width: 16px;
        height: 16px;
      }
      .sunday-addon .body {
        flex: 1;
      }
      .sunday-addon .body b {
        display: block;
        font-size: 14.5px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.3;
        margin-bottom: 2px;
      }
      .sunday-addon .body b span {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.12em;
        color: var(--gold-deep);
        margin-left: 8px;
        font-weight: 500;
        opacity: 0.8;
      }
      .sunday-addon .body p {
        font-size: 12.5px;
        line-height: 1.55;
        opacity: 0.7;
        margin: 0;
      }

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

      /* card grid with rich typographic cards */
      .min-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
      }
      .mcard {
        grid-column: span 6;
        position: relative;
        border-radius: 22px;
        padding: 44px 40px 40px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.4s,
          box-shadow 0.4s,
          border-color 0.3s;
        min-height: 360px;
      }
      .mcard:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-2);
        border-color: rgba(212, 165, 116, 0.4);
      }
      .mcard.span-4 {
        grid-column: span 4;
      }
      .mcard.span-5 {
        grid-column: span 5;
      }
      .mcard.span-7 {
        grid-column: span 7;
      }
      .mcard.span-8 {
        grid-column: span 8;
      }
      .mcard.span-12 {
        grid-column: span 12;
      }

      .group-band.dark .mcard {
        background: linear-gradient(
          160deg,
          rgba(255, 255, 255, 0.04),
          rgba(255, 255, 255, 0.01)
        );
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
      }
      .group-band.dark .mcard:hover {
        background: linear-gradient(
          160deg,
          rgba(212, 165, 116, 0.08),
          rgba(255, 255, 255, 0.02)
        );
        border-color: rgba(212, 165, 116, 0.45);
      }

      .mcard-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 28px;
      }
      .mcard .num {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold-deep);
        text-transform: uppercase;
      }
      .group-band.dark .mcard .num {
        color: var(--gold);
        opacity: 0.9;
      }
      .mcard .mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: var(--paper);
        color: var(--navy);
        display: grid;
        place-items: center;
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 500;
        letter-spacing: -0.02em;
        border: 1px solid var(--line);
      }
      .group-band.dark .mcard .mark {
        background: rgba(212, 165, 116, 0.12);
        color: var(--gold);
        border-color: rgba(212, 165, 116, 0.3);
      }
      .mcard h3 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.18;
        letter-spacing: -0.01em;
        color: var(--ink);
        margin-bottom: 6px;
      }
      .group-band.dark .mcard h3 {
        color: white;
      }
      .mcard .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        color: var(--navy);
        opacity: 0.65;
        margin-bottom: 22px;
      }
      .group-band.dark .mcard .en {
        color: var(--gold);
        opacity: 0.75;
      }
      .mcard p {
        font-size: 14.5px;
        line-height: 1.78;
        color: rgba(11, 23, 38, 0.72);
        margin-bottom: 22px;
      }
      .group-band.dark .mcard p {
        color: rgba(255, 255, 255, 0.72);
      }
      .mcard .meta-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        padding-top: 20px;
        margin-top: auto;
        border-top: 1px solid var(--line);
      }
      .group-band.dark .mcard .meta-row {
        border-top-color: rgba(255, 255, 255, 0.08);
      }
      .mcard .meta-row .it {
        display: flex;
        flex-direction: column;
        gap: 3px;
      }
      .mcard .meta-row .k {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold-deep);
        opacity: 0.9;
      }
      .group-band.dark .mcard .meta-row .k {
        color: var(--gold);
        opacity: 0.85;
      }
      .mcard .meta-row .v {
        font-size: 13.5px;
        color: var(--ink-2);
        font-weight: 500;
      }
      .group-band.dark .mcard .meta-row .v {
        color: white;
      }
      .mcard .verse {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        line-height: 1.65;
        color: var(--ink-2);
        padding: 16px 0 18px;
        border-top: 1px dashed var(--line);
        border-bottom: 1px dashed var(--line);
        margin-bottom: 22px;
      }
      .group-band.dark .mcard .verse {
        color: rgba(255, 255, 255, 0.82);
        border-color: rgba(255, 255, 255, 0.12);
      }
      .mcard .verse-ref {
        display: block;
        margin-top: 8px;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        opacity: 0.55;
        font-style: normal;
      }

      /* mcard with photo backdrop */
      .mcard.with-photo {
        color: white;
        background:
          linear-gradient(
            160deg,
            rgba(11, 23, 38, 0.45) 0%,
            rgba(11, 23, 38, 0.86) 80%
          ),
          var(--photo);
        background-size: cover;
        background-position: center;
        border-color: rgba(255, 255, 255, 0.1);
      }
      .mcard.with-photo h3 {
        color: white;
      }
      .mcard.with-photo .en {
        color: var(--gold);
        opacity: 0.85;
      }
      .mcard.with-photo p {
        color: rgba(255, 255, 255, 0.8);
      }
      .mcard.with-photo .mark {
        background: rgba(255, 255, 255, 0.12);
        color: var(--gold);
        border-color: rgba(255, 255, 255, 0.2);
      }
      .mcard.with-photo .num {
        color: var(--gold);
        opacity: 0.95;
      }
      .mcard.with-photo .meta-row {
        border-top-color: rgba(255, 255, 255, 0.15);
      }
      .mcard.with-photo .meta-row .v {
        color: white;
      }
      .mcard.with-photo .meta-row .k {
        color: var(--gold);
      }
      .mcard.with-photo:hover {
        border-color: rgba(212, 165, 116, 0.6);
      }

      /* numbered list inside cards */
      .mlist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
      }
      .mlist li {
        position: relative;
        padding-left: 22px;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(11, 23, 38, 0.78);
      }
      .group-band.dark .mlist li {
        color: rgba(255, 255, 255, 0.78);
      }
      .mcard.with-photo .mlist li {
        color: rgba(255, 255, 255, 0.82);
      }
      .mlist li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }

      /* ─────  RETREAT FEATURE — full-bleed cinematic  ───── */
      .retreat {
        position: relative;
        padding: 0;
        overflow: hidden;
      }
      .retreat-bg {
        position: relative;
        min-height: 640px;
        background:
          linear-gradient(
            120deg,
            rgba(11, 23, 38, 0.65) 0%,
            rgba(11, 23, 38, 0.25) 60%,
            transparent 100%
          ),
          linear-gradient(0deg, rgba(11, 23, 38, 0.6), transparent 50%),
          url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=2400&auto=format&fit=crop&q=80");
        background-size: cover;
        background-position: center;
        color: white;
        display: flex;
        align-items: center;
        padding: 130px 48px;
      }
      .retreat-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        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;
        opacity: 0.3;
        pointer-events: none;
      }
      .retreat-inner {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: end;
        position: relative;
        z-index: 2;
      }
      .retreat-num {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.22em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .retreat-num::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--gold);
      }
      .retreat-bg h2 {
        font-size: clamp(48px, 6vw, 84px);
        font-weight: 700;
        line-height: 1.04;
        letter-spacing: -0.02em;
        margin-bottom: 22px;
      }
      .retreat-bg h2 em {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--gold);
      }
      .retreat-bg .en {
        font-family: var(--serif);
        font-style: italic;
        font-size: 22px;
        opacity: 0.7;
        margin-bottom: 26px;
      }
      .retreat-bg p {
        font-size: 16px;
        line-height: 1.78;
        opacity: 0.84;
        max-width: 540px;
      }
      .retreat-stats {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 20px;
        padding: 8px 0;
      }
      .retreat-stats .row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 24px;
        align-items: center;
        padding: 18px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .retreat-stats .row:last-child {
        border-bottom: none;
      }
      .retreat-stats .k {
        font-family: var(--mono);
        font-size: 10.5px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.62;
      }
      .retreat-stats .v {
        font-family: var(--serif);
        font-size: 28px;
        font-weight: 500;
        color: var(--gold);
        line-height: 1;
      }
      .retreat-stats .v small {
        font-family: var(--sans);
        font-size: 13px;
        font-weight: 500;
        color: white;
        opacity: 0.7;
        margin-left: 6px;
      }

      /* ─────  JOIN CTA  ───── */
      .join {
        padding: 130px 48px;
        background: var(--paper-2);
        position: relative;
      }
      .join-inner {
        max-width: 1400px;
        margin: 0 auto;
        background: white;
        border-radius: 28px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-2);
        padding: 130px 80px;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .join-inner::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -120px;
        width: 420px;
        height: 420px;
        background: radial-gradient(
          circle,
          rgba(212, 165, 116, 0.16),
          transparent 70%
        );
        pointer-events: none;
      }
      .join h2 {
        font-size: clamp(34px, 4vw, 52px);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.02em;
        color: var(--ink);
        margin-bottom: 18px;
      }
      .join h2 .accent {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        color: var(--navy);
      }
      .join .eb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold-deep);
        margin-bottom: 22px;
      }
      .join .eb::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .join p {
        font-size: 16px;
        line-height: 1.78;
        color: rgba(11, 23, 38, 0.7);
        max-width: 460px;
        margin-bottom: 24px;
      }
      .join-steps {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
        z-index: 1;
      }
      .join-step {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 22px 26px;
        background: var(--paper-2);
        border: 1px solid var(--line);
        border-radius: 16px;
        transition:
          background 0.2s,
          border-color 0.2s,
          transform 0.2s;
      }
      .join-step:hover {
        background: white;
        border-color: rgba(212, 165, 116, 0.4);
        transform: translateX(4px);
      }
      .join-step-ico {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--gold), var(--gold-deep));
        display: grid;
        place-items: center;
        color: white;
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 500;
        box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
      }
      .join-step-body {
        flex: 1;
      }
      .join-step-body b {
        display: block;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
        color: var(--ink);
      }
      .join-step-body span {
        font-size: 13px;
        opacity: 0.65;
        line-height: 1.55;
        color: var(--ink-2);
      }
      .join-step svg {
        width: 18px;
        height: 18px;
        opacity: 0.4;
        transition:
          opacity 0.2s,
          transform 0.2s;
        color: var(--navy);
      }
      .join-step:hover svg {
        opacity: 1;
        transform: translateX(4px);
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 16px 28px;
        border-radius: 999px;
        background: var(--navy);
        color: white;
        font-size: 14px;
        font-weight: 600;
        transition:
          background 0.2s,
          transform 0.2s;
        box-shadow: var(--shadow-1);
      }
      .btn-primary:hover {
        background: var(--gold-deep);
        transform: translateY(-2px);
      }
      .btn-primary svg {
        width: 16px;
        height: 16px;
      }

      /* ─────  FOOTER (synced)  ───── */
      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(24px);
        transition:
          opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
          transform 0.9s cubic-bezier(0.2, 0.7, 0.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;
      }

      /* ─────  MOBILE NAV TOGGLE  ───── */
      .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: rgba(30, 58, 95, 0.04);
        border: 1px solid rgba(30, 58, 95, 0.18);
        border-radius: 999px;
        cursor: pointer;
      }
      .nav-toggle span {
        width: 18px;
        height: 1.6px;
        background: var(--ink);
        border-radius: 2px;
        transition:
          transform 0.3s,
          opacity 0.3s,
          background 0.4s;
      }
      .nav-toggle.is-open {
        background: var(--ink);
        border-color: var(--ink);
      }
      .nav-toggle.is-open span {
        background: white;
      }
      .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.is-active {
        color: var(--gold);
      }
      .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  ───── */
      @media (max-width: 1100px) {
        .nav {
          padding: 14px 24px;
        }
        .page-hero {
          padding: 150px 24px 80px;
        }
        .page-hero-inner {
          grid-template-columns: 1fr;
          gap: 50px;
        }
        .hero-stats {
          flex-direction: row;
          border-left: none;
          border-top: 1px solid rgba(212, 165, 116, 0.3);
          padding-left: 0;
          padding-top: 30px;
          gap: 32px;
          flex-wrap: wrap;
        }
        .hero-stat + .hero-stat {
          padding-top: 0;
          border-top: none;
        }

        .index-band {
          padding: 24px;
        }

        section,
        .group-band,
        .sunday,
        .join {
          padding: 80px 24px;
        }

        .sunday-card {
          grid-template-columns: 1fr;
          margin-left: 24px;
          margin-right: 24px;
        }
        .sunday-cover {
          padding: 44px 32px;
          min-height: auto;
        }
        .sunday-cover-top h3 {
          font-size: 42px;
        }
        .sunday-body {
          padding: 44px 32px;
        }
        .sunday-body h4 {
          font-size: 30px;
        }

        .min-grid {
          grid-template-columns: 1fr;
          gap: 18px;
        }
        .mcard,
        .mcard.span-4,
        .mcard.span-5,
        .mcard.span-7,
        .mcard.span-8,
        .mcard.span-12 {
          grid-column: span 1;
        }
        .mcard {
          padding: 36px 30px;
          min-height: auto;
        }
        .mcard h3 {
          font-size: 26px;
        }

        .retreat-bg {
          padding: 90px 24px;
          min-height: auto;
        }
        .retreat-inner {
          grid-template-columns: 1fr;
          gap: 50px;
        }

        .join-inner {
          padding: 50px 36px;
          grid-template-columns: 1fr;
          gap: 44px;
        }

        footer {
          padding: 70px 24px 28px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 44px;
          margin-bottom: 48px;
        }
        .footer-brand {
          max-width: none;
        }
      }

      @media (max-width: 720px) {
        .nav {
          padding: 12px 24px;
        }
        .nav-links {
          display: none;
        }
        .nav-toggle {
          display: flex;
        }
        .nav-name span {
          display: none;
        }
        .nav-name b {
          font-size: 13px;
        }
        .nav-mark {
          width: 38px;
          height: 38px;
        }

        .page-hero {
          padding: 120px 24px 60px;
        }
        .page-title {
          font-size: clamp(34px, 10vw, 50px);
        }
        .page-lede {
          font-size: 15px;
        }
        .hero-stat .v {
          font-size: 36px;
        }

        .index-band {
          padding: 24px;
        }
        .index-inner {
          gap: 16px;
        }
        .index-list a {
          font-size: 11.5px;
          padding: 5px 10px;
        }

        section,
        .group-band,
        .sunday,
        .join {
          padding: 60px 24px;
        }

        .sec-head {
          margin-bottom: 32px;
        }
        .sec-title {
          font-size: clamp(26px, 8vw, 38px);
        }

        .sunday-cover {
          padding: 34px 24px;
        }
        .sunday-cover-top h3 {
          font-size: 32px;
        }
        .sun-svc {
          grid-template-columns: 64px 1fr;
          gap: 12px;
          padding: 12px 14px;
        }
        .sun-svc .when {
          font-size: 20px;
        }
        .sun-svc .tag {
          display: none;
        }
        .sunday-body {
          padding: 34px 24px;
        }
        .sunday-body h4 {
          font-size: 24px;
        }
        .sunday-flow {
          grid-template-columns: 1fr;
        }
        .sunday-flow .item {
          border-right: none;
          padding-right: 0;
          padding-left: 0 !important;
        }
        .sunday-flow .item:nth-child(n + 2) {
          border-top: 1px dashed var(--line);
        }

        .mcard {
          padding: 28px 24px;
        }
        .mcard h3 {
          font-size: 22px;
        }
        .mcard .en {
          font-size: 14px;
          margin-bottom: 16px;
        }
        .mcard p {
          font-size: 14px;
        }
        .mcard .meta-row {
          gap: 14px 20px;
        }

        .retreat-bg {
          padding: 70px 24px;
        }
        .retreat-stats .row {
          padding: 14px 24px;
        }
        .retreat-stats .v {
          font-size: 22px;
        }

        .join-inner {
          padding: 36px 24px;
          border-radius: 18px;
        }
        .join h2 {
          font-size: clamp(26px, 8vw, 36px);
        }
        .join-step {
          padding: 16px 24px;
          gap: 14px;
        }
        .join-step-ico {
          width: 40px;
          height: 40px;
          font-size: 18px;
        }

        footer {
          padding: 60px 24px 28px;
        }
        .footer-grid {
          gap: 40px;
          margin-bottom: 44px;
        }
        .footer-contact {
          grid-template-columns: 1fr;
          gap: 4px;
        }
        .footer-bottom {
          font-size: 10px;
          letter-spacing: 0.12em;
        }
      }
