@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --night-basalt: #0e1116;
  --fell-slate: #2b3138;
  --mist-limestone: #ece8e1;
  --paper: #f7f4ee;
  --paper-deep: #e7e1d8;
  --cairn-grey: #8a8177;
  --horizon-gold: #c4a46a;
  --mountain-blue: #647a92;
  --lichen-green: #4e5b55;
  --text-main: #12171c;
  --text-soft: rgba(18, 23, 28, 0.74);
  --text-faint: rgba(18, 23, 28, 0.46);
  --line-soft: rgba(43, 49, 56, 0.12);
  --line-strong: rgba(196, 164, 106, 0.3);
  --container: 1180px;
  --transition: 220ms ease;
  --type-body: clamp(1rem, 0.98rem + 0.18vw, 1.08rem);
  --type-lead: clamp(1.14rem, 1.02rem + 0.5vw, 1.34rem);
  --type-h1: clamp(4.25rem, 9vw, 7.1rem);
  --type-h2: clamp(2.55rem, 4.4vw, 4rem);
  --type-h3: clamp(2rem, 2.8vw, 2.55rem);
  --type-signal: clamp(1.2rem, 1.5vw, 1.55rem);
  --type-brand: clamp(1.08rem, 1rem + 0.3vw, 1.22rem);
  --type-brand-sub: clamp(0.8rem, 0.76rem + 0.16vw, 0.9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 4%, rgba(100, 122, 146, 0.08), transparent 22rem),
    radial-gradient(circle at 84% 10%, rgba(196, 164, 106, 0.1), transparent 18rem),
    linear-gradient(180deg, #fbf9f5 0%, var(--paper) 38%, var(--mist-limestone) 100%);
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

body::before {
  top: -22rem;
  left: 50%;
  width: 70rem;
  height: 70rem;
  transform: translateX(-50%);
  border: 1px solid rgba(43, 49, 56, 0.035);
  box-shadow: 0 0 0 7rem rgba(43, 49, 56, 0.018), 0 0 0 14rem rgba(43, 49, 56, 0.01);
}

body::after {
  right: -10rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(100, 122, 146, 0.06), transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

main::before {
  display: none;
}

.shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 8.25rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 0.38rem rgba(196, 164, 106, 0.045);
  transform: translate(-50%, -50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--horizon-gold);
  box-shadow: 0 0 0 0.28rem rgba(196, 164, 106, 0.08);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--type-h1);
}

h2 {
  font-size: var(--type-h2);
}

h3 {
  font-size: var(--type-h3);
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--type-body);
}

.muted {
  color: var(--text-faint);
}

.section-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3.25rem;
}

.section-head.narrow {
  max-width: 34rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.88rem 1.32rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, rgba(43, 49, 56, 0.98), rgba(14, 17, 22, 0.98));
  color: var(--mist-limestone);
  box-shadow: 0 16px 34px rgba(14, 17, 22, 0.14);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  pointer-events: none;
}

.header-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 6.5rem;
  width: 100%;
  padding: 1.55rem 0 0.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  min-width: 0;
  pointer-events: auto;
}

.brand-mark {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.04) saturate(0.82);
}

.brand-lockup {
  display: grid;
  gap: 0.18rem;
}

.brand-name {
  font-size: var(--type-brand);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-tagline {
  color: rgba(18, 23, 28, 0.42);
  font-size: var(--type-brand-sub);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-page .brand-name {
  color: rgba(247, 244, 238, 0.96);
}

.home-page .brand-tagline {
  color: rgba(247, 244, 238, 0.64);
}

.home-page .brand-mark img {
  filter: brightness(0) invert(1) contrast(1.02);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--night-basalt);
}

.hero {
  position: relative;
  min-height: calc(100svh - 1rem);
  padding: 8.5rem 0 6rem;
  overflow: clip;
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 255, 255, 0.72), rgba(236, 232, 225, 0.26) 14%, rgba(236, 232, 225, 0) 30%),
    linear-gradient(132deg, rgba(14, 17, 22, 0.04) 0 28%, transparent 28% 100%),
    linear-gradient(312deg, rgba(43, 49, 56, 0.05) 0 24%, transparent 24% 100%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.32), rgba(247, 244, 238, 0.08) 34%, rgba(247, 244, 238, 0.28) 100%);
}

.hero-film {
  min-height: 100svh;
  padding: 0;
  background: #0a0d12;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(0.9) brightness(0.8);
}

.hero-video-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(8, 12, 17, 0.56), rgba(8, 12, 17, 0.36) 24%, rgba(8, 12, 17, 0.34) 58%, rgba(8, 12, 17, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 12, 17, 0.28), rgba(8, 12, 17, 0.06) 24%, rgba(8, 12, 17, 0.06) 76%, rgba(8, 12, 17, 0.3));
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  transform: translateX(-50%);
  box-shadow: 0 0 0 0.72rem rgba(196, 164, 106, 0.05);
}

.hero-film-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.hero-film-copy {
  display: grid;
  gap: 1.4rem;
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 9.5rem 0 8rem;
  text-align: center;
}

.hero-film-copy h1 {
  max-width: 8ch;
  margin: 0 auto;
  color: rgba(247, 244, 238, 0.98);
  text-wrap: balance;
  text-shadow: 0 0.08em 1.2em rgba(0, 0, 0, 0.26);
}

.hero-film-brand {
  display: grid;
  gap: 0.42rem;
  margin: 0 auto 1rem;
}

.hero-film-name {
  color: rgba(247, 244, 238, 0.98);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.72rem, 1.45rem + 0.7vw, 2.32rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-film-descriptor {
  margin: 0 auto;
  color: rgba(247, 244, 238, 0.72);
  font-size: clamp(0.8rem, 0.76rem + 0.12vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-film-triad {
  color: rgba(247, 244, 238, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-film-note {
  color: rgba(247, 244, 238, 0.76);
  max-width: 24rem;
  margin: 0 auto;
  font-size: clamp(1.02rem, 0.96rem + 0.28vw, 1.2rem);
  line-height: 1.75;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
  color: rgba(247, 244, 238, 0.82);
  pointer-events: auto;
}

.scroll-cue-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.scroll-cue-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-grid,
.split-flow,
.signal-grid,
.contact-grid,
.footer-panel {
  display: grid;
  gap: 3rem;
}

.hero-grid,
.split-flow,
.signal-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 35rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 39rem;
}

.hero-copy h1 {
  max-width: 8ch;
  text-wrap: balance;
}

.hero-triad {
  color: var(--cairn-grey);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro {
  font-size: var(--type-lead);
  line-height: 1.85;
}

.hero-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  opacity: 0.92;
}

.hero-stage::before {
  display: none;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43, 49, 56, 0.08);
}

.orbit-a {
  inset: 3%;
}

.orbit-b {
  inset: 14%;
  border-color: rgba(196, 164, 106, 0.18);
}

.orbit-c {
  inset: 26%;
  border-color: rgba(100, 122, 146, 0.18);
}

.hero-mark {
  position: absolute;
  inset: 26%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7) 0 36%, rgba(236, 232, 225, 0.36) 54%, rgba(236, 232, 225, 0.06) 72%, rgba(236, 232, 225, 0) 80%);
}

.hero-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: contrast(1.08) saturate(0.86);
}

.orbit-note {
  position: absolute;
  color: rgba(18, 23, 28, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.note-top {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.note-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.note-bottom {
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.note-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section-intro {
  display: grid;
  gap: 1.3rem;
  align-content: start;
}

.section-intro h2,
.contact-copy h2,
.page-hero-card h1 {
  text-wrap: balance;
}

.section-intro h2 {
  max-width: 10ch;
  line-height: 0.98;
}

.section-intro p {
  max-width: 40rem;
}

.thesis-section .split-flow,
.inspiration-section .split-flow,
.signal-grid,
.contact-grid {
  gap: 5rem;
}

.thesis-section .section-intro h2 {
  max-width: 12ch;
}

.inspiration-section .section-intro h2 {
  max-width: 11ch;
}

.signal-section .section-intro h2 {
  max-width: 13ch;
}

.contact-copy h2 {
  max-width: 8ch;
}

.section-body {
  display: grid;
  gap: 1.35rem;
  max-width: 38rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.triad-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.triad-track::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 49, 56, 0.08), rgba(196, 164, 106, 0.16), rgba(43, 49, 56, 0.08), transparent);
}

.triad-node {
  position: relative;
  max-width: 22rem;
  padding-top: 3rem;
}

.triad-node::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 0.38rem rgba(196, 164, 106, 0.06);
}

.triad-count {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--cairn-grey);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.triad-node h3 {
  margin-bottom: 0.65rem;
}

.signal-grid {
  align-items: start;
}

.signal-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.8rem;
  align-content: start;
  padding-top: 0.5rem;
}

.signal-field span {
  display: block;
  padding-bottom: 0.78rem;
  border-bottom: 1px solid rgba(43, 49, 56, 0.08);
  color: rgba(43, 49, 56, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--type-signal);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.signal-field span:nth-child(3n + 1) {
  color: rgba(43, 49, 56, 0.78);
}

.signal-field span:nth-child(3n + 2) {
  color: rgba(100, 122, 146, 0.76);
}

.signal-field span:nth-child(4n) {
  color: rgba(196, 164, 106, 0.82);
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1.3rem;
  max-width: 32rem;
}

.contact-email {
  display: inline-block;
  width: fit-content;
  margin-top: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(43, 49, 56, 0.18);
  color: var(--night-basalt);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1;
  transition: color var(--transition), border-color var(--transition);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--fell-slate);
  border-color: rgba(196, 164, 106, 0.46);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 34rem;
  justify-self: end;
  padding-top: 0;
}

.contact-form::before {
  display: none;
}

.form-grid {
  display: grid;
  gap: 1.75rem 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0 0.95rem;
  border: 0;
  border-bottom: 1px solid rgba(43, 49, 56, 0.16);
  border-radius: 0;
  background: transparent;
  color: var(--text-main);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(18, 23, 28, 0.34);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(196, 164, 106, 0.52);
}

.contact-submit {
  min-height: auto;
  padding: 0 0 0.28rem;
  border: 0;
  border-bottom: 1px solid rgba(43, 49, 56, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--night-basalt);
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  justify-self: start;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: none;
  border-bottom-color: rgba(196, 164, 106, 0.52);
  color: var(--fell-slate);
}

.page-hero {
  min-height: calc(100svh - 6rem);
  display: grid;
  align-items: center;
  padding: 7.5rem 0 6rem;
}

.page-hero-card {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
}

.page-hero-card h1 {
  max-width: 9ch;
}

.page-hero-card .intro {
  max-width: 30rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  display: grid;
  gap: 0.72rem;
  max-width: 28rem;
}

.footer-note {
  color: var(--cairn-grey);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  main::before {
    display: none;
  }

  .hero-grid,
  .split-flow,
  .signal-grid,
  .contact-grid,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    justify-self: center;
  }

  .thesis-section .split-flow,
  .inspiration-section .split-flow,
  .signal-grid,
  .contact-grid {
    gap: 3rem;
  }

  .triad-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .triad-track::before {
    left: 0.4rem;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(43, 49, 56, 0.14), rgba(196, 164, 106, 0.18), rgba(43, 49, 56, 0.14), transparent);
  }
}

@media (max-width: 840px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 5rem;
  }

  .hero-film {
    min-height: 100svh;
    padding: 0;
  }

  .header-bar {
    min-height: 5.65rem;
    padding-top: 1.15rem;
  }

  .brand-mark {
    width: 3.45rem;
    height: 3.45rem;
  }

  .signal-field {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body::before {
    width: 46rem;
    height: 46rem;
    top: -14rem;
  }

  .brand-tagline {
    display: none;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid,
  .split-flow,
  .signal-grid,
  .contact-grid {
    gap: 2rem;
  }

  .hero-film-copy {
    padding: 7.4rem 0 6rem;
  }

  .section {
    padding: 6rem 0;
  }

  .signal-field {
    grid-template-columns: 1fr;
  }

  .orbit-note {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .footer-links {
    gap: 0.8rem 1rem;
  }
}
