/* ── Design Tokens ── */
:root {
  --font-serif:   "Shippori Mincho", serif;
  --font-display: "Cormorant Garamond", serif;
  --font-ui:      "Zen Kaku Gothic New", sans-serif;

  --bg-base:   #07100d;
  --bg-nav:    rgba(7,16,13,0.82);
  --bg-forest: radial-gradient(130% 100% at 50% 0%, #0e1e14 0%, #091510 50%, #070f0c 100%);
  --bg-river:  radial-gradient(120% 80% at 30% 60%, #0b1a18 0%, #091310 55%, #070f0c 100%);
  --bg-mist:   radial-gradient(110% 90% at 50% 40%, #101f19 0%, #0a1712 60%, #07100d 100%);
  --bg-deep:   radial-gradient(130% 100% at 30% 20%, #0a1a14 0%, #081410 60%, #070f0c 100%);

  --text-primary:   #f1ece0;
  --text-secondary: #ece7da;
  --text-body:      rgba(225,219,205,0.7);
  --text-muted:     rgba(225,219,205,0.55);
  --text-faint:     rgba(225,219,205,0.4);
  --text-logo:      #e7e0d2;

  --gold:           #c8a96a;
  --gold-bright:    #e0c485;
  --gold-dark:      #b08a4a;
  --gold-label:     rgba(200,169,106,0.82);
  --gold-selection: rgba(200,169,106,0.22);

  --green-accent:   #5a8f6a;
  --green-soft:     rgba(90,143,106,0.35);
  --green-faint:    rgba(90,143,106,0.14);

  --border-gold:    rgba(200,169,106,0.18);
  --border-subtle:  rgba(236,231,218,0.13);
  --border-faint:   rgba(236,231,218,0.08);
  --border-grid:    rgba(236,231,218,0.1);

  --section-y:      clamp(100px, 14vh, 160px);
  --section-x:      clamp(24px, 5vw, 64px);
  --content-max:    1140px;
  --grid-gap:       clamp(32px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-base); }
body {
  font-family: var(--font-serif);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-selection); }
input, button { font-family: inherit; }
input::placeholder { color: rgba(236,231,218,0.32); }

/* ── Vignette ── */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background: radial-gradient(120% 90% at 50% 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.38) 100%);
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px var(--section-x);
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236,231,218,0.07);
}

.nav-logo-wrap { flex: 0 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .16em;
  color: var(--text-logo);
  display: block;
  line-height: 1;
}
.nav-sub {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: .28em;
  color: var(--gold-label);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0 auto;
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: .24em;
  color: rgba(236,231,218,0.72);
}
.nav-links a:hover { color: var(--gold); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.nav-icon {
  background: none;
  border: none;
  color: rgba(236,231,218,0.7);
  cursor: pointer;
  padding: 4px;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--gold); }
.nav-cart-badge {
  position: relative;
}
.nav-cart-badge::after {
  content: '0';
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: var(--bg-base);
  font-family: var(--font-ui);
  font-size: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(236,231,218,0.8);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,16,13,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }
.nav-overlay a {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .3em;
  color: rgba(236,231,218,0.8);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(236,231,218,0.6);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  overflow: hidden;
  background: var(--bg-forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.68);
  transform: scale(1.02);
}

/* Forest / river landscape atmosphere */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,16,13,0.78) 0%, rgba(7,16,13,0.34) 46%, rgba(7,16,13,0.68) 100%),
    linear-gradient(to top, rgba(7,16,13,0.96) 0%, rgba(7,16,13,0.38) 52%, rgba(7,16,13,0.62) 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 95% 55% at 54% 18%, rgba(200,169,106,0.24) 0%, transparent 48%),
    radial-gradient(ellipse 120% 60% at 20% 70%, rgba(24,56,36,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(7,16,13,0.72) 0%, transparent 80%);
}

/* Misty mountain silhouette */
.hero-mountains {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 28%;
  display: none;
}
.hero-mountains::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 50%;
  height: 100%;
  background: rgba(15,35,24,0.55);
  clip-path: polygon(0 100%, 20% 20%, 40% 55%, 55% 5%, 70% 50%, 80% 25%, 100% 60%, 100% 100%);
}
.hero-mountains::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 55%;
  height: 85%;
  background: rgba(12,28,20,0.5);
  clip-path: polygon(0 70%, 10% 40%, 25% 65%, 40% 15%, 58% 55%, 72% 30%, 88% 55%, 100% 35%, 100% 100%, 0 100%);
}

/* River shimmer */
.hero-river {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  left: 15%;
  right: 15%;
  height: 18%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(90,143,106,0.06) 40%,
    rgba(180,210,190,0.04) 60%,
    transparent 100%
  );
  border-radius: 50%;
  animation: riverShimmer 6s ease-in-out infinite;
}

/* Light rays */
.hero-rays {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(rgba(200,169,106,0.15), transparent);
  box-shadow:
    -120px 0 60px 20px rgba(200,169,106,0.04),
    120px 0 60px 20px rgba(200,169,106,0.03);
}

/* Mist particles */
.hero-mist {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 80% 20% at 30% 55%, rgba(210,225,216,0.11) 0%, transparent 70%),
    radial-gradient(ellipse 70% 18% at 72% 58%, rgba(210,225,216,0.08) 0%, transparent 72%);
  animation: mistDrift 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: .5em;
  color: var(--gold-label);
  margin: 0 0 48px;
}

.hero-h1 {
  margin: 0 0 32px;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.75;
  letter-spacing: .1em;
  color: var(--text-primary);
}

.hero-sub {
  margin: 0 0 56px;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 2.4;
  letter-spacing: .1em;
  color: var(--text-body);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}

.btn-primary {
  background: transparent;
  border: 1px solid rgba(200,169,106,0.55);
  color: var(--gold);
  padding: 16px 44px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: .28em;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-primary:hover {
  background: rgba(200,169,106,0.1);
  border-color: rgba(200,169,106,0.85);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .46em;
  color: rgba(236,231,218,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(rgba(200,169,106,0.5), rgba(200,169,106,0));
  animation: scrollLine 2.8s ease-in-out infinite;
}

/* ── Section: 4 Values ── */
.values-section {
  padding: var(--section-y) var(--section-x);
  text-align: center;
}
.values-header { margin-bottom: clamp(56px, 8vh, 96px); }
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: .46em;
  color: var(--gold-label);
  margin-bottom: 18px;
}
.section-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.65;
  letter-spacing: .1em;
  color: var(--text-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-grid);
  border: 1px solid var(--border-grid);
  max-width: var(--content-max);
  margin: 0 auto;
}

.value-card {
  background: var(--bg-base);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 3vw, 40px);
  text-align: center;
  transition: background 0.25s;
}
.value-card:hover { background: rgba(90,143,106,0.06); }

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  border: 1px solid rgba(200,169,106,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.value-name {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .14em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.value-desc {
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: .06em;
  color: var(--text-muted);
}

/* ── Section: Experience Cards ── */
.experience-section {
  padding: var(--section-y) var(--section-x);
  background: var(--bg-forest);
}
.experience-header {
  max-width: var(--content-max);
  margin: 0 auto clamp(48px, 7vh, 80px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  letter-spacing: .26em;
  color: var(--gold);
  transition: gap 0.3s;
}
.text-arrow:hover { gap: 16px; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  max-width: var(--content-max);
  margin: 0 auto;
}
.experience-grid .exp-card:nth-child(4),
.experience-grid .exp-card:nth-child(5) {
  /* last row: 2 cards centered */
}

.exp-card {
  background: rgba(10,22,16,0.7);
  border: 1px solid rgba(236,231,218,0.09);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.exp-card:hover {
  border-color: rgba(200,169,106,0.3);
  transform: translateY(-3px);
}

.exp-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #091610;
}
.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.exp-card:hover .exp-img img {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.88);
}
/* Each card gets a unique nature gradient */
.exp-img-1 { background: radial-gradient(ellipse at 40% 70%, #1a3d28 0%, #0c1f15 50%, #091610 100%); }
.exp-img-2 { background: radial-gradient(ellipse at 60% 30%, #142b1f 0%, #0e2118 50%, #091610 100%); }
.exp-img-3 { background: radial-gradient(ellipse at 30% 60%, #0f2820 0%, #0b1e17 50%, #091610 100%); }
.exp-img-4 { background: radial-gradient(ellipse at 50% 40%, #16311f 0%, #0d2015 50%, #091610 100%); }
.exp-img-5 { background: radial-gradient(ellipse at 70% 60%, #112618 0%, #0c1c13 50%, #091610 100%); }

.exp-img-shimmer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,16,13,0.78) 0%, rgba(7,16,13,0.1) 56%, rgba(7,16,13,0.24) 100%),
    radial-gradient(ellipse 60% 40% at 50% 70%, rgba(180,210,190,0.1) 0%, transparent 70%);
}
.exp-img-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .1em;
  color: rgba(225,219,205,0.4);
}

.exp-body {
  padding: clamp(20px, 2.5vw, 28px);
}
.exp-category {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .34em;
  color: var(--gold-label);
  margin-bottom: 12px;
}
.exp-title {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  letter-spacing: .08em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-place {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.exp-stars {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
}
.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-faint);
}
.exp-duration {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--text-muted);
}
.exp-price {
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--text-primary);
}
.exp-price-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ── Section: Value Record ── */
.record-section {
  padding: var(--section-y) var(--section-x);
}
.record-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
}
.record-img {
  position: relative;
  aspect-ratio: 5/6;
  background: radial-gradient(ellipse at 40% 50%, #182e20 0%, #0f2018 50%, #08140f 100%);
  border: 1px solid rgba(200,169,106,0.18);
  overflow: hidden;
}
.record-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.76);
}
.record-img-shimmer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,16,13,0.78) 0%, rgba(7,16,13,0.12) 58%, rgba(7,16,13,0.44) 100%),
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(180,210,190,0.12) 0%, transparent 70%);
}
.record-img-dot {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 28px 8px rgba(200,169,106,0.5);
  animation: breathe 5s ease-in-out infinite;
}
.record-img-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .06em;
  color: rgba(225,219,205,0.4);
}
.record-text .section-eyebrow { margin-bottom: 24px; }
.record-h2 {
  margin: 0 0 28px;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.7;
  letter-spacing: .1em;
  color: var(--text-primary);
}
.record-body {
  margin: 0 0 36px;
  font-size: 14.5px;
  line-height: 2.5;
  letter-spacing: .07em;
  color: var(--text-body);
}
.nt-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,169,106,0.35);
  padding: 8px 18px;
  margin-bottom: 36px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--gold);
}
.nt-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px 3px rgba(200,169,106,0.5);
  animation: breathe 4s ease-in-out infinite;
}

/* ── Section: Flow ── */
.flow-section {
  padding: var(--section-y) var(--section-x);
  background: var(--bg-mist);
  text-align: center;
  overflow: hidden;
}
.flow-header { margin-bottom: clamp(56px, 8vh, 96px); }

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: var(--content-max);
  margin: 0 auto;
  flex-wrap: nowrap;
}
.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(200,169,106,0.3), rgba(200,169,106,0.1));
}
.flow-num {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: var(--bg-base);
}
.flow-label {
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: .14em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.flow-desc {
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.flow-nt {
  margin-top: 6px;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold-label);
  border: 1px solid rgba(200,169,106,0.28);
  padding: 3px 10px;
}

/* ── Section: Programs ── */
.programs-section {
  padding: var(--section-y) var(--section-x);
}
.programs-header {
  max-width: var(--content-max);
  margin: 0 auto clamp(48px, 7vh, 80px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  max-width: var(--content-max);
  margin: 0 auto;
}
.program-card {
  border: 1px solid var(--border-faint);
  padding: 0;
  display: grid;
  grid-template-columns: 58px minmax(150px, 34%) 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.program-card:hover {
  border-color: rgba(200,169,106,0.28);
  background: rgba(90,143,106,0.04);
}
.program-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: rgba(200,169,106,0.5);
  line-height: 1;
  padding: clamp(24px, 3vw, 36px) 0 0;
  text-align: center;
  border-right: 1px solid var(--border-faint);
}
.program-img {
  min-height: 100%;
  border-right: 1px solid var(--border-faint);
  overflow: hidden;
  background: #091610;
}
.program-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.program-card:hover .program-img img {
  transform: scale(1.035);
  filter: saturate(0.95) brightness(0.88);
}
.program-body {
  padding: clamp(24px, 3vw, 38px);
}
.program-category {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .38em;
  color: var(--gold-label);
  margin-bottom: 10px;
}
.program-title {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .08em;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.7;
}
.program-desc {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.program-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.program-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--text-faint);
  border: 1px solid var(--border-faint);
  padding: 3px 10px;
}

/* ── Section: Newsletter ── */
.newsletter-section {
  padding: var(--section-y) var(--section-x);
  background: var(--bg-river);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/images/newsletter-forest.jpg") center / cover no-repeat;
  filter: saturate(0.86) brightness(0.48);
  transform: scale(1.02);
}
.newsletter-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 65% at 50% 50%, rgba(7,16,13,0.42) 0%, rgba(7,16,13,0.82) 100%),
    linear-gradient(90deg, rgba(7,16,13,0.9), rgba(7,16,13,0.58), rgba(7,16,13,0.9));
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-h2 {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.7;
  letter-spacing: .1em;
  color: var(--text-primary);
}
.newsletter-sub {
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: .08em;
  color: var(--text-body);
  margin: 0 0 48px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 20px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(236,231,218,0.22);
  border-right: none;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--text-primary);
}
.newsletter-input:focus { outline: none; border-color: rgba(200,169,106,0.5); }
.newsletter-btn {
  background: transparent;
  border: 1px solid rgba(200,169,106,0.5);
  color: var(--gold);
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .26em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.newsletter-btn:hover { background: rgba(200,169,106,0.1); }
.newsletter-note {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-faint);
}

/* ── Footer ── */
.footer {
  padding: clamp(72px, 10vh, 110px) var(--section-x) 50px;
  border-top: 1px solid var(--border-gold);
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .16em;
  color: var(--text-logo);
  display: block;
}
.footer-logo-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold-label);
  margin-top: 6px;
}
.footer-powered {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--text-faint);
  margin-top: 22px;
}
.footer-nav {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: .32em;
  color: var(--gold-label);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--font-ui);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: rgba(236,231,218,0.56);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--content-max);
  margin: clamp(48px, 6vh, 72px) auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--text-faint);
}

/* ── Animations ── */
@keyframes riverShimmer {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 0.7; transform: scaleX(1.06); }
}
@keyframes mistDrift {
  0%, 100% { transform: translateX(0); opacity: 0.8; }
  50% { transform: translateX(20px); opacity: 1; }
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 20px 5px rgba(200,169,106,0.4); }
  50% { opacity: 1; box-shadow: 0 0 34px 10px rgba(200,169,106,0.6); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease both; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 54px minmax(160px, 35%) 1fr; }
  .record-inner { grid-template-columns: 1fr; }
  .record-img { aspect-ratio: 3/2; }
  .flow-steps { flex-wrap: wrap; gap: 32px; }
  .flow-step:not(:last-child)::after { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(26px, 8vw, 40px); }
  .program-card { grid-template-columns: 1fr; }
  .program-num {
    text-align: left;
    padding: 24px 24px 0;
    border-right: none;
  }
  .program-img {
    order: -1;
    border-right: none;
    border-bottom: 1px solid var(--border-faint);
  }
  .program-img img { min-height: 210px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(236,231,218,0.22); }
  .footer-nav { flex-direction: column; gap: 28px; }
}
