:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --white: #f5f3ef;
  --muted: #aaa59b;
  --gold-base: #A38550;
  --gold-light: #CEB177;
  --gold-highlight: #EEDBA5;
  --gold-deep: #816335;
  --gold-shadow: #4E3719;
  --line: rgba(238, 219, 165, 0.16);
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: linear-gradient(to bottom, rgba(5,5,5,.92), rgba(5,5,5,.45), transparent);
  pointer-events: none;
}
.site-header a { pointer-events: auto; }
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 500;
}
.brand-mark { width: 32px; height: 32px; object-fit: contain; }
.header-link {
  color: var(--muted);
  font-size: .73rem;
  letter-spacing: .18em;
  transition: color .25s ease;
}
.header-link:hover,
.header-link:focus-visible { color: var(--gold-light); }

.section {
  position: relative;
  overflow: clip;
  isolation: isolate;
}
.section-pad { padding: clamp(6rem, 11vw, 10rem) var(--pad); }

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7rem var(--pad) 4rem;
  text-align: center;
}
.hero-content {
  width: min(900px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-mark {
  width: clamp(150px, 18vw, 245px);
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.horizon {
  position: relative;
  width: min(760px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(206,177,119,.08) 18%, rgba(238,219,165,.68) 50%, rgba(206,177,119,.08) 82%, transparent 100%);
}
.horizon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  height: 46px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(163,133,80,.15), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}
.horizon-hero { margin-bottom: 2rem; }

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 6.6rem);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 500;
}
.hero h1 span { display: block; }
.hero h1 span + span { color: var(--gold-highlight); }
.hero-copy {
  width: min(670px, 100%);
  margin: 1.9rem auto 2.2rem;
  color: #c9c5bd;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.text-cta {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  padding: .6rem 0;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .2em;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.text-cta:hover,
.text-cta:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-deep);
}

.section-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
}
.foundation { background: linear-gradient(180deg, var(--black), var(--black-soft) 50%, var(--black)); }
.foundation h2,
.core h2,
.next h2,
.connection h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 400;
}
.foundation-thoughts {
  align-self: end;
  color: #beb9b0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.foundation-thoughts p { margin: 0 0 1.15rem; }
.foundation-emphasis { padding-top: .8rem; }
.foundation-emphasis strong { color: var(--gold-highlight); font-weight: 500; }
.question-line {
  width: min(var(--max), 100%);
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(1.15rem, 2.8vw, 2.4rem);
  letter-spacing: .08em;
}

.core { min-height: 92svh; display: grid; place-items: center; }
.core-wrap { width: min(1000px, 100%); margin: auto; }
.core-stack span { display: block; }
.core-stack span:nth-child(2) { margin-left: 7vw; color: #c1bdb5; }
.core-stack span:nth-child(3) { margin-left: 14vw; color: var(--gold-highlight); }
.core-copy {
  width: min(650px, 80%);
  margin: 2.5rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.signature-line {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  text-align: right;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: .08em;
}
.signature-line span { color: var(--gold-highlight); }

.possibilities { min-height: 180svh; }
.possibilities-wrap {
  width: min(var(--max), 100%);
  min-height: 150svh;
  margin: 0 auto;
  position: relative;
}
.possibility {
  position: absolute;
  margin: 0;
  max-width: 760px;
  line-height: 1.12;
}
.possibility strong { color: var(--gold-highlight); font-weight: 500; }
.p1 { top: 8%; left: 0; font-size: clamp(2rem, 4.8vw, 4.6rem); font-weight: 400; }
.p2 { top: 28%; right: 0; text-align: right; font-size: clamp(1.35rem, 2.6vw, 2.45rem); color: #bdb8af; }
.p3 { top: 48%; left: 9%; font-size: clamp(1.8rem, 4vw, 3.8rem); color: var(--gold-light); }
.p4 { top: 66%; right: 2%; text-align: right; font-size: clamp(1.35rem, 2.6vw, 2.45rem); color: #bdb8af; }
.p5 { bottom: 11%; left: 0; font-size: clamp(1.05rem, 1.8vw, 1.45rem); color: var(--muted); }
.p6 { bottom: 2%; right: 0; font-size: clamp(1.6rem, 3.4vw, 3rem); letter-spacing: .05em; }
.p6 span { color: var(--gold-highlight); }

.next {
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding: 5rem var(--pad);
}
.next-content { text-align: center; width: min(850px, 100%); }
.next h2 { margin-bottom: 1.9rem; }
.next-content > p:not(.eyebrow) { margin: .4rem 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.horizon-next { margin: clamp(4rem, 8vw, 7rem) auto 0; opacity: .65; }

.connection { border-top: 1px solid rgba(255,255,255,.05); }
.connection-wrap { width: min(900px, 100%); margin: 0 auto; }
.connection h2 { max-width: 750px; }
.connection-copy { max-width: 600px; margin: 1.5rem 0 3rem; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.25rem); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.social-grid a {
  padding: 1.2rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d0ccc4;
  text-align: center;
  font-size: .9rem;
  letter-spacing: .06em;
  transition: background .25s ease, color .25s ease;
}
.social-grid a:hover,
.social-grid a:focus-visible {
  background: rgba(163,133,80,.08);
  color: var(--gold-highlight);
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 2.5rem;
  padding: .9rem 1.35rem;
  border: 1px solid rgba(206,177,119,.5);
  color: var(--gold-highlight);
  font-size: .78rem;
  letter-spacing: .18em;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.contact-cta:hover,
.contact-cta:focus-visible {
  background: rgba(163,133,80,.1);
  border-color: var(--gold-light);
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.5rem var(--pad) 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #d8d4cc;
  font-size: .74rem;
  letter-spacing: .16em;
  white-space: nowrap;
}
.footer-brand img { width: 28px; height: 28px; object-fit: contain; }
.footer-copy { text-align: right; font-size: .78rem; }
.footer-copy p { margin: .25rem 0; }
.footer-copy p:nth-child(2) { color: var(--gold-base); }
.copyright { opacity: .65; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-highlight);
  outline-offset: 4px;
}

@media (max-width: 780px) {
  .site-header { padding-top: .85rem; }
  .brand-name { display: none; }
  .brand-mark { width: 30px; height: 30px; }

  .hero {
    min-height: 100svh;
    padding-top: 6.5rem;
  }
  .hero-mark { width: min(44vw, 180px); }
  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
    line-height: .92;
  }
  .hero h1 span:nth-child(2) {
    max-width: 10ch;
    margin-inline: auto;
  }
  .hero-copy { max-width: 30ch; }

  .section-pad { padding-top: 6.5rem; padding-bottom: 6.5rem; }
  .section-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .foundation-thoughts { max-width: 34rem; margin-left: 8vw; }
  .question-line { margin-top: 5rem; font-size: clamp(1.4rem, 7vw, 2.2rem); }

  .core { min-height: auto; }
  .core-stack { font-size: clamp(2.3rem, 10.5vw, 4rem) !important; }
  .core-stack span:nth-child(2) { margin-left: 7vw; }
  .core-stack span:nth-child(3) { margin-left: 14vw; }
  .core-copy { width: 86%; margin-top: 2rem; }
  .signature-line { text-align: left; }

  .possibilities { min-height: auto; }
  .possibilities-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .possibility {
    position: static;
    max-width: 100%;
  }
  .p1 { font-size: clamp(2.2rem, 10vw, 3.8rem); }
  .p2, .p4 { margin-left: 10vw; text-align: left; }
  .p3 { margin-right: 6vw; font-size: clamp(2rem, 9vw, 3.3rem); }
  .p5 { margin-top: 1rem; }
  .p6 { margin-left: auto; text-align: right; }

  .next { min-height: 82svh; }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cta { width: 100%; min-height: 58px; }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-copy { text-align: center; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.55rem; }
  .foundation-thoughts { margin-left: 0; }
  .social-grid { grid-template-columns: 1fr 1fr; }
}

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