:root {
  color-scheme: light;
  --ivory: #f8f1e6;
  --ivory-2: #efe5d6;
  --cream: #fffaf1;
  --ink: #201d19;
  --muted: #746b5f;
  --soft: #9a9185;
  --gold: #a8843f;
  --line: rgba(48, 42, 34, 0.13);
  --shadow: 0 18px 50px rgba(48, 42, 34, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(32, 29, 25, 0.16) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
section { scroll-margin-top: 92px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 241, 230, 0.88);
  backdrop-filter: blur(18px);
}
.brand, nav, .eyebrow, .button, .case-stat, dt, .map-node, .notes-grid span, .contrast span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.brand {
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}
nav a:hover { color: var(--ink); }

.section-shell {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}
.hero {
  min-height: calc(100vh - 61px);
  border-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 8vw, 110px);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, .manifesto-line {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #756d61;
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  line-height: 0.88;
}
h2 {
  max-width: 980px;
  margin-bottom: 20px;
  color: #6f675c;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
}
h3 { line-height: 1.18; }
.hero-subtitle, .section-heading p, .about-text p, .manifesto-card p, .ai p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}
.hero-subtitle { max-width: 720px; }
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.button.secondary { background: rgba(255, 250, 241, 0.48); }

.hero-visual {
  position: relative;
  min-height: 620px;
}
.portrait-panel, .daylight-panel {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(48, 42, 34, 0.12);
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-panel {
  right: 0;
  top: 0;
  width: min(430px, 82vw);
}
.portrait-panel img { width: 100%; aspect-ratio: 0.72; object-fit: cover; object-position: center top; }
.daylight-panel {
  left: 0;
  bottom: 8%;
  width: min(240px, 44vw);
}
.daylight-panel img { width: 100%; aspect-ratio: 0.72; object-fit: cover; }

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: linear-gradient(180deg, var(--ivory), var(--ivory-2));
}
.manifesto-card {
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 1px solid var(--line);
}
.manifesto-line {
  margin-bottom: 18px;
  color: #6f675c;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.principle-grid article, .case-card, .notes-grid article, .contrast article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.46);
}
.principle-grid article {
  min-height: 150px;
  padding: 18px;
}
.principle-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}
.principle-grid h3 {
  margin: 34px 0 0;
  color: #4e493f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.section-heading { max-width: 920px; margin-bottom: 46px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.case-card {
  padding: 22px;
  min-height: 430px;
}
.case-stat {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.case-card h3 {
  margin-bottom: 22px;
  color: #514a40;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}
dl { display: grid; gap: 13px; margin: 0; }
dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
dd { margin: 4px 0 0; color: var(--muted); line-height: 1.48; }

.alchemy { background: #f1e7d9; }
.system-map {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 26px;
}
.map-orbit {
  position: relative;
  width: min(460px, 78vw);
  aspect-ratio: 1;
}
.orbit-line, .orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.orbit-line { border: 1px solid rgba(48, 42, 34, 0.14); }
.orbit-a { width: 100%; height: 100%; animation: turn 34s linear infinite; }
.orbit-b { width: 64%; height: 64%; border-color: rgba(168,132,63,0.28); animation: turnBack 42s linear infinite; }
.orbit-a::before, .orbit-a::after, .orbit-b::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.orbit-a::before { top: 10%; left: 48%; }
.orbit-a::after { bottom: 11%; right: 48%; }
.orbit-b::before { top: 48%; right: -5px; }
.orbit-core {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(168,132,63,0.28);
  background: radial-gradient(circle, rgba(168,132,63,0.22), rgba(255,250,241,0.38));
  box-shadow: 0 12px 34px rgba(48,42,34,0.08);
}
.map-nodes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.map-node {
  min-height: 70px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.45);
  color: #504a40;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.map-node:hover, .map-node.active {
  transform: translateY(-2px);
  border-color: rgba(168,132,63,0.42);
  background: rgba(255, 250, 241, 0.82);
}
.map-detail {
  width: min(720px, 100%);
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.58);
  text-align: center;
}
#map-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-detail h3 {
  margin: 0;
  color: #4e493f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 500;
}

.writing { background: var(--ivory); }
.notes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.notes-grid article {
  min-height: 210px;
  padding: 20px;
}
.notes-grid span, .contrast span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.notes-grid h3 {
  margin: 78px 0 0;
  color: #5c554b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.ai { background: var(--ivory-2); }
.contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}
.contrast article { padding: 24px; }
ul { margin: 24px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }

.about {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 690px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}
.about-image {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-image img { width: 100%; aspect-ratio: 0.72; object-fit: cover; }
.contact { text-align: center; }
.contact h2 { margin-left: auto; margin-right: auto; }
.contact-actions { justify-content: center; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes turn { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes turnBack { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }

@media (max-width: 1120px) {
  .hero, .manifesto, .about { grid-template-columns: 1fr; }
  .hero-visual { min-height: 700px; max-width: 620px; width: 100%; }
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .notes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  h1 { font-size: clamp(4rem, 19vw, 6.8rem); }
  .section-shell { padding-left: 18px; padding-right: 18px; }
  .hero-visual { min-height: 560px; }
  .portrait-panel { width: min(340px, 86vw); }
  .daylight-panel { width: min(170px, 44vw); }
  .principle-grid, .case-grid, .notes-grid, .contrast, .map-nodes { grid-template-columns: 1fr; }
  .case-card { min-height: 0; }
  .map-node { min-height: 56px; }
}

/* Cinematic editorial direction */
:root {
  --ivory: #f7f0e6;
  --ivory-2: #eadfce;
  --cream: #fff9ef;
  --ink: #1f1b17;
  --muted: #766b5d;
  --soft: #9f9588;
  --gold: #a77f37;
  --amber: #c49a5a;
  --line: rgba(42, 35, 27, 0.11);
  --shadow: 0 26px 80px rgba(55, 43, 28, 0.13);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(247, 240, 230, 0.94) 38%, rgba(234, 223, 206, 0.58)),
    var(--ivory);
}
body::before {
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(31, 27, 23, 0.18) 0.45px, transparent 0.45px),
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.2) 42% 48%, transparent 48% 100%);
  background-size: 5px 5px, 100% 100%;
}

.site-header {
  background: rgba(247, 240, 230, 0.78);
  border-bottom-color: rgba(42, 35, 27, 0.08);
}
.brand {
  letter-spacing: 0.18em;
}
nav {
  font-size: 0.84rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 61px);
  grid-template-columns: minmax(290px, 0.68fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding-top: clamp(42px, 6vw, 82px);
  padding-bottom: clamp(54px, 7vw, 88px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(28px, 4vw, 48px);
  height: 1px;
  background: rgba(42, 35, 27, 0.1);
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 12%;
  width: 36vw;
  height: 36vw;
  max-width: 520px;
  max-height: 520px;
  background: rgba(196, 154, 90, 0.12);
  filter: blur(70px);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  padding-bottom: clamp(18px, 5vw, 74px);
}
h1 {
  max-width: 700px;
  color: #6c6255;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.9;
}
.hero-subtitle {
  max-width: 590px;
  color: #62584d;
}
.hero-poetic {
  max-width: 560px;
  margin: 18px 0 0;
  color: #9b7b48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions {
  margin-top: 34px;
}
.button {
  border-radius: 0;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
}
.button.secondary {
  background: rgba(255, 250, 241, 0.36);
}

.hero-visual {
  min-height: min(78vh, 760px);
  align-self: center;
  width: 100%;
}
.portrait-panel,
.daylight-panel {
  border-color: rgba(42, 35, 27, 0.1);
  box-shadow: 0 28px 90px rgba(55, 43, 28, 0.14);
}
.portrait-panel {
  right: clamp(0px, 2vw, 34px);
  top: 50%;
  width: min(610px, 74vw);
  transform: translateY(-50%);
}
.portrait-panel img {
  aspect-ratio: 0.78;
  object-position: center center;
  filter: saturate(0.92) contrast(0.96) brightness(1.02);
}
.daylight-panel {
  left: clamp(-24px, -2vw, 0px);
  bottom: 2%;
  width: min(190px, 30vw);
  opacity: 0.82;
  transform: translateY(8px);
}
.daylight-panel img {
  filter: saturate(0.88) contrast(0.94);
}

.section-shell {
  border-top-color: rgba(42, 35, 27, 0.09);
}
.manifesto {
  background:
    linear-gradient(180deg, rgba(247, 240, 230, 0.96), rgba(234, 223, 206, 0.72)),
    var(--ivory-2);
}
.manifesto-card {
  border-left-color: rgba(167, 127, 55, 0.34);
}
.principle-grid article,
.case-card,
.notes-grid article,
.contrast article,
.map-detail,
.map-node {
  background: rgba(255, 250, 241, 0.38);
  border-color: rgba(42, 35, 27, 0.1);
  box-shadow: none;
}
.principle-grid article:hover,
.case-card:hover,
.notes-grid article:hover {
  background: rgba(255, 250, 241, 0.58);
}
.alchemy {
  background:
    linear-gradient(180deg, rgba(241, 231, 217, 0.96), rgba(247, 240, 230, 0.9)),
    #f1e7d9;
}
.orbit-line {
  border-color: rgba(42, 35, 27, 0.12);
}
.orbit-b {
  border-color: rgba(167, 127, 55, 0.22);
}
.orbit-core {
  background: radial-gradient(circle, rgba(196, 154, 90, 0.18), rgba(255,250,241,0.42));
}
.ai {
  background: rgba(234, 223, 206, 0.64);
}
.about-image {
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition: opacity 1100ms ease, transform 1100ms ease, filter 1100ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-visual {
    min-height: 720px;
    max-width: 680px;
    justify-self: center;
  }
  .portrait-panel {
    right: 0;
    width: min(560px, 84vw);
  }
  .daylight-panel {
    left: 0;
    width: min(180px, 36vw);
  }
}
@media (max-width: 760px) {
  .hero {
    padding-top: 44px;
  }
  h1 {
    font-size: clamp(4rem, 18vw, 6.6rem);
  }
  .hero-visual {
    min-height: 520px;
  }
  .portrait-panel {
    width: min(380px, 90vw);
  }
  .daylight-panel {
    width: min(136px, 38vw);
    bottom: 0;
  }
  .hero::after {
    width: 75vw;
    height: 75vw;
    right: -20%;
  }
}

/* Refined archive hero: single emotional image, no overlap */
.hero {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 7vw, 104px);
  min-height: calc(100vh - 61px);
}
.hero::before {
  bottom: clamp(26px, 4vw, 46px);
}
.hero-copy {
  align-self: center;
  padding-bottom: 0;
}
.hero-poetic {
  margin: 0 0 22px;
  color: #9a7742;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.48;
}
.hero-image {
  position: relative;
  z-index: 2;
  margin: 0;
  justify-self: end;
  width: min(620px, 100%);
  border: 1px solid rgba(42, 35, 27, 0.1);
  background: var(--cream);
  box-shadow: 0 28px 90px rgba(55, 43, 28, 0.13);
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(0.96) brightness(1.02);
}
.hero-visual,
.portrait-panel,
.daylight-panel {
  display: none;
}


@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    justify-self: center;
    width: min(620px, 92vw);
  }
}
@media (max-width: 760px) {
  .hero {
    padding-top: 46px;
  }
  .hero-image {
    width: min(420px, 100%);
  }
}

/* Handwritten identity and alchemy light motion */
.brand {
  font-family: "Snell Roundhand", "Bradley Hand", "Segoe Script", "Kaiti SC", "STKaiti", cursive;
  font-size: clamp(1.28rem, 2.1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.hero-image::before {
  inset: -18%;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 247, 226, 0.3) 45%, transparent 58% 100%);
  transform: translateX(-34%);
  animation: lightShift 9s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.hero-image::after {
  width: 44%;
  height: 44%;
  right: -16%;
  top: 10%;
  border-radius: 50%;
  background: rgba(196, 154, 90, 0.16);
  filter: blur(42px);
  animation: goldBreath 8s ease-in-out infinite;
}

@keyframes lightShift {
  from { transform: translateX(-38%) translateY(5%); opacity: 0.28; }
  to { transform: translateX(24%) translateY(-4%); opacity: 0.58; }
}
@keyframes goldBreath {
  0%, 100% { opacity: 0.22; transform: scale(0.94); }
  50% { opacity: 0.46; transform: scale(1.08); }
}

/* Chic minimal brand mark */
.brand {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stronger editorial hero */
.hero {
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1fr);
  gap: clamp(38px, 8vw, 128px);
}
.hero-copy {
  max-width: 660px;
}
h1 {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: clamp(5.4rem, 13vw, 11.8rem);
  line-height: 0.82;
  color: #5f564a;
}
.hero-poetic {
  max-width: 500px;
  margin-bottom: 0;
  color: #8f6e3d;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.36;
}
.hero-actions {
  margin-top: 38px;
}
.hero-image {
  width: min(680px, 100%);
  animation: imageFloat 9s ease-in-out infinite;
}
.hero-image::before {
  inset: -22%;
  background:
    linear-gradient(112deg, transparent 0 28%, rgba(255, 246, 219, 0.08) 36%, rgba(255, 232, 166, 0.58) 47%, rgba(255, 246, 219, 0.12) 58%, transparent 68% 100%);
  transform: translateX(-52%) rotate(0.001deg);
  animation: lightShift 5.8s ease-in-out infinite;
  mix-blend-mode: screen;
}
.hero-image::after {
  width: 62%;
  height: 62%;
  right: -20%;
  top: 4%;
  background: rgba(196, 154, 90, 0.24);
  filter: blur(54px);
  animation: goldBreath 6.5s ease-in-out infinite;
}
.hero-image img {
  transform: scale(1.012);
  transition: transform 900ms ease;
}
.hero-image:hover img {
  transform: scale(1.028);
}
@keyframes lightShift {
  0% { transform: translateX(-58%) translateY(6%); opacity: 0.08; }
  42% { opacity: 0.72; }
  100% { transform: translateX(44%) translateY(-6%); opacity: 0.18; }
}
@keyframes goldBreath {
  0%, 100% { opacity: 0.18; transform: scale(0.92); }
  50% { opacity: 0.55; transform: scale(1.12); }
}
@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(5rem, 22vw, 8.2rem);
  }
  .hero-poetic {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
}

/* Cleaner poetic hero + animated alchemy sequence */
.hero-copy .eyebrow {
  margin-bottom: 22px;
  color: #8b7e70;
}
h1 {
  max-width: 720px;
  font-size: clamp(5.1rem, 12vw, 10.6rem);
  line-height: 0.86;
  color: #514a40;
}
.hero-poetic {
  max-width: 520px;
  color: #7c6d5c;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.52;
}
.hero-image {
  width: min(640px, 100%);
}
.hero-image::before {
  background:
    linear-gradient(112deg, transparent 0 32%, rgba(255, 246, 219, 0.06) 38%, rgba(255, 232, 166, 0.42) 48%, rgba(255, 246, 219, 0.1) 58%, transparent 68% 100%);
}

.manifesto {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
}
.manifesto-card p:not(.eyebrow) {
  margin-bottom: 0;
}
.alchemy-sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.34);
  overflow: hidden;
}
.alchemy-sequence::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(196, 154, 90, 0.18), transparent);
  transform: translateX(-80%);
  animation: sequenceLight 7s ease-in-out infinite;
}
.alchemy-sequence span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  color: #5b5247;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 1px solid rgba(42, 35, 27, 0.1);
  animation: wordGlow 8s ease-in-out infinite;
}
.alchemy-sequence span:first-child {
  border-left: 0;
}
.alchemy-sequence span:nth-child(2) { animation-delay: 0.5s; }
.alchemy-sequence span:nth-child(3) { animation-delay: 1s; }
.alchemy-sequence span:nth-child(4) { animation-delay: 1.5s; }
.alchemy-sequence span:nth-child(5) { animation-delay: 2s; color: #9a7742; }
.principle-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}
.principle-grid article {
  min-height: 118px;
}
.principle-grid h3 {
  margin-top: 26px;
  font-size: 1.22rem;
}
@keyframes sequenceLight {
  0%, 18% { transform: translateX(-82%); opacity: 0; }
  42% { opacity: 1; }
  78%, 100% { transform: translateX(82%); opacity: 0; }
}
@keyframes wordGlow {
  0%, 100% { color: #5b5247; }
  50% { color: #a77f37; }
}
@media (max-width: 1120px) {
  .manifesto {
    grid-template-columns: 1fr;
  }
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(4.5rem, 20vw, 7.5rem);
  }
  .alchemy-sequence {
    grid-template-columns: 1fr;
  }
  .alchemy-sequence span {
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid rgba(42, 35, 27, 0.1);
  }
  .alchemy-sequence span:first-child { border-top: 0; }
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

/* Final hero scale + principle orbit */
h1 {
  max-width: 560px;
  font-size: clamp(3.6rem, 8.4vw, 7.2rem);
  line-height: 0.9;
}
.hero-subtitle {
  display: block;
  max-width: 500px;
  margin: 18px 0 0;
  color: #746b5f;
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.7;
}
.hero {
  grid-template-columns: minmax(280px, 0.56fr) minmax(420px, 0.94fr);
  gap: clamp(44px, 8vw, 124px);
}
.hero-image {
  width: min(620px, 100%);
}

.principle-grid {
  display: none;
}
.principle-orbit {
  position: relative;
  width: min(460px, 82vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(42, 35, 27, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,250,241,0.65) 0 22%, transparent 23%),
    rgba(255, 250, 241, 0.22);
  animation: orbitGlow 7s ease-in-out infinite;
}
.principle-orbit::before,
.principle-orbit::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(167, 127, 55, 0.16);
  border-radius: 50%;
}
.principle-orbit::after {
  inset: 34%;
  background: rgba(255, 250, 241, 0.44);
}
.principle-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(42, 35, 27, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.76);
  color: #6b6256;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle)));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}
.principle-dot:hover,
.principle-dot.active {
  border-color: rgba(167, 127, 55, 0.62);
  background: #fffaf1;
  color: var(--gold);
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(190px) rotate(calc(-1 * var(--angle))) scale(1.08);
}
.principle-dot span {
  font-size: 0.78rem;
  font-weight: 760;
}
.principle-readout {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(250px, 58%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#principle-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#principle-title {
  margin: 0;
  color: #4f493f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}
@keyframes orbitGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(167,127,55,0); }
  50% { box-shadow: 0 20px 60px rgba(167,127,55,0.12); }
}
@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(3.6rem, 16vw, 5.6rem);
  }
  .principle-orbit {
    width: min(340px, 86vw);
  }
  .principle-dot,
  .principle-dot:hover,
  .principle-dot.active {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(140px) rotate(calc(-1 * var(--angle)));
  }
  .principle-dot {
    width: 48px;
    height: 48px;
  }
  .principle-readout {
    width: 190px;
  }
}

/* Manifesto revision: transformation flow + iterative loop */
.manifesto {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(247, 240, 230, 0.98), rgba(239, 229, 214, 0.78)),
    var(--ivory-2);
}
.manifesto-card {
  position: sticky;
  top: 110px;
}
.manifesto-line {
  max-width: 520px;
  color: #62594d;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}
.transformation-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  min-height: 190px;
  margin-bottom: 56px;
  padding: 34px 12px 28px;
}
.flow-path {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(42, 35, 27, 0.12);
  overflow: hidden;
}
.flow-path span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #8f3f32, #b97843, #cda85a, #f0d88d);
}
.visible .flow-path span {
  animation: pathGrow 2.2s ease forwards;
}
.flow-step {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
}
.visible .flow-step {
  animation: stepReveal 650ms ease forwards;
  animation-delay: calc(280ms + var(--step) * 220ms);
}
.flow-step span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(42, 35, 27, 0.18);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 rgba(196, 154, 90, 0);
}
.flow-step strong {
  color: #574f45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  font-weight: 500;
}
.flow-step.daylight span {
  border-color: rgba(167, 127, 55, 0.5);
  background: #f2d98d;
}
.visible .flow-step.daylight span {
  animation: daylightPulse 2.8s ease-in-out infinite 1.7s;
}
.flow-step em {
  color: #a77f37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  opacity: 0.78;
}
.principle-loop {
  position: relative;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.loop-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(42, 35, 27, 0.13);
  border-radius: 50%;
}
.loop-orbit::before {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(167, 127, 55, 0.18);
  border-radius: 50%;
}
.loop-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 118px;
  min-height: 54px;
  border: 1px solid rgba(42, 35, 27, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.74);
  color: #6c6256;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(215px) rotate(calc(-1 * var(--angle)));
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, background 220ms ease;
}
.loop-node span {
  font-size: 0.74rem;
  font-weight: 760;
}
.loop-node:hover,
.loop-node.active {
  color: var(--gold);
  border-color: rgba(167, 127, 55, 0.56);
  background: #fffaf1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(215px) rotate(calc(-1 * var(--angle))) scale(1.04);
}
.loop-node:hover ~ .loop-orbit,
.loop-node.active ~ .loop-orbit {
  animation: none;
}
.principle-loop .principle-readout {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(280px, 56%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.principle-loop #principle-label {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.principle-loop #principle-title {
  color: #4f493f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 500;
}
@keyframes pathGrow {
  to { transform: scaleX(1); }
}
@keyframes stepReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes daylightPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(240, 216, 141, 0); }
  50% { box-shadow: 0 0 34px rgba(240, 216, 141, 0.7); }
}
@media (max-width: 1120px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-card { position: static; }
}
@media (max-width: 760px) {
  .transformation-flow {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
    justify-items: start;
    padding-left: 34px;
  }
  .flow-path {
    left: 40px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 1px;
    height: auto;
  }
  .flow-path span {
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(180deg, #8f3f32, #b97843, #cda85a, #f0d88d);
  }
  .visible .flow-path span { animation: pathGrowY 2.2s ease forwards; }
  .flow-step { grid-template-columns: 18px auto; justify-items: start; }
  .principle-loop { width: min(350px, 88vw); }
  .loop-node,
  .loop-node:hover,
  .loop-node.active {
    width: 94px;
    min-height: 46px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(145px) rotate(calc(-1 * var(--angle)));
  }
  .loop-node span { font-size: 0.66rem; }
}
@keyframes pathGrowY {
  to { transform: scaleY(1); }
}

/* Retire previous principle orbit implementation */
.principle-orbit { display: none; }

/* Final polish: larger principle loop + expanding alchemy bars */
.principle-loop {
  width: min(680px, 92vw);
}
.loop-node {
  width: 150px;
  min-height: 62px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(285px) rotate(calc(-1 * var(--angle)));
}
.loop-node:hover,
.loop-node.active {
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(285px) rotate(calc(-1 * var(--angle))) scale(1.04);
}
.principle-loop .principle-readout {
  width: min(330px, 52%);
}

.map-nodes {
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}
.map-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  text-align: left;
  overflow: hidden;
}
.map-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(143,63,50,0.55), rgba(167,127,55,0.72));
  opacity: 0;
  transition: opacity 220ms ease;
}
.map-node span {
  position: relative;
  z-index: 1;
}
.map-node em {
  position: relative;
  z-index: 1;
  max-height: 0;
  opacity: 0;
  color: #746b5f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
  font-style: normal;
  line-height: 1.4;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}
.map-node:hover,
.map-node.active {
  min-height: 118px;
}
.map-node:hover::before,
.map-node.active::before {
  opacity: 1;
}
.map-node:hover em,
.map-node.active em {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}
.map-detail {
  display: none;
}
@media (max-width: 760px) {
  .principle-loop { width: min(430px, 92vw); }
  .loop-node,
  .loop-node:hover,
  .loop-node.active {
    width: 104px;
    min-height: 48px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(178px) rotate(calc(-1 * var(--angle)));
  }
  .loop-node span { font-size: 0.62rem; }
  .principle-loop .principle-readout { width: min(230px, 54%); }
  .map-node {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 18px;
  }
}

/* Growth Alchemy accordion panels */
.map-nodes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.map-item {
  border: 1px solid rgba(42, 35, 27, 0.1);
  background: rgba(255, 250, 241, 0.34);
  overflow: hidden;
  transition: background 220ms ease, border-color 220ms ease;
}
.map-item.active,
.map-item:hover {
  border-color: rgba(167, 127, 55, 0.34);
  background: rgba(255, 250, 241, 0.62);
}
.map-node {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  background: transparent;
  text-align: left;
}
.map-node::before {
  display: none;
}
.map-node::after {
  content: "+";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 220ms ease;
}
.map-item.active .map-node::after,
.map-item:hover .map-node::after {
  transform: rotate(45deg);
}
.map-node span {
  color: #504a40;
  font-weight: 760;
}
.map-node:hover,
.map-node.active {
  min-height: 62px;
  transform: none;
  background: transparent;
  border-color: transparent;
}
.map-panel {
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  border-top: 1px solid transparent;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 320ms ease, opacity 240ms ease, padding 320ms ease, border-color 220ms ease, transform 240ms ease;
}
.map-item.active .map-panel,
.map-item:hover .map-panel {
  max-height: 180px;
  opacity: 1;
  padding: 0 20px 20px;
  border-color: rgba(42, 35, 27, 0.08);
  transform: translateY(0);
}
.map-panel p {
  margin: 16px 0 10px;
  color: #6e6559;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.9vw, 1.42rem);
  line-height: 1.42;
}
.map-panel small {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-node em {
  display: none;
}
@media (max-width: 760px) {
  .map-node {
    min-height: 58px;
    padding: 0 16px;
  }
  .map-item.active .map-panel,
  .map-item:hover .map-panel {
    padding: 0 16px 18px;
  }
}
