:root {
  --black: #0a0a0a;
  --charcoal: #151313;
  --charcoal-2: #211b18;
  --gold: #b89a6a;
  --gold-light: #d4b483;
  --gold-dark: #9a7f52;
  --white: #f5f3ef;
  --paper: #f2eee6;
  --ink: #0a0a0a;
  --gray: #888888;
  --muted: #5a5a5a;
  --line: rgba(184, 154, 106, .25);
  --line-dark: rgba(10, 10, 10, .14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --max-width: 1240px;
  --nav-height: 82px;
  --page-pad: clamp(18px, 4vw, 58px);
  --gutter: clamp(18px, 2.4vw, 34px);
  --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  background: var(--black)
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle at 80% 10%, rgba(184, 154, 106, .13), transparent 32%), linear-gradient(135deg, #080706 0%, #141110 55%, #0a0a0a 100%)
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

::selection {
  background: var(--gold);
  color: var(--black)
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -90px;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-size: 13px
}

.skip-link:focus {
  top: 18px
}

.container {
  width: min(100% - calc(var(--page-pad)*2), var(--max-width));
  margin-inline: auto
}

.section {
  position: relative;
  padding: clamp(86px, 12vw, 160px) 0
}

.section-dark {
  background: rgba(10, 10, 10, .98);
  color: var(--white)
}

.section-paper {
  background: var(--paper);
  color: var(--black)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--nav-height);
  background: rgba(10, 10, 10, .58);
  border-bottom: 1px solid rgba(184, 154, 106, .17);
  backdrop-filter: blur(18px);
  transition: background .35s var(--ease)
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, .9)
}

.header-inner {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: center
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain
}

.brand-copy {
  display: grid;
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.15
}

.brand-copy span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 243, 239, .88)
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  color: rgba(245, 243, 239, .48);
  letter-spacing: .18em
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(245, 243, 239, .66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.nav-links a {
  transition: color .25s ease
}

.nav-links a:hover {
  color: var(--gold-light)
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: end
}

.language-switch {
  display: flex;
  border: 1px solid rgba(184, 154, 106, .36);
  background: rgba(255, 255, 255, .03)
}

.lang-btn {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  color: rgba(245, 243, 239, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em
}

.lang-btn+.lang-btn {
  border-left: 1px solid rgba(184, 154, 106, .2)
}

.lang-btn.is-active {
  background: var(--gold);
  color: var(--black)
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 154, 106, .58);
  padding-inline: 16px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .25s ease
}

.header-cta:hover {
  background: var(--gold);
  color: var(--black)
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 56px) 0 68px;
  display: grid;
  align-items: center;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: center
}

.hero-content {
  grid-column: 1/7;
  position: relative;
  z-index: 2
}

.section-label,
.kicker {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1.8
}

.section-label {
  margin-bottom: 26px
}

.kicker {
  color: var(--gold-dark)
}

.section-dark .kicker {
  color: rgba(212, 180, 131, .85)
}

.center {
  text-align: center
}

.hero-title,
.display-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: uppercase
}

.hero-title {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 106px);
  line-height: .86
}

.display-title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .9
}

.hero-text {
  max-width: 590px;
  margin-top: 30px;
  color: rgba(245, 243, 239, .72);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 300
}

.hero-text strong {
  color: #fff;
  font-weight: 500
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid rgba(184, 154, 106, .55);
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease
}

.btn::after {
  content: "→"
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  color: var(--gold-light)
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black)
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black)
}

.btn-light {
  background: #fff;
  color: #111;
  border-color: #fff
}

.btn-light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #111
}

.hero-media {
  grid-column: 8/13;
  position: relative;
  min-height: 620px
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 106, .25);
  background: #151515;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

.hero-photo-main {
  right: 0;
  top: 0;
  width: 86%;
  height: 440px
}

.hero-photo-small {
  left: 0;
  bottom: 68px;
  width: 58%;
  height: 280px
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(85%, 410px);
  padding: 24px;
  background: rgba(245, 243, 239, .95);
  color: var(--black);
  border-left: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25)
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.hero-note p {
  color: rgba(10, 10, 10, .68);
  font-size: 14px;
  line-height: 1.65
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(10, 10, 10, .48)
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 13px 0;
  color: rgba(245, 243, 239, .52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite
}

.marquee-track i {
  color: var(--gold-light);
  font-style: normal
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.intro .kicker {
  grid-column: 1/3
}

.intro-statement {
  grid-column: 4/10
}

.intro-statement .body-large {
  margin-top: 30px
}

.body-large {
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.7;
  color: rgba(10, 10, 10, .65);
  font-weight: 300
}

.quote-card {
  grid-column: 10/13;
  border-left: 1px solid var(--gold);
  padding-left: 24px
}

.quote-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.quote-card p {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.06;
  color: #111
}

.grid-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start;
  margin-bottom: 54px
}

.grid-head .kicker {
  grid-column: 1/3
}

.grid-head .display-title {
  grid-column: 3/8
}

.grid-head .head-text {
  grid-column: 9/13
}

.head-text {
  color: rgba(245, 243, 239, .6);
  font-weight: 300
}

.section-paper .head-text,
.center-copy.dark {
  color: rgba(10, 10, 10, .62)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 154, 106, .18);
  border: 1px solid rgba(184, 154, 106, .18)
}

.service-card {
  min-height: 315px;
  padding: 32px;
  background: var(--charcoal);
  transition: .35s var(--ease)
}

.service-card:hover {
  background: #201b17;
  transform: translateY(-4px)
}

.service-card span,
.why-card span,
.project-card span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1
}

.service-card h3 {
  margin-top: 88px;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em
}

.service-card p {
  margin-top: 18px;
  color: rgba(245, 243, 239, .55);
  font-size: 13px;
  line-height: 1.7
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.approach-left {
  grid-column: 1/6;
  position: sticky;
  top: calc(var(--nav-height) + 34px)
}

.approach-left .display-title {
  margin-top: 26px
}

.approach-steps {
  grid-column: 7/13;
  border-top: 1px solid var(--line-dark)
}

.step-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark)
}

.step-row span {
  grid-row: 1/3;
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1
}

.step-row b {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.step-row p {
  color: rgba(10, 10, 10, .62);
  font-size: 14px;
  line-height: 1.75
}

.narrow-center {
  max-width: 820px;
  text-align: center
}

.narrow-center .display-title {
  margin-top: 16px
}

.center-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(245, 243, 239, .62);
  font-weight: 300
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid rgba(184, 154, 106, .2);
  background: rgba(184, 154, 106, .2)
}

.fit-item {
  min-height: 150px;
  display: flex;
  align-items: end;
  padding: 24px;
  background: #151313;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transition: .3s var(--ease)
}

.fit-item::after {
  content: "→";
  margin-left: auto;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s var(--ease)
}

.fit-item:hover {
  background: #211b18;
  color: var(--gold-light)
}

.fit-item:hover::after {
  opacity: 1;
  transform: translateX(0)
}

.projects {
  overflow: hidden;
  background: linear-gradient(180deg, #130f0f, #1a1412)
}

.projects-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: end
}

.projects-head>div {
  grid-column: 1/7
}

.projects-head .head-text {
  grid-column: 9/13
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: var(--gutter);
  margin-top: 58px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px
}

.project-rail::-webkit-scrollbar {
  height: 6px
}

.project-rail::-webkit-scrollbar-thumb {
  background: rgba(184, 154, 106, .4)
}

.project-card {
  scroll-snap-align: start;
  min-width: 0
}

.project-card img {
  height: 360px;
  border: 1px solid rgba(184, 154, 106, .18);
  filter: saturate(.88) contrast(1.06)
}

.project-card span {
  margin-top: 20px;
  font-size: 26px
}

.project-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase
}

.project-card p {
  margin-top: 8px;
  color: rgba(245, 243, 239, .56);
  font-size: 13px;
  line-height: 1.6
}

.impact {
  overflow: hidden
}

.globe-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: min(70vw, 820px);
  transform: translate(-50%, -46%);
  opacity: 0.9;
  background: url(./assets/golden-globe-bg-f2eee6.png) center/cover no-repeat;
  z-index: 1;
  pointer-events: none
}

.impact-head {
  position: relative;
  z-index: 2
}

.insight-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: rgba(10, 10, 10, .1);
  border: 1px solid rgba(10, 10, 10, .08)
}

.insight-card {
  background: rgba(255, 255, 255, .68);
  padding: 32px;
  min-height: 260px
}

.insight-card span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase
}

.insight-card h3 {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase
}

.insight-card p {
  margin-top: 18px;
  color: rgba(10, 10, 10, .62);
  font-size: 14px;
  line-height: 1.7
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 58px
}

.why-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(184, 154, 106, .22);
  background: #151313
}

.why-card h3 {
  margin-top: 72px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: .98;
  text-transform: uppercase
}

.why-card p {
  margin-top: 18px;
  color: rgba(245, 243, 239, .55);
  font-size: 13px;
  line-height: 1.75
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: center
}

.founder-image {
  grid-column: 1/6;
  height: 560px;
  overflow: hidden;
  background: #111
}

.founder-image img {
  filter: saturate(.85) contrast(1.06)
}

.founder-content {
  grid-column: 7/13
}

.founder-content .display-title {
  margin-top: 18px
}

.founder-content .body-large {
  margin-top: 26px
}

.founder-content blockquote {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.12;
  color: #111
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.text-link::after {
  content: "→";
  margin-left: 10px
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.faq-grid>div:first-child {
  grid-column: 1/5
}

.accordion {
  grid-column: 6/13;
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase
}

.faq-item i {
  font-style: normal;
  color: var(--gold-light);
  transition: .25s ease
}

.faq-item.is-open i {
  transform: rotate(45deg)
}

.faq-panel {
  height: 0;
  overflow: hidden
}

.faq-panel p {
  padding: 0 0 24px;
  color: rgba(245, 243, 239, .58);
  font-size: 14px;
  line-height: 1.75
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.contact-copy {
  grid-column: 1/5;
  position: sticky;
  top: calc(var(--nav-height) + 34px)
}

.contact-copy .display-title {
  margin-top: 18px
}

.contact-copy .body-large {
  margin-top: 24px
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: rgba(10, 10, 10, .58);
  font-size: 13px
}

.contact-details a {
  color: #111;
  border-bottom: 1px solid rgba(184, 154, 106, .55);
  width: max-content
}

.lead-form {
  grid-column: 6/13;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(184, 154, 106, .42);
  background: rgba(255, 255, 255, .46)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter)
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(10, 10, 10, .65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, .22);
  background: transparent;
  color: #111;
  outline: 0;
  padding: 8px 0 12px;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0
}

.lead-form textarea {
  min-height: 150px;
  resize: vertical
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 1px 0 var(--gold-dark)
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none
}

.consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.6
}

.consent input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold)
}

.form-status {
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 13px
}

.form-status.is-visible {
  display: block
}

.footer-luxe {
  margin-top: 60px;
  background: var(--paper);
  color: #111;
  padding: 0 0 22px
}

.footer-cta {
  position: relative;
  width: min(100% - 40px, calc(var(--max-width) + 80px));
  height: min(68vh, 620px);
  min-height: 440px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 60px;
}

.footer-cta img {
  position: absolute;
  inset: 0
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .3) 58%, rgba(0, 0, 0, .48))
}

.footer-cta-content {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  top: clamp(28px, 6vw, 72px);
  max-width: 560px;
  color: #fff
}

.footer-cta-content p,
.footer-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase
}

.footer-cta-content h2 {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 60px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 600
}

.footer-cta-content .btn {
  margin-top: 42px
}

.footer-cta-notes {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-top: 1px solid rgba(255, 255, 255, .32);
  padding-top: 16px
}

.footer-main {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1.2fr 1.2fr;
  gap: var(--gutter);
  padding: 54px 0 70px
}

.footer-main h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .02em
}

.footer-main p,
.footer-main span,
.footer-main a {
  display: block;
  color: rgba(10, 10, 10, .65);
  font-size: 13px;
  line-height: 1.8
}

.footer-main a:hover {
  color: #000
}

.footer-label {
  color: #111 !important;
  margin-bottom: 12px
}

.footer-wordmark {
  font-size: clamp(78px, 20vw, 260px);
  line-height: .72;
  letter-spacing: -.08em;
  text-transform: uppercase;
  color: #030303;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
  overflow: hidden
}

.footer-bottom-light {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 10, 10, .14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, .55)
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate(-50%, -50%)
}

.reveal,
.reveal-card,
.reveal-line,
.split-title {
  will-change: transform, opacity
}

@media (max-width:1040px) {
  .nav-links {
    display: none
  }

  .hero-content {
    grid-column: 1/8
  }

  .hero-media {
    grid-column: 8/13
  }

  .grid-head .display-title,
  .grid-head .head-text {
    grid-column: 3/13
  }

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

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

  .projects-head>div,
  .projects-head .head-text {
    grid-column: 1/13
  }

  .project-rail {
    grid-template-columns: repeat(4, 300px)
  }

  .insight-cards,
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .approach-left {
    position: static;
    grid-column: 1/13
  }

  .approach-steps {
    grid-column: 1/13
  }

  .founder-image {
    grid-column: 1/6
  }

  .founder-content {
    grid-column: 6/13
  }

  .contact-copy {
    position: static;
    grid-column: 1/13
  }

  .lead-form {
    grid-column: 1/13
  }

  .faq-grid>div:first-child,
  .accordion {
    grid-column: 1/13
  }

  .footer-main {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:760px) {
  :root {
    --nav-height: 74px
  }

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

  .header-cta {
    display: none
  }

  .brand-logo {
    height: 42px
  }

  .brand-copy {
    display: none
  }

  .hero {
    padding-top: calc(var(--nav-height) + 44px)
  }

  .hero-grid,
  .editorial-grid,
  .grid-head,
  .approach-grid,
  .projects-head,
  .founder-grid,
  .contact-grid,
  .faq-grid {
    display: block
  }

  .hero-content {
    margin-bottom: 46px
  }

  .hero-media {
    min-height: 440px
  }

  .hero-photo-main {
    width: 88%;
    height: 270px
  }

  .hero-photo-small {
    width: 64%;
    height: 190px;
    bottom: 74px
  }

  .hero-note {
    width: 86%;
    padding: 18px
  }

  .hero-title {
    font-size: clamp(52px, 15vw, 76px)
  }

  .display-title {
    font-size: clamp(42px, 13vw, 66px)
  }

  .intro-statement,
  .quote-card,
  .grid-head .display-title,
  .grid-head .head-text,
  .projects-head .head-text {
    margin-top: 24px
  }

  .quote-card {
    padding-left: 16px
  }

  .service-grid,
  .fit-grid,
  .insight-cards,
  .why-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    min-height: 250px
  }

  .service-card h3,
  .why-card h3 {
    margin-top: 54px
  }

  .step-row {
    grid-template-columns: 52px 1fr
  }

  .project-card img {
    height: 270px
  }

  .founder-image {
    height: 400px;
    margin-bottom: 34px
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-cta {
    width: calc(100% - 24px);
    min-height: 520px
  }

  .footer-cta-notes {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr
  }

  .footer-wordmark {
    text-align: left;
    padding-left: 12px
  }

  .footer-bottom-light {
    display: grid
  }

  .cursor-dot {
    display: none
  }
}

@media (max-width:430px) {
  .language-switch {
    display: none
  }

  .hero-title {
    font-size: 49px
  }

  .btn {
    width: 100%
  }

  .hero-actions {
    display: grid
  }

  .service-card,
  .why-card,
  .insight-card {
    padding: 24px
  }
}

:root {
  --black: #0a0a0a;
  --charcoal: #151313;
  --charcoal-2: #1f1b19;
  --gold: #b89a6a;
  --gold-light: #d4b483;
  --gold-dark: #9a7f52;
  --white: #f5f3ef;
  --paper: #f2eee6;
  --ink: #0a0a0a;
  --gray: #888888;
  --muted: #5a5a5a;
  --line: rgba(184, 154, 106, .25);
  --line-dark: rgba(10, 10, 10, .15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --max-width: 1240px;
  --nav-height: 82px;
  --page-pad: clamp(18px, 4vw, 58px);
  --gutter: clamp(18px, 2.4vw, 34px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  background: var(--black)
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(circle at 80% 10%, rgba(184, 154, 106, .13), transparent 32%), linear-gradient(135deg, #080706 0%, #141110 55%, #0a0a0a 100%)
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

::selection {
  background: var(--gold);
  color: var(--black)
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -90px;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-size: 13px
}

.skip-link:focus {
  top: 18px
}

.container {
  width: min(100% - calc(var(--page-pad)*2), var(--max-width));
  margin-inline: auto
}

.section {
  position: relative;
  padding: clamp(86px, 12vw, 160px) 0
}

.section-dark {
  background: rgba(10, 10, 10, .98);
  color: var(--white)
}

.section-paper {
  background: var(--paper);
  color: var(--black)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--nav-height);
  background: rgba(10, 10, 10, .58);
  border-bottom: 1px solid rgba(184, 154, 106, .17);
  backdrop-filter: blur(18px);
  transition: background .35s var(--ease), transform .35s var(--ease)
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, .88)
}

.header-inner {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: clamp(16px, 3vw, 44px);
  align-items: center
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain
}

.brand-copy {
  display: grid;
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.15
}

.brand-copy span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 243, 239, .88)
}

.brand-copy small {
  margin-top: 4px;
  font-size: 9px;
  color: rgba(245, 243, 239, .48);
  letter-spacing: .18em
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(245, 243, 239, .66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.nav-links a {
  transition: color .25s ease
}

.nav-links a:hover {
  color: var(--gold-light)
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: end
}

.language-switch {
  display: flex;
  border: 1px solid rgba(184, 154, 106, .36);
  background: rgba(255, 255, 255, .03)
}

.lang-btn {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  color: rgba(245, 243, 239, .58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em
}

.lang-btn+.lang-btn {
  border-left: 1px solid rgba(184, 154, 106, .2)
}

.lang-btn.is-active {
  background: var(--gold);
  color: var(--black)
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 154, 106, .58);
  padding-inline: 16px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .25s ease
}

.header-cta:hover {
  background: var(--gold);
  color: var(--black)
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 56px) 0 68px;
  display: grid;
  align-items: center;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: center
}

.hero-content {
  grid-column: 1/7;
  position: relative;
  z-index: 2
}

.section-label,
.kicker {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1.8
}

.section-label {
  margin-bottom: 26px
}

.kicker {
  color: var(--gold-dark)
}

.section-dark .kicker {
  color: rgba(212, 180, 131, .85)
}

.center {
  text-align: center
}

.hero-title,
.display-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: uppercase
}

.hero-title {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 106px);
  line-height: .86
}

.display-title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .9
}

.hero-text {
  max-width: 590px;
  margin-top: 30px;
  color: rgba(245, 243, 239, .72);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 300
}

.hero-text strong {
  color: #fff;
  font-weight: 500
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid rgba(184, 154, 106, .55);
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease
}

.btn::after {
  content: "→"
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  color: var(--gold-light)
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black)
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black)
}

.hero-media {
  grid-column: 8/13;
  position: relative;
  min-height: 620px
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 106, .25);
  background: #151515;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

.hero-photo-main {
  right: 0;
  top: 0;
  width: 86%;
  height: 440px
}

.hero-photo-small {
  left: 0;
  bottom: 68px;
  width: 58%;
  height: 280px
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(85%, 410px);
  padding: 24px;
  background: rgba(245, 243, 239, .95);
  color: var(--black);
  border-left: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25)
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.hero-note p {
  color: rgba(10, 10, 10, .68);
  font-size: 14px;
  line-height: 1.65
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(10, 10, 10, .48)
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 13px 0;
  color: rgba(245, 243, 239, .52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite
}

.marquee-track i {
  color: var(--gold-light);
  font-style: normal
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.intro .kicker {
  grid-column: 1/3
}

.intro-statement {
  grid-column: 4/10
}

.intro-statement .body-large {
  margin-top: 32px;
  max-width: 780px
}

.body-large {
  color: rgba(10, 10, 10, .66);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.7;
  font-weight: 300
}

.quote-card {
  grid-column: 10/13;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  margin-top: 18px
}

.quote-card span {
  display: block;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.quote-card p {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.08;
  color: #111
}

.grid-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start;
  margin-bottom: 54px
}

.grid-head .kicker {
  grid-column: 1/3
}

.grid-head .display-title {
  grid-column: 3/8
}

.grid-head .head-text {
  grid-column: 9/13
}

.head-text {
  color: rgba(245, 243, 239, .6);
  font-weight: 300
}

.section-paper .head-text {
  color: rgba(10, 10, 10, .62)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 154, 106, .18);
  border: 1px solid rgba(184, 154, 106, .18)
}

.service-card {
  min-height: 315px;
  padding: 32px;
  background: var(--charcoal);
  transition: .35s var(--ease)
}

.service-card:hover {
  background: #201b17;
  transform: translateY(-4px)
}

.service-card span,
.why-card span,
.focus-card span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1
}

.service-card h3 {
  margin-top: 88px;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em
}

.service-card p {
  margin-top: 18px;
  color: rgba(245, 243, 239, .55);
  font-size: 13px;
  line-height: 1.7
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.approach-left {
  grid-column: 1/6;
  position: sticky;
  top: calc(var(--nav-height) + 34px)
}

.approach-left .display-title {
  margin-top: 26px
}

.approach-steps {
  grid-column: 7/13;
  border-top: 1px solid var(--line-dark)
}

.step-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark)
}

.step-row span {
  grid-row: 1/3;
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1
}

.step-row b {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.step-row p {
  color: rgba(10, 10, 10, .62);
  font-size: 14px;
  line-height: 1.75
}

.narrow-center {
  max-width: 820px;
  text-align: center
}

.narrow-center .display-title {
  margin-top: 16px
}

.center-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(245, 243, 239, .62);
  font-weight: 300
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid rgba(184, 154, 106, .2);
  background: rgba(184, 154, 106, .2)
}

.fit-item {
  min-height: 150px;
  display: flex;
  align-items: end;
  padding: 24px;
  background: #151313;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transition: .3s var(--ease)
}

.fit-item::after {
  content: "→";
  margin-left: auto;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s var(--ease)
}

.fit-item:hover {
  background: #211b18;
  color: var(--gold-light)
}

.fit-item:hover::after {
  opacity: 1;
  transform: translateX(0)
}

.split-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: end
}

.split-head>div {
  grid-column: 1/7
}

.split-head .head-text {
  grid-column: 8/13
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 54px
}

.focus-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, .08);
  transition: .35s var(--ease)
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, .08)
}

.focus-card img {
  height: 250px
}

.focus-card div {
  padding: 22px
}

.focus-card h3 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase
}

.focus-card p {
  margin-top: 16px;
  color: rgba(10, 10, 10, .62);
  font-size: 13px;
  line-height: 1.7
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 58px
}

.why-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(184, 154, 106, .22);
  background: #151313
}

.why-card h3 {
  margin-top: 72px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: .98;
  text-transform: uppercase
}

.why-card p {
  margin-top: 18px;
  color: rgba(245, 243, 239, .55);
  font-size: 13px;
  line-height: 1.75
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: center
}

.founder-image {
  grid-column: 1/6;
  height: 560px;
  overflow: hidden;
  background: #111
}

.founder-image img {
  filter: saturate(.85) contrast(1.06)
}

.founder-content {
  grid-column: 7/13
}

.founder-content .display-title {
  margin-top: 18px
}

.founder-content .body-large {
  margin-top: 26px
}

.founder-content blockquote {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.12;
  color: #111
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.text-link::after {
  content: "→";
  margin-left: 10px
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.faq-grid>div:first-child {
  grid-column: 1/5
}

.accordion {
  grid-column: 6/13;
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase
}

.faq-item i {
  font-style: normal;
  color: var(--gold-light);
  transition: .25s ease
}

.faq-item.is-open i {
  transform: rotate(45deg)
}

.faq-panel {
  height: 0;
  overflow: hidden
}

.faq-panel p {
  padding: 0 0 24px;
  color: rgba(245, 243, 239, .58);
  font-size: 14px;
  line-height: 1.75
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start
}

.contact-copy {
  grid-column: 1/5;
  position: sticky;
  top: calc(var(--nav-height) + 34px)
}

.contact-copy .display-title {
  margin-top: 18px
}

.contact-copy .body-large {
  margin-top: 24px
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: rgba(10, 10, 10, .58);
  font-size: 13px
}

.contact-details a {
  color: #111;
  border-bottom: 1px solid rgba(184, 154, 106, .55);
  width: max-content
}

.lead-form {
  grid-column: 6/13;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(184, 154, 106, .42);
  background: rgba(255, 255, 255, .46)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter)
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(10, 10, 10, .65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, .22);
  background: transparent;
  color: #111;
  outline: 0;
  padding: 8px 0 12px;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0
}

.lead-form textarea {
  min-height: 150px;
  resize: vertical
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 1px 0 var(--gold-dark)
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none
}

.consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.6
}

.consent input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold)
}

.form-status {
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 13px
}

.form-status.is-visible {
  display: block
}

.footer {
  padding: 70px 0 24px;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 5fr 2fr;
  gap: var(--gutter);
  align-items: start
}

.footer-logo {
  width: 220px;
  height: auto;
  object-fit: contain
}

.footer p {
  margin-top: 20px;
  color: rgba(245, 243, 239, .58);
  font-size: 13px
}

.footer h3 {
  max-width: 540px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 600
}

.footer .btn {
  margin-top: 28px
}

.footer nav {
  display: grid;
  gap: 12px;
  color: rgba(245, 243, 239, .55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.footer nav a:hover {
  color: var(--gold-light)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(245, 243, 239, .42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translate(-50%, -50%)
}

.reveal,
.reveal-card,
.reveal-line,
.split-title {
  will-change: transform, opacity
}

@media (max-width:1040px) {
  .nav-links {
    display: none
  }

  .hero-content {
    grid-column: 1/8
  }

  .hero-media {
    grid-column: 8/13
  }

  .grid-head .display-title,
  .grid-head .head-text {
    grid-column: 3/13
  }

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

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

  .focus-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .approach-left {
    position: static;
    grid-column: 1/13
  }

  .approach-steps {
    grid-column: 1/13
  }

  .founder-image {
    grid-column: 1/6
  }

  .founder-content {
    grid-column: 6/13
  }

  .contact-copy {
    position: static;
    grid-column: 1/13
  }

  .lead-form {
    grid-column: 1/13
  }

  .faq-grid>div:first-child,
  .accordion {
    grid-column: 1/13
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:760px) {
  :root {
    --nav-height: 74px
  }

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

  .header-cta {
    display: none
  }

  .brand-logo {
    height: 42px
  }

  .brand-copy {
    display: none
  }

  .hero {
    padding-top: calc(var(--nav-height) + 44px)
  }

  .hero-grid,
  .editorial-grid,
  .grid-head,
  .approach-grid,
  .split-head,
  .founder-grid,
  .contact-grid,
  .faq-grid {
    display: block
  }

  .hero-content {
    margin-bottom: 46px
  }

  .hero-media {
    min-height: 440px
  }

  .hero-photo-main {
    width: 88%;
    height: 270px
  }

  .hero-photo-small {
    width: 64%;
    height: 190px;
    bottom: 74px
  }

  .hero-note {
    width: 86%;
    padding: 18px
  }

  .hero-title {
    font-size: clamp(52px, 15vw, 76px)
  }

  .display-title {
    font-size: clamp(42px, 13vw, 66px)
  }

  .intro-statement,
  .quote-card,
  .grid-head .display-title,
  .grid-head .head-text,
  .split-head>div,
  .split-head .head-text {
    margin-top: 24px
  }

  .quote-card {
    padding-left: 16px
  }

  .service-grid,
  .fit-grid,
  .focus-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    min-height: 250px
  }

  .service-card h3,
  .why-card h3 {
    margin-top: 54px
  }

  .step-row {
    grid-template-columns: 52px 1fr
  }

  .focus-card img {
    height: 230px
  }

  .founder-image {
    height: 400px;
    margin-bottom: 34px
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer h3 {
    font-size: 38px
  }

  .footer-bottom {
    display: grid
  }

  .cursor-dot {
    display: none
  }
}

@media (max-width:430px) {
  .language-switch {
    display: none
  }

  .hero-title {
    font-size: 49px
  }

  .btn {
    width: 100%
  }

  .hero-actions {
    display: grid
  }

  .service-card,
  .why-card {
    padding: 24px
  }
}

/* --- Build Dream inspired hero + converted original hero section --- */
.hero-bd {
  min-height: 100svh;
  padding: 0;
  display: block;
  isolation: isolate;
  background: #120f0e;
  border-bottom: 1px solid rgba(184, 154, 106, .22);
}

.hero-bd-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden
}

.hero-bd-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.04) brightness(.82)
}

.hero-bd-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(62, 28, 14, .62) 0%, rgba(20, 15, 13, .25) 38%, rgba(10, 10, 10, .08) 58%, rgba(10, 10, 10, .48) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, .30), rgba(10, 10, 10, .22));
}

.hero-bd-inner {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: calc(var(--nav-height) + 28px);
  padding-bottom: 72px
}

.hero-bd-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: rgba(245, 243, 239, .82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase
}

.hero-bd-label {
  max-width: 520px
}

.hero-bd-year {
  margin-top: 22vh;
  color: rgba(245, 243, 239, .85);
  font-size: 14px;
  letter-spacing: .06em
}

.hero-bd-stats {
  align-self: end;
  display: flex;
  gap: clamp(28px, 7vw, 78px);
  padding-bottom: clamp(30px, 7vh, 70px)
}

.hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: end;
  color: #fff;
  border-left: 1px solid rgba(245, 243, 239, .66);
  padding-left: 14px;
  min-width: 150px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28)
}

.hero-stat b {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.4vw, 39px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #fff
}

.hero-stat span {
  font-size: 12px;
  line-height: 1.22;
  color: rgba(245, 243, 239, .84);
  text-transform: lowercase
}

.hero-bd-main {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: end
}

.hero-bd-title {
  grid-column: 1/9;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(50px, 5.9vw, 96px);
  line-height: .99;
  font-weight: 300;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .34)
}

.hero-bd-sidecopy {
  grid-column: 10/13;
  align-self: end;
  margin-bottom: 8px;
  color: #fff
}

.hero-bd-sidecopy p {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.42;
  text-align: justify;
  color: rgba(245, 243, 239, .86);
  text-shadow: 0 10px 35px rgba(0, 0, 0, .48)
}

.hero-bd-mini-cta {
  display: inline-flex;
  margin-top: 22px;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(245, 243, 239, .85);
  background: rgba(245, 243, 239, .92);
  color: #0a0a0a;
  padding: 0 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase
}

.hero-bd-mini-cta:hover {
  background: var(--gold);
  border-color: var(--gold)
}

.direction {
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(96px, 11vw, 160px);
  overflow: hidden
}

.direction::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 16%, rgba(184, 154, 106, .12), transparent 34%)
}

.direction-grid {
  position: relative;
  z-index: 1
}

.direction .hero-title {
  font-size: clamp(44px, 5.8vw, 86px)
}

.direction .hero-marquee {
  bottom: 0
}

.direction .hero-photo-main {
  height: 420px
}

.direction .hero-photo-small {
  height: 270px
}

.direction .hero-note {
  background: rgba(245, 243, 239, .96)
}

@media (max-width:1040px) {
  .hero-bd-title {
    grid-column: 1/10
  }

  .hero-bd-sidecopy {
    grid-column: 8/13
  }

  .hero-bd-stats {
    gap: 24px;
    flex-wrap: wrap
  }

  .hero-bd-year {
    margin-top: 12vh
  }
}

@media (max-width:760px) {
  .hero-bd-inner {
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 44px
  }

  .hero-bd-topline {
    font-size: 10px
  }

  .hero-bd-year {
    display: none
  }

  .hero-bd-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 34px
  }

  .hero-stat {
    max-width: 260px
  }

  .hero-bd-main {
    display: block
  }

  .hero-bd-title {
    font-size: clamp(42px, 12.5vw, 70px);
    line-height: 1.02
  }

  .hero-bd-sidecopy {
    margin-top: 28px;
    max-width: 340px
  }

  .hero-bd-sidecopy p {
    text-align: left
  }

  .direction .hero-content {
    margin-bottom: 44px
  }

  .direction .hero-media {
    min-height: 440px
  }

  .direction .hero-title {
    font-size: clamp(44px, 13vw, 68px)
  }
}

/* Hybrid package additions */
.projects-more {
  margin-top: 34px;
  display: flex;
  justify-content: flex-end
}

@media(max-width:760px) {
  .projects-more {
    justify-content: flex-start
  }

  .projects-more .btn {
    width: 100%
  }
}