/* ===== V2 "Quiet Canopy" ===== */
.v2 { background: var(--paper); }

.v2 .v2-h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--forest-900);
}
.v2-head { margin-bottom: 48px; max-width: 680px; }
.v2-head-mono {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--forest-500);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.v2-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 100%;
}

/* HERO */
.v2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.v2-hero-bg { position: absolute; inset: 0; z-index: 0; }
.v2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.75);
}
.v2-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 58, 30, 0.5) 0%, rgba(31, 58, 30, 0.75) 100%);
}
.v2-hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}
.v2-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--forest-200);
  margin-bottom: 40px;
}
.v2-hero-title {
  font-size: clamp(48px, 7vw, 92px);
  color: var(--paper);
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.v2-hero-lede {
  margin-top: 36px;
  font-size: 17px;
  line-height: 2;
  color: rgba(253, 251, 245, 0.85);
  max-width: 48ch;
  font-weight: 500;
}
.v2-hero-ctas { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.v2-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.3em;
  z-index: 2;
  animation: v2bounce 2s ease-in-out infinite;
}
@keyframes v2bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* PHILOSOPHY */
.v2-philo {
  padding: 140px 0;
  text-align: center;
}
.v2-eyebrow { margin-bottom: 32px; }
.v2-eyebrow .mono {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--forest-500);
}
.v2-philo-text {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.8;
  color: var(--forest-900);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.v2-em {
  position: relative;
  color: var(--forest-700);
}
.v2-em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: rgba(201, 169, 97, 0.35);
  z-index: -1;
}
.v2-philo-sub {
  margin-top: 40px;
  font-size: 15px;
  line-height: 2.2;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICES */
.v2-services { padding: 96px 0; background: var(--paper-2); }
.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}
@media (max-width: 720px) { .v2-svc-grid { grid-template-columns: 1fr; gap: 48px; } }
.v2-svc {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: transform .4s ease;
}
.v2-svc:hover { transform: translateY(-4px); }
.v2-svc-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-sm);
  margin-bottom: 24px;
  background: var(--forest-100);
}
.v2-svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.v2-svc:hover .v2-svc-img img { transform: scale(1.04); }
.v2-svc-row { display: flex; gap: 16px; align-items: center; }
.v2-svc-num {
  font-size: 14px;
  color: var(--forest-700);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.v2-svc-en {
  font-size: 11px;
  color: var(--forest-500);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--paper);
  border: 1px solid var(--forest-200);
  border-radius: var(--r-pill);
}
.v2-svc-title {
  font-size: 24px;
  margin-top: 14px;
  color: var(--forest-900);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.v2-svc-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.v2-svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--forest-700);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: gap .2s ease;
}
.v2-svc:hover .v2-svc-arrow { gap: 18px; }

/* BIO */
.v2-bio { padding: 120px 0; }
.v2-bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .v2-bio-grid { grid-template-columns: 1fr; gap: 48px; } }
.v2-bio-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--forest-100);
}
.v2-bio-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-bio-caption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-bio-caption .mono {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--forest-500);
}
.v2-bio-caption .serif {
  font-size: 16px;
  color: var(--forest-900);
}
.v2-bio-p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.v2-bio-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.v2-tl-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--forest-100);
}
.v2-tl-row:last-child { border-bottom: 1px solid var(--forest-100); }
.v2-tl-year {
  color: var(--forest-700);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.v2-tl-text { font-size: 14px; color: var(--ink); line-height: 1.8; }
.v2-bio-books { margin-top: 40px; padding: 24px; background: var(--paper-2); border-radius: var(--r-md); }
.v2-books-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--forest-700);
  font-weight: 700;
  margin-bottom: 12px;
}
.v2-bio-books ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-bio-books li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.v2-bio-books li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--forest-400);
  border-radius: 50%;
}

/* COMMUNITY */
.v2-community { padding: 120px 0; background: var(--forest-900); color: var(--paper); }
.v2-community .v2-h2 { color: var(--paper); }
.v2-community .v2-head-mono { color: var(--forest-300); }
.v2-community .v2-bio-p { color: var(--forest-200); }
.v2-comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 860px) { .v2-comm-grid { grid-template-columns: 1fr; } }
.v2-comm-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v2-tile {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .4s ease;
}
.v2-tile:nth-child(1), .v2-tile:nth-child(4) { transform: translateY(24px); }
.v2-tile img { width: 100%; height: 100%; object-fit: cover; }
.v2-tile:hover { transform: translateY(-4px); }
.v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--honey);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: gap .2s ease;
}
.v2-text-link:hover { color: var(--honey-soft); gap: 20px; }
.v2-community .v2-text-link { color: var(--honey); }

/* JOURNAL */
.v2-journal { padding: 120px 0; }
.v2-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .v2-journal-grid { grid-template-columns: 1fr; } }
.v2-post {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.v2-post:hover { transform: translateY(-4px); }
.v2-post-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--forest-100);
}
.v2-post-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.v2-post:hover .v2-post-img img { transform: scale(1.04); }
.v2-post-body { padding: 20px 4px; }
.v2-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--forest-500);
  letter-spacing: 0.1em;
}
.v2-post-tag {
  padding: 2px 10px;
  background: var(--forest-50);
  color: var(--forest-700);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 700;
}
.v2-post-title {
  font-size: 18px;
  margin-top: 12px;
  line-height: 1.6;
  color: var(--forest-900);
  letter-spacing: 0.04em;
}

/* CTA */
.v2-cta { padding: 100px 0; }
.v2-cta-inner {
  background: var(--forest-50);
  padding: 80px 48px;
  border-radius: var(--r-xl);
  text-align: center;
}
.v2-cta-btn { margin-top: 28px; }
