:root {
  --black: #090709;
  --black-soft: #120e12;
  --charcoal: #1b171b;
  --purple: #7b2d78;
  --purple-bright: #a94aa3;
  --purple-deep: #3d153d;
  --gold: #d89b28;
  --gold-light: #efc46f;
  --ivory: #f3ead8;
  --paper: #fbf6ec;
  --muted: #756b66;
  --line: rgba(24, 16, 22, .15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--black-soft);
  background: var(--paper);
  line-height: 1.65;
}

body::selection {
  background: var(--purple);
  color: white;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(9, 7, 9, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 155, 40, .32);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(123, 45, 120, .25));
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font: 700 1.45rem/1 "Cormorant Garamond", serif;
  letter-spacing: .03em;
  color: var(--ivory);
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(243, 234, 216, .62);
  font-size: .67rem;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 600;
}

.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(239, 196, 111, .55);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory);
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: 4vw;
  padding: 96px 7vw;
  color: white;
  background:
    radial-gradient(circle at 79% 46%, rgba(123, 45, 120, .35), transparent 33%),
    radial-gradient(circle at 20% 0%, rgba(216, 155, 40, .13), transparent 28%),
    linear-gradient(125deg, #080608 0%, #130b13 55%, #240f24 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.025) 25%, transparent 25%);
  background-size: 26px 26px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), var(--gold), var(--purple-bright), transparent);
}

.hero-copy,
.hero-brand {
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 820px; }

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-light);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin-top: 0;
}

h1 {
  font-size: clamp(4.3rem, 8vw, 8.4rem);
  letter-spacing: -.052em;
  margin-bottom: 28px;
  color: var(--ivory);
}

.hero-title .accent {
  color: var(--gold-light);
  font-style: normal;
  text-shadow: 0 0 30px rgba(216, 155, 40, .1);
}

.hero-lede {
  max-width: 710px;
  font-size: 1.14rem;
  color: rgba(243, 234, 216, .75);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1b1102;
  box-shadow: 0 10px 28px rgba(216, 155, 40, .14);
}

.button.secondary {
  border-color: rgba(239, 196, 111, .45);
  color: var(--ivory);
}

.button.secondary:hover { border-color: var(--gold-light); }

.status-note {
  font-size: .83rem;
  color: rgba(243, 234, 216, .58);
}

.status-note span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 12px var(--purple-bright);
  margin-right: 8px;
}

.hero-brand {
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero-brand img {
  width: min(100%, 590px);
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 18px 45px rgba(0, 0, 0, .65))
    drop-shadow(0 0 24px rgba(123, 45, 120, .22));
}

.logo-halo {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,45,120,.28), rgba(216,155,40,.08) 52%, transparent 71%);
  filter: blur(12px);
}

.section-pad { padding: 104px 8vw; }

.statement {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.statement h2,
.section-heading h2,
.split-section h2,
.contact h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  letter-spacing: -.04em;
}

.statement > p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  align-items: start;
  border-top: 1px solid var(--line);
}

.body-copy p {
  margin-top: 0;
  margin-bottom: 22px;
  color: #4e4548;
  font-size: 1.05rem;
}

.capabilities {
  background:
    linear-gradient(rgba(243,234,216,.94), rgba(243,234,216,.94)),
    radial-gradient(circle at top right, var(--purple), transparent 35%);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 46px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255,255,255,.72);
  padding: 30px;
  min-height: 300px;
  border: 1px solid rgba(123, 45, 120, .14);
  border-top: 4px solid var(--purple);
  box-shadow: 0 14px 35px rgba(30, 14, 28, .055);
}

.card > span {
  font-weight: 700;
  color: var(--gold);
}

.card h3 {
  font-size: 1.8rem;
  margin: 38px 0 14px;
  color: var(--purple-deep);
}

.card p {
  color: var(--muted);
  font-size: .96rem;
}

.approach {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(216,155,40,.13), transparent 25%),
    linear-gradient(130deg, #0b080b, #260f25 58%, #3b1639);
  color: white;
  overflow: hidden;
}

.approach::after {
  content: "K2";
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  font: 700 26vw/.8 "Cormorant Garamond", serif;
  color: rgba(255,255,255,.025);
  letter-spacing: -.07em;
}

.approach-panel {
  max-width: 1120px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.approach h2 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -.045em;
  color: var(--ivory);
}

.approach h2 span { color: var(--gold-light); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 62px;
  padding-top: 36px;
  border-top: 1px solid rgba(239,196,111,.24);
}

.principles strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.principles p { color: rgba(243,234,216,.68); }

.tick-list {
  padding: 0;
  list-style: none;
  margin: 28px 0;
}

.tick-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.tick-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: .8rem;
  top: 18px;
}

.text-link {
  font-weight: 700;
  color: var(--purple);
}

.text-link span { transition: margin .2s; }
.text-link:hover span { margin-left: 5px; }

.contact {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 9vw;
  background:
    radial-gradient(circle at 10% 75%, rgba(123,45,120,.24), transparent 28%),
    var(--black);
  color: white;
  border-top: 1px solid rgba(216,155,40,.28);
}

.contact-copy p:last-of-type { color: rgba(243,234,216,.66); }

.contact-logo {
  width: 190px;
  margin-top: 34px;
  opacity: .93;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(216,155,40,.2);
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ivory);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(239,196,111,.2);
  background: rgba(255,255,255,.055);
  color: white;
  border-radius: 3px;
  padding: 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.consent {
  display: flex !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 400 !important;
  color: rgba(243,234,216,.68) !important;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.hidden { display: none; }

.site-footer {
  padding: 58px 8vw;
  background: #050405;
  color: white;
  text-align: center;
  border-top: 1px solid rgba(123,45,120,.28);
}

.site-footer > img {
  width: 112px;
  margin: 0 auto 12px;
}

.footer-tagline {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: .03em;
}

.site-footer .legal {
  font-size: .76rem;
  color: rgba(243,234,216,.5);
  max-width: 760px;
  margin: 28px auto 0;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr .72fr;
  }

  .hero-brand { min-height: 360px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 5vw;
    background: rgba(9, 7, 9, .99);
    border-bottom: 1px solid rgba(216,155,40,.26);
  }

  .site-nav.open { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero-brand {
    order: -1;
    min-height: 0;
  }

  .hero-brand img { width: min(76vw, 430px); }
  .logo-halo { width: min(68vw, 390px); }

  .split-section,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .principles {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding-inline: 4vw;
  }

  .brand > img {
    width: 50px;
    height: 50px;
  }

  .brand-copy small { display: none; }
  .site-nav { top: 72px; }

  .hero {
    padding: 62px 6vw 78px;
    min-height: 0;
  }

  .hero-brand img { width: min(85vw, 360px); }

  h1 { font-size: 3.65rem; }

  .section-pad { padding: 76px 6vw; }

  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }

  .hero-actions .button { width: 100%; }

  .contact-form { padding: 22px; }

  .contact-logo {
    width: 150px;
  }
}


/* Motion and interaction */
.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line > span {
  display: block;
}

.js .hero-title-line > span {
  opacity: 0;
  transform: translateY(112%);
}

.js body.page-ready .hero-title-line > span {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform .9s cubic-bezier(.2, .75, .18, 1),
    opacity .55s ease;
}

.js body.page-ready .hero-title-line:nth-child(2) > span {
  transition-delay: .12s;
}

.js body.page-ready .hero-title-line:nth-child(3) > span {
  transition-delay: .24s;
}

.js .hero-enter {
  opacity: 0;
  transform: translateY(18px);
}

.js body.page-ready .hero-enter {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .75, .18, 1);
}

.js body.page-ready .hero-enter-1 { transition-delay: .12s; }
.js body.page-ready .hero-enter-2 { transition-delay: .42s; }
.js body.page-ready .hero-enter-3 { transition-delay: .56s; }
.js body.page-ready .hero-enter-4 { transition-delay: .68s; }

.js .hero-logo-enter {
  opacity: 0;
  transform: translateY(24px) scale(.94);
}

.js body.page-ready .hero-logo-enter {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 1s ease .28s,
    transform 1.15s cubic-bezier(.2, .75, .18, 1) .28s;
}

.hero-brand img {
  animation: logo-float 6.5s ease-in-out infinite;
}

.logo-halo {
  animation: halo-breathe 5.5s ease-in-out infinite;
}

.status-note span {
  animation: status-pulse 2.2s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 7vw;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(243, 234, 216, .58);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  position: relative;
  overflow: hidden;
  background: rgba(239, 196, 111, .24);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: cue-sweep 2.2s ease-in-out infinite;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .8s cubic-bezier(.2, .75, .18, 1) var(--reveal-delay, 0ms);
}

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

.card {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(30, 14, 28, .1);
  border-color: rgba(123, 45, 120, .28);
}

.principles > div {
  transition: transform .25s ease;
}

.principles > div:hover {
  transform: translateY(-4px);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-.2deg); }
  50% { transform: translateY(-10px) rotate(.2deg); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes status-pulse {
  0%, 100% { opacity: .65; box-shadow: 0 0 8px var(--purple-bright); }
  50% { opacity: 1; box-shadow: 0 0 18px var(--purple-bright); }
}

@keyframes cue-sweep {
  0% { transform: translateX(-100%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@media (max-width: 900px) {
  .scroll-cue {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  .js .hero-title-line > span,
  .js .hero-enter,
  .js .hero-logo-enter,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
