:root {
  --black: #090909;
  --charcoal: #1c1c1b;
  --gold: #c9a15a;
  --gold-soft: #dbc089;
  --ivory: #f6f2e9;
  --warm-white: #fcfbf8;
  --grey: #6d6b66;
  --line: rgba(28, 28, 27, 0.14);
  --page: min(1180px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: var(--page);
  height: 112px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.logo-link {
  width: 188px;
  height: 90px;
  padding: 6px 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.header-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.35vw, 34px);
}

.desktop-nav a,
.header-contact,
.mobile-menu summary {
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-soft);
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-soft);
}

.header-contact span {
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.header-contact:hover span,
.header-contact:focus-visible span {
  transform: translate(3px, -3px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  padding: 184px max(32px, calc((100vw - 1180px) / 2)) 108px;
  isolation: isolate;
  background:
    radial-gradient(circle at 73% 52%, rgba(201, 161, 90, 0.14), transparent 27%),
    linear-gradient(135deg, #171716 0%, #090909 58%, #11100e 100%);
  color: white;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 20px;
  z-index: -1;
  border: 1px solid rgba(201, 161, 90, 0.2);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
}

.hero-copy {
  max-width: 740px;
  animation: reveal-up 850ms ease-out both;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 3px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.partner-intro h2,
.about-statement h2,
.contact-section h2 {
  margin: 0;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.5rem, 6.1vw, 6.3rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--gold-soft);
  font-weight: inherit;
}

.hero-intro {
  max-width: 645px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 55px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-dark {
  background: var(--gold);
  color: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  justify-self: end;
  animation: reveal 1.1s ease-out 180ms both;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 161, 90, 0.29);
  border-radius: 50%;
}

.orbit-one {
  inset: 2%;
}

.orbit-two {
  inset: 19%;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  background: rgba(201, 161, 90, 0.26);
}

.hero-visual::before {
  width: 1px;
  inset: -7% auto -7% 50%;
}

.hero-visual::after {
  height: 1px;
  inset: 50% -7% auto;
}

.visual-origin,
.visual-market {
  position: absolute;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 106px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.visual-origin {
  left: 4%;
  bottom: 15%;
}

.visual-market {
  top: 8%;
  right: 1%;
  background: var(--ivory);
}

.visual-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.visual-origin strong,
.visual-market strong {
  margin-top: 4px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.visual-dot {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 161, 90, 0.09);
}

.dot-one { top: 31%; left: 7%; }
.dot-two { right: 17%; bottom: 17%; }
.dot-three { top: 49%; left: 49%; }

.hero-visual > p {
  position: absolute;
  inset: auto 0 5%;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual > p span {
  color: var(--gold);
  margin: 0 7px;
}

.capability-strip {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 52px);
  padding: 24px 32px;
  background: var(--gold);
  color: var(--black);
}

.capability-strip p {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(.72rem, 1vw, .9rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capability-strip span {
  width: 4px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 138px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .44fr);
  column-gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.partner-intro h2,
.about-statement h2,
.contact-section h2 {
  color: var(--black);
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.section-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 340px;
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, transform 240ms ease;
}

.service-card:hover {
  background: var(--ivory);
}

.service-number,
.process-grid article > span {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.service-card h3,
.partner-panels h3,
.process-grid h3,
.founder-card h3 {
  margin: 52px 0 18px;
  color: var(--black);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
}

.service-card p,
.partner-panels article > p:last-child,
.process-grid p,
.about-copy > p,
.founder-card p,
.contact-details p {
  color: var(--grey);
  line-height: 1.8;
}

.service-card p {
  max-width: 430px;
  margin: 0;
}

.partner-section {
  padding: 140px max(32px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: white;
}

.partner-intro {
  max-width: 850px;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.partner-intro h2,
.contact-section h2 {
  color: white;
}

.partner-intro > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
}

.partner-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 74px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}

.partner-panels article {
  min-height: 340px;
  padding: clamp(38px, 5vw, 66px);
  background: #111110;
}

.panel-label {
  margin: 0;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.partner-panels h3 {
  margin-top: 66px;
  color: white;
}

.partner-panels article > p:last-child {
  max-width: 455px;
  margin: 0;
  color: rgba(255,255,255,.57);
}

.compact-heading {
  display: block;
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 295px;
  padding: 38px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.process-grid article:not(:first-child) {
  padding-left: 28px;
}

.process-grid article::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 9px;
  aspect-ratio: 1;
  background: var(--gold);
  transform: rotate(45deg);
}

.process-grid h3 {
  margin: 66px 0 16px;
  font-size: 1.48rem;
}

.process-grid p {
  margin: 0;
  font-size: .93rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(70px, 11vw, 170px);
  padding: 140px max(32px, calc((100vw - 1180px) / 2));
  background: var(--ivory);
}

.about-statement {
  position: sticky;
  top: 60px;
  align-self: start;
}

.about-copy .lead-copy {
  margin-top: 58px;
  color: var(--charcoal);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.3rem, 2.15vw, 1.82rem);
  line-height: 1.5;
}

.about-copy > p:not(.lead-copy) {
  margin: 30px 0 0;
}

.founder-card {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid rgba(28,28,27,.2);
  scroll-margin-top: 32px;
}

.founder-photo {
  width: 164px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--gold);
  box-shadow: 12px 12px 0 rgba(201, 161, 90, 0.14);
}

.founder-card h3 {
  margin: 10px 0 12px;
  font-size: 1.65rem;
}

.founder-card p:last-child {
  margin: 0;
}

.founder-profile > p:not(.panel-label) {
  margin: 0;
}

.founder-profile > p:not(.panel-label) + p {
  margin-top: 16px;
}

.founder-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--charcoal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.founder-email span {
  color: var(--gold);
  font-size: .92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 80px;
  padding: 120px max(32px, calc((100vw - 1180px) / 2));
  align-items: end;
  background: var(--gold);
}

.contact-section .eyebrow {
  color: var(--black);
}

.contact-section h2 {
  max-width: 800px;
  color: var(--black);
}

.contact-details p {
  margin: 0 0 28px;
  color: rgba(9,9,9,.7);
}

.contact-details a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(9,9,9,.4);
  border-bottom: 1px solid rgba(9,9,9,.4);
  font-size: clamp(.95rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.contact-details a span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.contact-details a:hover span,
.contact-details a:focus-visible span {
  transform: translate(4px, -4px);
}

.site-footer {
  width: var(--page);
  min-height: 150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 45px;
  align-items: center;
  color: rgba(28,28,27,.55);
  font-size: .59rem;
  font-weight: 650;
  letter-spacing: .11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer img {
  width: 158px;
}

.site-footer p {
  margin: 0;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
    justify-self: end;
  }

  .mobile-menu summary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 15px;
    list-style: none;
    cursor: pointer;
    border: 1px solid rgba(201, 161, 90, 0.72);
    background: rgba(9, 9, 9, 0.45);
    color: var(--gold-soft);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    position: relative;
    width: 17px;
    height: 10px;
    display: block;
  }

  .menu-icon > span {
    position: absolute;
    left: 0;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-icon > span:first-child {
    top: 1px;
  }

  .menu-icon > span:last-child {
    top: 8px;
  }

  .mobile-menu[open] .menu-icon > span:first-child,
  .mobile-menu[open] .menu-icon > span:last-child {
    top: 5px;
  }

  .mobile-menu[open] .menu-icon > span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu[open] .menu-icon > span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(290px, calc(100vw - 36px));
    display: grid;
    padding: 12px;
    border: 1px solid rgba(201,161,90,.45);
    background: rgba(9,9,9,.98);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    font-size: .68rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-menu nav a > span {
    color: var(--gold);
    font-size: .58rem;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    color: white;
  }

  .mobile-menu nav .menu-contact {
    justify-content: space-between;
    margin-top: 10px;
    border: 1px solid var(--gold);
    color: var(--gold-soft);
  }

  .mobile-menu nav .menu-contact > span {
    font-size: .9rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 80px;
    padding-top: 180px;
  }

  .hero-visual {
    width: min(86vw, 410px);
    justify-self: center;
  }

  .section-heading,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 26px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

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

  .process-grid article:nth-child(odd) {
    padding-left: 0;
    padding-right: 28px;
  }

  .process-grid article:nth-child(even) {
    padding-left: 28px;
    padding-right: 0;
    border-right: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-statement {
    position: static;
  }

  .about-copy .lead-copy {
    margin-top: 0;
  }

  .contact-section {
    gap: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 35px 0;
  }

  .site-footer p:first-of-type {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    height: 92px;
  }

  .logo-link {
    width: 162px;
    height: 78px;
    padding: 5px 8px;
  }

  .header-logo {
    width: 100%;
    height: 100%;
  }

  .hero {
    gap: 58px;
    padding: 142px 24px 80px;
  }

  .hero::before {
    inset: 10px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: 82vw;
  }

  .visual-origin,
  .visual-market {
    width: 82px;
  }

  .visual-origin strong,
  .visual-market strong {
    font-size: .88rem;
  }

  .visual-label {
    font-size: .47rem;
  }

  .capability-strip {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-inline: 24px;
  }

  .capability-strip p {
    flex: 0 0 auto;
  }

  .section,
  .partner-section,
  .about-section,
  .contact-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading,
  .compact-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .partner-intro h2,
  .about-statement h2,
  .contact-section h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.4rem);
  }

  .service-grid,
  .partner-panels,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .partner-panels article {
    min-height: 290px;
  }

  .service-card h3,
  .partner-panels h3 {
    margin-top: 42px;
  }

  .process-grid article,
  .process-grid article:not(:first-child) {
    min-height: auto;
    padding: 34px 0 45px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(100%, 220px);
  }

  .contact-details a {
    overflow-wrap: anywhere;
  }

  .site-footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
}

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