@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --white: #ffffff;
  --ivory: #f6f1e8;
  --muted: #b9b9b9;
  --soft: rgba(255, 255, 255, 0.72);
  --gold: #c9a96e;
  --gold-2: #e7cf9d;
  --gold-rgb: 201, 169, 110;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(201, 169, 110, 0.42);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-dark: rgba(10, 10, 10, 0.74);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .text-lg-end {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.is-loaded {
  opacity: 1;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 80%);
}

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

a:hover {
  color: var(--gold-2);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(var(--gold-rgb), 0.38);
  animation: loaderSpin 2.2s linear infinite;
}

.loader-mark::after {
  inset: 20px;
  animation-direction: reverse;
}

.loader-mark span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 84px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-logo {
  width: 66px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(var(--gold-rgb), 0.72);
  background: var(--ivory);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  position: relative;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: background 0.3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

body.nav-open .nav-toggle span {
  background: transparent;
}

body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.page-main {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 10rem 0 6.5rem;
}

.hero.hero-inner {
  min-height: 74vh;
}

.hero-media,
.parallax-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  will-change: transform;
}

.hero-media::after,
.parallax-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.62) 46%, rgba(10, 10, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.12) 48%, rgba(10, 10, 10, 0.75) 100%);
}

.hero-gridline {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

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

.eyebrow,
.section-kicker,
.card-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.display-title {
  margin: 1rem 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero-title {
  max-width: 940px;
  font-size: 5.8rem;
}

.page-title {
  max-width: 850px;
  font-size: 5rem;
}

.display-title {
  color: var(--white);
  font-size: 3.6rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line span {
  display: block;
  transform: translateY(115%);
  animation: revealTitle 1.05s var(--ease) forwards;
}

.title-line:nth-child(2) span {
  animation-delay: 0.12s;
}

.title-line:nth-child(3) span {
  animation-delay: 0.22s;
}

@keyframes revealTitle {
  to {
    transform: translateY(0);
  }
}

.hero-lead,
.lead-text {
  max-width: 680px;
  color: var(--soft);
  font-size: 1.08rem;
  font-weight: 300;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.btn-lux,
.btn-ghost,
.filter-btn,
.lightbox-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.85rem 1.35rem;
  color: var(--white);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-lux::before,
.btn-ghost::before,
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.96), rgba(231, 207, 157, 0.72));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease);
}

.btn-lux {
  background: rgba(var(--gold-rgb), 0.12);
}

.btn-lux:hover,
.btn-ghost:hover,
.filter-btn:hover,
.filter-btn.is-active {
  color: var(--black);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(var(--gold-rgb), 0.24);
}

.btn-lux:hover::before,
.btn-ghost:hover::before,
.filter-btn:hover::before,
.filter-btn.is-active::before {
  transform: scaleX(1);
}

.btn-ghost {
  border-color: var(--line);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.7s ease-in-out infinite;
}

@keyframes scrollLine {
  50% {
    transform: translateY(12px);
  }
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-tight {
  padding: 5rem 0;
}

.section-dark {
  background: #0d0d0d;
}

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

.section-ivory .display-title,
.section-ivory .metric strong,
.section-ivory .card-title-lux {
  color: var(--black);
}

.section-ivory .lead-text,
.section-ivory .body-copy,
.section-ivory .metric span,
.section-ivory .card-text-lux {
  color: rgba(10, 10, 10, 0.68);
}

.section-ivory .glass-panel {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(10, 10, 10, 0.035);
}

.body-copy {
  color: var(--soft);
  font-weight: 300;
}

.muted-copy {
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 2.25rem;
}

.metric {
  padding: 1.4rem 1.2rem;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.42), transparent 56%);
}

.image-caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.glass-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.feature-list span {
  color: var(--gold);
  font-weight: 800;
}

.project-card,
.service-card,
.team-card,
.value-card,
.contact-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.project-card:hover,
.service-card:hover,
.team-card:hover,
.value-card:hover,
.contact-card:hover {
  border-color: rgba(var(--gold-rgb), 0.72);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(var(--gold-rgb), 0.14);
}

.project-card {
  overflow: hidden;
}

.project-card[data-full] {
  cursor: zoom-in;
}

.project-card[data-full]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.video-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  border-color: rgba(var(--gold-rgb), 0.72);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(var(--gold-rgb), 0.14);
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.video-frame video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.video-body {
  padding: 1.25rem;
}

.folder-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--gold-rgb), 0.46);
  padding: 0.35rem 0.7rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-note {
  max-width: 760px;
  color: var(--soft);
  font-weight: 300;
}

.project-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #151515;
}

.featured-grid .project-media {
  min-height: 460px;
}

.project-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.45s ease;
}

.project-card:hover .project-media img {
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  background:
    linear-gradient(0deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.1) 64%),
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.34), transparent 50%);
  opacity: 0.92;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-title {
  margin: 0.65rem 0 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.project-copy {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.service-card,
.team-card,
.value-card,
.contact-card {
  padding: 2rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--gold-rgb), 0.55);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}

.service-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.card-title-lux {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.card-text-lux {
  color: var(--soft);
  font-weight: 300;
}

.numbered-card::before {
  content: attr(data-number);
  position: absolute;
  right: 1.4rem;
  top: 1.1rem;
  color: rgba(var(--gold-rgb), 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.team-initials {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.team-photo {
  position: relative;
  height: 260px;
  margin: -2rem -2rem 1.6rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #151515;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15) contrast(1.04);
  transition: transform 0.7s var(--ease), filter 0.35s ease;
}

.team-card:hover .team-photo img {
  filter: grayscale(0) contrast(1.08);
  transform: scale(1.05);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.62), transparent 48%);
  pointer-events: none;
}

.team-role {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.client-logo-card {
  height: 100%;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.client-logo-card:hover {
  border-color: rgba(var(--gold-rgb), 0.72);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.client-logo-card img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.client-logo-card span {
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.client-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.client-name-list span {
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parallax-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-band .container {
  position: relative;
  z-index: 1;
}

.parallax-band .display-title {
  max-width: 760px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2.25rem 0 3rem;
}

.filter-btn {
  min-height: 44px;
  cursor: pointer;
}

.project-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-item.is-hidden {
  display: none;
}

.project-item.tall .project-media {
  min-height: 560px;
}

.project-item.compact .project-media {
  min-height: 340px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  width: min(1120px, 100%);
  max-height: 86vh;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  box-shadow: var(--shadow);
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--white);
}

.lightbox-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
}

.lightbox-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox-btn {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
}

.lightbox-close {
  top: -1rem;
  right: -1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -1rem;
}

.lightbox-next {
  right: -1rem;
}

.form-shell {
  border: 1px solid var(--line);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-control-lux {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.95rem 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.form-control-lux:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.1);
}

.form-control-lux::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field-error {
  min-height: 1.1rem;
  margin-top: 0.35rem;
  color: #ffd6d6;
  font-size: 0.82rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--gold-2);
}

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

.contact-link {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.contact-link + .contact-link {
  margin-top: 0.4rem;
}

.map-frame {
  min-height: 440px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
}

.footer-nav a,
.footer-small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 4.7rem;
  }

  .page-title {
    font-size: 4.3rem;
  }

  .display-title {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
  }

  body.nav-open .nav-menu {
    transform: translateY(0);
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding: 8rem 0 5rem;
  }

  .hero-title {
    font-size: 3.7rem;
  }

  .page-title {
    font-size: 3.5rem;
  }

  .display-title {
    font-size: 2.6rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .image-panel,
  .image-panel img {
    min-height: 430px;
  }

  .footer-nav {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 56px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .brand-subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero,
  .hero.hero-inner {
    min-height: 88vh;
  }

  .hero-title,
  .page-title {
    font-size: 3.05rem;
  }

  .display-title {
    font-size: 2.25rem;
  }

  .hero-lead,
  .lead-text {
    font-size: 1rem;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .project-media,
  .featured-grid .project-media,
  .project-item.tall .project-media,
  .project-item.compact .project-media {
    min-height: 390px;
  }

  .service-card,
  .team-card,
  .value-card,
  .contact-card,
  .form-shell,
  .glass-panel {
    padding: 1.45rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 5.1rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .hero-title,
  .page-title {
    font-size: 2.58rem;
  }

  .display-title {
    font-size: 2rem;
  }

  .hero-actions,
  .section-actions,
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lux,
  .btn-ghost,
  .filter-btn {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
