:root {
  --black: #111111;
  --white: #ffffff;
  --page: #ffffff;
  --surface: #f6f4ef;
  --text: #504d47;
  --heading: #111111;
  --heading-scale: 1;
  --muted: #7f7a71;
  --line: #efefef;
  --gold: #d9b65f;
  --focus: #005fcc;
  --font: "Open Sans", Arial, Helvetica, sans-serif;
  --header-height: 5rem;
  --section-space: clamp(4rem, 5.5vw, 6.5rem);
  --section-space-small: clamp(3rem, 4.25vw, 4.75rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 1.5rem 5rem rgba(17, 17, 17, 0.12);
  --border-width: 2px;
  --shadow-soft: 0 0.75rem 1.75rem rgba(17, 17, 17, 0.08);
  --border-light: #efefef;
  --text-flow-bronze: #af8741;
  --text-flow-brown: #8c652f;
  --text-flow-brown-deep: #694b28;
}
[data-theme="dark"] {
  --page: #111111;
  --surface: #111111;
  --text: #c9c5bd;
  --heading: #ffffff;
  --muted: #9d9991;
  --line: #343434;
}
@media (max-width: 48rem) {
  :root {
    --heading-scale: 0.9;
    --header-height: 4.5rem;
    --section-space: 3.25rem;
    --section-space-small: 2.6rem;
  }
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 0.98;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
@media (max-width: 48rem) {
  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: break-word;
    hyphens: manual;
  }
  body {
    font-size: 1rem;
    line-height: 1.6;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  min-width: 20rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--page);
  color: var(--text);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
picture,
svg,
video {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 0.1875rem solid var(--focus);
  outline-offset: 0.25rem;
}
::selection {
  background: var(--gold);
  color: var(--black);
}
h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--heading);
}
p {
  margin-top: 0;
}
ul,
ol {
  margin-top: 0;
  padding-left: 1.25rem;
}
figure {
  margin-top: 0;
}
address {
  margin-top: 0;
  font-style: normal;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 3000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: none;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.check-list {
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.check-list li i {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  margin-top: 0.1rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
}
.check-list--dark,
.check-list--dark li {
  border-color: rgba(255, 255, 255, 0.14);
}
.check-list--dark li i {
  border-color: var(--gold);
  color: var(--gold);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.65s ease, transform 0.75s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.text-lg-right {
  text-align: right !important;
}
@media (min-width: 62rem) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .text-md-right {
    text-align: right !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (min-width: 62rem) {
  .container-xl {
    max-width: 72rem;
  }
}
@media (min-width: 75rem) {
  .container-xl {
    max-width: 80rem;
  }
}
@media (min-width: 90rem) {
  .container-xl {
    max-width: 86rem;
  }
}
@media (min-width: 100rem) {
  .container-xl {
    max-width: 92rem;
  }
}
@media (max-width: 48rem) {
  h5,
  h6 {
    overflow-wrap: break-word;
    hyphens: manual;
  }
  html {
    scroll-padding-top: calc(var(--header-height) + 0.75rem);
  }
  .check-list li {
    gap: 0.65rem;
    padding: 0.75rem 0;
  }
}
.contact-stage .eyebrow--gold {
  color: var(--gold);
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: clamp(42rem, 78svh, 55rem);
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: clamp(38rem, 85svh, 80rem);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.66) 0%, rgba(6, 6, 6, 0.24) 28%, transparent 50%), linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.5) 54%, rgba(8, 8, 8, 0.14) 100%), linear-gradient(0deg, rgba(8, 8, 8, 0.68) 0%, transparent 58%);
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.66) 0%, rgba(6, 6, 6, 0.24) 28%, transparent 50%), linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.5) 54%, rgba(8, 8, 8, 0.14) 100%), linear-gradient(0deg, rgba(8, 8, 8, 0.68) 0%, transparent 58%);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  transform: scale(1.15);
}
.hero h1 {
  margin-bottom: 1.45rem;
  color: var(--white);
  font-weight: 300;
  font-size: calc(clamp(2.75rem, 6vw, 6.6rem) * var(--heading-scale));
}
.page-hero h1 {
  margin-bottom: 1.45rem;
  color: var(--white);
  font-weight: 300;
  font-size: calc(clamp(2.45rem, 5.2vw, 5.7rem) * var(--heading-scale));
}
.hero h1 span {
  display: block;
}
.hero h1 strong {
  display: block;
  color: var(--gold);
  font-weight: 800;
}
.page-hero h1 span {
  display: block;
}
.page-hero h1 strong {
  display: block;
  color: var(--gold);
  font-weight: 800;
}
.hero__lead,
.page-hero__lead {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}
.hero__stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.7rem;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1;
  color: var(--gold);
}
.hero__stars span {
  opacity: 0;
  transform: translateY(0.65rem) scale(0.8);
  animation: starFadeIn 0.55s var(--ease) forwards;
}
.hero__stars span:nth-child(1) {
  animation-delay: 0.2s;
}
.hero__stars span:nth-child(2) {
  animation-delay: 0.38s;
}
.hero__stars span:nth-child(3) {
  animation-delay: 0.56s;
}
.hero__stars span:nth-child(4) {
  animation-delay: 0.74s;
}
.hero__stars span:nth-child(5) {
  animation-delay: 0.92s;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 3vw, 3rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  width: 1px;
  height: 2.8rem;
  background: var(--gold);
}
.page-hero__breadcrumbs {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 1.5rem;
  left: 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: var(--white);
  transition: color 0.25s ease;
}
.contact-stage {
  position: relative;
  min-height: clamp(40rem, 74svh, 52rem);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.contact-stage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-stage__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.64) 48%, rgba(8, 8, 8, 0.18) 100%);
}
.contact-stage h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 300;
  font-size: calc(clamp(2.65rem, 5vw, 5.1rem) * var(--heading-scale));
}
.contact-stage h2 strong {
  display: block;
  font-weight: 800;
}
.contact-stage__copy p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.hero .container-xl,
.page-hero > .container-xl,
.contact-stage .container-xl {
  position: relative;
  z-index: 2;
  min-height: inherit;
}
.hero .container-xl .row {
  min-height: inherit;
  padding-top: calc(var(--header-height) + clamp(5.5rem, 9vh, 8rem));
  padding-bottom: clamp(3.75rem, 7vh, 6rem);
}
.page-hero > .container-xl > .row {
  min-height: inherit;
  padding-top: calc(var(--header-height) + clamp(5rem, 8vh, 7rem));
  padding-bottom: clamp(7rem, 12vh, 9rem);
}
.contact-stage .container-xl .row {
  min-height: inherit;
  align-items: center;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.breadcrumbs [aria-current="page"],
.breadcrumbs .is-current,
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold);
}
.hero .button--gold:hover,
.hero .button--gold:focus-visible,
.page-hero .button--gold:hover,
.page-hero .button--gold:focus-visible,
.contact-stage .button--gold:hover,
.contact-stage .button--gold:focus-visible {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}
.contact-stage__copy {
  margin: 0;
  text-align: left;
}
.contact-stage .button-group {
  justify-content: flex-start;
}
@media (max-width: 48rem) {
  .hero,
  .page-hero {
    min-height: 35rem;
    max-height: 45rem;
  }
  .hero h1,
  .page-hero h1 {
    margin-bottom: 1rem;
    font-size: calc(clamp(2.35rem, 10.25vw, 3.65rem) * var(--heading-scale));
    line-height: 0.98;
  }
  .hero__stars {
    gap: 0.35rem;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
  .scroll-cue {
    right: 0.75rem;
    bottom: 1.25rem;
  }
  .page-hero__breadcrumbs {
    bottom: 0.75rem;
  }
  .contact-stage {
    min-height: 40rem;
  }
  .contact-stage__overlay {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.55));
  }
  .contact-stage h2 {
    margin-bottom: 1.1rem;
    font-size: calc(clamp(2.35rem, 10.5vw, 3.55rem) * var(--heading-scale));
    line-height: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__stars span {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 48rem) {
  .hero .container-xl .row {
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 3.5rem;
  }
  .page-hero > .container-xl > .row {
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 5.25rem;
  }
  .breadcrumbs {
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    padding-top: 0.75rem;
    font-size: 0.64rem;
    line-height: 1.4;
    white-space: normal;
  }
  .hero__lead,
  .page-hero__lead {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero .button-group,
  .contact-stage .button-group {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hero .button,
  .contact-stage .button {
    width: 100%;
  }
  .contact-stage .container-xl .row {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .contact-stage__copy p:not(.eyebrow) {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 36rem) {
  .hero h1,
  .page-hero h1 {
    font-size: calc(clamp(2.15rem, 10vw, 3.2rem) * var(--heading-scale));
  }
}
@keyframes starFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
body.menu-open {
  overflow: hidden;
}
.page-progress {
  position: fixed;
  z-index: 2200;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}
.site-header {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.42) 60%, transparent 100%);
  content: "";
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.site-header::after {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2.75rem);
  bottom: 0;
  left: clamp(1rem, 2.5vw, 2.75rem);
  height: 1px;
  background: rgba(217, 182, 95, 0.7);
  content: "";
  transition: opacity 0.3s ease;
}
.site-header .container-fluid {
  height: 100%;
  position: relative;
  z-index: 1;
  padding-right: clamp(1rem, 2.5vw, 2.75rem);
  padding-left: clamp(1rem, 2.5vw, 2.75rem);
}
.site-header .container-fluid .row {
  height: 100%;
}
.site-header.is-scrolled,
.menu-open .site-header,
[data-theme="dark"] .site-header.is-scrolled,
[data-theme="dark"] .menu-open .site-header {
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(0.55rem);
}
.site-header.is-scrolled::before,
.menu-open .site-header::before {
  opacity: 0;
}
.site-header.is-scrolled::after,
.menu-open .site-header::after {
  opacity: 1;
}
.brand {
  position: relative;
  display: inline-flex;
  width: clamp(6.75rem, 8vw, 8.25rem);
  height: 3.35rem;
  align-items: center;
}
.brand img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.25rem;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}
.brand__dark {
  opacity: 0;
}
.site-header.is-scrolled .brand__light,
.menu-open .brand__light {
  opacity: 1;
}
.site-header.is-scrolled .brand__dark,
.menu-open .brand__dark {
  opacity: 0;
}
[data-theme="dark"] .site-header.is-scrolled .brand__light,
[data-theme="dark"] .menu-open .brand__light {
  opacity: 1;
}
[data-theme="dark"] .site-header.is-scrolled .brand__dark,
[data-theme="dark"] .menu-open .brand__dark {
  opacity: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  position: relative;
  font-size: 1.25rem;
}
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  flex-direction: column;
  gap: 0.24rem;
}
.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .menu-button,
.menu-open .icon-button,
.menu-open .menu-button,
[data-theme="dark"] .site-header.is-scrolled .icon-button,
[data-theme="dark"] .site-header.is-scrolled .menu-button,
[data-theme="dark"] .menu-open .icon-button,
[data-theme="dark"] .menu-open .menu-button {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.icon-button:hover,
.menu-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.icon-button__sun,
[data-theme="dark"] .icon-button__moon {
  display: none;
}
[data-theme="dark"] .icon-button__sun {
  display: block;
}
[data-theme="dark"] .icon-button[data-theme-toggle] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.theme-toggle__check {
  position: absolute;
  top: -.25rem;
  right: -.2rem;
  display: none;
  width: 1.05rem;
  height: 1.05rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}
[data-theme="dark"] .theme-toggle__check {
  display: inline-flex;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-open .menu-button span:nth-of-type(2) {
  transform: translateY(0.3rem) rotate(45deg);
}
.menu-open .menu-button span:nth-of-type(3) {
  opacity: 0;
}
.menu-open .menu-button span:nth-of-type(4) {
  transform: translateY(-.3rem) rotate(-45deg);
}
.menu-overlay {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: flex;
  visibility: hidden;
  overflow-y: auto;
  background: var(--black);
  color: var(--white);
  opacity: 0;
  transform: translateY(-1.5rem);
  transition: opacity 0.35s ease, transform 0.45s var(--ease), visibility 0s linear 0.45s;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 1rem;
}
.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.menu-overlay .container-xl {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  min-height: calc(100svh - var(--header-height) - 1rem);
  align-items: center;
}
.menu-overlay__main {
  width: 100%;
  display: flex;
  min-height: calc(100svh - var(--header-height) - 3rem);
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.menu-overlay__links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}
.menu-overlay__links li {
  margin: 0 0 0.15rem;
}
.menu-overlay .eyebrow--gold {
  color: var(--gold);
}
.menu-overlay__links a {
  display: block;
  width: fit-content;
  color: transparent;
  background-image: linear-gradient(90deg, var(--gold) 0 50%, var(--white) 50% 100%);
  background-position: 100% 50%;
  background-size: 205% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 300;
  letter-spacing: -.055em;
  text-transform: uppercase;
  transition: background-position 0.72s var(--ease);
  line-height: 1.08;
  font-size: clamp(2.2rem, 4.25vw, 4.25rem);
  white-space: normal;
}
.menu-overlay__links a:hover,
.menu-overlay__links a:focus-visible,
.menu-overlay__links a[aria-current="page"] {
  background-position: 0 50%;
}
[data-theme="dark"] .site-header.is-scrolled::before,
[data-theme="dark"] .menu-open .site-header::before {
  opacity: 0;
}
[data-theme="dark"] .site-header.is-scrolled::after,
[data-theme="dark"] .menu-open .site-header::after {
  opacity: 1;
}
[data-theme="dark"] .site-header.is-scrolled .icon-button[data-theme-toggle],
[data-theme="dark"] .menu-open .icon-button[data-theme-toggle] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.header-actions .icon-button:hover,
.header-actions .icon-button:focus-visible,
.header-actions .menu-button:hover,
.header-actions .menu-button:focus-visible,
.header-actions .icon-button[aria-expanded="true"],
.header-actions .menu-button[aria-expanded="true"],
.header-actions .icon-button[aria-pressed="true"],
body.menu-open [data-menu-toggle] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  outline-color: var(--gold);
}
.header-actions .icon-button[aria-expanded="true"]:hover,
.header-actions .icon-button[aria-expanded="true"]:focus-visible,
.header-actions .menu-button[aria-expanded="true"]:hover,
.header-actions .menu-button[aria-expanded="true"]:focus-visible,
.header-actions .icon-button[aria-pressed="true"]:hover,
.header-actions .icon-button[aria-pressed="true"]:focus-visible,
body.menu-open [data-menu-toggle]:hover,
body.menu-open [data-menu-toggle]:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
@media (max-width: 48rem) {
  .site-header .container-fluid {
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-left: max(1rem, env(safe-area-inset-left));
  }
  .site-header::after {
    right: 1rem;
    left: 1rem;
  }
  .brand {
    width: 6.25rem;
    height: 3rem;
  }
  .menu-overlay {
    align-items: stretch;
    padding-top: var(--header-height);
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    background: var(--black);
  }
  .menu-overlay__main {
    min-height: calc(100svh - var(--header-height) - 1rem);
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .menu-overlay .container-xl {
    min-height: calc(100svh - var(--header-height) - 1rem);
  }
  .brand img {
    height: 2.9rem;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .icon-button,
  .menu-button {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 2.7rem;
  }
  .menu-overlay .eyebrow {
    margin-bottom: 1.1rem;
  }
  .menu-overlay__links {
    gap: 0.15rem;
  }
}
.site-footer .eyebrow--gold {
  color: var(--gold);
}
.site-footer {
  position: relative;
  padding-top: 0;
  padding-bottom: 1.5rem;
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
}
.site-footer__accent {
  height: 0.25rem;
  background: var(--gold);
}
.site-footer__cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.site-footer__cta h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: calc(clamp(2rem, 3.15vw, 3.3rem) * var(--heading-scale));
  font-weight: 300;
}
.site-footer__cta h2 strong {
  display: block;
  font-weight: 800;
}
.footer-brand {
  display: block;
  width: 14rem;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  width: 100%;
  height: auto;
}
.site-footer__brand p {
  padding-right: 2rem;
}
.site-footer__block h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: calc(0.72rem * var(--heading-scale));
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer__block ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer__block li {
  margin-bottom: 0.55rem;
}
.site-footer a:hover {
  color: var(--gold);
}
.site-footer__legal {
  padding-top: 1.25rem;
  font-size: 0.75rem;
  border-top: 0;
}
.site-footer .container-xl .row:nth-of-type(2) {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.site-footer__cta .button--gold:hover,
.site-footer__cta .button--gold:focus-visible {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}
.site-footer .container-xl .row:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
@media (max-width: 62rem) {
  .site-footer__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 48rem) {
  .site-footer__brand p {
    padding-right: 0;
  }
  .site-footer__legal {
    text-align: center !important;
    padding-top: 0.75rem;
  }
  .site-footer__legal.text-lg-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }
  .site-footer__legal.text-lg-right span {
    display: none;
  }
  .site-footer__cta {
    display: block;
    padding: 2.5rem 0;
  }
  .site-footer__cta h2 {
    margin-bottom: 1.5rem;
    font-size: calc(clamp(2rem, 8.8vw, 2.85rem) * var(--heading-scale));
  }
  .site-footer__cta .button {
    width: 100%;
  }
  .site-footer .container-xl .row:nth-of-type(2) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.content-section {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--page);
}
#hero,
#contact {
  padding-top: 0;
  padding-bottom: 0;
}
#quality,
#solutions,
#operational-reliability,
#expertise,
#references {
  overflow: hidden;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}
#quality h1,
#quality h2,
#quality h3,
#solutions h1,
#solutions h2,
#solutions h3,
#operational-reliability h1,
#operational-reliability h2,
#operational-reliability h3,
#expertise h1,
#expertise h2,
#expertise h3,
#references h1,
#references h2,
#references h3 {
  color: var(--white);
}
#durability,
#about-vps {
  background: var(--surface);
}
#project-request {
  background: var(--surface);
  border-top: 0;
}
[data-theme="dark"] .content-section,
[data-theme="dark"] #durability,
[data-theme="dark"] #about-vps,
[data-theme="dark"] #project-request {
  background: var(--black);
}
.eyebrow {
  margin-bottom: 1rem;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--gold,
#quality .eyebrow--gold,
#solutions .eyebrow--gold,
#operational-reliability .eyebrow--gold,
#expertise .eyebrow--gold,
#references .eyebrow--gold {
  color: var(--gold);
}
.section-header {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}
.section-header--center {
  text-align: center;
}
.section-header h2 {
  margin-bottom: 1.25rem;
  font-weight: 300;
  font-size: calc(clamp(2.15rem, 4.15vw, 4.65rem) * var(--heading-scale));
}
.section-header h2 strong {
  display: block;
  font-weight: 800;
}
.section-header p:last-child {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}
.section-header--light h2 {
  color: var(--white);
}
.section-header--light p:last-child {
  color: rgba(255, 255, 255, 0.72);
}
.section-action {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.section-action--right {
  justify-content: flex-end;
  margin-top: 0;
}
.lead {
  color: var(--heading);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.48;
}
.editorial-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}
.durability-media {
  margin: 0;
  aspect-ratio: auto;
  background: transparent;
  overflow: hidden;
}
.technology-media {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}
.editorial-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.durability-media img {
  object-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-media img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f4f3f0;
}
[data-theme="dark"] .technology-media,
[data-theme="dark"] .technology-media img {
  background: var(--black);
}
.editorial-copy {
  padding-left: clamp(0rem, 3vw, 3rem);
}
.editorial-copy h2 {
  font-weight: 300;
  font-size: calc(clamp(2.15rem, 4.15vw, 4.65rem) * var(--heading-scale));
}
.editorial-copy h2 strong {
  display: block;
  font-weight: 800;
}
.quality-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(9rem, 22vw, 24rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 0.7;
  text-transform: uppercase;
  pointer-events: none;
}
#about-vps .section-header,
#about-vps .section-action {
  text-align: center;
}
#references-intro {
  background: var(--page);
}
[data-theme="dark"] #references-intro {
  background: var(--black);
}
.technology-showcase {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--surface);
}
.technology-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technology-copy {
  padding-top: 0;
}
#technology-title {
  font-size: calc(clamp(2.2rem, 5vw, 4.95rem) * var(--heading-scale));
  line-height: 1.04;
}
#technology-title strong {
  display: block;
  color: var(--gold);
}
#project-request .section-header {
  margin-bottom: 2rem;
}
@media (max-width: 62rem) {
  .editorial-copy {
    padding-left: 0;
  }
  .section-action--right {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .section-header h2,
  .editorial-copy h2 {
    margin-bottom: 1rem;
    font-size: calc(clamp(2rem, 9vw, 3rem) * var(--heading-scale));
    line-height: 1;
  }
}
@media (max-width: 62rem) {
  .technology-showcase {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 48rem) {
  .content-section {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header p:last-child,
  .editorial-copy p,
  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}
body[data-page="index"] #references {
  overflow: hidden;
  background: var(--page);
  color: var(--text);
}
body[data-page="index"] #references h2,
body[data-page="index"] #references h3 {
  color: var(--heading);
}
body[data-page="index"] #references .container-xl {
  padding-right: clamp(1rem, 3vw, 3.5rem);
  padding-left: clamp(1rem, 3vw, 3.5rem);
}
body[data-page="index"] #references .reference-card__content h3 {
  color: var(--white);
}
body[data-page="index"] #references .card-slider__label {
  color: var(--heading);
}
body[data-page="index"] #references .card-slider__status {
  color: var(--muted);
}
[data-theme="dark"] body[data-page="index"] #references,
[data-theme="dark"] body[data-page="index"] #references .feature-card {
  background: var(--black);
}
body[data-page="index"] #references .container-fluid {
  padding-right: clamp(1rem, 2.25vw, 2.75rem);
  padding-left: clamp(1rem, 2.25vw, 2.75rem);
}
body[data-page="index"] #solutions .solution-preview-card,
body[data-page="index"] #solutions .solution-preview-card .text-link {
  text-align: left;
}
body[data-page="index"] #solutions .solution-preview-card .icon-box {
  text-align: left;
  display: inline-flex;
  width: auto;
  height: auto;
  justify-content: flex-start;
  padding: 0;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: 0;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 1.8rem;
}
body[data-page="index"] #about-vps {
  background: var(--white);
}
body[data-page="index"] #about-vps .feature-card {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-color: var(--border-light);
}
[data-theme="dark"] body[data-page="index"] #about-vps,
[data-theme="dark"] body[data-page="index"] #about-vps .feature-card {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.15);
}
body[data-page="referenzen"] #references {
  overflow: visible;
  background: var(--page);
  color: var(--text);
}
body[data-page="referenzen"] #references h2,
body[data-page="referenzen"] #references h3 {
  color: var(--heading);
}
[data-theme="dark"] body[data-page="referenzen"] #references {
  background: var(--black);
  color: var(--text);
}
[data-theme="dark"] body[data-page="referenzen"] #references h2,
[data-theme="dark"] body[data-page="referenzen"] #references h3 {
  color: var(--white);
}
body[data-page="referenzen-karte"],
body[data-page="referenzen-karte"] main,
body[data-page="referenzen-karte"] .content-section {
  background: var(--white);
  color: var(--text);
}
body[data-page="referenzen"] .reference-projects__navigation {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "header controls" "tabs tabs";
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}
body[data-page="referenzen"] .reference-projects__header {
  grid-area: header;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  display: none;
}
body[data-page="referenzen"] .reference-projects__controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0;
}
body[data-page="referenzen"] .reference-projects__controls span,
body[data-page="referenzen"] .reference-projects__controls b,
body[data-page="referenzen"] .reference-projects__controls--legacy {
  display: none !important;
}
body[data-page="referenzen"] .reference-projects__tabs {
  grid-area: tabs;
  scrollbar-color: #8f8b84 transparent;
  flex-wrap: nowrap;
  border-bottom: 0;
  overscroll-behavior-inline: contain;
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  white-space: nowrap;
  scrollbar-width: none;
}
body[data-page="referenzen"] .reference-projects__tabs::-webkit-scrollbar {
  height: 0.35rem;
  display: none;
}
body[data-page="referenzen"] .reference-projects__tabs::-webkit-scrollbar-track {
  background: transparent;
}
body[data-page="referenzen"] .reference-projects__tabs::-webkit-scrollbar-thumb {
  background: #8f8b84;
}
body[data-page="referenzen"] .reference-project-tab {
  border-style: solid;
  border-color: var(--line);
  flex: 0 0 auto;
  word-break: keep-all;
  overflow-wrap: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: var(--reference-navigation-height);
  height: var(--reference-navigation-height);
  padding: 0.4rem 0.75rem;
  font-size: 0.68rem;
}
body[data-page="referenzen"] .reference-project-tab::after {
  display: none;
}
body[data-page="referenzen"] .reference-project-tab:hover,
body[data-page="referenzen"] .reference-project-tab:focus-visible {
  border-color: var(--line);
  background: var(--white);
  color: #7f7a71;
}
body[data-page="referenzen"] .reference-project-tab[aria-selected="true"] {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab {
  border-color: var(--line);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab:hover,
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab:focus-visible {
  border-color: var(--line);
  background: var(--black);
  color: var(--white);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"] {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
body[data-page="referenzen"] .reference-projects__title {
  margin-bottom: 0;
  text-align: center;
}
body[data-page="referenzen"] .reference-projects__title strong {
  display: inline;
}
body[data-page="referenzen"] .reference-projects__controls .project-button {
  border-color: var(--gold);
  padding: 0;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  width: var(--reference-navigation-height);
  min-width: var(--reference-navigation-height);
  height: var(--reference-navigation-height);
  min-height: var(--reference-navigation-height);
}
body[data-page="referenzen"] .reference-projects__controls .project-button:hover,
body[data-page="referenzen"] .reference-projects__controls .project-button:focus-visible {
  border-color: var(--black);
  background: #1c1c1c;
  color: var(--white);
  outline-color: var(--gold);
}
body[data-page="referenzen"] .reference-projects__selector {
  width: 100%;
}
body[data-page="referenzen"] .reference-projects__scrollbar {
  position: relative;
  width: 100%;
  height: 0.25rem;
  overflow: hidden;
  background: #d8d5cd;
}
body[data-page="referenzen"] .reference-projects__scrollbar span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 2rem;
  background: var(--gold);
  transform: translateX(0);
  transition: width 0.28s var(--ease), transform 0.28s var(--ease);
  will-change: width, transform;
}
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__scrollbar {
  background: #353535;
}
body[data-page="referenzen"] .project-button__glyph {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-.05rem);
}
body[data-page="referenzen"] .reference-projects__tabbar {
  display: grid;
  align-items: stretch;
  width: 100%;
  --reference-navigation-height: 2.75rem;
  grid-template-columns: var(--reference-navigation-height) minmax(0, 1fr) var(--reference-navigation-height);
  gap: 0.6rem;
}
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab {
  border-color: var(--line);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab:hover,
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab:focus-visible {
  border-color: var(--line);
  background: var(--black);
  color: var(--white);
}
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"] {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
body[data-page="referenzen"] .reference-projects__tab-arrow {
  padding: 0;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  width: var(--reference-navigation-height);
  min-width: var(--reference-navigation-height);
  height: var(--reference-navigation-height);
  min-height: var(--reference-navigation-height);
}
body[data-page="referenzen"] .reference-projects__tab-arrow:hover,
body[data-page="referenzen"] .reference-projects__tab-arrow:focus-visible {
  border-color: var(--black);
  background: #1c1c1c;
  color: var(--white);
  outline-color: var(--gold);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button,
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button:hover,
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button:focus-visible,
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow:hover,
[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow:focus-visible,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button:hover,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__controls .project-button:focus-visible,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow:hover,
html[data-theme="dark"] body[data-page="referenzen"] .reference-projects__tab-arrow:focus-visible {
  border-color: var(--white);
  background: var(--border-light);
  color: var(--black);
}
body[data-page="referenzen"] .reference-gallery__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin: 1rem 0 1.35rem;
}
body[data-page="referenzen"] .reference-gallery__meta-item,
body[data-page="referenzen"] .reference-gallery__meta-link,
body[data-page="referenzen"] .reference-gallery__location,
body[data-page="referenzen"] .reference-gallery__visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
body[data-page="referenzen"] .reference-gallery__location i,
body[data-page="referenzen"] .reference-gallery__visit i {
  color: var(--gold);
  font-size: 1.05rem;
}
body[data-page="referenzen"] .reference-gallery__location span,
body[data-page="referenzen"] .reference-gallery__visit span,
body[data-page="referenzen"] .reference-gallery__meta-item span,
body[data-page="referenzen"] .reference-gallery__meta-link span {
  color: var(--heading);
  font-weight: 600;
}
body[data-page="referenzen"] .reference-gallery__meta-item small,
body[data-page="referenzen"] .reference-gallery__meta-link small {
  display: none;
}
body[data-page="referenzen"] .reference-gallery__meta-link:hover,
body[data-page="referenzen"] .reference-gallery__meta-link:focus-visible,
body[data-page="referenzen"] .reference-gallery__visit:hover,
body[data-page="referenzen"] .reference-gallery__visit:focus-visible {
  background: transparent;
  color: var(--heading);
  transform: none;
}
body[data-page="referenzen"] .reference-gallery__visit:hover span,
body[data-page="referenzen"] .reference-gallery__visit:focus-visible span,
body[data-page="referenzen"] .reference-gallery__meta-link:hover span,
body[data-page="referenzen"] .reference-gallery__meta-link:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
[data-theme="dark"] body[data-page="referenzen"] .reference-gallery__location span,
[data-theme="dark"] body[data-page="referenzen"] .reference-gallery__visit span,
html[data-theme="dark"] body[data-page="referenzen"] .reference-gallery__location span,
html[data-theme="dark"] body[data-page="referenzen"] .reference-gallery__visit span {
  color: var(--white);
}
body[data-page="referenzen"] .reference-projects__tabbar > * {
  grid-area: auto;
}
body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:hover,
body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:hover,
[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:focus-visible,
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:hover,
html[data-theme="dark"] body[data-page="referenzen"] .reference-project-tab[aria-selected="true"]:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
@media (max-width: 62rem) {
  body[data-page="referenzen"] .reference-projects__navigation {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "controls" "tabs";
  }
}
@media (max-width: 48rem) {
  body[data-page="referenzen"] .reference-projects__controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  body[data-page="referenzen"] .reference-projects__navigation {
    margin-bottom: 0.85rem;
  }
  body[data-page="referenzen"] .reference-gallery__meta {
    align-items: center;
    gap: 0.65rem 1rem;
    margin: 0.85rem 0 1.2rem;
  }
  body[data-page="referenzen"] .reference-projects__tabs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }
  body[data-page="referenzen"] .reference-projects__title {
    font-size: calc(clamp(2.3rem, 9.5vw, 3rem) * var(--heading-scale));
    line-height: 1;
  }
  body[data-page="referenzen"] .reference-projects__scrollbar {
    height: 0.2rem;
    margin-top: 0.4rem;
  }
}
@media (max-width: 36rem) {
  body[data-page="referenzen"] .reference-project-tab {
    letter-spacing: 0.04em;
  }
}
body[data-page="ueber-vps"] #brand {
  background: var(--white);
  padding-top: calc(var(--section-space) * 0.82);
  padding-bottom: calc(var(--section-space) * 0.82);
}
body[data-page="ueber-vps"] #brand .feature-card {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-color: var(--border-light);
}
[data-theme="dark"] body[data-page="ueber-vps"] #brand,
[data-theme="dark"] body[data-page="ueber-vps"] #brand .feature-card {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.15);
}
body[data-page="ueber-vps"] #technology {
  padding-top: calc(var(--section-space) * 0.82);
  padding-bottom: calc(var(--section-space) * 0.68);
}
body[data-page="ueber-vps"] #expertise {
  padding-top: calc(var(--section-space) * 0.82);
  padding-bottom: calc(var(--section-space) + 1.5rem);
}
body[data-page="ueber-vps"] #contact {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
body[data-page="ueber-vps"] #technology-media {
  margin-top: 0;
  padding-top: 1rem;
}
body[data-page="ueber-vps"] #technology-media .technology-showcase img {
  object-position: center 58%;
}
body[data-page="ueber-vps"] #contact + .site-footer,
body[data-page="ueber-vps"] .site-footer {
  margin-top: 0;
}
@media (max-width: 48rem) {
  body[data-page="ueber-vps"] #brand {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body[data-page="ueber-vps"] #technology {
    padding-top: 3rem;
    padding-bottom: 2.25rem;
  }
  body[data-page="ueber-vps"] #expertise {
    padding-top: 3rem;
  }
  body[data-page="ueber-vps"] #technology-media {
    padding-top: 0.75rem;
  }
}
body[data-page="kontakt"],
body[data-page="kontakt"] main,
body[data-page="kontakt"] .content-section,
body[data-page="kontakt"] #project-request {
  background: var(--white);
}
body[data-page="kontakt"] #project-request .section-header h2 {
  font-size: calc(clamp(2rem, 3.2vw, 3.35rem) * var(--heading-scale));
}
[data-theme="dark"] body[data-page="kontakt"],
[data-theme="dark"] body[data-page="kontakt"] main,
[data-theme="dark"] body[data-page="kontakt"] .content-section,
[data-theme="dark"] body[data-page="kontakt"] #project-request {
  background: var(--black);
  color: var(--text);
}
[data-theme="dark"] body[data-page="kontakt"] .contact-channel,
[data-theme="dark"] body[data-page="kontakt"] .project-form {
  border-color: var(--line);
  background: var(--black);
}
[data-theme="dark"] body[data-page="kontakt"] .form-field input,
[data-theme="dark"] body[data-page="kontakt"] .form-field textarea,
[data-theme="dark"] body[data-page="kontakt"] .form-field select {
  border-color: var(--line);
  background: var(--black);
  color: var(--text);
}
[data-theme="dark"] body[data-page="kontakt"] .form-field input::placeholder,
[data-theme="dark"] body[data-page="kontakt"] .form-field textarea::placeholder {
  color: var(--muted);
}
body[data-page="kontakt"] .contact-options {
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
body[data-page="kontakt"] .contact-channel {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
body[data-page="kontakt"] .contact-channel:hover,
body[data-page="kontakt"] .contact-channel:focus-within {
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}
body[data-page="kontakt"] .contact-channel__icon {
  display: none;
}
body[data-page="kontakt"] .contact-channel h3 {
  margin-bottom: 0.2rem;
  font-size: calc(1.15rem * var(--heading-scale));
}
body[data-page="kontakt"] .contact-channel .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0;
  color: var(--heading);
  font-weight: 700;
}
body[data-page="kontakt"] .contact-channel .text-link i {
  display: none;
}
body[data-page="kontakt"] .contact-channel .text-link:hover,
body[data-page="kontakt"] .contact-channel .text-link:focus-visible {
  background: transparent;
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
@media (max-width: 48rem) {
  body[data-page="kontakt"] #project-request .section-header {
    margin-bottom: 1.5rem;
  }
  body[data-page="kontakt"] .contact-options {
    margin-bottom: 1.25rem;
  }
  body[data-page="kontakt"] .contact-channel + .contact-channel {
    margin-top: 0.75rem;
  }
  body[data-page="kontakt"] .contact-address {
    padding-top: 1.5rem;
  }
}
body[data-page="loesungen"] #planning .feature-card .icon-box {
  display: inline-flex;
  width: auto;
  height: auto;
  justify-content: flex-start;
  padding: 0;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: 0;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 1.8rem;
}
body[data-page="loesungen"] #contact .contact-stage__copy {
  margin: 0;
  text-align: left;
}
body[data-page="loesungen"] #contact .button-group {
  justify-content: flex-start;
}
[data-theme="dark"] .feature-card,
[data-theme="dark"] .process-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .reference-intro-card {
  background: var(--black);
}
.feature-card {
  position: relative;
  height: 100%;
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  background: var(--page);
  border: var(--border-width) solid var(--line);
}
.solution-preview-card {
  position: relative;
  height: 100%;
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  border: var(--border-width) solid rgba(255, 255, 255, 0.15);
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
  border-radius: 0;
  display: flex;
  width: 100%;
  min-height: 24rem;
  flex-direction: column;
}
.process-card {
  position: relative;
  height: 100%;
  background: var(--page);
  border: var(--border-width) solid var(--line);
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 1.75rem 1.75rem 1.75rem 5.4rem;
  min-height: 100%;
}
.contact-card {
  position: relative;
  height: 100%;
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  background: var(--page);
  border: var(--border-width) solid var(--line);
  width: 100%;
  text-align: center;
}
.feature-card--dark {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
}
.feature-card h3 {
  font-size: calc(clamp(1.15rem, 1.35vw, 1.35rem) * var(--heading-scale));
  line-height: 1.16;
}
.solution-preview-card h3 {
  font-size: calc(clamp(1.15rem, 1.35vw, 1.35rem) * var(--heading-scale));
  line-height: 1.16;
  color: var(--white);
}
.process-card h3 {
  font-size: calc(clamp(1.15rem, 1.35vw, 1.35rem) * var(--heading-scale));
  line-height: 1.16;
  margin-bottom: 0.75rem;
}
.contact-card h3 {
  font-size: calc(clamp(1.15rem, 1.35vw, 1.35rem) * var(--heading-scale));
  line-height: 1.16;
}
.feature-card--dark h3 {
  color: var(--white);
}
.icon-box {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 1.4rem;
  border-width: var(--border-width);
}
.solution-preview-card:hover {
  border-color: var(--gold);
  transform: none;
}
.solution-preview-card__number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(3.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
}
.solution-preview-card .text-link {
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: var(--white);
  position: static;
  margin-top: auto;
}
.process-card__number {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 300;
}
.process-card .icon-box {
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.15rem;
}
.process-card p {
  margin-bottom: 0;
}
.reference-intro-card {
  height: 100%;
  padding: clamp(1.75rem, 2.7vw, 2.6rem);
  border: 1px solid var(--line);
  background: var(--page);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}
.reference-intro-card:hover {
  border-color: var(--gold);
  transform: translateY(-.2rem);
}
.reference-intro-card .icon-box {
  margin-right: auto;
  margin-left: auto;
}
.reference-intro-card h3 {
  font-size: calc(clamp(1.25rem, 1.6vw, 1.55rem) * var(--heading-scale));
}
.contact-card .icon-box {
  margin-right: auto;
  margin-left: auto;
}
.contact-card .text-link {
  justify-content: center;
}
#about-vps .feature-card {
  text-align: center;
}
#about-vps .feature-card .icon-box {
  margin-right: auto;
  margin-left: auto;
}
.solution-preview-card:focus-visible {
  border-color: var(--gold);
  transform: none;
}
.solution-preview-card .text-link i {
  transition: transform 0.3s var(--ease);
}
.solution-preview-card:hover .text-link i,
.solution-preview-card:focus-visible .text-link i {
  transform: translateX(0.35rem);
}
.logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: var(--white);
  border: var(--border-width) solid var(--border-light);
  min-height: 9rem;
  aspect-ratio: auto;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border-color: var(--border-light) !important;
}
.logo-wall__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.25s ease;
  filter: grayscale(1) brightness(0.68);
}
.logo-wall__item:hover img {
  opacity: 1;
}
[data-theme="dark"] .logo-wall__item {
  background: var(--white);
  border-color: var(--border-light);
}
.logo-wall__link {
  display: block;
  height: 100%;
}
.logo-wall__link:hover .logo-wall__item,
.logo-wall__link:focus-visible .logo-wall__item {
  border-color: var(--border-light) !important;
  transform: none;
  box-shadow: none;
}
.logo-wall__link:hover .logo-wall__item img,
.logo-wall__link:focus-visible .logo-wall__item img {
  filter: grayscale(1) brightness(0.5);
  opacity: 0.9;
}
.logo-wall__item--text {
  text-align: center;
}
.logo-wall__name {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 48rem) {
  .solution-preview-card {
    min-height: 21.5rem;
    padding: 1.5rem;
  }
  .process-card {
    padding: 1.5rem;
    min-height: 0;
    padding-top: 4.25rem;
  }
  .process-card__number {
    top: 1.35rem;
    left: 1.5rem;
  }
  .logo-wall__item {
    min-height: 8.25rem;
    padding: 1rem 0.75rem;
  }
  .solution-preview-card .text-link {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .feature-card,
  .contact-card {
    padding: 1.5rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .solution-preview-card:hover,
  .solution-preview-card:focus-visible,
  .feature-card:hover,
  .reference-intro-card:hover,
  .logo-wall__link:hover .logo-wall__item {
    transform: none;
  }
}
.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--heading);
  font-size: 1.25rem;
}
.project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  min-height: 2.75rem;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  position: fixed;
  z-index: 1300;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: var(--border-width) solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.button i {
  transition: transform 0.3s var(--ease);
}
.button:hover i,
.button:focus-visible i {
  transform: translateX(0.2rem);
}
.button--gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.button--gold:hover,
.button--gold:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.button--dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.button--outline-dark {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}
.button--outline-dark:hover,
.button--outline-dark:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
[data-theme="dark"] .button--outline-dark {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
[data-theme="dark"] .button--outline-dark:hover,
[data-theme="dark"] .button--outline-dark:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.button--white {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.button--white:hover,
.button--white:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.button--light-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}
.button--light-outline:hover,
.button--light-outline:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.button--wide {
  width: 100%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link i {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--gold);
}
.text-link:hover i {
  transform: translateX(0.25rem);
}
.slider-button:hover {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}
.slider-button:disabled {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
}
.slider-button--dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.project-button:hover {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover {
  background: var(--gold);
}
.slider-button i,
.project-button i {
  color: var(--gold);
}
.slider-button:focus-visible,
.project-button:focus-visible {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}
.slider-button:hover i,
.slider-button:focus-visible i,
.project-button:hover i,
.project-button:focus-visible i {
  color: var(--gold);
}
@media (max-width: 48rem) {
  .button-group {
    align-items: stretch;
    flex-direction: column;
  }
  .button-group .button {
    width: 100%;
  }
  .project-button {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
@media (max-width: 36rem) {
  .project-button span {
    display: none;
  }
  .project-button {
    flex: 0 0 2.75rem;
    padding: 0;
  }
}
@media (max-width: 48rem) {
  .slider-button {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
  }
  .back-to-top {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.2rem;
  }
}
.card-slider__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  min-height: 2.75rem;
}
.card-slider__label {
  margin-right: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-slider__status {
  min-width: 4.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
  display: none;
}
#solutions .card-slider__label,
#solutions .card-slider__status {
  color: rgba(255, 255, 255, 0.68);
}
.card-slider__viewport {
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--gold) var(--line);
  border-radius: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-top: var(--border-width);
}
.card-slider__viewport:focus-visible {
  outline-color: var(--gold);
}
.card-slider__track {
  border-radius: 0;
  min-width: 100%;
}
.card-slider__track .row {
  flex-wrap: nowrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}
.card-slider__track .row [class*="col-"] {
  display: flex;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.reference-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  min-height: 29rem;
}
.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.reference-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 8, 8, 0.88) 100%);
}
.reference-card__content {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}
.reference-card__content span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.reference-card__content h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: calc(clamp(1.45rem, 1.8vw, 2rem) * var(--heading-scale));
  font-weight: 400;
}
.reference-card:hover img {
  transform: scale(1.04);
}
.card-slider {
  border-radius: 0;
  width: 100%;
}
.card-slider__viewport::-webkit-scrollbar {
  display: none;
}
.card-slider__scrollbar {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  cursor: pointer;
  height: 0.25rem;
  background: #d9d5cc;
}
.card-slider__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: width 0.25s ease, transform 0.18s linear;
  background: var(--gold);
}
.card-slider__scrollbar[hidden] {
  display: none;
}
[data-theme="dark"] .card-slider__scrollbar {
  background: #2b2b2b;
}
@media (max-width: 48rem) {
  .reference-card {
    min-height: 25rem;
  }
  .card-slider__status {
    min-width: 4.5rem;
    align-items: center;
    justify-content: center;
    display: none !important;
  }
  .card-slider__controls {
    min-height: 2.75rem;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .card-slider__viewport {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }
  .card-slider__track .row [class*="col-"] {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }
  .reference-card__content {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
.solution-switcher__top {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.solution-switcher__tabs {
  display: flex;
  width: 100%;
  overflow-x: auto;
  border: var(--border-width) solid rgba(255, 255, 255, 0.15);
  flex: 1 1 auto;
  scrollbar-color: #8f8b84 transparent;
  scrollbar-width: thin;
}
.solution-tab {
  position: relative;
  display: inline-flex;
  flex: 1 0 11rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 4.5rem;
  padding: 0.95rem 1rem;
}
.solution-tab i {
  font-size: 1.15rem;
}
.solution-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.solution-tab:hover,
.solution-tab[aria-selected="true"] {
  color: var(--white);
}
.solution-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}
.solution-switcher__controls {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: flex-end;
  border-width: var(--border-width);
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: auto auto 2.85rem 2.85rem;
  align-items: center;
  gap: 0.55rem;
  min-height: 4.5rem;
  padding: 0 1rem;
  margin-top: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.15);
}
.solution-panel[hidden] {
  display: none;
}
.solution-panel {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
}
.solution-panel .row {
  align-items: stretch;
  margin-right: 0;
  margin-left: 0;
}
.solution-panel .row [class*="col-"] {
  display: flex;
  padding-right: 0;
  padding-left: 0;
}
.solution-panel__media {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 39rem;
}
.solution-panel__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.1rem, 3.75vw, 3.75rem);
  min-height: 39rem;
}
.solution-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-panel__media span {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
}
.solution-panel__content h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: calc(clamp(2.15rem, 3vw, 3.3rem) * var(--heading-scale));
  font-weight: 300;
}
.solution-switcher__controls > span {
  margin-right: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solution-switcher__tabs::-webkit-scrollbar {
  height: 0.35rem;
}
.solution-switcher__tabs::-webkit-scrollbar-track {
  background: transparent;
}
.solution-switcher__tabs::-webkit-scrollbar-thumb {
  background: #8f8b84;
}
.solution-switcher__panels {
  width: 100%;
}
.solution-switcher__controls i {
  color: var(--gold);
}
@media (max-width: 75rem) {
  .solution-switcher__top {
    flex-direction: column;
  }
}
@media (max-width: 62rem) {
  .solution-panel .row [class*="col-"] {
    display: block;
  }
  .solution-panel__media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
  .solution-panel__content {
    min-height: auto;
  }
}
@media (max-width: 48rem) {
  .solution-switcher__controls {
    min-height: 3.5rem;
    grid-template-columns: 1fr 2.75rem 2.75rem;
    padding: 0 0.75rem;
  }
  .solution-switcher__controls > span {
    text-align: left;
  }
  .solution-panel__media {
    aspect-ratio: 4 / 3;
  }
  .solution-panel__content {
    padding: 1.75rem 1.25rem;
  }
  .solution-panel__content h3 {
    margin-bottom: 1rem;
    font-size: calc(clamp(2rem, 9vw, 2.85rem) * var(--heading-scale));
    line-height: 1;
  }
}
@media (max-width: 62rem) {
  .solution-switcher__top {
    flex-direction: column;
  }
  .solution-switcher__controls {
    width: 100%;
    justify-content: end;
  }
}
@media (max-width: 48rem) {
  .solution-switcher__tabs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    min-height: 3.75rem;
  }
  .solution-switcher__top {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .solution-tab {
    flex-basis: 10.5rem;
    min-height: 3.75rem;
    padding: 0.8rem 0.75rem;
  }
  .solution-switcher__controls > span:first-child {
    display: none;
  }
}
[data-theme="dark"] .project-form,
[data-theme="dark"] .contact-channel {
  background: var(--black);
}
.project-brief .eyebrow--gold {
  color: var(--gold);
}
.contact-channel {
  flex-direction: column;
  border: var(--border-width) solid var(--line);
  background: var(--page);
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
  display: grid;
  height: auto;
  align-items: start;
  padding: 1.25rem 1.4rem;
  text-align: left;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.15rem;
}
.contact-channel:hover {
  border-color: var(--gold);
  transform: translateY(-.2rem);
}
.contact-channel h3 {
  font-size: calc(1.25rem * var(--heading-scale));
  margin-bottom: 0.35rem;
}
.contact-channel .text-link {
  margin-top: 0;
}
.contact-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.contact-process article {
  position: relative;
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-process article span {
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  color: rgba(167, 125, 38, 0.28);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.contact-process article i {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.75rem;
}
.contact-process article h3 {
  font-size: calc(clamp(1.15rem, 1.5vw, 1.4rem) * var(--heading-scale));
}
.contact-process article p {
  margin-bottom: 0;
}
.project-brief {
  height: 100%;
  padding: clamp(2rem, 3vw, 3rem);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}
.project-brief h3 {
  color: var(--white);
  font-size: calc(clamp(1.55rem, 2vw, 2rem) * var(--heading-scale));
}
.project-brief ul {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}
.project-brief li {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.project-brief li i {
  color: var(--gold);
  font-size: 1.15rem;
}
.project-brief a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.65rem;
  color: var(--white);
  font-weight: 700;
}
.project-brief a i {
  color: var(--gold);
  font-size: 1.1rem;
}
.project-form {
  background: var(--page);
  border: var(--border-width) solid var(--line);
  padding: clamp(1.6rem, 2.6vw, 2.65rem);
}
.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--page);
  color: var(--text);
  height: 3.2rem;
  padding: 0 0.9rem;
}
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--page);
  color: var(--text);
  min-height: 10rem;
  padding: 0.9rem;
  resize: vertical;
}
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--page);
  color: var(--text);
  height: 3.2rem;
  padding: 0 0.9rem;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  outline: 0.15rem solid rgba(217, 182, 95, 0.2);
}
.form-check {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.form-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  accent-color: var(--gold);
}
.form-check label {
  font-size: 0.82rem;
}
.form-status {
  margin-bottom: 1rem;
}
.form-status.is-success {
  padding: 0.8rem 1rem;
  border-left: 0.25rem solid var(--gold);
  background: var(--surface);
  color: var(--heading);
}
.contact-address {
  padding: 2rem 0 0;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  align-items: flex-start;
  display: block;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}
.contact-address i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.8rem;
}
.contact-address strong {
  color: var(--heading);
}
.contact-address .text-link {
  margin-top: 0;
  margin-left: auto;
}
.contact-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  font-size: 1.6rem;
}
.contact-channel .eyebrow {
  margin-bottom: 0.35rem;
}
.project-form__header {
  margin-bottom: 2rem;
}
.project-form__header h3 {
  margin-bottom: 0.85rem;
  font-size: calc(clamp(1.9rem, 3vw, 2.75rem) * var(--heading-scale));
}
.contact-address__content {
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
}
@media (max-width: 48rem) {
  .project-form {
    padding: 1.35rem;
  }
  .contact-process {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 62rem) {
  .contact-address {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .contact-address .text-link {
    width: 100%;
    margin-left: 3rem;
  }
}
@media (max-width: 48rem) {
  .contact-address .text-link {
    margin-left: 0;
  }
  .project-form__header h3 {
    font-size: calc(clamp(1.8rem, 8vw, 2.35rem) * var(--heading-scale));
  }
  .form-field input,
  .form-field select {
    min-height: 3.15rem;
    font-size: 1rem;
  }
  .form-field textarea {
    font-size: 1rem;
    min-height: 9rem;
  }
}
.wave-content-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(3.5rem, 6vw, 6rem);
  color: var(--gold);
}
.wave-content-divider .line-left,
.wave-content-divider .line-right {
  height: 1px;
  flex: 1 1 auto;
  background: var(--line);
}
.wave-content-divider .wave {
  flex: 0 0 auto;
}
.wave-content-divider svg {
  width: clamp(5.5rem, 9vw, 8.25rem);
  height: auto;
}
.wave-content-divider .f {
  fill: currentColor;
}
.wave-content-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.wave-content-mark svg {
  display: block;
  width: clamp(5.5rem, 9vw, 8.25rem);
  height: auto;
  fill: currentColor;
}
#vps-text {
  padding: 0;
  background: var(--page);
}
.animated-text {
  --animated-type-size: clamp(2.1rem, 4.4vw, 5rem);
  --animated-under-size: clamp(2.65rem, 6vw, 6.8rem);
  position: relative;
  display: grid;
  align-items: center;
  padding-block: clamp(3rem, 5vw, 5rem);
  isolation: isolate;
  text-align: center;
}
.animated-text > .container-xl {
  grid-area: 1 / 1;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.animated-text__under {
  grid-area: 1 / 1;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
#animated-text .uppercase {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  word-spacing: normal;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  font-size: calc(var(--animated-type-size) * var(--heading-scale));
  color: #a69c8a;
}
#animated-text .text-under {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  word-spacing: normal;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  font-size: calc(var(--animated-under-size) * var(--heading-scale));
  color: var(--gold);
}
#animated-text .text-left,
#animated-text .text-right,
#animated-text .text-highlight {
  padding-right: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
#animated-text h2.text-under span {
  opacity: 0.1;
}
#animated-text .uppercase .text-left,
#animated-text .uppercase .text-right,
#animated-text .uppercase .text-highlight {
  display: inline-block;
  color: var(--gold);
}
#animated-text .uppercase .text-flow-letter {
  display: inline;
  padding: 0;
  color: var(--gold);
  -webkit-text-fill-color: currentColor;
  animation-name: anim-text-flow-keys;
  animation-duration: 20s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-delay: var(--text-flow-delay, 0s);
}
[data-theme="dark"] #animated-text .uppercase {
  color: #d0c8b9;
}
@media (prefers-reduced-motion: reduce) {
  *:not(#animated-text .text-flow-letter) {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes anim-text-flow-keys {
  0% {
    color: var(--gold);
  }
  5% {
    color: var(--text-flow-bronze);
  }
  10% {
    color: var(--text-flow-brown);
  }
  15% {
    color: var(--text-flow-bronze);
  }
  20% {
    color: var(--gold);
  }
  25% {
    color: var(--text-flow-bronze);
  }
  30% {
    color: var(--text-flow-brown-deep);
  }
  35% {
    color: var(--text-flow-brown);
  }
  40% {
    color: var(--text-flow-bronze);
  }
  45% {
    color: var(--gold);
  }
  50% {
    color: var(--text-flow-bronze);
  }
  55% {
    color: var(--text-flow-brown);
  }
  60% {
    color: var(--text-flow-brown-deep);
  }
  65% {
    color: var(--text-flow-brown);
  }
  70% {
    color: var(--gold);
  }
  75% {
    color: var(--text-flow-bronze);
  }
  80% {
    color: var(--text-flow-brown);
  }
  85% {
    color: var(--text-flow-brown-deep);
  }
  90% {
    color: var(--text-flow-bronze);
  }
  95% {
    color: var(--text-flow-brown);
  }
  100% {
    color: var(--gold);
  }
}
body.contact-modal-open {
  overflow: hidden;
}
.contact-modal {
  position: fixed;
  z-index: 2600;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(0.45rem);
}
.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1rem), 38rem);
  padding: clamp(2rem, 5vw, 3.25rem);
  border: var(--border-width) solid var(--border-light);
  box-shadow: var(--shadow);
  transform: translateY(1rem);
  transition: transform 0.35s var(--ease);
  background: var(--white);
  color: var(--text);
}
.contact-modal.is-open .contact-modal__dialog {
  transform: none;
}
.contact-modal__dialog h2 {
  margin-bottom: 1.1rem;
  color: var(--black);
  font-size: calc(clamp(2rem, 4vw, 3.4rem) * var(--heading-scale));
  font-weight: 300;
}
.contact-modal__dialog h2 strong {
  display: block;
  font-weight: 800;
}
.contact-modal__dialog p:not(.eyebrow) {
  color: #5b5750;
}
.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(17, 17, 17, 0.25);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 1.4rem;
}
.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.contact-modal__links {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.contact-modal__links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: var(--border-width) solid var(--border-light);
  color: var(--black);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.contact-modal__links a:hover,
.contact-modal__links a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-modal__links i {
  color: var(--gold);
  font-size: 1.35rem;
}
.contact-modal__links small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-modal-open [data-contact-modal-open] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.reference-map-modal {
  position: fixed;
  z-index: 2700;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.reference-map-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.reference-map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(0.45rem);
}
.reference-map-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(70rem, calc(100% - 1rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transform: translateY(1rem);
  transition: transform 0.35s var(--ease);
}
.reference-map-modal.is-open .reference-map-modal__dialog {
  transform: none;
}
.reference-map-modal__close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.35);
  background: rgba(17, 17, 17, 0.65);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
}
.reference-map-modal__media {
  height: 100%;
  min-height: 34rem;
}
.reference-map-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reference-map-modal__content {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}
.reference-map-modal__content h2 {
  color: var(--white);
  font-size: calc(clamp(2rem, 3.5vw, 3.65rem) * var(--heading-scale));
  font-weight: 300;
}
.reference-map-modal__location {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
}
.reference-map-modal__content .button {
  align-self: flex-start;
  margin-top: 1rem;
}
body.reference-map-modal-open {
  overflow: hidden;
}
.contact-modal__dialog .button--gold {
  border-color: var(--black);
  background: var(--white);
  color: var(--black);
}
.contact-modal__dialog .button--gold:hover,
.contact-modal__dialog .button--gold:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
body.contact-modal-open [data-contact-modal-open] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  outline-color: var(--gold);
}
body.contact-modal-open [data-contact-modal-open]:hover,
body.contact-modal-open [data-contact-modal-open]:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
@media (max-width: 48rem) {
  .contact-modal {
    align-items: flex-end;
    padding: 0.5rem;
  }
  .contact-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 1rem);
    overflow-y: auto;
    padding: 4.75rem 1.25rem 1.5rem;
  }
  .reference-map-modal {
    padding: 0.5rem;
  }
  .reference-map-modal__dialog {
    max-height: calc(100vh - 1rem);
  }
  .reference-map-modal__media {
    min-height: 18rem;
  }
  .reference-map-modal__content {
    min-height: 0;
    padding: 2rem 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal__dialog,
  .reference-map-modal__dialog {
    transition: none;
  }
}
@media (max-width: 48rem) {
  .contact-modal__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.reference-gallery__image-controls button {
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  width: auto;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0;
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  pointer-events: auto;
}
.reference-project-panel[hidden] {
  display: none;
}
.reference-projects__controls {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.reference-projects__controls span:first-child {
  margin-right: auto;
}
.reference-projects__tabs {
  display: flex;
  overflow-x: auto;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--line);
}
.reference-project-tab {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  min-height: 3.75rem;
  padding: 0.8rem 1rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  transition: color 0.25s ease;
  border-width: var(--border-width);
}
.reference-project-tab:hover,
.reference-project-tab[aria-selected="true"] {
  background: var(--black);
  color: var(--gold);
}
.reference-project-panel {
  border-top: 0;
  border-radius: 0;
  border: 0;
}
.reference-gallery__media {
  overflow: hidden;
  background: var(--black);
  height: clamp(34rem, 52vw, 48rem);
  position: relative;
}
.reference-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.reference-gallery__media.is-changing img {
  opacity: 0.35;
  transform: scale(1.01);
}
.reference-gallery__image-controls {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.reference-gallery__image-controls button span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reference-gallery__image-controls button i {
  font-size: 1.05rem;
  color: var(--gold);
}
.reference-gallery__image-controls button:hover {
  border-color: var(--gold);
  background: rgba(17, 17, 17, 0.94);
  color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 0.125rem rgba(217, 182, 95, 0.3);
}
.reference-gallery__count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(17, 17, 17, 0.72);
  color: var(--white);
  font-size: 0.72rem;
}
.reference-gallery__content {
  height: 100%;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  min-height: 100%;
  background: var(--page);
  color: var(--text);
}
.reference-gallery__content h3 {
  font-size: calc(clamp(2rem, 3vw, 3.1rem) * var(--heading-scale));
  font-weight: 300;
  color: var(--heading);
}
.reference-gallery__label {
  margin: 1.8rem 0 0.25rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.reference-gallery__footer {
  position: relative;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: var(--page);
  display: block;
}
.reference-gallery__footer p {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.reference-gallery__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--gallery-progress, 25%);
  height: 3px;
  background: var(--gold);
  transition: width 0.25s ease;
  display: none;
}
.reference-gallery__thumbs {
  display: flex;
  width: 100%;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-color: #8f8b84 transparent;
  scrollbar-width: thin;
}
.reference-thumb {
  padding: 0;
  overflow: hidden;
  border: var(--border-width) solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  flex: 0 0 6.5rem;
  width: 6.5rem;
  height: 4.5rem;
}
.reference-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reference-thumb[aria-current="true"] {
  border-color: var(--gold);
  opacity: 1;
}
.reference-project-panel > .row {
  margin-right: 0;
  margin-left: 0;
}
.reference-project-panel > .row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.reference-gallery__content .check-list {
  margin-top: 1rem;
}
.reference-gallery {
  border-radius: 0;
}
.reference-projects__navigation {
  margin-bottom: 1rem;
}
.reference-projects__tabs::-webkit-scrollbar {
  height: 0.35rem;
}
.reference-projects__tabs::-webkit-scrollbar-track {
  background: var(--line);
}
.reference-projects__tabs::-webkit-scrollbar-thumb {
  background: var(--gold);
}
.reference-project-tab::after {
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.reference-project-tab:focus-visible {
  color: var(--gold);
}
.reference-project-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}
.reference-projects__stage {
  border: var(--border-width) solid var(--line);
  border-style: solid;
}
.reference-project-panel .reference-gallery {
  width: 100%;
}
.reference-gallery .row {
  margin-right: 0;
  margin-left: 0;
}
.reference-gallery .row [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.reference-gallery__features {
  margin-top: 1rem;
}
[data-theme="dark"] .reference-projects__stage,
[data-theme="dark"] .reference-gallery__footer {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--black);
}
[data-theme="dark"] .reference-gallery__content {
  background: var(--black);
  color: var(--text);
}
[data-theme="dark"] .reference-gallery__content h3 {
  color: var(--white);
}
[data-theme="dark"] .reference-projects__tabs {
  border-color: rgba(255, 255, 255, 0.14);
}
.reference-map__intro {
  margin-bottom: 0;
}
.reference-map {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--white);
  min-height: 48rem;
  overflow: visible;
}
.reference-map img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 64%;
}
.reference-map__project {
  position: absolute;
  z-index: 2;
  top: var(--map-card-y);
  left: var(--map-card-x);
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.reference-map__point {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border: 0.2rem solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0.25rem 0.75rem rgba(17, 17, 17, 0.25);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.reference-map__card {
  position: absolute;
  display: block;
  padding: 0.7rem 0.8rem;
  background: var(--white);
  border: var(--border-width) solid var(--border-light);
  color: var(--black);
  box-shadow: 0 0.65rem 1.6rem rgba(17, 17, 17, 0.14);
  text-align: left;
  top: 0;
  left: 0;
  width: 9.75rem;
  transform: translate(var(--map-label-x, 1.25rem), var(--map-label-y, -50%));
}
.reference-map__project.is-card-left .reference-map__card {
  right: auto;
  left: 0;
}
.reference-map__card strong {
  display: block;
  font-size: 0.7rem;
  line-height: 1.25;
}
.reference-map__card small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.6rem;
}
.reference-map__project:hover .reference-map__point,
.reference-map__project:focus-visible .reference-map__point {
  background: var(--gold);
  transform: scale(1.25);
}
.reference-map__project:hover .reference-map__card,
.reference-map__project:focus-visible .reference-map__card {
  border-color: var(--gold);
}
.reference-map__mobile-list {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.reference-map__mobile-list button {
  padding: 1rem;
  border: var(--border-width) solid var(--line);
  background: var(--white);
  color: var(--black);
  text-align: left;
}
.reference-map__mobile-list strong {
  display: block;
}
.reference-map__mobile-list span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}
[data-theme="dark"] .reference-gallery__label {
  color: var(--white);
}
.reference-gallery__thumbs::-webkit-scrollbar {
  height: 0.35rem;
}
.reference-gallery__thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.reference-gallery__thumbs::-webkit-scrollbar-thumb {
  background: #8f8b84;
}
.reference-gallery.is-single .reference-gallery__image-controls,
.reference-gallery.is-single .reference-gallery__footer {
  display: none !important;
}
.reference-gallery__zoom {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.78);
  background: rgba(17, 17, 17, 0.62);
  color: var(--gold);
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.reference-gallery__zoom:hover,
.reference-gallery__zoom:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.reference-gallery__image-controls button:focus-visible {
  border-color: var(--gold);
  background: rgba(17, 17, 17, 0.94);
  color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 0.125rem rgba(217, 182, 95, 0.3);
}
.reference-gallery__image-controls button:hover i,
.reference-gallery__image-controls button:focus-visible i {
  color: currentColor;
}
@media (max-width: 62rem) {
  .reference-gallery__media {
    height: 34rem;
  }
  .reference-gallery__content {
    min-height: 0;
  }
}
@media (max-width: 48rem) {
  .reference-projects__controls {
    flex-wrap: wrap;
  }
  .reference-projects__controls span:first-child {
    width: 100%;
  }
  .reference-gallery__media {
    height: 23rem;
  }
  .reference-gallery__image-controls button {
    min-height: 2.65rem;
    padding: 0.5rem 0.65rem;
  }
  .reference-gallery__content {
    min-height: 0;
    padding: 1.6rem 1.25rem;
  }
  .reference-gallery__content h3 {
    font-size: calc(clamp(2rem, 8.5vw, 2.7rem) * var(--heading-scale));
  }
}
@media (max-width: 75rem) {
  .reference-map {
    min-height: 38rem;
    overflow: hidden;
  }
  .reference-map img {
    width: 72%;
  }
  .reference-map__project {
    display: none;
  }
  .reference-map__mobile-list {
    display: grid;
  }
}
@media (max-width: 48rem) {
  .reference-gallery__image-controls button span {
    display: none;
  }
  .reference-thumb {
    flex-basis: 5.25rem;
    width: 5.25rem;
    height: 3.75rem;
  }
  .reference-map__mobile-list {
    grid-template-columns: 1fr;
  }
  .reference-gallery__thumbs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    gap: 0.55rem;
  }
  .reference-gallery__footer {
    padding: 0.85rem 1rem 1rem;
  }
  .reference-map__intro {
    margin-bottom: 2rem;
  }
}
.reference-lightbox__nav i,
.reference-lightbox__close i {
  color: var(--gold);
}
.reference-lightbox.is-single .reference-lightbox__nav,
.reference-lightbox.is-single .reference-lightbox__thumbs {
  display: none !important;
}
.reference-lightbox {
  position: fixed;
  z-index: 2900;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.reference-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.reference-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(0.4rem);
}
.reference-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(86rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  flex-direction: column;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.4);
}
.reference-lightbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.reference-lightbox__title {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reference-lightbox__count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}
.reference-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.3);
  background: rgba(17, 17, 17, 0.45);
  color: var(--gold);
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
}
.reference-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid rgba(255, 255, 255, 0.3);
  background: rgba(17, 17, 17, 0.45);
  color: var(--gold);
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
}
.reference-lightbox__close:hover,
.reference-lightbox__close:focus-visible,
.reference-lightbox__nav:hover,
.reference-lightbox__nav:focus-visible {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}
.reference-lightbox__media {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 4.5rem;
}
.reference-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
}
.reference-lightbox__nav--prev {
  left: 1rem;
}
.reference-lightbox__nav--next {
  right: 1rem;
}
.reference-lightbox__thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.reference-lightbox__thumb {
  flex: 0 0 6.5rem;
  padding: 0;
  overflow: hidden;
  border: var(--border-width) solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
}
.reference-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 4.5rem;
  object-fit: cover;
}
.reference-lightbox__thumb[aria-current="true"] {
  border-color: var(--gold);
  opacity: 1;
}
body.reference-lightbox-open {
  overflow: hidden;
}
@media (max-width: 48rem) {
  .reference-lightbox__thumb {
    flex-basis: 5.25rem;
    width: 5.25rem;
    height: 3.75rem;
  }
  .reference-lightbox__dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
  }
  .reference-lightbox__topbar {
    padding: 0.85rem 1rem;
  }
  .reference-lightbox__media {
    min-height: 18rem;
    padding: 0.75rem 3rem;
  }
  .reference-lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reference-lightbox,
  .reference-lightbox__dialog {
    transition: none;
  }
}
@media (max-width: 48rem) {
  .reference-lightbox__thumbs {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }
  .reference-lightbox {
    padding: 0.5rem;
  }
}
