:root {
  --gold: #c6a56a;
  --black: #000;
  --dark: #050505;
  --deep: #0b0b0b;
  --white: #fff;
  --paper: #f3f3f1;
  --off: #f8f8f6;
  --linew: rgba(255, 255, 255, .1);
  --lineb: rgba(0, 0, 0, .1);
  --max: 1280px;
  --header-offset: 81px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

#home,
#services,
#about,
#leadership,
#contact,
.scroll-target {
  scroll-margin-top: var(--header-offset);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.copy {
  color: rgba(255, 255, 255, .64);
  line-height: 1.8;
}

.black-copy {
  color: rgba(0, 0, 0, .68);
  line-height: 1.8;
}

.section-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
  margin: 16px 0 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader:before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at center, rgba(198, 165, 106, .16), transparent 48%),
    linear-gradient(120deg, transparent 32%, rgba(198, 165, 106, .07), transparent 66%);
  animation: preloaderField 2.4s ease-in-out infinite alternate;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
}

.preloader-ring-a,
.preloader-ring-b {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 106, .1);
}

.preloader-ring-a {
  width: 142px;
  height: 142px;
  border-top-color: rgba(198, 165, 106, .35);
  animation: ringTurn 2.8s linear infinite;
}

.preloader-ring-b {
  width: 184px;
  height: 184px;
  border-color: rgba(198, 165, 106, .05);
  border-right-color: rgba(198, 165, 106, .18);
  animation: ringTurn 4s linear infinite reverse;
}

.preloader-logo {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 106, .3);
  background: rgba(0, 0, 0, .82);
  padding: 18px;
  box-shadow: 0 0 60px rgba(198, 165, 106, .15);
  animation: pulse 1.25s ease-in-out infinite;
}

.preloader-title {
  margin-top: 24px;
  text-align: center;
}

.preloader-title-main {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .42em;
  line-height: 1.15;
  text-transform: uppercase;
}

.preloader-title-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  letter-spacing: .55em;
  line-height: 1.25;
  text-transform: uppercase;
}

.preloader-line {
  margin-top: 22px;
  width: 176px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.preloader-line span {
  display: block;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  animation: loadingBar 1s ease-in-out forwards;
}

@keyframes loadingBar {
  0% {
    transform: scaleX(0);
    opacity: .4;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }

}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

}

@keyframes preloaderField {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: .72;
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes ringTurn {
  to {
    transform: rotate(360deg);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .95);
  border-bottom: 1px solid var(--linew);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

@media (min-width: 1025px) {
  .header-inner {
    max-width: none;
    padding-left: 18px;
  }

}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-title {
  display: block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 18px;
}

.brand-sub {
  display: block;
  color: #fff;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.language-switch a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  transition: .2s;
}

.nav-links a:hover,
.language-switch a:hover,
.language-switch .active {
  color: var(--gold);
}

.language-switch {
  display: flex;
  gap: 12px;
  border-left: 1px solid var(--linew);
  padding-left: 22px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-languages {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .82);
  border-radius: 999px;
  padding: 7px 9px;
}

.mobile-languages a {
  color: rgba(255, 255, 255, .82);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mobile-languages .active {
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(198, 165, 106, .65);
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1200;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

.btn,
.back-to-website-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  transition: .22s;
  text-transform: uppercase;
}

.btn {
  min-width: 190px;
  padding: 16px 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover,
.btn-light:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-light {
  border-color: rgba(0, 0, 0, .22);
  color: #000;
  background: transparent;
}

.back-to-website-btn {
  width: auto!important;
  max-width: max-content!important;
  min-width: 0!important;
  white-space: nowrap!important;
  flex-shrink: 0!important;
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  background: transparent;
  padding: 7px 11px!important;
  font-size: 8px!important;
  letter-spacing: .08em!important;
  line-height: 1!important;
  font-weight: 700!important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-row.compact {
  gap: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  padding: 170px 40px 104px;
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero:before {
  inset: -16%;
  z-index: 0;
  background:
    conic-gradient(from 210deg at 58% 44%, transparent 0 20%, rgba(198, 165, 106, .11) 27%, transparent 38% 60%, rgba(255, 255, 255, .04) 68%, transparent 80% 100%),
    radial-gradient(circle at 76% 24%, rgba(198, 165, 106, .08), transparent 34%),
    #000;
  opacity: .68;
  animation: heroField 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero:after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(198, 165, 106, .08) 46%, transparent 56% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 128px);
  opacity: .16;
  transform: translateX(-32%);
  animation: heroSweep 14s ease-in-out infinite;
  will-change: transform, opacity;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(56px);
  opacity: .68;
  animation: heroDrift 18s cubic-bezier(.45, 0, .25, 1) infinite alternate;
  will-change: transform;
}

.orb-a {
  left: -12%;
  top: -22%;
  width: 580px;
  height: 580px;
  background: rgba(198, 165, 106, .1);
  animation-delay: -.8s;
}

.orb-b {
  right: -12%;
  top: 20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .045);
  animation-delay: -2.6s;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  position: relative;
  max-width: 1120px;
  font-size: clamp(48px, 8vw, 94px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.055em;
  margin: 0;
}

.hero-copy {
  max-width: 980px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .64);
  line-height: 1.8;
}

@keyframes heroField {
  0% {
    transform: translate3d(-1%, -.6%, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate3d(1%, .8%, 0) rotate(10deg) scale(1.02);
  }
}

@keyframes heroSweep {
  0%, 100% {
    opacity: .12;
    transform: translateX(-38%);
  }

  45%, 55% {
    opacity: .2;
    transform: translateX(10%);
  }
}

@keyframes heroDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(2.8%, -2.4%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader:before,
  .preloader-ring-a,
  .preloader-ring-b,
  .preloader-logo,
  .preloader-line span,
  .hero:before,
  .hero:after,
  .orb {
    animation: none;
  }
}

.section {
  padding: 94px 40px;
}

.light {
  background: var(--paper);
  color: #000;
}

.white {
  background: var(--off);
  color: #000;
}

.dark {
  background: #050505;
  color: #fff;
}

.deep {
  background: #0b0b0b;
  color: #fff;
}

.row-list {
  margin-top: 54px;
  border-top: 1px solid var(--lineb);
}

.dark .row-list {
  border-top-color: var(--linew);
}

.row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px 24px;
  border-bottom: 1px solid var(--lineb);
  border-radius: 6px;
  transition: transform .34s ease, background .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.dark .row {
  border-bottom-color: var(--linew);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  font-size: 34px;
  color: var(--gold);
  font-weight: 100;
  line-height: 1;
}

.row:hover,
.row:focus-within,
.card:hover,
.card:focus-within,
.detail-card:hover,
.detail-card:focus-within {
  border-color: rgba(198, 165, 106, .54);
  background: rgba(198, 165, 106, .08);
  box-shadow: inset 0 0 0 1px rgba(198, 165, 106, .28), 0 18px 40px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.row h3,
.card h3 {
  font-size: 26px;
  font-weight: 300;
  margin: 0;
}

.grid-two {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.card {
  border: 1px solid var(--lineb);
  background: #fff;
  padding: 34px;
  border-radius: 6px;
  transition: transform .34s ease, background .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.photo-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
  color: #fff;
}

.photo-text.alt {
  background: #050505;
}

.photo-img {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  opacity: .86;
}

.photo-copy {
  display: flex;
  align-items: center;
  padding: 80px clamp(28px, 5vw, 80px);
}

.photo-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.055em;
  margin: 28px 0 0;
  max-width: 720px;
}

.photo-copy p {
  margin-top: 30px;
  max-width: 620px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .62);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 54px;
}

.team-card {
  background: #050505;
  padding: 32px 28px 30px;
}

.team-card img {
  width: min(270px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 28px;
  border: 1px solid rgba(198, 165, 106, .34);
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, .86), 0 0 0 11px rgba(198, 165, 106, .18), 0 20px 48px rgba(0, 0, 0, .3);
  transform: translateY(0) scale(1);
  transition: transform .42s ease, filter .42s ease, box-shadow .42s ease, border-color .42s ease;
}

.team-card:hover img,
.team-card:focus-within img {
  border-color: rgba(198, 165, 106, .72);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, .9), 0 0 0 12px rgba(198, 165, 106, .34), 0 26px 56px rgba(0, 0, 0, .44);
  filter: contrast(1.04) saturate(1.04) brightness(1.08);
  transform: translateY(-6px) scale(1.025);
}

.role {
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.team-region {
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: inherit;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.form {
  max-width: 760px;
  margin: 54px auto 0;
  display: grid;
  gap: 22px;
  text-align: left;
}

.contact-cards {
  max-width: 980px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.contact-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
  transition: transform .34s ease, background .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.contact-card:hover,
.contact-card:focus-within {
  border-color: rgba(198, 165, 106, .54);
  background: rgba(198, 165, 106, .08);
  box-shadow: inset 0 0 0 1px rgba(198, 165, 106, .22), 0 18px 40px rgba(0, 0, 0, .16);
  transform: translateY(-4px);
}

.contact-card-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.contact-card dl {
  margin: 24px 0 0;
  display: grid;
  gap: 18px;
}

.contact-card dl div {
  display: grid;
  gap: 6px;
}

.contact-card dt {
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.65;
}

.contact-card dl div:first-child dd {
  filter: blur(4px);
  opacity: .34;
  transition: filter .28s ease, opacity .28s ease;
  user-select: none;
}

.contact-card:hover dl div:first-child dd,
.contact-card:focus-within dl div:first-child dd {
  filter: blur(0);
  opacity: 1;
  user-select: text;
}

@media (hover: none), (pointer: coarse) {
  .contact-card dl div:first-child dd {
    filter: none;
    opacity: 1;
    user-select: text;
  }
}

.contact-card a {
  color: #fff;
}

.contact-card a:hover {
  color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form input,
.form textarea,
.form button {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.form input::placeholder,
.form textarea::placeholder {
  font-family: inherit;
}

input,
textarea {
  width: 100%;
  background: #050505;
  border: 1px solid var(--linew);
  padding: 20px;
  color: #fff;
  font-size: 16px;
}

textarea {
  min-height: 160px;
}

.privacy {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.footer {
  background: #060503;
  border-top: 1px solid var(--linew);
  padding: 56px 40px 28px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: normal;
}

.footer .brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer .brand-title {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.15;
}

.footer .brand-sub {
  color: #fff;
  font-size: 10px;
  letter-spacing: .34em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer h4 {
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 14px;
}

.footer a,
.footer div {
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--linew);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.profile-hero {
  padding: 150px 40px 90px;
}

.profile-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
  align-items: end;
}

.profile-image {
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 165, 106, .32);
  border-radius: 999px;
  background: #050505;
  padding: 16px;
  box-shadow: 0 0 0 14px rgba(0, 0, 0, .42), 0 0 0 15px rgba(198, 165, 106, .12), 0 30px 70px rgba(0, 0, 0, .36);
}

.profile-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px;
}

.legal-meta {
  margin-top: 24px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  line-height: 1.7;
}

.legal-content {
  max-width: 980px;
  margin-top: 58px;
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.legal-content h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content strong {
  color: #fff;
  font-weight: 500;
}

.legal-content a {
  color: var(--gold);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 132px 32px 86px;
  position: relative;
  overflow: hidden;
}

.error-page:before {
  content: "";
  position: absolute;
  left: -18%;
  top: -26%;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: rgba(198, 165, 106, .11);
  filter: blur(86px);
}

.error-page:after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -26%;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  filter: blur(86px);
}

.error-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.error-code-card {
  max-width: 580px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .025);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(10px);
}

.error-code {
  margin: 28px 0 0;
  font-size: clamp(68px, 12vw, 152px);
  font-weight: 300;
  line-height: .86;
  letter-spacing: -.08em;
}

.error-title {
  margin: 28px 0 0;
  max-width: 760px;
  font-size: clamp(38px, 6.5vw, 84px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.055em;
}

.error-copy {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .92);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top::before,
.scroll-top::after {
  content: "";
  position: absolute;
  display: block;
}

.scroll-top::before {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.scroll-top::after {
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(4px);
}

.scroll-top:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(0, 0, 0, .96);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  :root {
    --header-offset: 65px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .header-inner {
    padding: 11px 14px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: .28em;
  }

  .footer .brand {
    gap: 8px;
  }

  .footer .brand img {
    width: 42px;
    height: 42px;
  }

  .footer .brand-title {
    font-size: 14px;
  }

  .footer .brand-sub {
    font-size: 8px;
    letter-spacing: .28em;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, .96);
    border-top: 1px solid var(--linew);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    backdrop-filter: blur(18px);
    padding: 18px 22px 26px;
  }

  .mobile-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--linew);
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .14em;
  }

  .hero {
    padding: 138px 22px 78px;
  }

  .section,
  .profile-hero {
    padding: 72px 22px;
  }

  .row,
  .grid-two,
  .cards,
  .team-grid,
  .footer-grid,
  .profile-grid,
  .photo-text,
  .error-grid,
  .contact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .photo-img {
    min-height: 340px;
  }

  .team-card {
    padding: 28px 22px;
  }

  .team-card img {
    width: min(238px, 78vw);
    margin-bottom: 24px;
  }

  .profile-image {
    width: min(320px, 82vw);
    padding: 12px;
  }

  .photo-copy {
    padding: 60px 24px;
  }

  .row {
    align-items: start;
  }

  .btn {
    width: auto;
    min-width: 0;
    padding: 12px 16px;
    font-size: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .error-page {
    padding: 112px 22px 72px;
    align-items: flex-start;
  }

  .error-grid {
    gap: 34px;
  }

  .error-code-card {
    max-width: 100%;
    padding: 24px;
  }

  .button-row.compact .btn {
    padding: 8px 12px!important;
    font-size: 9px!important;
    letter-spacing: .1em!important;
    white-space: nowrap!important;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

}

@media (max-width: 480px) {
  .mobile-languages {
    gap: 5px;
    padding: 6px 8px;
  }

  .mobile-languages a {
    font-size: 9px;
    letter-spacing: .04em;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-title {
    font-size: 38px;
  }

  .photo-copy h2 {
    font-size: 36px;
  }

  .error-code {
    font-size: 64px;
  }

  .error-title {
    font-size: 36px;
  }

  .button-row {
    gap: 10px;
  }

}

/* === FIX: MOBILE FORM CONTROLS + DETAIL CONTENT === */

.privacy {
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.privacy input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  margin-top: 3px;
  padding: 0 !important;
}

.form .btn[type="submit"],
.form button[type="submit"],
.submit-btn {
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  justify-self: start;
}

.detail-section {
  padding: 90px 40px;
  background: var(--off);
  color: #000;
}

.detail-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.detail-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c6a56a;
}

.detail-title {
  margin: 18px 0 0;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
}

.detail-copy {
  color: rgba(0, 0, 0, .68);
  line-height: 1.85;
  font-size: 16px;
}

.detail-list {
  display: grid;
  gap: 18px;
}

.detail-card {
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  padding: 28px;
  border-radius: 6px;
  transition: transform .34s ease, background .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.detail-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
}

.detail-card p {
  margin: 14px 0 0;
  color: rgba(0, 0, 0, .64);
  line-height: 1.75;
}

.detail-dark {
  padding: 90px 40px;
  background: #050505;
  color: #fff;
}

.detail-dark .detail-copy,
.detail-dark .detail-card p {
  color: rgba(255, 255, 255, .62);
}

.detail-dark .detail-card {
  background: #0d0c09;
  border-color: rgba(255, 255, 255, .1);
}

.detail-dark .detail-card:hover,
.detail-dark .detail-card:focus-within {
  border-color: rgba(198, 165, 106, .54);
  background: rgba(198, 165, 106, .08);
}

.detail-cta .button-row {
  margin-top: 28px;
}

.profile-contact-button {
  min-height: 46px;
}

@media (max-width: 900px) {
  .detail-section,
  .detail-dark {
    padding: 72px 22px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

}

@media (max-width: 640px) {
  .privacy {
    font-size: 11px !important;
    line-height: 1.45 !important;
    gap: 8px !important;
  }

  .privacy input[type="checkbox"] {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    margin-top: 2px !important;
  }

  .form .btn[type="submit"],
  .form button[type="submit"],
  .submit-btn {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    padding: 9px 14px !important;
    font-size: 9px !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
  }

  .form {
    gap: 16px !important;
  }

  input,
  textarea {
    padding: 14px !important;
    font-size: 14px !important;
  }

}

/* === FINAL WORKING EXPORT FIXES === */

/* Anchor offset below fixed header */

html {
  scroll-padding-top: var(--header-offset);
}

#home,
#services,
#about,
#leadership,
#contact,
.scroll-target {
  scroll-margin-top: var(--header-offset);
}

/* Hero buttons: mobile touch fix */

.hero .button-row {
  position: relative;
  z-index: 5;
}

.hero .button-row .btn,
.hero .button-row a {
  touch-action: manipulation;
  pointer-events: auto;
  min-height: 52px;
}

/* General button reliability */

.btn,
.back-to-website-btn,
.profile-back-button,
.error-back-button,
.detail-link,
.row .btn,
.card .btn,
.team-card .btn {
  touch-action: manipulation;
  pointer-events: auto;
}

/* Mobile-readable line heights */

.hero h1 {
  line-height: 1.08;
}

.hero-copy,
.photo-copy p,
.row p,
.card p,
.team-card p,
.copy,
.black-copy,
.detail-copy,
.error-copy {
  line-height: 1.82;
}

.photo-copy h2,
.section-title,
.error-title {
  line-height: 1.08;
}

/* Detail buttons and all overview buttons */

.row .btn,
.card .btn,
.team-card .btn,
.detail-link {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

/* Back-to-website hover and mobile touch feedback */

.back-to-website-btn,
.profile-back-button,
.error-back-button {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  color: #fff !important;
  background: transparent !important;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease !important;
}

.back-to-website-btn:hover,
.profile-back-button:hover,
.error-back-button:hover,
.back-to-website-btn:focus-visible,
.profile-back-button:focus-visible,
.error-back-button:focus-visible,
.back-to-website-btn:active,
.profile-back-button:active,
.error-back-button:active {
  color: #c6a56a !important;
  border-color: #c6a56a !important;
  transform: translateY(-1px);
}

/* Mobile form controls */

.privacy {
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.privacy input[type="checkbox"] {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  margin-top: 3px !important;
  padding: 0 !important;
}

.form .btn[type="submit"],
.form button[type="submit"],
.submit-btn {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  min-width: 0 !important;
  justify-self: start !important;
  white-space: nowrap !important;
}

/* Mobile menu reliability */

.mobile-toggle {
  position: relative;
  z-index: 1200;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open,
.mobile-menu.is-open {
  display: block !important;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-nav-wrap {
    display: none !important;
  }

  .mobile-actions {
    display: flex !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(198, 165, 106, .65) !important;
    background: rgba(0, 0, 0, .82) !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 22px !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1100 !important;
    border-top: 1px solid rgba(255, 255, 255, .1) !important;
    background: rgba(0, 0, 0, .96) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45) !important;
    backdrop-filter: blur(18px) !important;
    padding: 18px 22px 26px !important;
  }

  .mobile-menu a {
    display: block !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
    color: rgba(255, 255, 255, .88) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: .14em !important;
  }

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: var(--header-offset);
  }

  #home,
  #services,
  #about,
  #leadership,
  #contact,
  .scroll-target {
    scroll-margin-top: var(--header-offset);
  }

  .hero h1 {
    line-height: 1.08 !important;
  }

  .hero-copy,
  .photo-copy p,
  .row p,
  .card p,
  .team-card p,
  .copy,
  .black-copy,
  .detail-copy,
  .error-copy {
    line-height: 1.85 !important;
  }

  .photo-copy h2,
  .section-title,
  .error-title {
    line-height: 1.12 !important;
  }

  .hero .button-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero .button-row .btn,
  .hero .button-row a {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }

  .row .btn,
  .card .btn,
  .team-card .btn,
  .detail-link {
    padding: 9px 13px !important;
    font-size: 9px !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
  }

  .back-to-website-btn,
  .profile-back-button,
  .error-back-button {
    padding: 6px 10px !important;
    font-size: 8px !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
  }

  .privacy {
    font-size: 11px !important;
    line-height: 1.45 !important;
    gap: 8px !important;
  }

  .privacy input[type="checkbox"] {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    margin-top: 2px !important;
  }

  .form .btn[type="submit"],
  .form button[type="submit"],
  .submit-btn {
    padding: 9px 14px !important;
    font-size: 9px !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
  }

  .form {
    gap: 16px !important;
  }

  input,
  textarea {
    padding: 14px !important;
    font-size: 14px !important;
  }

}

/* Responsive back-to-website sizing */

.back-to-website-btn,
.profile-back-button,
.error-back-button {
  min-height: 44px !important;
  padding: 12px 20px !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  letter-spacing: .12em !important;
}

.header .back-to-website-btn {
  min-height: 40px !important;
  padding: 10px 16px !important;
  font-size: 10px !important;
  letter-spacing: .10em !important;
}

@media (max-width: 1024px) {

  .back-to-website-btn,
  .profile-back-button,
  .error-back-button {
    min-height: 40px !important;
    padding: 10px 16px !important;
    font-size: 10px !important;
    letter-spacing: .10em !important;
  }

  .header .back-to-website-btn {
    min-height: 38px !important;
    padding: 8px 12px !important;
    font-size: 9px !important;
    letter-spacing: .08em !important;
  }

}

@media (max-width: 640px) {

  .profile-hero .button-row.compact .back-to-website-btn,
  .error-page .button-row.compact .back-to-website-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    font-size: 9px !important;
    letter-spacing: .09em !important;
  }

  .header .back-to-website-btn {
    width: auto !important;
    max-width: calc(100vw - 168px) !important;
    min-height: 36px !important;
    padding: 7px 10px !important;
    font-size: 8px !important;
    letter-spacing: .07em !important;
  }

}

@media (max-width: 380px) {

  .header .back-to-website-btn {
    max-width: calc(100vw - 148px) !important;
    padding: 7px 8px !important;
    font-size: 7.5px !important;
    letter-spacing: .05em !important;
  }

}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2400;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(14px);
}

.cookie-consent-panel {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(198, 165, 106, .35);
  border-radius: 8px;
  background: rgba(5, 5, 5, .96);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .46);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent-title {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cookie-consent-text {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.65;
}

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

.cookie-consent-link {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cookie-consent-link:hover {
  color: var(--gold);
}

.cookie-consent-button {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: #080808;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cookie-consent-button:hover {
  background: #d4b982;
  border-color: #d4b982;
}

@media (max-width: 720px) {

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }

  .cookie-consent-link,
  .cookie-consent-button {
    width: 100%;
    text-align: center;
  }

}

/* === DAY / NIGHT THEME TOGGLE === */

html[data-theme="night"] {
  color-scheme: dark;
}

html[data-theme="day"] {
  color-scheme: light;
}

html[data-theme] body,
html[data-theme] .header,
html[data-theme] .hero,
html[data-theme] .section,
html[data-theme] .photo-text,
html[data-theme] .profile-hero,
html[data-theme] .detail-section,
html[data-theme] .detail-dark,
html[data-theme] .footer,
html[data-theme] .error-page,
html[data-theme] .card,
html[data-theme] .row,
html[data-theme] .detail-card,
html[data-theme] input,
html[data-theme] textarea {
  transition: background-color .26s ease, border-color .26s ease, color .26s ease, box-shadow .26s ease;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid rgba(198, 165, 106, .48);
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: var(--gold);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(198, 165, 106, .18);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198, 165, 106, .14);
  transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 999px;
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}

.theme-toggle-icon::before {
  inset: -7px;
  opacity: .9;
  box-shadow:
    0 -10px 0 -6px currentColor,
    0 10px 0 -6px currentColor,
    10px 0 0 -6px currentColor,
    -10px 0 0 -6px currentColor,
    7px 7px 0 -6px currentColor,
    -7px -7px 0 -6px currentColor,
    7px -7px 0 -6px currentColor,
    -7px 7px 0 -6px currentColor;
}

.theme-toggle-icon::after {
  inset: 0;
  opacity: 0;
  background: transparent;
}

html[data-theme="day"] .theme-toggle {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(15, 15, 15, .2);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .03);
}

html[data-theme="day"] .theme-toggle-icon {
  background: transparent;
  box-shadow: inset -6px -3px 0 0 var(--gold);
  transform: translateX(1px);
}

html[data-theme="day"] .theme-toggle-icon::before {
  opacity: 0;
  transform: scale(.7);
}

html[data-theme="day"] .theme-toggle-icon::after {
  inset: 4px 2px auto auto;
  width: 4px;
  height: 4px;
  opacity: .9;
  background: currentColor;
  box-shadow: -9px 7px 0 -1px currentColor, -2px 12px 0 -1px currentColor;
}

html[data-theme="day"] body {
  background: var(--paper);
  color: #000;
}

html[data-theme="day"] .header {
  background: rgba(248, 247, 242, .96);
  border-bottom-color: rgba(0, 0, 0, .1);
}

html[data-theme="day"] .brand-sub,
html[data-theme="day"] .footer .brand-sub {
  color: #141414;
}

html[data-theme="day"] .nav-links a,
html[data-theme="day"] .language-switch a {
  color: rgba(0, 0, 0, .66);
}

html[data-theme="day"] .nav-links a:hover,
html[data-theme="day"] .language-switch a:hover,
html[data-theme="day"] .language-switch .active {
  color: var(--gold);
}

html[data-theme="day"] .language-switch {
  border-left-color: rgba(0, 0, 0, .12);
}

html[data-theme="day"] .mobile-languages {
  border-color: rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .82);
}

html[data-theme="day"] .mobile-languages a {
  color: rgba(0, 0, 0, .7);
}

html[data-theme="day"] .mobile-languages .active {
  color: var(--gold);
}

html[data-theme="day"] .mobile-toggle {
  border-color: rgba(198, 165, 106, .65) !important;
  background: rgba(255, 255, 255, .82) !important;
  color: #111 !important;
}

html[data-theme="day"] .mobile-menu {
  border-top-color: rgba(0, 0, 0, .1) !important;
  background: rgba(248, 247, 242, .98) !important;
  box-shadow: 0 24px 70px rgba(40, 35, 24, .16) !important;
}

html[data-theme="day"] .mobile-menu a {
  border-bottom-color: rgba(0, 0, 0, .1) !important;
  color: rgba(0, 0, 0, .78) !important;
}

html[data-theme="day"] .hero,
html[data-theme="day"] .dark,
html[data-theme="day"] .deep,
html[data-theme="day"] .photo-text,
html[data-theme="day"] .photo-text.alt,
html[data-theme="day"] .profile-hero,
html[data-theme="day"] .detail-dark,
html[data-theme="day"] .footer,
html[data-theme="day"] .error-page {
  background: var(--paper);
  color: #000;
}

html[data-theme="day"] .light {
  background: #fbfaf6;
  color: #000;
}

html[data-theme="day"] .white,
html[data-theme="day"] .detail-section {
  background: #fffdf8;
  color: #000;
}

html[data-theme="day"] .hero:before {
  background:
    conic-gradient(from 210deg at 58% 44%, transparent 0 20%, rgba(198, 165, 106, .16) 27%, transparent 38% 60%, rgba(0, 0, 0, .035) 68%, transparent 80% 100%),
    radial-gradient(circle at 76% 24%, rgba(198, 165, 106, .16), transparent 34%),
    #f5f3ec;
  opacity: .82;
}

html[data-theme="day"] .hero:after {
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(198, 165, 106, .1) 46%, transparent 56% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .04) 0 1px, transparent 1px 128px);
  opacity: .24;
}

html[data-theme="day"] .orb-a {
  background: rgba(198, 165, 106, .16);
}

html[data-theme="day"] .orb-b,
html[data-theme="day"] .error-page:after {
  background: rgba(0, 0, 0, .045);
}

html[data-theme="day"] .hero h1,
html[data-theme="day"] .section-title,
html[data-theme="day"] .photo-copy h2,
html[data-theme="day"] .detail-title,
html[data-theme="day"] .error-code,
html[data-theme="day"] .error-title,
html[data-theme="day"] .legal-content h2,
html[data-theme="day"] [style*="color:#fff"],
html[data-theme="day"] [style*="color: #fff"] {
  color: #111 !important;
}

html[data-theme="day"] .copy,
html[data-theme="day"] .hero-copy,
html[data-theme="day"] .photo-copy p,
html[data-theme="day"] .detail-copy,
html[data-theme="day"] .error-copy,
html[data-theme="day"] .team-region,
html[data-theme="day"] .privacy,
html[data-theme="day"] .legal-meta,
html[data-theme="day"] .legal-content p,
html[data-theme="day"] .legal-content li,
html[data-theme="day"] .contact-card dd,
html[data-theme="day"] .detail-card p,
html[data-theme="day"] .detail-dark .detail-card p {
  color: rgba(0, 0, 0, .66);
}

html[data-theme="day"] .contact-card h3,
html[data-theme="day"] .contact-card a {
  color: #000;
}

html[data-theme="day"] .contact-card a:hover {
  color: var(--gold);
}

html[data-theme="day"] .contact-card dt {
  color: rgba(0, 0, 0, .44);
}

html[data-theme="day"] .black-copy {
  color: rgba(0, 0, 0, .68);
}

html[data-theme="day"] .row-list,
html[data-theme="day"] .dark .row-list,
html[data-theme="day"] .footer-bottom,
html[data-theme="day"] .legal-content section {
  border-color: rgba(0, 0, 0, .12);
}

html[data-theme="day"] .row,
html[data-theme="day"] .dark .row,
html[data-theme="day"] .card,
html[data-theme="day"] .contact-card,
html[data-theme="day"] .detail-card,
html[data-theme="day"] .detail-dark .detail-card,
html[data-theme="day"] .profile-image,
html[data-theme="day"] .error-code-card {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(0, 0, 0, .1);
}

html[data-theme="day"] .team-card {
  background: rgba(255, 255, 255, .72);
}

html[data-theme="day"] .team-region {
  color: var(--gold);
}

html[data-theme="day"] .team-card img {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .82), 0 0 0 11px rgba(198, 165, 106, .28), 0 20px 44px rgba(40, 35, 24, .16);
}

html[data-theme="day"] .team-card:hover img,
html[data-theme="day"] .team-card:focus-within img {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .88), 0 0 0 12px rgba(198, 165, 106, .44), 0 24px 50px rgba(40, 35, 24, .2);
}

html[data-theme="day"] .profile-image {
  background: #050505;
  border-color: rgba(198, 165, 106, .36);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .72), 0 0 0 15px rgba(198, 165, 106, .2), 0 26px 58px rgba(40, 35, 24, .16);
}

html[data-theme="day"] .row:hover,
html[data-theme="day"] .row:focus-within,
html[data-theme="day"] .card:hover,
html[data-theme="day"] .card:focus-within,
html[data-theme="day"] .contact-card:hover,
html[data-theme="day"] .contact-card:focus-within,
html[data-theme="day"] .detail-card:hover,
html[data-theme="day"] .detail-card:focus-within,
html[data-theme="day"] .detail-dark .detail-card:hover,
html[data-theme="day"] .detail-dark .detail-card:focus-within {
  border-color: rgba(198, 165, 106, .58);
  background: rgba(198, 165, 106, .12);
  box-shadow: inset 0 0 0 1px rgba(198, 165, 106, .26), 0 18px 36px rgba(40, 35, 24, .12);
}

html[data-theme="day"] .btn-primary {
  background: #111;
  color: #fff;
  border-color: #000;
}

html[data-theme="day"] .btn-primary:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

html[data-theme="day"] .btn-secondary,
html[data-theme="day"] .btn-light,
html[data-theme="day"] .back-to-website-btn,
html[data-theme="day"] .profile-back-button,
html[data-theme="day"] .error-back-button {
  border-color: rgba(0, 0, 0, .22) !important;
  color: #111 !important;
  background: transparent !important;
}

html[data-theme="day"] .btn-secondary:hover,
html[data-theme="day"] .btn-light:hover,
html[data-theme="day"] .back-to-website-btn:hover,
html[data-theme="day"] .profile-back-button:hover,
html[data-theme="day"] .error-back-button:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

html[data-theme="day"] input,
html[data-theme="day"] textarea {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(0, 0, 0, .16);
  color: #000;
}

html[data-theme="day"] input::placeholder,
html[data-theme="day"] textarea::placeholder {
  color: rgba(0, 0, 0, .42);
}

html[data-theme="day"] .footer {
  border-top-color: rgba(0, 0, 0, .12);
}

html[data-theme="day"] .footer a,
html[data-theme="day"] .footer div {
  color: rgba(0, 0, 0, .56);
}

html[data-theme="day"] .footer a:hover {
  color: var(--gold);
}

html[data-theme="day"] .legal-content strong {
  color: #000;
}

html[data-theme="day"] .error-page:before {
  background: rgba(198, 165, 106, .16);
}

html[data-theme="day"] .error-code-card {
  box-shadow: 0 28px 80px rgba(40, 35, 24, .12);
}

html[data-theme="day"] .error-code-card [style*="background"] {
  background: rgba(0, 0, 0, .12) !important;
}

html[data-theme="day"] .scroll-top {
  border-color: rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .9);
  color: #000;
  box-shadow: 0 18px 36px rgba(40, 35, 24, .16);
}

html[data-theme="day"] .scroll-top:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: #fff;
}

html[data-theme="day"] .cookie-consent-panel {
  border-color: rgba(198, 165, 106, .45);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(40, 35, 24, .18);
}

html[data-theme="day"] .cookie-consent-text {
  color: rgba(0, 0, 0, .68);
}

html[data-theme="day"] .cookie-consent-link {
  color: rgba(0, 0, 0, .68);
}

html[data-theme="day"] .cookie-consent-link:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {

  .theme-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

}

@media (max-width: 480px) {

  .theme-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .theme-toggle-icon {
    width: 15px;
    height: 15px;
  }

}

/* Text-free mobile menu icon to avoid encoding artifacts */

.mobile-toggle {
  position: relative;
  overflow: hidden;
  font-size: 0 !important;
}

.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mobile-toggle::before {
  top: calc(50% - 6px);
  box-shadow: 0 6px 0 currentColor;
}

.mobile-toggle::after {
  top: calc(50% + 6px);
}

.mobile-toggle[aria-expanded="true"]::before {
  top: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"]::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* === APPROVED COLOR PALETTE: quieter executive palette === */
:root {
  --gold: #b9975b;
  --gold-soft: #d2b06f;
  --black: #050403;
  --dark: #0a0907;
  --deep: #11100d;
  --surface: #15130f;
  --white: #f7f3ea;
  --paper: #f3f0e8;
  --off: #fbf8f0;
  --ink: #11100d;
  --linew: rgba(210, 176, 111, .14);
  --lineb: rgba(17, 16, 13, .12);
}

body,
.hero,
.photo-text,
.preloader {
  background: var(--black);
  color: var(--white);
}

.header,
.mobile-menu {
  background: rgba(5, 4, 3, .94);
  border-color: var(--linew);
}

.preloader:before {
  background:
    radial-gradient(circle at center, rgba(185, 151, 91, .14), transparent 48%),
    linear-gradient(120deg, transparent 32%, rgba(185, 151, 91, .065), transparent 66%);
}

.preloader-logo {
  border-color: rgba(185, 151, 91, .24);
}

.preloader-ring-a {
  border-color: rgba(185, 151, 91, .08);
  border-top-color: rgba(185, 151, 91, .46);
  border-left-color: rgba(185, 151, 91, .28);
}

.preloader-ring-b {
  border-color: rgba(185, 151, 91, .055);
  border-right-color: rgba(185, 151, 91, .30);
  border-bottom-color: rgba(185, 151, 91, .18);
}

.preloader-logo {
  background: rgba(5, 4, 3, .84);
  box-shadow: 0 0 60px rgba(185, 151, 91, .14);
}

.hero:before {
  background:
    conic-gradient(from 210deg at 58% 44%, transparent 0 22%, rgba(185, 151, 91, .105) 30%, transparent 42% 62%, rgba(247, 243, 234, .035) 70%, transparent 84% 100%),
    radial-gradient(circle at 76% 24%, rgba(185, 151, 91, .075), transparent 36%),
    var(--black);
  opacity: .62;
}

.hero:after {
  background:
    linear-gradient(112deg, transparent 0 40%, rgba(185, 151, 91, .07) 48%, transparent 58% 100%),
    repeating-linear-gradient(90deg, rgba(247, 243, 234, .026) 0 1px, transparent 1px 128px);
  opacity: .14;
}

.orb-a {
  background: rgba(185, 151, 91, .09);
}

.orb-b {
  background: rgba(247, 243, 234, .038);
}

.dark,
.profile-hero,
.detail-dark,
.photo-text.alt,
.team-card,
.profile-image,
.contact-card,
input,
textarea {
  background: var(--dark);
}

.deep,
.footer,
.error-page {
  background: var(--deep);
}

.light {
  background: var(--paper);
  color: var(--ink);
}

.white {
  background: var(--off);
  color: var(--ink);
}

.copy,
.hero-copy,
.photo-copy p,
.legal-content p,
.legal-content li,
.contact-card dd,
.footer a,
.footer div {
  color: rgba(247, 243, 234, .68);
}

.black-copy {
  color: rgba(17, 16, 13, .68);
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-primary:hover,
.contact-card:hover,
.contact-card:focus-within,
.row:hover,
.row:focus-within,
.card:hover,
.card:focus-within,
.detail-card:hover,
.detail-card:focus-within {
  border-color: rgba(185, 151, 91, .54);
  background: rgba(185, 151, 91, .075);
  box-shadow: inset 0 0 0 1px rgba(185, 151, 91, .24), 0 18px 40px rgba(0, 0, 0, .12);
}

.card {
  background: rgba(247, 243, 234, .96);
}

.team-card img {
  border-color: rgba(185, 151, 91, .36);
  box-shadow: 0 0 0 10px rgba(5, 4, 3, .86), 0 0 0 11px rgba(185, 151, 91, .18), 0 20px 48px rgba(0, 0, 0, .3);
}

.team-card:hover img,
.team-card:focus-within img {
  border-color: rgba(185, 151, 91, .72);
  box-shadow: 0 0 0 10px rgba(5, 4, 3, .9), 0 0 0 12px rgba(185, 151, 91, .34), 0 26px 56px rgba(0, 0, 0, .44);
}

.cookie-consent-panel {
  background: rgba(5, 4, 3, .96);
  border-color: rgba(210, 176, 111, .2);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .52);
}

.cookie-consent-title,
.cookie-consent-link,
.cookie-consent-button {
  color: var(--gold);
}

.cookie-consent-button {
  background: rgba(185, 151, 91, .14);
  border-color: rgba(185, 151, 91, .42);
}

.footer {
  border-top-color: var(--linew);
}

html[data-theme="day"] body {
  background: var(--off);
  color: var(--ink);
}

html[data-theme="day"] .hero,
html[data-theme="day"] .profile-hero,
html[data-theme="day"] .detail-dark {
  background: #f6f2e8;
  color: var(--ink);
}

html[data-theme="day"] .section.light,
html[data-theme="day"] .section.white {
  background: var(--off);
}

html[data-theme="day"] .team-card,
html[data-theme="day"] .card,
html[data-theme="day"] .contact-card,
html[data-theme="day"] .detail-card {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(17, 16, 13, .10);
}

/* === Refined animated hero background visibility === */
.hero:before {
  background:
    conic-gradient(from 210deg at 58% 44%, transparent 0 18%, rgba(185, 151, 91, .16) 28%, transparent 42% 60%, rgba(247, 243, 234, .052) 72%, transparent 86% 100%),
    radial-gradient(circle at 78% 24%, rgba(185, 151, 91, .105), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(185, 151, 91, .055), transparent 38%),
    var(--black);
  opacity: .72;
}

.hero:after {
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(185, 151, 91, .105) 47%, transparent 59% 100%),
    repeating-linear-gradient(90deg, rgba(247, 243, 234, .038) 0 1px, transparent 1px 128px);
  opacity: .20;
}

.orb-a {
  background: rgba(185, 151, 91, .13);
}

.orb-b {
  background: rgba(247, 243, 234, .055);
}

html[data-theme="day"] .hero:before {
  background:
    conic-gradient(from 210deg at 58% 44%, transparent 0 18%, rgba(185, 151, 91, .24) 28%, transparent 42% 60%, rgba(17, 16, 13, .075) 72%, transparent 86% 100%),
    radial-gradient(circle at 78% 24%, rgba(185, 151, 91, .20), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(185, 151, 91, .10), transparent 38%),
    #f6f2e8;
  opacity: .92;
}

html[data-theme="day"] .hero:after {
  background:
    linear-gradient(112deg, transparent 0 36%, rgba(185, 151, 91, .16) 47%, transparent 59% 100%),
    repeating-linear-gradient(90deg, rgba(17, 16, 13, .055) 0 1px, transparent 1px 128px);
  opacity: .30;
}

html[data-theme="day"] .orb-a {
  background: rgba(185, 151, 91, .22);
}

html[data-theme="day"] .orb-b {
  background: rgba(17, 16, 13, .055);
}

/* === Lava-lamp hero atmosphere === */
.hero:before {
  inset: -22%;
  background:
    radial-gradient(ellipse 42% 58% at 18% 34%, rgba(185, 151, 91, .23) 0%, rgba(185, 151, 91, .12) 30%, transparent 60%),
    radial-gradient(ellipse 34% 48% at 74% 26%, rgba(247, 243, 234, .125) 0%, rgba(185, 151, 91, .07) 34%, transparent 64%),
    radial-gradient(ellipse 52% 40% at 62% 78%, rgba(112, 92, 49, .20) 0%, rgba(185, 151, 91, .075) 36%, transparent 68%),
    radial-gradient(ellipse 30% 42% at 34% 82%, rgba(247, 243, 234, .075) 0%, transparent 62%),
    linear-gradient(145deg, rgba(185, 151, 91, .035), transparent 44%),
    var(--black);
  filter: blur(18px) saturate(1.08);
  opacity: .78;
  transform-origin: 58% 46%;
  animation: heroLavaField 44s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero:after {
  inset: -10%;
  background:
    radial-gradient(ellipse 24% 32% at 26% 68%, rgba(185, 151, 91, .18) 0%, rgba(185, 151, 91, .07) 42%, transparent 70%),
    radial-gradient(ellipse 30% 28% at 78% 48%, rgba(247, 243, 234, .09) 0%, rgba(185, 151, 91, .05) 44%, transparent 74%),
    radial-gradient(ellipse 38% 24% at 48% 22%, rgba(185, 151, 91, .105) 0%, transparent 68%),
    repeating-linear-gradient(90deg, rgba(247, 243, 234, .026) 0 1px, transparent 1px 132px);
  filter: blur(8px);
  opacity: .25;
  transform-origin: 48% 52%;
  animation: heroCloudDrift 38s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.orb {
  border-radius: 48% 52% 43% 57% / 58% 42% 58% 42%;
  filter: blur(74px);
  opacity: .55;
  animation: heroCloudFloat 34s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.orb-a {
  left: -13%;
  top: -18%;
  width: 620px;
  height: 520px;
  background:
    radial-gradient(ellipse at 42% 46%, rgba(185, 151, 91, .23), rgba(185, 151, 91, .09) 42%, transparent 70%);
  animation-delay: -5s;
}

.orb-b {
  right: -11%;
  top: 16%;
  width: 560px;
  height: 640px;
  background:
    radial-gradient(ellipse at 54% 42%, rgba(247, 243, 234, .105), rgba(185, 151, 91, .055) 44%, transparent 72%);
  animation-delay: -13s;
}

html[data-theme="day"] .hero:before {
  background:
    radial-gradient(ellipse 42% 58% at 18% 34%, rgba(185, 151, 91, .30) 0%, rgba(185, 151, 91, .16) 30%, transparent 60%),
    radial-gradient(ellipse 34% 48% at 74% 26%, rgba(255, 255, 255, .44) 0%, rgba(185, 151, 91, .12) 36%, transparent 64%),
    radial-gradient(ellipse 52% 40% at 62% 78%, rgba(149, 126, 82, .18) 0%, rgba(185, 151, 91, .10) 36%, transparent 68%),
    radial-gradient(ellipse 30% 42% at 34% 82%, rgba(17, 16, 13, .055) 0%, transparent 62%),
    linear-gradient(145deg, rgba(185, 151, 91, .08), transparent 46%),
    #f6f2e8;
  filter: blur(16px) saturate(1.03);
  opacity: .94;
}

html[data-theme="day"] .hero:after {
  background:
    radial-gradient(ellipse 24% 32% at 26% 68%, rgba(185, 151, 91, .26) 0%, rgba(185, 151, 91, .10) 42%, transparent 70%),
    radial-gradient(ellipse 30% 28% at 78% 48%, rgba(17, 16, 13, .065) 0%, rgba(185, 151, 91, .08) 44%, transparent 74%),
    radial-gradient(ellipse 38% 24% at 48% 22%, rgba(185, 151, 91, .18) 0%, transparent 68%),
    repeating-linear-gradient(90deg, rgba(17, 16, 13, .035) 0 1px, transparent 1px 132px);
  opacity: .30;
}

html[data-theme="day"] .orb {
  opacity: .52;
}

html[data-theme="day"] .orb-a {
  background:
    radial-gradient(ellipse at 42% 46%, rgba(185, 151, 91, .30), rgba(185, 151, 91, .13) 42%, transparent 70%);
}

html[data-theme="day"] .orb-b {
  background:
    radial-gradient(ellipse at 54% 42%, rgba(17, 16, 13, .07), rgba(185, 151, 91, .10) 44%, transparent 72%);
}

@keyframes heroLavaField {
  0% {
    opacity: .72;
    transform: translate3d(-1.4%, -1%, 0) rotate(-2deg) scale(1.02);
  }

  38% {
    opacity: .82;
    transform: translate3d(1.1%, 1.2%, 0) rotate(2.4deg) scale(1.055);
  }

  72% {
    opacity: .77;
    transform: translate3d(-.5%, 2%, 0) rotate(-1deg) scale(1.075);
  }

  100% {
    opacity: .84;
    transform: translate3d(1.6%, -.8%, 0) rotate(3.5deg) scale(1.04);
  }
}

@keyframes heroCloudDrift {
  0% {
    opacity: .20;
    transform: translate3d(-2.2%, .8%, 0) rotate(.8deg) scale(1);
  }

  45% {
    opacity: .30;
    transform: translate3d(1.5%, -1.4%, 0) rotate(-1.4deg) scale(1.035);
  }

  100% {
    opacity: .24;
    transform: translate3d(2.4%, 1.2%, 0) rotate(1.2deg) scale(1.02);
  }
}

@keyframes heroCloudFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(3.2%, -2.6%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-1.4%, 2.2%, 0) scale(1.035);
  }
}
