
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #141410; --ink-mid: #4a4a3e; --ink-light: #9a9a8a;
  --cream: #f5f3ed; --warm: #faf9f6; --accent: #2c4a3e;
  --gold: #b8960c; --rule: #d8d4c8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; color: var(--ink); background: var(--warm); font-size: 16px; line-height: 1.6; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 48px; display: flex; justify-content: space-between; align-items: center; background: rgba(250,249,246,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
nav.scrolled { border-bottom-color: var(--rule); }
.nav-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm); background: var(--accent); padding: 10px 24px; text-decoration: none; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 80px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px; }
.hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards; }
.hero-name { font-family: var(--serif); font-size: clamp(52px, 6vw, 84px); font-weight: 300; line-height: 1.0; color: var(--ink); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards; }
.hero-name em { font-style: italic; color: var(--accent); }
.hero-intro { font-size: 18px; color: var(--ink-mid); line-height: 1.7; max-width: 460px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards; }
.hero-divider { width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.hero-line { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--ink); margin-bottom: 44px; opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards; }
.hero-links { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards; }
.btn-p { display: inline-block; background: var(--accent); color: #fff; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 32px; text-decoration: none; transition: opacity 0.2s; }
.btn-p:hover { opacity: 0.85; }
.btn-s { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; display: flex; align-items: center; transition: color 0.2s; }
.btn-s:hover { color: var(--accent); }

.hero-right { background: var(--accent); display: flex; flex-direction: column; justify-content: center; padding: 80px; position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px); }
.hero-quote { position: relative; z-index: 2; opacity: 0; animation: fadeUp 0.8s ease 1.3s forwards; }
.hero-portrait { position: relative; z-index: 2; width: 100%; max-width: 320px; margin-bottom: 36px; opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards; }
.hero-portrait img { width: 100%; height: auto; display: block; filter: grayscale(8%); }
.hero-portrait-frame { border: 1px solid rgba(255,255,255,0.2); padding: 8px; }
.story-image { margin-top: 8px; }
.story-image img { width: 100%; height: auto; display: block; }
.story-image-frame { background: #fff; padding: 10px; border: 1px solid var(--rule); }
.story-image-cap { font-size: 12px; color: var(--ink-light); letter-spacing: 0.04em; margin-top: 12px; font-style: italic; font-family: var(--serif); }
.hero-quote blockquote { font-family: var(--serif); font-size: 26px; font-style: italic; font-weight: 300; color: #fff; line-height: 1.5; margin-bottom: 20px; }
.hero-quote cite { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-style: normal; }
.hero-numbers { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards; }
.hn { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; }
.hn-val { font-family: var(--serif); font-size: 40px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 6px; }
.hn-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* SECTIONS */
section { padding: 100px 80px; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.section-title { font-family: var(--serif); font-size: clamp(34px, 3.5vw, 52px); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-body { font-size: 17px; color: var(--ink-mid); line-height: 1.8; max-width: 580px; }

/* STORY */
.story { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-text { display: flex; flex-direction: column; gap: 18px; }
.story-text p { font-size: 17px; color: var(--ink-mid); line-height: 1.8; }
.story-text p strong { color: var(--ink); font-weight: 500; }

/* WORKSHOP JOURNEY */
.journey-s { background: var(--ink); color: #fff; padding: 100px 80px; }
.journey-s .section-eyebrow { color: var(--gold); }
.journey-intro { max-width: 640px; }
.journey-intro .section-title { color: #fff; }
.journey-intro .section-title em { color: rgba(255,255,255,0.45); }
.journey-lead { font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.8; margin-top: 20px; }
.journey-lead strong { color: #fff; font-weight: 500; }
.jcluster { margin-top: 60px; }
.jcluster-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 4px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.jcluster-num { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--gold); }
.jcluster-title { font-family: var(--serif); font-size: 23px; font-weight: 400; color: #fff; }
.jwork { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: grid; grid-template-columns: 48px 1fr; gap: 22px; }
.jwork:last-child { border-bottom: none; }
.jwork-num { font-family: var(--serif); font-size: 30px; font-weight: 300; color: rgba(255,255,255,0.22); line-height: 1; }
.jwork-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 12px; }
.jwork-origin { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 14px; }
.jwork-origin strong { color: rgba(255,255,255,0.92); font-weight: 500; }
.jwork-gift { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--gold); line-height: 1.6; padding-left: 16px; border-left: 2px solid rgba(184,150,12,0.4); }
.jcluster-head { cursor: pointer; user-select: none; transition: opacity 0.2s; }
.jcluster-head:hover { opacity: 0.78; }
.jcluster-toggle { margin-left: auto; font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--gold); line-height: 1; transition: transform 0.3s ease; flex-shrink: 0; align-self: center; }
.jcluster.open .jcluster-toggle { transform: rotate(45deg); }
.jcluster-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.jcluster.open .jcluster-body { grid-template-rows: 1fr; }
.jcluster-body-inner { overflow: hidden; }
.journey-close { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.15); }
.journey-close p { font-family: var(--serif); font-size: 26px; font-style: italic; font-weight: 300; color: #fff; line-height: 1.5; max-width: 720px; }
@media(max-width:1024px){ .journey-s { padding: 64px 24px; } }
.story-timeline { display: flex; flex-direction: column; gap: 0; position: sticky; top: 100px; }
.tl-item { padding: 20px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 60px 1fr; gap: 16px; align-items: start; }
.tl-item:first-child { border-top: 1px solid var(--rule); }
.tl-year { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--ink-light); margin-top: 2px; }
.tl-content {}
.tl-title { font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.tl-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }

/* WHAT I DO */
.what { background: var(--warm); }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.what-card { background: var(--cream); padding: 36px 32px; position: relative; overflow: hidden; transition: background 0.2s; }
.what-card:hover { background: #fff; }
.what-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.3s; }
.what-card:hover::after { transform: scaleX(1); }
.wc-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--rule); line-height: 1; margin-bottom: 16px; }
.wc-title { font-weight: 500; font-size: 16px; color: var(--ink); margin-bottom: 10px; }
.wc-body { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 16px; }
.wc-link { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); text-decoration: none; }

/* TRACK RECORD */
.track { background: var(--ink); }
.track .section-title { color: #fff; }
.track .section-title em { color: rgba(255,255,255,0.4); }
.track .section-body { color: rgba(255,255,255,0.5); margin-top: 16px; }
.track-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-top: 56px; }
.tn { background: var(--ink); padding: 40px 32px; }
.tn-val { font-family: var(--serif); font-size: 48px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 10px; }
.tn-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.4; }
.track-clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); margin-top: 1px; }
.tc { background: var(--ink); padding: 24px 32px; display: flex; flex-direction: column; gap: 4px; }
.tc-name { font-weight: 500; font-size: 14px; color: #fff; }
.tc-result { font-size: 12px; color: rgba(255,255,255,0.4); }

/* GIVING BACK */
.giving { background: var(--cream); }
.giving-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.giving-items { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.gi { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.gi:first-child { border-top: 1px solid var(--rule); }
.gi-title { font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.gi-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.ikigai { background: var(--accent); padding: 48px; }
.ikigai-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.ikigai-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.ikigai-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* CONTACT */
.contact-s { background: var(--warm); border-top: 1px solid var(--rule); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.contact-item:first-child { border-top: 1px solid var(--rule); }
.ci-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 6px; }
.ci-val { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.ci-val a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--rule); transition: border-color 0.2s; }
.ci-val a:hover { border-bottom-color: var(--accent); }
.ventures { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.venture { padding: 18px 20px; background: var(--cream); border-left: 3px solid var(--accent); }
.v-name { font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.v-desc { font-size: 13px; color: var(--ink-mid); }
.v-link { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; margin-top: 6px; display: inline-block; }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.4); padding: 40px 80px; display: flex; justify-content: space-between; align-items: center; }
.f-name { font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,0.7); }
.f-legal { font-size: 11px; text-align: right; line-height: 1.6; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 380px; padding: 48px; }
  .story-grid, .giving-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .what-grid { grid-template-columns: 1fr; }
  .track-numbers { grid-template-columns: 1fr 1fr; }
  .track-clients { grid-template-columns: 1fr 1fr; }
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero-left { padding: 60px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .f-legal { text-align: center; }
}

