/* stillq.com — Still Point Zen 禪路
   Design: ink, mist, stone, and quiet gold */

:root {
  --ink: #121814;
  --ink-soft: #1c2520;
  --moss: #2f4638;
  --moss-mid: #3d5a48;
  --sage: #6b8574;
  --mist: #a8b8ad;
  --cloud: #d8e0da;
  --paper: #f4f0e8;
  --paper-warm: #ebe4d6;
  --cream: #faf7f1;
  --gold: #b8956a;
  --gold-soft: #d4bc94;
  --gold-glow: rgba(184, 149, 106, 0.18);
  --border: rgba(47, 70, 56, 0.12);
  --border-strong: rgba(47, 70, 56, 0.22);
  --shadow: 0 20px 60px rgba(18, 24, 20, 0.08);
  --shadow-soft: 0 8px 30px rgba(18, 24, 20, 0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1120px;
  --header-h: 72px;
  --font-display: "Cormorant Garamond", "Noto Serif TC", "Noto Serif SC", Georgia, serif;
  --font-body: "Source Sans 3", "Noto Sans TC", "Noto Sans SC", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input {
  font: inherit;
}

/* ——— Atmosphere ——— */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  top: -20vw;
  right: -15vw;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.9;
}

.ambient::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  bottom: -10vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(107, 133, 116, 0.12) 0%, transparent 70%);
}

/* ——— Layout ——— */
.site-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--moss);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--sage);
  max-width: 36rem;
  line-height: 1.75;
}

.zh {
  font-family: "Noto Serif TC", "Noto Sans TC", serif;
  font-weight: 400;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(250, 247, 241, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 247, 241, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--moss);
  display: grid;
  place-items: center;
  position: relative;
}

.logo-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  color: var(--moss);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav a:hover,
.nav a.active {
  background: rgba(47, 70, 56, 0.08);
  color: var(--ink);
}

.nav-cta {
  margin-left: 0.5rem !important;
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--moss) !important;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.35rem;
  padding: 3px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.6);
  flex-shrink: 0;
}

.lang-switch button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch button:hover {
  color: var(--ink);
}

.lang-switch button.active {
  background: var(--ink);
  color: var(--cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .header-actions {
    margin-left: auto;
  }
}

html[data-lang="zh-Hant"] body,
html[data-lang="zh-Hans"] body,
html[lang^="zh"] body {
  font-feature-settings: "palt" 1;
}

html[data-lang="zh-Hant"] .section-title,
html[data-lang="zh-Hans"] .section-title,
html[data-lang="zh-Hant"] .hero h1,
html[data-lang="zh-Hans"] .hero h1,
html[data-lang="zh-Hant"] .page-hero h1,
html[data-lang="zh-Hans"] .page-hero h1 {
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle.open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(18, 24, 20, 0.18);
}

.btn-primary:hover {
  background: var(--moss);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--moss);
  background: rgba(47, 70, 56, 0.05);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c9a97a);
  color: var(--ink);
}

/* ——— Hero ——— */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  animation: pulse 3.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(184, 149, 106, 0.08);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 .line-zh {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  color: var(--moss);
  margin-top: 0.55rem;
  font-weight: 400;
}

.hero-copy {
  font-size: 1.15rem;
  color: var(--sage);
  max-width: 32rem;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-meta span {
  font-size: 0.8rem;
  color: var(--sage);
  letter-spacing: 0.04em;
}

/* Hero visual — still point mandala */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.still-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  animation: float 10s ease-in-out infinite;
}

.still-ring-2 {
  inset: 12%;
  border-style: dashed;
  border-color: rgba(184, 149, 106, 0.35);
  animation-duration: 14s;
  animation-direction: reverse;
}

.still-ring-3 {
  inset: 26%;
  border-color: rgba(47, 70, 56, 0.18);
  animation-duration: 18s;
}

.still-core {
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 45%, var(--moss) 100%);
  box-shadow: 0 0 60px var(--gold-glow), inset 0 0 30px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.still-core::after {
  content: "禪";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(250, 247, 241, 0.92);
  letter-spacing: 0.1em;
}

.orbit-label {
  position: absolute;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

.orbit-label.t {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-label.r {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}
.orbit-label.b {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-label.l {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ——— Pillars ——— */
.pillars {
  background: linear-gradient(180deg, transparent, rgba(232, 228, 216, 0.55) 20%, rgba(232, 228, 216, 0.55) 80%, transparent);
}

.pillars-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.pillar-card {
  background: rgba(250, 247, 241, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 149, 106, 0.35);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.pillar-card .zh-sub {
  font-size: 0.9rem;
  color: var(--sage);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--moss);
  line-height: 1.65;
  flex: 1;
}

/* ——— Quote band ——— */
.quote-band {
  background: var(--ink);
  color: var(--cloud);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "禪";
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Serif TC", serif;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-inner {
  position: relative;
  max-width: 820px;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.4;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.quote-band .zh-quote {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.quote-source {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ——— Reflections ——— */
.reflection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.reflection-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.reflection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.reflection-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(160deg, var(--ink-soft), var(--moss));
  color: var(--cream);
  border: none;
  padding: 2.25rem;
  justify-content: space-between;
  min-height: 420px;
}

.reflection-card.featured .tag {
  color: var(--gold-soft);
  border-color: rgba(212, 188, 148, 0.3);
}

.reflection-card.featured h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  margin: 1.25rem 0 1rem;
}

.reflection-card.featured p {
  color: var(--cloud);
  font-size: 1.05rem;
  max-width: 34rem;
}

.reflection-card.featured .card-footer {
  margin-top: 2rem;
  color: var(--gold-soft);
}

.reflection-body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.reflection-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.reflection-body .zh-sub {
  font-size: 0.88rem;
  color: var(--sage);
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em;
}

.reflection-body p {
  font-size: 0.95rem;
  color: var(--moss);
  line-height: 1.65;
  flex: 1;
}

.card-footer {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-footer::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.reflection-card:hover .card-footer::after {
  transform: translateX(4px);
}

/* ——— Practice teaser ——— */
.practice-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--paper-warm);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
}

.practice-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.practice-copy p {
  color: var(--moss);
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

.breath-demo {
  aspect-ratio: 1;
  max-width: 320px;
  margin-inline: auto;
  position: relative;
  display: grid;
  place-items: center;
}

.breath-circle {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(212, 188, 148, 0.5), rgba(47, 70, 56, 0.25) 60%, transparent);
  border: 1px solid rgba(184, 149, 106, 0.4);
  animation: breathe 8s ease-in-out infinite;
}

.breath-ring {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(107, 133, 116, 0.35);
}

.breath-label {
  position: absolute;
  bottom: 8%;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ——— Journey timeline ——— */
.journey-steps {
  margin-top: 3rem;
  display: grid;
  gap: 0;
  position: relative;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--mist));
}

.journey-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  padding: 1.1rem 0;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--cream);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.step-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.step-body {
  background: rgba(250, 247, 241, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
}

.step-body .phase {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.95rem;
  color: var(--moss);
}

/* ——— Video gallery ——— */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink-soft);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.5s var(--ease), opacity 0.35s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
  opacity: 1;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-badge span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.92);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease);
}

.video-card:hover .play-badge span {
  transform: scale(1.06);
}

.video-info {
  padding: 1.15rem 1.2rem 1.35rem;
}

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.video-info p {
  font-size: 0.88rem;
  color: var(--sage);
}

/* ——— CTA ——— */
.cta-section {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.cta-box {
  text-align: center;
  background: linear-gradient(145deg, var(--ink) 0%, #243028 100%);
  color: var(--cream);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -80px;
  right: -40px;
}

.cta-box .section-label {
  color: var(--gold-soft);
  justify-content: center;
}

.cta-box .section-label::before {
  display: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: var(--mist);
  max-width: 30rem;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: rgba(232, 228, 216, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--sage);
  max-width: 16rem;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: var(--moss);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--sage);
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(232, 228, 216, 0.45), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--sage);
  max-width: 36rem;
  line-height: 1.75;
}

/* ——— Article / reflection detail ——— */
.article {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(5rem, 9vw, 7rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--sage);
  letter-spacing: 0.04em;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.prose .zh-block {
  font-family: "Noto Serif TC", serif;
  font-size: 1.05rem;
  color: var(--moss);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.9;
}

.prose blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ——— Practice timer ——— */
.timer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.timer-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer-ring-wrap {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  margin-bottom: 1.75rem;
}

.timer-ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.timer-ring-wrap .bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.timer-ring-wrap .fg {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s linear;
}

.timer-display {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(0);
}

.timer-display .time {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.timer-display .phase-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.6rem;
}

.timer-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.timer-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.preset {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--cloud);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}

.preset:hover,
.preset.active {
  border-color: var(--gold-soft);
  background: rgba(212, 188, 148, 0.12);
  color: var(--cream);
}

.guidance-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.15rem;
}

.guidance-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.guidance-card ol {
  padding-left: 1.2rem;
  color: var(--moss);
}

.guidance-card li {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.guidance-card p {
  color: var(--moss);
  font-size: 0.98rem;
}

/* ——— Path phases grid ——— */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.phase-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(250, 247, 241, 0.8);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phase-card:hover {
  border-color: rgba(184, 149, 106, 0.4);
  box-shadow: var(--shadow-soft);
}

.phase-card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.phase-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.phase-card .zh-sub {
  font-size: 0.88rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.phase-card p {
  font-size: 0.93rem;
  color: var(--moss);
  line-height: 1.6;
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .hero-grid,
  .practice-panel,
  .timer-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reflection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reflection-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: auto;
  }

  .video-grid,
  .phase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    max-width: 340px;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(250, 247, 241, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 0.5rem !important;
  }

  .menu-toggle {
    display: flex;
  }

  .pillar-grid,
  .reflection-grid,
  .video-grid,
  .phase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reflection-card.featured {
    grid-column: auto;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .orbit-label.r,
  .orbit-label.l {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .breath-circle,
  .still-ring,
  .hero-eyebrow .dot,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
