/* ============================================================
   kelvinloh.my · V2 Light · Medium-hybrid
   Refactoring UI grayscale-first · Apple minimalism · 方向 C
   Only hero scoped for now — whole site later.
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Grayscale first */
  --bg:           #fbfbfd;
  --bg-elevated:  #ffffff;
  --gray-900:     #111827;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-400:     #9ca3af;
  --gray-300:     #d1d5db;
  --gray-100:     #f3f4f6;
  --gray-50:      #f9fafb;

  /* Color (sparingly) */
  --orange:       #F6921E;
  --orange-hover: #e5840f;

  /* Type */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-serif:   'Source Serif 4', 'Source Serif Pro', Georgia, 'Noto Serif SC', serif;

  /* Scale */
  --text-xs:      12px;
  --text-sm:      14px;
  --text-base:    16px;
  --text-lg:      18px;
  --text-xl:      20px;
  --text-2xl:     24px;
  --text-3xl:     30px;
  --text-4xl:     36px;
  --text-5xl:     48px;
  --text-6xl:     64px;
  --text-7xl:     80px;

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-4:  16px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Layout */
  --max-prose: 65ch;
  --max-wide:  1120px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.10);
}

/* ---- RESET ---- */
.v2 *,
.v2 *::before,
.v2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.v2 {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--gray-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
}

.v2 img { display: block; max-width: 100%; }
.v2 a   { color: inherit; text-decoration: none; }
.v2 button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- TYPOGRAPHY ---- */
.v2 h1, .v2 h2, .v2 h3 {
  font-family: var(--font-sans);
  color: var(--gray-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ---- CONTAINER ---- */
.v2-container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* ---- NAV (white, transparent → frost on scroll) ---- */
.v2-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: var(--sp-6) var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.v2-nav.scrolled {
  background: rgba(251,251,253,0.80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: var(--sp-4) var(--sp-12);
  border-bottom: 1px solid var(--gray-100);
}

.v2-nav-logo img { height: 32px; }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.v2-nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s var(--ease-out);
}
.v2-nav-links a:hover { color: var(--gray-900); }

.v2-nav-cta {
  padding: 10px var(--sp-4);
  background: var(--gray-900);
  color: #fff !important;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background 0.2s var(--ease-out);
}
.v2-nav-cta:hover { background: #000; }

/* Hamburger button (hidden on desktop) */
.v2-nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.v2-nav-burger:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.v2-nav-burger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.v2-nav-burger-bars span {
  display: block;
  height: 1.5px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s var(--ease-out);
}
.v2-nav-burger.is-open .v2-nav-burger-bars span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.v2-nav-burger.is-open .v2-nav-burger-bars span:nth-child(2) { opacity: 0; }
.v2-nav-burger.is-open .v2-nav-burger-bars span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile drawer */
.v2-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(251,251,253,0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: var(--sp-16) var(--sp-8);
}
.v2-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.v2-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-drawer a {
  display: block;
  padding: 18px 8px;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
  transition: padding-left 0.3s var(--ease-out), color 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), padding-left 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.v2-drawer.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.v2-drawer.is-open a:nth-child(1) { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(2) a { transition-delay: 0.16s, 0.16s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(3) a { transition-delay: 0.22s, 0.22s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(4) a { transition-delay: 0.28s, 0.28s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(5) a { transition-delay: 0.34s, 0.34s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(6) a { transition-delay: 0.40s, 0.40s, 0s, 0s; }
.v2-drawer.is-open li:nth-child(7) a { transition-delay: 0.46s, 0.46s, 0s, 0s; }
.v2-drawer a:hover {
  padding-left: 18px;
  color: var(--orange);
}
.v2-drawer-footer {
  margin-top: var(--sp-12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: center;
}

@media (max-width: 768px) {
  .v2-nav { padding: var(--sp-4) var(--sp-6); }
  .v2-nav.scrolled { padding: var(--sp-2) var(--sp-6); }
  .v2-nav-links { display: none; }
  .v2-nav-burger { display: inline-flex; }
}
@media (min-width: 769px) {
  .v2-drawer, .v2-nav-burger { display: none !important; }
}

/* ---- HERO ---- */
.v2-hero {
  position: relative;
  padding: calc(var(--sp-24) + 40px) 0 var(--sp-16);
  background: var(--bg);
  overflow: hidden;
}
/* Soft backdrop depth — subtle orange wash behind portrait */
.v2-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at 40% 50%, rgba(246,146,30,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Soft grid dot pattern for depth */
.v2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,24,39,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 60%);
  z-index: 0;
}
.v2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}

.v2-hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--sp-6);
}
.v2-hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: var(--sp-2);
  transform: translateY(-2px);
}

.v2-hero h1 {
  font-size: clamp(40px, 6vw, var(--text-7xl));
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-8);
  color: var(--gray-900);
}
.v2-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.v2-hero-sub {
  font-size: var(--text-xl);
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: var(--sp-12);
}

.v2-hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.v2-btn.v2-btn-primary {
  background: var(--gray-900);
  color: #fff;
}
.v2-btn.v2-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.v2-btn.v2-btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
}
.v2-btn.v2-btn-outline:hover {
  border-color: var(--gray-900);
  transform: translateY(-1px);
}

/* Hero image (portrait) */
.v2-hero-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  animation: v2-rise 1s var(--ease-out) 0.2s forwards;
}
.v2-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(17,24,39,0.25));
  z-index: 1;
  pointer-events: none;
}
.v2-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s var(--ease-out);
}
.v2-hero-img:hover img { transform: scale(1.04); }

/* Small floating accent card - pinned inside portrait bottom-left (Apple toast style) */
.v2-hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  animation: v2-rise 0.9s var(--ease-out) 0.9s forwards;
}
.v2-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(246,146,30,0.18);
}
.v2-hero-badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

/* Entry animations */
.v2-hero-label,
.v2-hero h1,
.v2-hero-sub,
.v2-hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: v2-rise 0.9s var(--ease-out) forwards;
}
.v2-hero-label   { animation-delay: 0.05s; }
.v2-hero h1      { animation-delay: 0.15s; }
.v2-hero-sub     { animation-delay: 0.30s; }
.v2-hero-actions { animation-delay: 0.45s; }

@keyframes v2-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue — sits in its own row between grid and meta */
.v2-hero-scroll {
  position: relative;
  margin: var(--sp-12) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: v2-rise 1s var(--ease-out) 1.3s forwards;
}
.v2-hero-scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.v2-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.v2-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gray-900);
  animation: v2-scroll-drip 2.2s var(--ease-out) infinite;
}
@keyframes v2-scroll-drip {
  0%   { top: -50%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}
.v2-hero-scroll-arrow {
  color: var(--gray-500);
  font-size: 14px;
  animation: v2-arrow-bob 2s ease-in-out infinite;
}
@keyframes v2-arrow-bob {
  0%, 100% { transform: translateY(0);   opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1;   }
}

/* Meta strip under hero */
.v2-hero-meta {
  max-width: var(--max-wide);
  margin: var(--sp-16) auto 0;
  padding: var(--sp-8) var(--sp-8) 0;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.v2-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.v2-hero-meta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.v2-hero-meta-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-900);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .v2-nav { padding: var(--sp-4) var(--sp-6); }
  .v2-nav.scrolled { padding: var(--sp-2) var(--sp-6); }
  .v2-nav-links { display: none; }
  .v2-hero { padding: calc(var(--sp-16) + 60px) 0 var(--sp-16); }
  .v2-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
  .v2-hero-img { aspect-ratio: 3/4; max-height: 60vh; }
  .v2-hero-meta {
    gap: var(--sp-8);
    padding: var(--sp-6);
  }
  .v2-hero-badge { left: 12px; bottom: 12px; padding: 8px 12px; }
  .v2-hero-scroll { margin-top: var(--sp-8); }
}

/* ============================================================
   SHARED SECTION SYSTEM
   ============================================================ */

.v2-section {
  padding: var(--sp-24) 0;
  position: relative;
}
.v2-section-alt { background: var(--gray-50); }

.v2-section-head {
  max-width: 720px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}
.v2-section-head .v2-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.v2-section-head h2 em {
  font-style: normal;
  color: var(--orange);
}
.v2-section-head p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0 auto;
  max-width: 58ch;
}

/* ============================================================
   ABOUT STRIP (index)
   ============================================================ */

.v2-about-strip {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-about-strip-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--sp-16);
  align-items: center;
}
.v2-about-img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}
.v2-about-img img { width: 100%; height: 100%; object-fit: cover; }

.v2-about-text .v2-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-about-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-6);
  font-weight: 700;
  max-width: 16ch;
}
.v2-about-text p {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: var(--sp-4);
  max-width: 48ch;
}
.v2-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--gray-100);
}
.v2-stat-num {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.v2-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================================
   PHILOSOPHY GRID (index)
   ============================================================ */

.v2-philosophy {
  padding: var(--sp-24) 0;
  background: var(--gray-50);
}
.v2-phil-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.v2-phil-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: var(--sp-8);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
/* Top accent bar that slides in on hover */
.v2-phil-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff7a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
/* Warm corner glow on hover */
.v2-phil-card::after {
  content: '';
  position: absolute;
  top: -60%; right: -40%;
  width: 80%; height: 120%;
  background: radial-gradient(circle at center, rgba(246,146,30,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}
.v2-phil-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(246,146,30,0.15), 0 2px 6px rgba(17,24,39,0.05);
}
.v2-phil-card:hover::before { transform: scaleX(1); }
.v2-phil-card:hover::after { opacity: 1; }

.v2-phil-num {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: var(--sp-4);
  transition: letter-spacing 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.v2-phil-card:hover .v2-phil-num {
  letter-spacing: 0.18em;
  transform: translateX(2px);
}
.v2-phil-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
  transition: color 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
}
.v2-phil-card:hover h3 { color: var(--orange); }
.v2-phil-card p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--gray-700);
  position: relative;
  z-index: 1;
}

/* ============================================================
   THOUGHTS PREVIEW (index) — blog teaser cards
   ============================================================ */

.v2-thoughts {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-thoughts-head {
  max-width: var(--max-wide);
  margin: 0 auto var(--sp-12);
  padding: 0 var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.v2-thoughts-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 4px;
}
.v2-thoughts-viewall {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.v2-thoughts-viewall:hover { border-color: var(--orange); color: var(--orange); }

.v2-thoughts-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.v2-thought-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.v2-thought-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(246,146,30,0.12), 0 2px 6px rgba(17,24,39,0.04);
}
.v2-thought-card h3 { transition: color 0.3s var(--ease-out); }
.v2-thought-card:hover h3 { color: var(--orange); }
.v2-thought-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.v2-thought-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.v2-thought-card:hover .v2-thought-img img { transform: scale(1.05); }

.v2-thought-body { padding: var(--sp-6); }
.v2-thought-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.v2-thought-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 3px 8px;
  background: rgba(246,146,30,0.10);
  border-radius: 999px;
}
.v2-thought-date {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}
.v2-thought-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  line-height: 1.35;
  color: var(--gray-900);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-4);
}
.v2-thought-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-500);
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */

.v2-quote {
  position: relative;
  padding: var(--sp-32) 0;
  background: linear-gradient(180deg, #f8f7f4 0%, #fbfbfd 100%);
  overflow: hidden;
  text-align: center;
}
/* Huge decorative quote mark in background */
.v2-quote::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 480px;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.06;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}
/* Subtle dot pattern */
.v2-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(17,24,39,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}
.v2-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.v2-quote-accent {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: var(--orange);
  margin-bottom: var(--sp-8);
}
.v2-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--gray-900);
  margin-bottom: var(--sp-12);
  font-weight: 400;
}
.v2-quote-text em {
  color: var(--orange);
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.v2-quote-text em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: rgba(246,146,30,0.4);
}
/* Signature pill */
.v2-quote-sig {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.v2-quote-sig:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.v2-quote-sig img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.v2-quote-sig-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}
.v2-quote-sig-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

@media (max-width: 600px) {
  .v2-quote { padding: var(--sp-16) 0; }
  .v2-quote::before { font-size: 280px; top: 20px; }
  .v2-quote-text em { white-space: normal; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.v2-testimonials {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-testi-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.v2-testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: var(--sp-8);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.v2-testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(246,146,30,0.12), 0 2px 6px rgba(17,24,39,0.04);
}
.v2-testi-card .v2-testi-quote { transition: transform 0.35s var(--ease-out); }
.v2-testi-card:hover .v2-testi-quote { transform: scale(1.1); }
.v2-testi-quote {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.6;
  color: var(--orange);
  margin-bottom: var(--sp-4);
  display: block;
}
.v2-testi-text {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--gray-700);
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.v2-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--gray-100);
}
.v2-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.v2-testi-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  display: block;
}
.v2-testi-role {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ============================================================
   COLLAB
   ============================================================ */

.v2-collab {
  padding: var(--sp-24) 0;
  background: var(--gray-900);
  color: #fff;
  text-align: center;
}
.v2-collab-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.v2-collab .v2-label { color: var(--orange); display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.v2-collab h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: var(--sp-6);
  font-weight: 700;
}
.v2-collab h2 em { color: var(--orange); font-style: normal; }
.v2-collab > .v2-collab-inner > p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  margin: 0 auto var(--sp-12);
}
.v2-collab-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  text-align: left;
}
.v2-collab-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: var(--sp-8);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.v2-collab-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.v2-collab-card--highlight {
  background: rgba(246,146,30,0.10);
  border-color: rgba(246,146,30,0.35);
}
.v2-collab-card--highlight:hover { background: rgba(246,146,30,0.14); }
.v2-collab-icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(246,146,30,0.12);
  color: var(--orange);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.v2-collab-icon svg { width: 26px; height: 26px; display: block; }
.v2-collab-card:hover .v2-collab-icon {
  transform: rotate(-3deg) scale(1.06);
  background: rgba(246,146,30,0.22);
}

/* Original sparkle icon for Featured */
.v2-featured-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v2-featured-icon svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}
.v2-collab-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--sp-4);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.v2-collab-card p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-6);
}
.v2-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--gray-900) !important;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: transform 0.2s var(--ease-out);
}
.v2-btn-light:hover { transform: translateY(-1px); }
.v2-btn-orange {
  background: var(--orange);
  color: #fff !important;
}
.v2-btn-orange:hover { background: var(--orange-hover); }

/* ============================================================
   BOOK TEASER
   ============================================================ */

.v2-book {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-book-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}
.v2-book-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 340px;
  margin: 0 auto;
  perspective: 1800px;
}
.v2-book-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 40% 50%, rgba(246,146,30,0.25), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}

/* ---- 3D book wrapper ---- */
.v2-book-3d {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-26deg) rotateX(2deg);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 35px 50px rgba(0,0,0,0.35));
}
.v2-book-visual:hover .v2-book-3d {
  transform: rotateY(-12deg) rotateX(1deg) translateY(-6px);
}

/* ---- Front cover ---- */
.v2-book-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0e10 0%, #1c1c20 55%, #2a2a30 100%);
  border-radius: 2px 6px 6px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14% 12%;
  color: #fff;
  transform: translateZ(18px);
  box-shadow:
    inset 4px 0 12px rgba(255,255,255,0.04),
    inset -2px 0 8px rgba(0,0,0,0.4);
  overflow: hidden;
}
.v2-book-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(246,146,30,0.10), transparent 50%),
    linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.06) 50%, transparent 65%);
  pointer-events: none;
}
.v2-book-cover-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), #ff6b35);
}
.v2-book-cover-title {
  position: relative;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin-bottom: var(--sp-6);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.v2-book-cover-rule {
  position: relative;
  width: 40px;
  height: 1px;
  background: rgba(246,146,30,0.6);
  margin-bottom: var(--sp-6);
}
.v2-book-cover-author {
  position: relative;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* ---- Spine (left side, visible due to rotateY) ---- */
.v2-book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 100%;
  background: linear-gradient(90deg, #050507 0%, #1a1a1d 50%, #0a0a0c 100%);
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: left center;
  border-radius: 2px 0 0 2px;
}
.v2-book-spine::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
  transform: translateY(-50%);
}

/* ---- Pages (right edge, cream-white slab) ---- */
.v2-book-pages {
  position: absolute;
  top: 1%;
  right: 0;
  bottom: 1%;
  width: 36px;
  background:
    repeating-linear-gradient(
      to right,
      #f4ecdb 0px,
      #f4ecdb 1px,
      #e8dec5 1px,
      #e8dec5 2px
    );
  transform: rotateY(90deg) translateZ(0);
  transform-origin: right center;
  border-radius: 0 1px 1px 0;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.15);
}

/* Mobile — flatten 3D effect a bit so it doesn't feel awkward small */
@media (max-width: 768px) {
  .v2-book-visual { max-width: 240px; perspective: 1200px; }
  .v2-book-3d { transform: rotateY(-18deg); }
  .v2-book-spine { width: 24px; }
  .v2-book-pages { width: 24px; }
}
.v2-book-content .v2-book-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(246,146,30,0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--sp-6);
}
.v2-book-content h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-6);
  font-weight: 700;
}
.v2-book-content p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: var(--sp-4);
  max-width: 52ch;
}
.v2-book-notify {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  max-width: 480px;
}
.v2-book-notify input {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--gray-900);
  background: var(--bg-elevated);
  transition: border-color 0.2s var(--ease-out);
}
.v2-book-notify input:focus {
  outline: none;
  border-color: var(--gray-900);
}
.v2-book-notify button {
  min-height: 52px;
  padding: 0 22px;
  background: var(--gray-900);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease-out);
}
.v2-book-notify button:hover { background: #000; }

/* ============================================================
   FOOTER (light)
   ============================================================ */

.v2-foot {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: var(--sp-16) 0 var(--sp-8);
}
.v2-foot-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.v2-foot-brand img { height: 40px; width: auto; max-width: 100%; margin-bottom: var(--sp-4); display: block; }
.v2-foot-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 44ch;
}
.v2-foot-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
}
.v2-foot-col ul { list-style: none; padding: 0; margin: 0; }
.v2-foot-col li { margin-bottom: var(--sp-2); }
.v2-foot-col a {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: color 0.2s var(--ease-out);
}
.v2-foot-col a:hover { color: var(--gray-900); }

.v2-foot-bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-8) 0;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.v2-foot-bottom p { font-size: var(--text-xs); color: var(--gray-500); margin: 0; }
.v2-foot-bottom-links { display: flex; gap: var(--sp-4); }
.v2-foot-bottom-links a {
  font-size: var(--text-xs);
  color: var(--gray-500);
  transition: color 0.2s var(--ease-out);
}
.v2-foot-bottom-links a:hover { color: var(--gray-900); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.v2-about-hero {
  background: var(--bg);
  padding-top: calc(var(--sp-16) + 60px);
  padding-bottom: var(--sp-16);
}
.v2-about-hero-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}
.v2-about-hero-img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
}
.v2-about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-about-hero-text .v2-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-about-hero-text h1 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: var(--sp-8);
  font-weight: 700;
}
.v2-about-hero-text h1 em { color: var(--orange); font-style: normal; }
.v2-about-hero-text p {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 48ch;
  margin-bottom: var(--sp-4);
}

/* Story section */
.v2-story {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-story-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-16);
  align-items: flex-start;
}
.v2-story-sidebar {
  position: sticky;
  top: 100px;
}
.v2-story-chapters { list-style: none; padding: 0; margin: 0; }
.v2-story-chapters li { margin-bottom: var(--sp-2); }
.v2-story-chapters a {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  font-size: var(--text-sm);
  color: var(--gray-500);
  border-left: 2px solid transparent;
  padding-left: var(--sp-4);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.v2-story-chapters a:hover,
.v2-story-chapters a.is-active {
  color: var(--gray-900);
  border-left-color: var(--orange);
}
.v2-story-chapters span {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 12px;
}

.v2-story-body {
  max-width: var(--max-prose);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.72;
  color: var(--gray-700);
}
.v2-story-body h2 {
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 700;
}
.v2-story-body h2:first-child { margin-top: 0; }
.v2-story-body p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.72;
  color: var(--gray-700);
  margin-bottom: 1.3em;
}
.v2-story-body p strong { color: var(--gray-900); font-weight: 600; }
.v2-story-body em { font-style: italic; }

.v2-pull-quote {
  margin: 2em 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--orange);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--gray-900);
}

/* Values F.I.T.C.O.M. */
.v2-values {
  padding: var(--sp-24) 0;
  background: var(--gray-50);
}
.v2-values-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.v2-value-item {
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: var(--sp-8);
}
.v2-value-letter {
  font-family: var(--font-sans);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
}
.v2-value-item h3 {
  font-family: var(--font-sans);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.015em;
}
.v2-value-item p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
}

/* Timeline */
.v2-timeline-section {
  padding: var(--sp-24) 0;
  background: var(--bg);
}
.v2-timeline {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  position: relative;
}
.v2-timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gray-200, #e5e7eb);
}
.v2-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: var(--sp-6) 0;
  position: relative;
}
.v2-timeline-item::after {
  content: '';
  position: absolute;
  left: 84px;
  top: 32px;
  width: 9px; height: 9px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gray-200, #e5e7eb);
}
.v2-timeline-year {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-align: right;
  padding-top: 4px;
}
.v2-timeline-content h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.v2-timeline-content p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
}

/* About CTA strip */
.v2-cta-strip {
  padding: var(--sp-24) 0;
  background: var(--gray-900);
  color: #fff;
  text-align: center;
}
.v2-cta-strip .v2-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-cta-strip h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
  color: #fff;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.v2-cta-strip p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  margin: 0 auto var(--sp-8);
  max-width: 44ch;
}
.v2-cta-strip-btns {
  display: flex; gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

.v2-blog-hero {
  background: var(--bg);
  padding-top: calc(var(--sp-16) + 60px);
  padding-bottom: var(--sp-12);
}
.v2-blog-hero-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.v2-blog-hero .v2-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-blog-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.v2-blog-hero p {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 56ch;
}

.v2-blog-featured {
  background: var(--bg);
  padding: 0 0 var(--sp-12);
}
.v2-blog-featured-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.v2-blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.v2-blog-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.v2-blog-featured-img {
  min-height: 360px;
  overflow: hidden;
  background: var(--gray-100);
}
.v2-blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-blog-featured-body {
  padding: var(--sp-12) var(--sp-8);
  display: flex; flex-direction: column; justify-content: center;
}
.v2-blog-featured-body .v2-featured-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-4);
}
.v2-blog-featured-body h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.v2-blog-featured-body p {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: var(--sp-6);
}

/* Filter tabs */
.v2-blog-filters {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-8) var(--sp-4);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.v2-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-500);
  background: var(--bg-elevated);
  border: 1px solid var(--gray-200, #e5e7eb);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.v2-filter-btn:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}
.v2-filter-btn.is-active {
  background: var(--gray-900);
  color: #fff;
  border-color: var(--gray-900);
}

/* Blog grid */
.v2-blog-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-8) var(--sp-24);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.v2-blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.v2-blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(246,146,30,0.12), 0 2px 6px rgba(17,24,39,0.04);
}
.v2-blog-card h3 { transition: color 0.3s var(--ease-out); }
.v2-blog-card:hover h3 { color: var(--orange); }
.v2-blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.v2-blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s var(--ease-out);
}
.v2-blog-card:hover .v2-blog-card-img img { transform: scale(1.05); }
.v2-blog-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.v2-blog-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  line-height: 1.3;
  color: var(--gray-900);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: var(--sp-2) 0 var(--sp-4);
}
.v2-blog-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}
.v2-blog-card-read {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.v2-blog-card-read:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   MOBILE — all sections
   ============================================================ */

@media (max-width: 900px) {
  .v2-about-strip-inner,
  .v2-about-hero-inner,
  .v2-story-grid,
  .v2-book-inner,
  .v2-blog-featured-card { grid-template-columns: 1fr; gap: var(--sp-8); }

  .v2-story-sidebar { position: static; display: none; }
  .v2-book-visual { max-width: 240px; }
  .v2-phil-grid,
  .v2-thoughts-grid,
  .v2-testi-grid,
  .v2-values-grid,
  .v2-collab-cards { grid-template-columns: 1fr; }
  .v2-blog-grid { grid-template-columns: 1fr 1fr; }
  .v2-foot-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .v2-foot-brand { grid-column: 1 / -1; }
  .v2-blog-featured-img { min-height: 220px; aspect-ratio: 16/10; }
  .v2-blog-featured-body { padding: var(--sp-8); }
}

@media (max-width: 600px) {
  .v2-blog-grid { grid-template-columns: 1fr; }
  .v2-foot-inner { grid-template-columns: 1fr; }
  .v2-timeline::before { left: 60px; }
  .v2-timeline-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .v2-timeline-item::after { left: 56px; }
  .v2-book-notify { flex-direction: column; }
  .v2-book-notify input, .v2-book-notify button { width: 100%; }
  .v2-cta-strip-btns { flex-direction: column; }
}

/* ============================================================
   BLOG ARTICLE (v2)
   ============================================================ */

/* Reading progress bar — fixed top */
.v2-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ff7a00);
  z-index: 200;
  transition: width 0.08s linear;
}

/* Post hero */
.v2-post {
  background: var(--bg);
  padding-top: calc(var(--sp-24) + 20px);
  padding-bottom: var(--sp-24);
}
.v2-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: var(--sp-8);
  transition: color 0.2s var(--ease-out);
}
.v2-post-back:hover { color: var(--gray-900); }

.v2-post-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.v2-post-cat {
  display: inline-block;
  padding: 4px 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.v2-post-dot {
  width: 3px;
  height: 3px;
  background: var(--gray-400);
  border-radius: 50%;
}
.v2-post-date,
.v2-post-read {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 500;
}

.v2-post h1 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: var(--sp-6);
  max-width: 20ch;
}

.v2-post-subtitle {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-style: italic;
  line-height: 1.4;
  color: var(--gray-500);
  max-width: 40ch;
  margin-bottom: var(--sp-12);
}

.v2-post-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--sp-6) 0 var(--sp-8);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: var(--sp-12);
}
.v2-post-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.v2-post-author-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-900);
  display: block;
}
.v2-post-author-role {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* Featured image */
.v2-post-img {
  max-width: 1040px;
  margin: 0 auto var(--sp-16);
  padding: 0 var(--sp-8);
}
.v2-post-img-inner {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}
.v2-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post body — Source Serif for reading */
.v2-post-prose {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.72;
  color: var(--gray-700);
}
.v2-post-prose > * + * { margin-top: 1.4em; }

.v2-post-prose p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.72;
  color: var(--gray-700);
}

.v2-post-prose h2 {
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-top: 2.4em;
  margin-bottom: 0.6em;
  font-weight: 700;
}
.v2-post-prose h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.3;
  color: var(--gray-900);
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.v2-post-prose strong {
  color: var(--gray-900);
  font-weight: 600;
}
.v2-post-prose em {
  font-style: italic;
}

.v2-post-prose a {
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  transition: border-color 0.2s var(--ease-out);
}
.v2-post-prose a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.v2-post-prose blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--orange);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--gray-900);
}
.v2-post-prose blockquote p { font-size: inherit; font-family: inherit; color: inherit; }

.v2-post-prose ul,
.v2-post-prose ol {
  padding-left: 1.4em;
}
.v2-post-prose li {
  margin-bottom: 0.6em;
  padding-left: 0.3em;
}
.v2-post-prose li::marker { color: var(--gray-400); }

.v2-post-prose hr {
  border: none;
  height: 1px;
  background: var(--gray-200, #e5e7eb);
  margin: 3em 0;
}

.v2-post-prose .pull {
  font-size: 24px;
  font-style: italic;
  color: var(--gray-900);
  text-align: center;
  padding: 1.6em 0;
  line-height: 1.4;
}

/* Author bio card at end */
.v2-post-bio {
  max-width: var(--max-prose);
  margin: var(--sp-16) auto 0;
  padding: var(--sp-8);
  background: var(--bg-elevated);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}
.v2-post-bio img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.v2-post-bio-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  display: block;
  margin-bottom: 4px;
}
.v2-post-bio p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

/* Next actions */
.v2-post-next {
  max-width: var(--max-prose);
  margin: var(--sp-12) auto 0;
  padding: 0 var(--sp-8);
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Simple light footer */
.v2-footer {
  margin-top: var(--sp-24);
  padding: var(--sp-12) var(--sp-8);
  border-top: 1px solid var(--gray-100);
  background: var(--bg);
}
.v2-footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.v2-footer p { font-size: var(--text-sm); color: var(--gray-500); margin: 0; }
.v2-footer-links { display: flex; gap: var(--sp-6); }
.v2-footer-links a {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: color 0.2s var(--ease-out);
}
.v2-footer-links a:hover { color: var(--gray-900); }

/* Editorial fade-in on scroll */
.v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.v2-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile adjustments for post */
@media (max-width: 768px) {
  .v2-post { padding-top: calc(var(--sp-16) + 40px); }
  .v2-post-prose { font-size: 18px; }
  .v2-post-prose blockquote { font-size: 20px; padding-left: 20px; }
  .v2-post-prose h2 { font-size: 26px; }
  .v2-post-bio { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
}

/* ============================================================
   READING / NOW PAGES — minimal book list
   ============================================================ */
.v2-reading-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-reading-list li {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-800);
}
.v2-reading-list li:last-child { border-bottom: none; }
.v2-reading-list li strong {
  font-weight: 600;
  color: var(--gray-900);
}

/* ============================================================
   EDITORIAL MOTION EFFECTS (paired with js/v2.js hooks)
   ============================================================ */

/* 1. Hero h1 word-by-word reveal — overrides default v2-rise on h1 with [data-words] */
.v2-hero h1[data-words] {
  opacity: 1;
  transform: none;
  animation: none;
}
.v2-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
.v2-word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: v2-word-up 0.85s var(--ease-out) forwards;
  will-change: transform, opacity;
}
@keyframes v2-word-up {
  to { transform: translateY(0); opacity: 1; }
}

/* 2. Magnetic CTA — smooth recoil when JS resets transform */
[data-magnetic] {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* 3. Hero portrait parallax */
[data-parallax] {
  will-change: transform;
}

/* 4. Stat count-up — tabular figures so width doesn't jitter while counting */
.v2-stat-num[data-countup] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* 5. Reveal-stagger (children of .v2-reveal-stagger get incremental delay) */
.v2-reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.v2-reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.v2-reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.v2-reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.15s; }
.v2-reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.25s; }
.v2-reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.35s; }
.v2-reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.45s; }
.v2-reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.55s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .v2-hero-label,
  .v2-hero h1,
  .v2-hero-sub,
  .v2-hero-actions,
  .v2-hero-img,
  .v2-hero-badge,
  .v2-hero-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .v2-hero-scroll-line::after,
  .v2-hero-scroll-arrow { animation: none; }
  .v2-reveal { opacity: 1; transform: none; transition: none; }
  .v2-word-inner { transform: none; opacity: 1; animation: none; }
  [data-magnetic],
  [data-parallax] { transform: none !important; transition: none; }
  .v2-reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}
