@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── Spatial & Glassmorphism 3.0 Design Tokens ─────────── */
:root {
  --gold: #c9a84c;
  --gold-light: #f5e5b8;
  --gold-bright: #ffeaa7;
  --gold-dark: #8c6d23;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow: rgba(201, 168, 76, 0.28);
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0dfa0 50%, #9a7a28 100%);
  --gold-prism: linear-gradient(135deg, rgba(201, 168, 76, 0.6) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(201, 168, 76, 0.15) 70%, rgba(255, 255, 255, 0.08) 100%);

  --onyx: #07080a;
  --onyx-deep: #040506;
  --charcoal: #0d0f12;
  --surface: #14161a;
  --surface-2: #1c1f24;
  --surface-card: rgba(255, 255, 255, 0.025);

  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(18, 20, 25, 0.65) 50%, rgba(9, 10, 13, 0.9) 100%);
  --glass-bg-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(24, 27, 34, 0.75) 50%, rgba(11, 13, 17, 0.95) 100%);
  --glass-border: rgba(201, 168, 76, 0.22);
  --glass-border-hot: rgba(201, 168, 76, 0.55);
  --glass-specular: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 2px 0 rgba(0, 0, 0, 0.6);
  --glass-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(201, 168, 76, 0.06);

  --border: rgba(201, 168, 76, 0.2);
  --border-light: rgba(255, 255, 255, 0.08);

  --text-primary: #f6f4ee;
  --text-muted: rgba(246, 244, 238, 0.65);
  --text-faint: rgba(246, 244, 238, 0.35);

  --font-serif: var(--font-cormorant, 'Cormorant Garamond'), Georgia, serif;
  --font-sans: var(--font-manrope, 'Outfit'), system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ─── Reset & Base Setup ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--onyx);
}

body {
  font-family: var(--font-sans);
  background: var(--onyx);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* 3D Spatial Grid Mesh Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(0, 0, 0, 0.85) 0%, transparent 80%);
}

/* Subtle Film Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}


/* ─── Glassmorphism 3.0 & Spatial Card Engine ───────────── */
.spatial-card,
.stat-item,
.dossier-card,
.why-card,
.gallery-item {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(210%) contrast(104%);
  -webkit-backdrop-filter: blur(28px) saturate(210%) contrast(104%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-specular), var(--glass-shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.4s ease,
    box-shadow 0.45s var(--ease-out),
    background 0.4s ease;
  will-change: transform;
  overflow: hidden;
}

/* Dynamic Spotlight Reflection on Cards */
.spatial-card::after,
.stat-item::after,
.dossier-card::after,
.why-card::after,
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background: radial-gradient(420px circle at var(--card-x, 50%) var(--card-y, 50%),
      rgba(201, 168, 76, 0.16) 0%,
      rgba(255, 255, 255, 0.04) 30%,
      transparent 70%);
  transition: opacity 0.4s ease;
}

/* Top Edge Specular Prismatic Highlight */
.spatial-card::before,
.stat-item::before,
.dossier-card::before,
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 229, 184, 0.7), transparent);
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.6s var(--ease-out);
  z-index: 4;
}

.spatial-card:hover,
.stat-item:hover,
.dossier-card:hover,
.why-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
  border-color: var(--glass-border-hot);
  background: var(--glass-bg-hover);
  box-shadow:
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px 0 rgba(0, 0, 0, 0.5),
    0 32px 70px -15px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(201, 168, 76, 0.15);
}

.spatial-card:hover::after,
.stat-item:hover::after,
.dossier-card:hover::after,
.why-card:hover::after,
.gallery-item:hover::after {
  opacity: 1;
}

.spatial-card:hover::before,
.stat-item:hover::before,
.dossier-card:hover::before,
.why-card:hover::before {
  opacity: 0.9;
}

/* ─── Custom Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--onyx);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ─── Typography & Utilities ─────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--onyx);
}

.serif {
  font-family: var(--font-serif);
}

.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
}

.body-sm {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.gold-line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 22, 28, 0.65);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.gold-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold-glow);
  animation: badgePulse 2.5s ease infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(201, 168, 76, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 14px var(--gold), 0 0 28px rgba(201, 168, 76, 0.6);
    transform: scale(1.15);
  }
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none;
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--onyx);
  font-size: 0.75rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
}

/* ─── Announcement Bar ────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.95), rgba(156, 122, 40, 0.95));
  color: var(--onyx);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.announcement-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--onyx);
  animation: badgePulse 2.5s ease infinite;
}

/* ─── Glassmorphism 3.0 Navbar ───────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 3.5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out);
}

.navbar.has-announcement {
  top: 32px;
}

.navbar.scrolled {
  background: rgba(8, 9, 12, 0.75);
  backdrop-filter: blur(32px) saturate(220%);
  -webkit-backdrop-filter: blur(32px) saturate(220%);
  padding: 0.85rem clamp(1.5rem, 3.5vw, 3.5rem);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 30px rgba(201, 168, 76, 0.05);
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800 !important;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}

.navbar-logo span {
  color: var(--gold);
  font-weight: 400;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.3s;
  position: relative;
  padding: 0.3rem 0;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.35s var(--ease-out);
}

.navbar-nav a:hover {
  color: var(--text-primary);
}

.navbar-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-out) !important;
  background: rgba(201, 168, 76, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--onyx) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 1px;
}

.nav-hamburger span:nth-child(2) {
  width: 65%;
  margin-left: auto;
}

@media (max-width: 900px) {
  .navbar-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }
}

/* ─── Hero Section with Spatial Depth ───────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--ease-in-out), transform 10s var(--ease-out);
  transform: scale(1.08);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 25%, rgba(7, 8, 10, 0.15) 0%, rgba(7, 8, 10, 0.7) 60%, rgba(7, 8, 10, 0.98) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.6) 0%, transparent 35%, rgba(7, 8, 10, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem clamp(5rem, 9vh, 7.5rem);
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-title {
  margin-bottom: 1.75rem;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ffffff 10%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 580px;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  font-size: 1.05rem;
  line-height: 1.85;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Spatial Hero Card */
.hero-project-card {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(4.5rem, 8vh, 6.5rem);
  width: 260px;
  padding: 1.4rem;
  background: rgba(14, 16, 20, 0.65);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 25px rgba(201, 168, 76, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.4s var(--ease-spring);
}

.hero-project-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
}

.hero-project-index {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-project-label {
  color: var(--text-faint);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-project-card strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-project-detail {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-slide-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.hero-slide-control {
  width: 32px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0;
}

.hero-slide-control span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hero-slide-control.active span {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hero-slide-control:hover span {
  background: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.5s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 900px) {
  .hero-project-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.25rem 4rem;
  }

  .hero-scroll {
    display: none;
  }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: all 0.45s var(--ease-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--onyx);
  box-shadow:
    0 6px 22px rgba(201, 168, 76, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  box-shadow:
    0 10px 36px rgba(201, 168, 76, 0.55),
    0 0 25px rgba(201, 168, 76, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

/* ─── Trust Marquee Bar ──────────────────────────────────── */
.trust-bar {
  background: rgba(13, 15, 18, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  backdrop-filter: blur(20px);
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--onyx), transparent);
}

.trust-bar::after {
  right: 0;
  background: linear-gradient(270deg, var(--onyx), transparent);
}

.trust-marquee {
  display: flex;
  animation: marqueeScroll 35s linear infinite;
  gap: 4rem;
  width: max-content;
}

.trust-marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-marquee-item .trust-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold-light);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── Stats Bar with Spatial 3D Glass Cards ──────────────── */
.stats-bar {
  background: var(--onyx);
  padding: 4.5rem 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  padding: 2.25rem 1.75rem;
  text-align: left;
  border-radius: var(--radius-md);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  text-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

.stat-label {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ─── About Section ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  width: 82%;
  height: 85%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.25);
  filter: saturate(0.9) contrast(1.04);
}

.about-img-accent {
  position: absolute;
  width: 52%;
  height: 48%;
  object-fit: cover;
  bottom: 0;
  right: 0;
  border: 4px solid var(--onyx);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  filter: saturate(0.95);
}

.about-badge {
  position: absolute;
  bottom: 10%;
  left: -0.75rem;
  background: var(--gold-gradient);
  color: var(--onyx);
  padding: 1.5rem 1.75rem;
  text-align: center;
  border-radius: var(--radius-md);
  width: 140px;
  z-index: 3;
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
}

.about-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-out);
}

.service-row:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.06);
  transition: all 0.3s;
}

.service-row:hover .service-icon {
  background: var(--gold);
  color: var(--onyx);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
}

.service-name {
  font-size: 0.88rem;
  font-weight: 500;
  flex: 1;
  color: var(--text-primary);
}

.service-arrow {
  color: var(--text-faint);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.service-row:hover .service-arrow {
  transform: translateX(4px);
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-stack {
    height: 420px;
  }

  .about-badge {
    left: 0.5rem;
  }
}

/* ─── Project Dossiers (Spatial Dark Glass Cards) ────────── */
.project-dossiers {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.dossiers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.dossiers-heading .label {
  display: block;
  margin-bottom: 0.85rem;
}

.dossiers-heading h2 {
  max-width: 14ch;
  color: var(--text-primary);
}

.dossiers-heading h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.dossiers-heading>p {
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.dossiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dossier-card {
  border-radius: var(--radius-md);
  background: var(--glass-bg);
}

.dossier-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dossier-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.dossier-card:hover .dossier-image-wrap img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.dossier-number {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 60px;
  height: 52px;
  background: rgba(14, 16, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top-left-radius: var(--radius-sm);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-left: 1px solid rgba(201, 168, 76, 0.3);
}

.dossier-content {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.dossier-content h3 {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
}

.dossier-type {
  margin-top: 0.6rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-description {
  min-height: 5em;
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.dossier-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.dossier-facts>div {
  padding: 0.9rem 0.75rem;
}

.dossier-facts>div+div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.dossier-facts dt {
  color: var(--text-faint);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dossier-facts dd {
  margin-top: 0.25rem;
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.dossier-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.dossier-link span {
  transition: transform 0.3s;
}

.dossier-link:hover span {
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .dossiers-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dossiers-grid {
    grid-template-columns: 1fr;
  }

  .dossier-description {
    min-height: 0;
  }
}

/* ─── Bento Gallery with Spatial Glassmorphism ───────────── */
.projects-section {
  background: var(--onyx);
}

.project-filter-group {
  margin-bottom: 2.5rem;
}

.project-selector-bar {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.project-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-out);
}

.project-selector-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.project-selector-btn.active {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.06) 100%);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
}

.project-selector-btn .count-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.project-selector-btn.active .count-badge {
  background: var(--gold);
  color: var(--onyx);
  font-weight: 800;
}

.project-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.project-tabs::-webkit-scrollbar {
  display: none;
}

.project-tab {
  padding: 0.85rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}

.project-tab.active,
.project-tab:hover {
  color: var(--text-primary);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 320px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
}

.gallery-item:nth-child(6) {
  grid-column: span 6;
}

.gallery-item:nth-child(7) {
  grid-column: span 6;
}

.gallery-item:nth-child(n+8) {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 11, 15, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-project-tag {
  background: var(--gold);
  color: var(--onyx);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  z-index: 2;
  transition: all 0.4s var(--ease-out);
}

.gallery-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

/* ─── Before / After Interactive Slider ─────────────────── */
.ba-container {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 30px rgba(201, 168, 76, 0.1);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--onyx);
}

.ba-image-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-image-before-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
  will-change: width;
}

.ba-image-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  z-index: 3;
  box-shadow: 0 0 16px var(--gold), 0 0 32px rgba(201, 168, 76, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 16, 20, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.6), 0 12px 30px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  z-index: 4;
}

.ba-container:active .ba-handle {
  transform: translate(-50%, -50%) scale(1.18);
  background: var(--gold);
  color: var(--onyx);
}

.ba-tag {
  position: absolute;
  top: 1.25rem;
  z-index: 5;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.ba-tag-before {
  left: 1.25rem;
  background: rgba(10, 11, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.ba-tag-after {
  right: 1.25rem;
  background: rgba(20, 22, 28, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .ba-container {
    height: 380px;
  }
}



/* ─── Ambient Spotlights Background ──────────────────────── */
.ambient-wrapper {
  position: relative;
  overflow: hidden;
}

.ambient-spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: pulseSpotlight2 18s var(--ease-in-out) infinite alternate;
}

.ambient-spotlight-gold {
  top: -100px;
  right: -60px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, rgba(245, 229, 184, 0.08) 40%, transparent 70%);
}

.ambient-spotlight-onyx {
  bottom: -160px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(140, 109, 35, 0.25) 0%, rgba(201, 168, 76, 0.05) 50%, transparent 80%);
  animation-delay: -9s;
}

@keyframes pulseSpotlight2 {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.25;
  }

  50% {
    transform: scale(1.15) translate(-30px, 30px);
    opacity: 0.42;
  }

  100% {
    transform: scale(1.05) translate(25px, -15px);
    opacity: 0.3;
  }
}



.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(8, 9, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: all 0.35s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 12, 0.95);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-faint);
}

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(4, 5, 7, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 88vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.lightbox-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin-top: 1.5rem;
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
}

.lightbox-counter {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(14, 16, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s var(--ease-out);
  z-index: 360;
  cursor: pointer;
  font-size: 1.6rem;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--text-muted);
  background: rgba(14, 16, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s;
  z-index: 360;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* ─── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 7, 9, 0.96);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--onyx-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5.5rem 0 2.5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 340px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer-logo span {
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1/3;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
@keyframes reveal-anim {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

.reveal {
  opacity: 0;
  animation: reveal-anim 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.reveal-delay-1 {
  animation-range: entry 15% cover 35%;
}

.reveal-delay-2 {
  animation-range: entry 20% cover 40%;
}

.reveal-delay-3 {
  animation-range: entry 25% cover 45%;
}

.reveal-delay-4 {
  animation-range: entry 30% cover 50%;
}

@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;
  }
}