:root {
  --bg: oklch(0.976 0.008 88);
  --surface: oklch(1 0 0);
  --fg: oklch(0.28 0.02 55);
  --muted: oklch(0.5 0.02 55);
  --border: oklch(0.905 0.012 85);
  --accent: oklch(0.52 0.165 30);
  --accent-hover: oklch(0.455 0.15 30);
  --accent-soft: oklch(0.94 0.03 30);
  --ink: oklch(0.24 0.015 55);
  --ink-2: oklch(0.29 0.018 55);
  --ink-raise: oklch(0.955 0.01 88);
  --ink-muted: oklch(0.82 0.015 70);
  --font-display: "Noto Serif TC", "Noto Sans TC", serif;
  --font-body: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-label: "Encode Sans Condensed", "Noto Sans TC", sans-serif;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --shadow-1: 0 1px 2px oklch(0.28 0.02 55 / 0.05), 0 8px 24px oklch(0.28 0.02 55 / 0.08);
  --shadow-2: 0 2px 6px oklch(0.28 0.02 55 / 0.06), 0 18px 44px oklch(0.28 0.02 55 / 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid oklch(0.62 0.19 30);
  outline-offset: 3px;
  border-radius: 3px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--surface); }
.section--ink { background: var(--ink); color: var(--ink-raise); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow--light { color: oklch(0.78 0.07 30); }
.eyebrow--light::before { background: oklch(0.78 0.07 30); }

.section-head { margin-bottom: clamp(2rem, 4.5vw, 3.25rem); max-width: 680px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-top: 0.9rem;
}
.section-head p { color: var(--muted); margin-top: 0.9rem; font-size: 1.02rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  text-align: center;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: oklch(0.96 0.01 88 / 0.55); color: var(--ink-raise); }
.btn--ghost:hover { background: oklch(0.96 0.01 88 / 0.14); border-color: oklch(0.96 0.01 88 / 0.9); }
.btn--outline { background: transparent; border-color: oklch(0.38 0.02 55); color: var(--fg); }
.btn--outline:hover { background: var(--fg); color: var(--surface); }
.btn--small { min-height: 40px; padding: 0.45rem 1.1rem; font-size: 0.92rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--fg);
  padding: 0.5rem 0;
}
.text-link svg { transition: transform 0.25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.text-link--light { color: var(--ink-raise); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--fg);
  color: #fff;
  padding: 0.6rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.announce {
  background: var(--ink);
  color: var(--ink-raise);
  font-size: 0.9rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  overflow: hidden;
}
.announce-tag {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  padding: 0.18rem 0.8rem;
  border-radius: 999px;
}
.announce-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.announce:hover .announce-track { animation-play-state: paused; }
.announce-track a { color: var(--ink-raise); opacity: 0.9; }
.announce-track a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.announce-track .sep { opacity: 0.35; }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.985 0.006 88 / 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { width: 46px; height: auto; }
.brand-lockup { line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.brand-sub {
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.main-nav a {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--fg);
  border-radius: 8px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.18rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--fg);
}
.menu-toggle span { display: flex; flex-direction: column; gap: 4px; }
.menu-toggle span i {
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem var(--gutter) 1.25rem;
  border-top: 1px solid var(--border);
  background: oklch(0.985 0.006 88 / 0.98);
}
.mobile-nav a {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--fg);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a.active { color: var(--accent); }

.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink-raise);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, oklch(0.2 0.015 55 / 0.88) 0%, oklch(0.2 0.015 55 / 0.55) 52%, oklch(0.2 0.015 55 / 0.2) 100%);
}
.hero-inner { padding: clamp(4.5rem, 10vh, 7rem) 0 clamp(3.5rem, 8vh, 5rem); max-width: 720px; }
.hero .eyebrow { color: oklch(0.85 0.06 55); }
.hero .eyebrow::before { background: oklch(0.85 0.06 55); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 1.1rem 0 1.1rem;
  text-shadow: 0 2px 24px oklch(0 0 0 / 0.3);
}
.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: oklch(0.93 0.015 80);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-verse {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  max-width: 340px;
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.7;
  color: oklch(0.92 0.02 75);
  text-shadow: 0 1px 10px oklch(0 0 0 / 0.4);
}
.hero-verse strong { display: block; margin-top: 0.35rem; font-size: 0.8rem; letter-spacing: 0.12em; color: oklch(0.95 0.01 88); }

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--ink-raise);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% 60%;
  background: radial-gradient(closest-side, oklch(0.52 0.165 30 / 0.28), transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 1rem 0 0.8rem;
}
.page-hero p { color: var(--ink-muted); max-width: 620px; font-size: 1.05rem; }

.info-strip { border-bottom: 1px solid var(--border); background: var(--surface); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-item {
  padding: 1.4rem 1.6rem 1.4rem 0;
  border-right: 1px solid var(--border);
}
.info-item:last-child { border-right: 0; }
.info-item .k {
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}
.info-item .v { font-weight: 700; font-size: 1rem; line-height: 1.5; color: var(--fg); }
.info-item .s { font-size: 0.86rem; color: var(--muted); }

.grid-min { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: oklch(0.85 0.02 70); }

.ministry-card { position: relative; }
.ministry-card .media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.ministry-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ministry-card:hover .media img { transform: scale(1.06); }
.ministry-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.015 55 / 0.55), transparent 55%);
}
.ministry-card .badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px oklch(0 0 0 / 0.35);
}
.ministry-card .body { padding: 1.35rem 1.5rem 1.5rem; }
.ministry-card .body p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1rem; min-height: 2.7em; }

.news-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  border: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease);
}
.news-featured:hover { box-shadow: var(--shadow-2); }
.news-featured .media { position: absolute; inset: 0; z-index: -2; }
.news-featured .media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, oklch(0.18 0.015 55 / 0.92) 0%, oklch(0.18 0.015 55 / 0.4) 55%, transparent);
}
.news-featured .body { padding: 2rem 2rem 1.9rem; color: #fff; }
.news-featured .body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1.4; margin: 0.7rem 0 0.55rem; }
.news-featured .body p { color: oklch(0.9 0.015 80); font-size: 0.98rem; max-width: 640px; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.chip--soft { background: var(--accent-soft); color: var(--accent); }
.meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--muted); }
.news-featured .meta { color: oklch(0.82 0.015 70); }

.news-list { display: flex; flex-direction: column; gap: 1rem; }
.news-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.news-item:hover { transform: translateX(4px); box-shadow: var(--shadow-1); border-color: oklch(0.82 0.03 40); }
.news-item img { width: 120px; height: 82px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.news-item h4 { font-size: 0.98rem; font-weight: 700; line-height: 1.5; margin: 0.3rem 0 0.35rem; }
.news-item h4:hover { color: var(--accent); }

.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vision-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vision-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.vision-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), oklch(0.62 0.16 30));
  opacity: 0.85;
}
.vision-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.vision-stat .num small { font-size: 0.5em; font-weight: 700; margin-left: 0.1em; color: var(--muted); }
.vision-stat h4 { font-family: var(--font-display); font-size: 1.2rem; margin: 0.9rem 0 0.55rem; color: var(--fg); }
.vision-stat p { color: var(--muted); font-size: 0.93rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.service-card .when {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.service-card .when small { display: block; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 0.4rem; font-weight: 700; }
.service-card h4 { font-size: 1.02rem; margin: 0.55rem 0 0.3rem; }
.service-card p { color: var(--muted); font-size: 0.88rem; }

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--border);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -70% 0;
  background: radial-gradient(closest-side, oklch(0.52 0.165 30 / 0.24), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 1rem 0 1rem;
}
.cta-inner p { color: var(--ink-muted); margin-bottom: 1.75rem; max-width: 480px; }
.cta-info { border-left: 1px solid oklch(0.9 0.01 88 / 0.18); padding-left: clamp(1.5rem, 3vw, 2.5rem); }
.cta-info dl { margin: 0; }
.cta-info dt { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--ink-muted); text-transform: uppercase; margin-top: 1.1rem; }
.cta-info dd { margin: 0.15rem 0 0; font-weight: 600; color: var(--ink-raise); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-1);
}
.form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.field label span { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid oklch(0.84 0.012 85);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.52 0.165 30 / 0.16);
  background: var(--surface);
}
.field input[aria-invalid="true"] { border-color: var(--accent); }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  background: oklch(0.94 0.03 140);
  border: 1px solid oklch(0.7 0.09 140);
  color: oklch(0.38 0.07 150);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.form-success.show { display: flex; }

.article-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.article-row.reverse { direction: rtl; }
.article-row.reverse > * { direction: ltr; }
.article-row .media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.article-row .media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-row h3 { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.45; margin: 0.9rem 0 0.8rem; }
.article-row p { color: var(--muted); margin-bottom: 1.2rem; }

.zone-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.zone-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.75rem; }
.zone-card h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.55rem; }
.zone-card h4 svg { color: var(--accent); }
.zone-card ul li { position: relative; padding-left: 1.2rem; color: var(--fg); font-size: 0.97rem; }
.zone-card ul li::before { content: "◆"; position: absolute; left: 0; top: 0; font-size: 0.55rem; color: var(--accent); transform: translateY(0.5rem); }

.method-list { display: flex; flex-direction: column; gap: 1.25rem; }
.method {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.method:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.method-head { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.7rem; }
.method-head .n {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.method-head h3 { font-family: var(--font-display); font-size: 1.28rem; }
.method p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.method .bank {
  background: var(--bg);
  border: 1px dashed oklch(0.84 0.012 85);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.method .bank strong { color: var(--fg); }

.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.filter-btn {
  min-height: 44px;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fg);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.article-card { display: flex; flex-direction: column; }
.article-card .media { aspect-ratio: 16 / 10; overflow: hidden; }
.article-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.article-card:hover .media img { transform: scale(1.06); }
.article-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.article-card .body h3 { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; }
.article-card .body h3:hover { color: var(--accent); }
.article-card .body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.article-card.hidden { display: none; }

.site-footer { background: var(--ink); color: var(--ink-muted); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.footer-brand .brand-name { color: var(--ink-raise); }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-raise);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--ink-muted); }
.footer-col a:hover { color: var(--ink-raise); }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid oklch(0.9 0.01 88 / 0.22);
  color: var(--ink-raise);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid oklch(0.9 0.01 88 / 0.14); padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--ink-raise); }
.footer-verse { font-family: var(--font-display); font-size: 0.86rem; color: oklch(0.82 0.02 70); max-width: 420px; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item { border-bottom: 1px solid var(--border); }
  .info-item:nth-child(2) { border-right: 0; }
  .info-item:nth-child(3), .info-item:nth-child(4) { border-bottom: 0; }
  .grid-3, .grid-4, .vision-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-info { border-left: 0; padding-left: 0; border-top: 1px solid oklch(0.9 0.01 88 / 0.18); padding-top: 1.5rem; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav.open { display: flex; }
  .hero-verse { position: static; text-align: left; margin-top: 1.75rem; }
  .article-row, .article-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .zone-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .vision-grid, .service-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .info-item:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-featured { min-height: 360px; }
  .news-item { flex-direction: column; }
  .news-item img { width: 100%; height: 160px; }
  .announce-track { animation-duration: 24s; }
  .hero { min-height: 74vh; }
  .header-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
