:root {
  --ink: #0c0b0a;
  --ink-2: #161412;
  --cream: #f3ece0;
  --cream-dim: #ffffff;
  --copper: #c9a36a;
  --copper-2: #e0c38a;
  --forest: #2f3d2c;
  --line: rgba(243, 236, 224, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.is-ready { cursor: none; }
body.has-menu { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.constellation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  background: transparent;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--copper);
  transform-origin: left;
}

/* Cursor */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 200; }
.cursor__dot, .cursor__ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--copper);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 163, 106, 0.7);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s, border-color .35s;
}
body.is-hover .cursor__ring {
  width: 64px; height: 64px;
  background: rgba(201, 163, 106, 0.12);
  border-color: var(--copper);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner { text-align: center; }
.loader__mark {
  width: min(220px, 62vw);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  animation: fadeUp 0.9s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad);
  transition: background .4s, mix-blend-mode .4s, backdrop-filter .4s;
}
.nav.is-solid,
body.has-menu .nav {
  mix-blend-mode: normal;
  background: rgba(12, 11, 10, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
body.has-menu .nav {
  background: var(--ink);
  border-bottom-color: transparent;
}
body:not(.has-menu) .nav:not(.is-solid) .nav__links,
body:not(.has-menu) .nav:not(.is-solid) .nav__cta,
body:not(.has-menu) .nav:not(.is-solid) .nav__toggle {
  mix-blend-mode: difference;
}
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(180px, 42vw);
  mix-blend-mode: screen;
  filter: invert(100%);
}
.nav__links { display: flex; gap: 1.75rem; }
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 163, 106, 0.55);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: var(--copper);
}
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--cream);
  transition: transform .35s var(--ease), top .35s;
}
.nav__toggle span:first-child { top: 14px; }
.nav__toggle span:last-child { top: 21px; }
.nav__toggle.is-open span:first-child { top: 17px; transform: rotate(40deg); }
.nav__toggle.is-open span:last-child { top: 17px; transform: rotate(-40deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad);
  gap: 1.4rem;
  transform: translateY(-110%);
  transition: transform .6s var(--ease);
}
.mobile-menu.is-open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__image {
  position: absolute;
  inset: -8%;
  background:
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2400&q=80")
    center / cover no-repeat;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,10,.35) 0%, rgba(12,11,10,.55) 45%, rgba(12,11,10,.92) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(47,61,44,.25), transparent 50%);
}
@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem var(--pad) 6.5rem;
  max-width: 1180px;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 8.4vw, 7.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.hero__title .line > span:not(.hero__words) {
  display: inline-block;
}
.hero__cycle {
  color: var(--copper);
  font-style: italic;
  padding-bottom: 0.18em;
  padding-right: 0.12em;
}
.hero__words {
  display: grid;
  justify-items: start;
  width: max-content;
}
.hero__words span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.hero__words span.is-active {
  opacity: 1;
  transform: none;
}
@keyframes titleIn {
  from { transform: translateY(110%); }
  to { transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  body.is-ready .hero__title .line > span:not(.hero__words),
  body.is-ready .hero__words {
    animation: titleIn 1.15s var(--ease) both;
  }
  body.is-ready .hero__title .line:nth-child(1) > span { animation-delay: 0.05s; }
  body.is-ready .hero__words { animation-delay: 0.18s; }
  body.is-ready .hero__title .line:nth-child(3) > span { animation-delay: 0.32s; }
}
.hero__lede {
  max-width: 36rem;
  margin: 1.6rem 0 2rem;
  color: var(--cream-dim);
  font-weight: 300;
  font-size: 1.05rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero__scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--copper), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.hero__meta {
  position: absolute;
  bottom: 2rem;
  left: var(--pad);
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn--gold {
  background: var(--copper);
  color: var(--ink);
  font-weight: 500;
}
.btn--gold:hover { background: var(--copper-2); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 0.82rem; }
.btn--email {
  text-transform: none;
  letter-spacing: 0.04em;
  word-break: break-all;
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1.35rem 0 1.5rem;
  background: var(--ink-2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--cream-dim);
}
.marquee__track span { position: relative; }
.marquee__track span::after {
  content: "·";
  position: absolute;
  right: -1.7rem;
  color: var(--copper);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shared sections */
section { position: relative; z-index: 1; padding: clamp(4.5rem, 10vw, 8.5rem) var(--pad); scroll-margin-top: 4.5rem; }
.section-head { max-width: 820px; margin-bottom: 3.5rem; }
.section-head--row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  max-width: none;
  align-items: end;
}
.display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.display em { font-style: italic; color: var(--copper); }
.display--xl { font-size: clamp(3rem, 8vw, 7rem); }
.lede {
  margin-top: 1.2rem;
  color: var(--cream-dim);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 40rem;
}

/* Approach */
.approach { background: linear-gradient(180deg, var(--ink) 0%, #11100e 100%); }
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.triptych__card {
  background: var(--ink-2);
  padding: 2.4rem 2rem;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}
.triptych__card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,163,106,.18), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
}
.triptych__card:hover { background: #1b1916; }
.triptych__card:hover::before { opacity: 1; }
.triptych__num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--copper);
  margin-bottom: 1.4rem;
}
.triptych__card h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.triptych__card p { color: var(--cream-dim); font-weight: 300; }

/* Method / Four C's */
.method {
  background: var(--cream);
  color: var(--ink);
}
.method .eyebrow { color: #8a6a38; }
.method .lede { color: #5c564c; }
.cs { margin-top: 2.5rem; border-top: 1px solid rgba(12,11,10,.12); }
.cs__item { border-bottom: 1px solid rgba(12,11,10,.12); }
.cs__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0.2rem;
  text-align: left;
  cursor: none;
}
.cs__index {
  font-family: var(--font-display);
  font-style: italic;
  color: #8a6a38;
}
.cs__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  transition: color .35s, letter-spacing .45s var(--ease);
}
.cs__item.is-open .cs__name,
.cs__trigger:hover .cs__name {
  color: #8a6a38;
  letter-spacing: 0.02em;
}
.cs__hint {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7368;
}
.cs__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.cs__panel p {
  overflow: hidden;
  max-width: 42rem;
  padding: 0 0 0 5rem;
  color: #4e4942;
  font-weight: 300;
}
.cs__item.is-open .cs__panel {
  grid-template-rows: 1fr;
}
.cs__item.is-open .cs__panel p { padding-bottom: 1.6rem; }

/* Ventures */
.ventures__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}
.venture:nth-child(3) { grid-column: 1; }
.venture:nth-child(4) { grid-column: 2; grid-row: 2; }
.venture {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
}
.venture__img {
  position: absolute;
  inset: 0;
  background: var(--img) center / cover no-repeat;
  transform: scale(1.08);
  transition: transform 1.1s var(--ease);
  z-index: -2;
}
.venture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(12,11,10,.88) 100%);
  z-index: -1;
}
.venture:hover .venture__img { transform: scale(1.16); }
.venture__body { padding: 1.8rem; }
.venture__body span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.venture__body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.35rem 0 0.5rem;
}
.venture__body p { color: var(--cream-dim); font-weight: 300; max-width: 28rem; }

/* Journal */
.journal { padding-top: 0; }
.journal__list { display: grid; gap: 0; }
.note {
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left .45s var(--ease);
}
.note:last-child { border-bottom: 1px solid var(--line); }
.note:hover { padding-left: 0.8rem; }
.note__tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.note h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
}
.note a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 2px;
}

/* Connect */
.connect {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,163,106,.12), transparent 50%),
    var(--ink-2);
}
.connect .lede { margin-inline: auto; margin-bottom: 2rem; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 3rem var(--pad) 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
}
.footer__brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  margin-bottom: 0.85rem;
  mix-blend-mode: screen;
  filter: invert(100%);
}
.footer__brand p { margin-top: 0.4rem; font-weight: 300; }
.footer__links { display: flex; gap: 1.4rem; }
.footer__links a:hover { color: var(--copper); }
.footer__copy { font-size: 0.78rem; }

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (hover: none), (pointer: coarse) {
  body, button { cursor: auto; }
  .cursor { display: none; }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .section-head--row,
  .triptych,
  .ventures__grid,
  .note,
  .footer {
    grid-template-columns: 1fr;
  }
  .venture, .venture:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }
  .cs__trigger { grid-template-columns: 2.4rem 1fr; }
  .cs__hint { display: none; }
  .cs__panel p { padding-left: 2.4rem; }
  .hero__scroll { display: none; }
  .note a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
