:root {
  --ink: #080b0b;
  --paper: #ece8df;
  --mist: #b9b8b1;
  --gold: #d7ad6f;
  --line: rgba(236, 232, 223, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site { min-height: 100vh; background: var(--ink); }
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 72%, rgba(215, 173, 111, 0.14), transparent 34%),
    #060808;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
}
.intro-is-done .intro { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-glow {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: rgba(255, 181, 77, 0.16);
  filter: blur(90px);
  animation: glow-rise 3.8s ease both;
}
.name-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 13.4vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.7;
  white-space: nowrap;
}
.name-top { display: flex; align-items: baseline; }
.name-part {
  display: inline-block;
  color: transparent;
  background-position: center;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  filter: saturate(0.85) brightness(1.12);
  will-change: transform, opacity;
}
.name-lee {
  background-image: url("assets/lee-flower.jpg");
  animation: lee-arrives 3.35s cubic-bezier(.16,.84,.25,1) both;
}
.name-lan {
  background-image: url("assets/lan-landscape.png");
  animation: lan-arrives 3.35s cubic-bezier(.16,.84,.25,1) both;
}
.name-vision {
  padding: 0 .07em .08em 0;
  background-image: url("assets/vision-sunrise.jpg");
  background-position: 48% 72%;
  animation: vision-arrives 3.35s cubic-bezier(.16,.84,.25,1) both;
}
.intro-caption {
  position: absolute;
  z-index: 3;
  bottom: 12vh;
  margin: 0;
  color: rgba(236,232,223,.72);
  font-family: Georgia, serif;
  font-size: clamp(.85rem, 1.2vw, 1.1rem);
  font-style: italic;
  letter-spacing: .04em;
  opacity: 0;
  animation: caption-in .7s 3.1s ease forwards;
}
.skip-intro {
  position: absolute;
  z-index: 4;
  right: 2rem;
  bottom: 2rem;
  border: 0;
  border-bottom: 1px solid rgba(236,232,223,.35);
  padding: .35rem 0;
  color: rgba(236,232,223,.58);
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-content { opacity: 0; transition: opacity 1s .2s ease; }
.intro-is-done .page-content { opacity: 1; }
.site-header {
  position: absolute;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1.7rem 3vw;
  border-bottom: 1px solid var(--line);
}
.wordmark { font-size: 1.17rem; font-weight: 800; letter-spacing: -.05em; }
.wordmark span:last-child { color: var(--gold); }
.site-header nav { display: flex; gap: 2rem; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.site-header nav a { color: rgba(236,232,223,.76); }
.replay {
  justify-self: end;
  border: 1px solid rgba(236,232,223,.34);
  border-radius: 999px;
  padding: .55rem .9rem;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.version-stamp {
  position: absolute;
  top: calc(100% + .8rem);
  right: 3vw;
  margin: 0;
  color: rgba(236,232,223,.48);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/vision-sunrise.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,8,.92) 0%, rgba(5,8,8,.45) 48%, rgba(5,8,8,.2)), linear-gradient(0deg, rgba(5,8,8,.75), transparent 54%);
}
.hero-copy { position: relative; z-index: 2; width: min(850px, 80vw); margin: 0 0 9vh 7vw; }
.eyebrow, .section-number { color: var(--gold); font-size: .67rem; letter-spacing: .19em; text-transform: uppercase; }
.hero h1 { margin: 1.1rem 0 1.2rem; font-size: clamp(4.4rem, 10.5vw, 10.5rem); font-weight: 700; letter-spacing: -.075em; line-height: .79; }
.hero-text { max-width: 540px; color: rgba(236,232,223,.72); font-family: Georgia, serif; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-cta { display: inline-flex; gap: 1.2rem; align-items: center; margin-top: 1.8rem; border-bottom: 1px solid rgba(236,232,223,.5); padding: 0 0 .55rem; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-index { position: absolute; right: 3vw; bottom: 3rem; z-index: 2; display: flex; gap: .8rem; align-items: center; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.index-line { width: 48px; height: 1px; background: rgba(236,232,223,.45); }

.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; padding: 10rem 7vw; }
.manifesto h2 { max-width: 930px; margin: 0; font-size: clamp(2.5rem, 5.5vw, 6rem); font-weight: 500; letter-spacing: -.055em; line-height: .99; }
.manifesto div p { max-width: 610px; margin: 2.5rem 0 0 auto; color: var(--mist); font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.8; }
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 72vh; }
.story-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 2rem; isolation: isolate; background-position: center; background-size: cover; }
.story-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(5,8,8,.86), transparent 67%); transition: background .4s ease; }
.story-card::after { content: ""; position: absolute; inset: 0; z-index: -2; background: inherit; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.story-card:hover::after { transform: scale(1.045); }
.card-lee { background-image: url("assets/lee-flower.jpg"); }
.card-lan { background-image: url("assets/lan-landscape.png"); }
.card-lan::after { display: none; }
.card-vision { background-image: url("assets/vision-sunrise.jpg"); }
.story-card span { color: var(--gold); font-size: .63rem; letter-spacing: .17em; text-transform: uppercase; }
.story-card h3 { margin: .65rem 0 0; max-width: 350px; font-size: clamp(1.8rem, 2.8vw, 3.2rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.story-card p { margin: .8rem 0 0; color: rgba(236,232,223,.58); font-family: Georgia, serif; font-size: .8rem; font-style: italic; }
.card-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }

.services { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; padding: 10rem 7vw; }
.service { display: grid; grid-template-columns: 3rem 1fr auto; align-items: center; border-top: 1px solid var(--line); padding: 1.55rem 0; }
.service:last-child { border-bottom: 1px solid var(--line); }
.service span { color: var(--mist); font-size: .68rem; }
.service h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 4.5rem); font-weight: 500; letter-spacing: -.05em; }
.quote-section { position: relative; overflow: hidden; padding: 11rem 12vw; text-align: center; background: var(--paper); color: var(--ink); }
.quote-mark { position: absolute; top: -3rem; left: 50%; margin: 0; color: rgba(8,11,11,.06); font-family: Georgia, serif; font-size: 25rem; transform: translateX(-50%); }
.quote-section blockquote { position: relative; margin: 0 auto; max-width: 950px; font-family: Georgia, serif; font-size: clamp(2rem, 4.5vw, 5rem); font-style: italic; line-height: 1.12; }
.quote-section > p:last-child { margin-top: 2.5rem; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
footer { padding: 10rem 7vw 3rem; background: #050707; }
footer > p { color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; font-style: italic; }
footer h2 { margin: .7rem 0 3rem; font-size: clamp(4rem, 10vw, 10rem); font-weight: 600; letter-spacing: -.075em; line-height: .82; }
footer > a { border-bottom: 1px solid var(--paper); padding-bottom: .4rem; font-family: Georgia, serif; font-size: clamp(1rem, 2vw, 1.5rem); }
.footer-line { display: flex; justify-content: space-between; margin-top: 9rem; border-top: 1px solid var(--line); padding-top: 1.2rem; color: var(--mist); font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }

@keyframes lee-arrives {
  0% { opacity: 0; transform: translateX(-70vw); }
  25% { opacity: .34; }
  70% { opacity: .7; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(0); filter: saturate(.55) brightness(1.45); }
}
@keyframes lan-arrives {
  0% { opacity: 0; transform: translateX(70vw); }
  25% { opacity: .34; }
  70% { opacity: .7; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(0); filter: saturate(.55) brightness(1.45); }
}
@keyframes vision-arrives {
  0% { opacity: 0; transform: translateY(-65vh); }
  25% { opacity: .34; }
  70% { opacity: .7; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); filter: saturate(.7) brightness(1.48); }
}
@keyframes caption-in { to { opacity: 1; transform: translateY(-8px); } }
@keyframes glow-rise { from { opacity: 0; transform: translateY(20vh) scale(.6); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hero-breathe { to { transform: scale(1.1); } }

@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; padding: 1.2rem 1rem; }
  .site-header nav { display: none; }
  .name-stage { font-size: 19vw; letter-spacing: -.1em; line-height: .73; }
  .intro-caption { bottom: 18vh; }
  .skip-intro { right: 1rem; bottom: 1rem; }
  .version-stamp { right: 1rem; }
  .hero-copy { width: auto; margin: 0 1.2rem 10vh; }
  .hero h1 { font-size: 18vw; }
  .hero-index { display: none; }
  .manifesto, .services { grid-template-columns: 1fr; gap: 2.3rem; padding: 7rem 1.2rem; }
  .manifesto div p { margin-left: 0; }
  .triptych { grid-template-columns: 1fr; }
  .story-card { min-height: 62vh; }
  .quote-section { padding: 8rem 1.5rem; }
  footer { padding: 7rem 1.2rem 2rem; }
  .footer-line { align-items: flex-start; flex-direction: column; gap: .75rem; margin-top: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .intro { display: none; }
  .page-content { opacity: 1; }
}
